Code

Updated locales
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 10 Mar 2008 15:40:17 +0000 (15:40 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 10 Mar 2008 15:40:17 +0000 (15:40 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9619 594d385d-05f5-0310-b6e9-bd551577e9d8

13 files changed:
gosa-core/html/index.php
gosa-core/include/functions.inc
gosa-core/locale/core/de/LC_MESSAGES/messages.po
gosa-core/locale/core/es/LC_MESSAGES/messages.po
gosa-core/locale/core/fr/LC_MESSAGES/messages.po
gosa-core/locale/core/it/LC_MESSAGES/messages.po
gosa-core/locale/core/messages.po
gosa-core/locale/core/nl/LC_MESSAGES/messages.po
gosa-core/locale/core/pl/LC_MESSAGES/messages.po
gosa-core/locale/core/ru/LC_MESSAGES/messages.po
gosa-core/locale/core/zh/LC_MESSAGES/messages.po
gosa-core/plugins/admin/acl/class_divListACL.inc
gosa-core/plugins/admin/acl/tabs_acl.inc

index 35e773c3869e2c16a5fe89eb49b5620607073e69..238c74b956136b32a5fccecb6c5d50b35d9dbfcc 100644 (file)
@@ -252,7 +252,7 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces
   /* Admin-logon and verify */
   $ldap = $config->get_ldap_link();
   if (is_null($ldap) || (is_int($ldap) && $ldap == 0)){
-    msg_dialog::display(_("LDAP error"), _("Can't bind to LDAP. Please contact the system administrator."), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class()));
     displayLogin();
     exit();
   }
index 5ad63e34cf5e8f51fa60831d44f4c78c880effc9..d9f4661eb94d7314d154a77f9dd3bdb94e268cea 100644 (file)
@@ -341,7 +341,7 @@ function process_htaccess ($username, $kerberos= FALSE)
     /* Look for entry or realm */
     $ldap= $config->get_ldap_link();
     if (!$ldap->success()){
-      msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+      msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH, ERROR_DIALOG));
       $smarty= get_smarty();
       $smarty->display(get_template_path('headers.tpl'));
       echo "<body>".session::get('errors')."</body></html>";
@@ -368,7 +368,7 @@ function ldap_login_user_htaccess ($username)
   /* Look for entry or realm */
   $ldap= $config->get_ldap_link();
   if (!$ldap->success()){
-    msg_dialog::display(_("LDAP error"), sprintf(_('User login failed.').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), FATAL_ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_AUTH, FATAL_ERROR_DIALOG));
     $smarty= get_smarty();
     $smarty->display(get_template_path('headers.tpl'));
     echo "<body>".session::get('errors')."</body></html>";
@@ -377,7 +377,7 @@ function ldap_login_user_htaccess ($username)
   $ldap->search("(&(objectClass=gosaAccount)(uid=$username))", array("uid"));
   /* Found no uniq match? Strange, because we did above... */
   if ($ldap->count() != 1) {
-    msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree. Please contact your Administrator."), FATAL_ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), _("Username / UID is not unique inside the LDAP tree!"), FATAL_ERROR_DIALOG);
     return (NULL);
   }
   $attrs= $ldap->fetch();
@@ -649,7 +649,7 @@ function del_lock ($object)
     $ldap->rmdir ($ldap->getDN());
 
     if (!$ldap->success()){
-      msg_dialog::display(_("LDAP error"), sprintf(_("Removing a lock failed.")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+      msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $ldap->getDN(), LDAP_DEL, ERROR_DIALOG));
       return;
     }
   }
@@ -688,7 +688,7 @@ function get_lock ($object)
   $ldap->cd ($config->current['CONFIG']);
   $ldap->search("(&(objectClass=gosaLockEntry)(gosaObject=".base64_encode($object)."))", array("gosaUser"));
   if (!$ldap->success()){
-    msg_dialog::display(_("LDAP error"), sprintf(_("Cannot get locking information from LDAP tree!")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
     return("");
   }
 
@@ -733,7 +733,7 @@ function get_multiple_locks($objects)
   $ldap->cd ($config->current['CONFIG']);
   $ldap->search($filter, array("gosaUser","gosaObject"));
   if (!$ldap->success()){
-    msg_dialog::display(_("LDAP error"), sprintf(_("Cannot get locking information from LDAP tree!")."<br><br>"._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), "", LDAP_SEARCH, ERROR_DIALOG));
     return("");
   }
 
@@ -2541,7 +2541,7 @@ function change_password ($dn, $password, $mode=0, $hash= "")
   new log("modify","users/passwordMethod",$dn,array_keys($attrs),$ldap->get_error());
 
   if (!$ldap->success()) {
-    msg_dialog::display(_("LDAP error"), sprintf(_('Setting the password failed!').'<br><br>'._('LDAP server returned: %s'), "<br><br><i>".$ldap->get_error()."</i>"), ERROR_DIALOG);
+    msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $dn, LDAP_MOD, ERROR_DIALOG));
   } else {
 
     /* Run backend method for change/create */
index c0f9c32f010dc0d1abe6a1d81dfed80c0c7147ae..3b57f755e3a208a0c56b662c2895f89b0b5a78b1 100644 (file)
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2008-03-04 08:41+0100\n"
 "Last-Translator: Cajus Pollmeier <pollmeier@gonicus.de>\n"
 "Language-Team:  <de@li.org>\n"
@@ -20,1063 +20,1057 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr "Installationsprüfung"
-
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
-"Grundlegende Überprüfungen der PHP-Version und benötigten Erweiterungen."
-
-#: setup/class_setupStep_Checks.inc:64
-msgid "Checking PHP version"
-msgstr "Prüfe PHP-Version"
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Ein Sitzungskonflikt wurde festgestellt"
 
-#: setup/class_setupStep_Checks.inc:65
-#, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP muß in Version %s oder höher vorliegen."
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Warnung"
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:6
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
-msgstr ""
-"GOsa benötigt Funktionen, die in älteren PHP-Versionen nicht unbedingt "
-"(stabil) verfügbar sind, aktualisieren Sie daher auf eine unterstützte PHP-"
-"Version."
-
-#: setup/class_setupStep_Checks.inc:72
-msgid "Checking for LDAP support"
-msgstr "Prüfe auf LDAP-Unterstützung"
-
-#: setup/class_setupStep_Checks.inc:73
-msgid "This is the main extension used by GOsa and therefore really required."
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
-"Dies ist die grundlegende Erweiterung für GOsa und wird daher wirklich "
-"benötigt."
+"Vermutlich existiert eine andere aktive Instanz Ihrer Sitzung. Das Arbeiten "
+"mit mehreren Fenstern ist technisch so nicht möglich und hängt stark vom "
+"eingesetzten Browser ab. Die Verwendung unterschiedlicher Browser zur "
+"gleichen Zeit (z.B. IE und Mozilla) ist möglich. Das Drücken von 'Abmelden' "
+"schließt diese Sitzung."
 
-#: setup/class_setupStep_Checks.inc:74
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
-"Das LDAP-Modul (php5-ldap) wird zur Kommunikation mit dem LDAP-Server "
-"benötigt."
+"Falls Sie trotzdem fortfahren, können einige Daten der momentan bearbeiteten "
+"Dialoge verlorengehen. Deshalb schließen Sie bitte die verschiedenen Fenster "
+"und melden sich neu an."
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Prüfe auf gettext-Erweiterung"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Abmelden"
 
-#: setup/class_setupStep_Checks.inc:81
-msgid "Gettext support is required for internationalization."
-msgstr "Gettext-Unterstützung wird für Mehrsprachigkeit benötigt."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr "Ihr Passwort ist abgelaufen, geben Sie bitte ein neues Passwort ein"
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
-msgstr "Bitte stellen Sie sicher, dass die Erweiterung aktiviert ist."
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
+msgstr "Altes Passwort"
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Prüfe auf iconv-Erweiterung"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr "Neues Passwort"
 
-#: setup/class_setupStep_Checks.inc:89
-msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr ""
-"Dieses Modul wird von GOsa benutzt, um Samba Munged Dial-Information zu "
-"konvertieren und wird daher benötigt."
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr "Passwort überprüfen"
 
-#: setup/class_setupStep_Checks.inc:96
-msgid "Checking for mhash support"
-msgstr "Prüfe auf mHash-Unterstützung"
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr "Passwort ändern"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr "Sie benötigen dieses Modul um die SSHA-Verschlüsselung zu verwenden"
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr "Hier klicken, um Ihr Passwort zu ändern"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
-"Das mHash-Modul für PHP 5 ist nicht verfügbar, bitte installieren Sie php5-"
-"mhash."
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
+msgstr "GOsa Anmeldefenster"
 
-#: setup/class_setupStep_Checks.inc:104
-msgid "Checking for IMAP support"
-msgstr "Prüfe auf IMAP-Unterstützung"
+#: ihtml/themes/default/login.tpl:27
+msgid "Login screen"
+msgstr "Anmeldefenster"
 
-#: setup/class_setupStep_Checks.inc:105
+#: ihtml/themes/default/login.tpl:34
 msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
+"Please use your username and your password to log into the site "
+"administration system."
 msgstr ""
-"Das IMAP-Modul wird für die Kommunikation mit ihrem IMAP-Server benötigt. "
-"GOsa bezieht damit Statusinformationen, erstellt und entfernt Mail-Konten, "
-"etc."
+"Verwenden Sie bitte Ihren Benutzernamen und Ihr Passwort, um sich an der "
+"Verwaltung des Standorts anzumelden."
 
-#: setup/class_setupStep_Checks.inc:106
-msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
-msgstr ""
-"Dieses Modul wird verwendet, um mit Ihrem Mail-Server zu kommunizieren. "
-"Bitte installieren Sie php5-imap."
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Benutzername"
 
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Prüfe auf gettext-Erweiterung"
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Passwort"
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
-msgstr ""
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: setup/class_setupStep_Checks.inc:120
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Prüfe auf getacl im IMAP-Modul"
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Hier klicken zum Anmelden"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr "Die Gültigkeit ihrer GOsa-Sitzung ist abgelaufen!"
+
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
-"Diese Funktion wird benötigt um Zugriffsrechte von verteilten Ordnern zu "
-"verwalten. Ältere IMAP-Module unterstützen das Auslesen dieser "
-"Zugriffsregeln nicht. Sie benötigen eine aktuelle PHP-Version, um diese "
-"Funktion nutzen zu können."
+"Die letzte in der Web-Applikation durchgeführte Aktion liegt einige Zeit in "
+"der Vergangenheit. Aus Sicherheitsgründen wurde die Sitzung geschlossen. Um "
+"mit der Administration fortzufahren, melden Sie sich bitte erneut an."
 
-#: setup/class_setupStep_Checks.inc:128
-msgid "Checking for MySQL support"
-msgstr "Prüfe auf MySQL-Unterstützung"
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
+msgstr "Erneut anmelden"
 
-#: setup/class_setupStep_Checks.inc:129
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr ""
-"Das MySQL-Modul wird benötigt, um mit verschiedenen unterstützten "
-"Datenbanken zu kommunizieren."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
+msgstr "Zugewiesene ACLs für aktuellen Eintrag"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
-msgstr ""
-"Dieses Modul wird verwendet, um mit Datenbank-Servern zu kommunizieren "
-"(GOfax, asterisk, GLPI, etc.). Bitte installieren Sie php5-mysql"
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+msgid "New ACL"
+msgstr "Neue ACL"
 
-#: setup/class_setupStep_Checks.inc:136
-msgid "Checking for kadm5 support"
-msgstr "Prüfe auf kadm5-Unterstützung"
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "ACL type"
+msgstr "ACL-Typ"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
-msgstr ""
-"Um Benutzer auch im Kerberos verwalten zu können, muß das kadm5-Modul "
-"installiert sein. Sie können es über das PEAR-Netzwerk beziehen."
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "Select an acl type"
+msgstr "Wählen Sie einen ACL-Typ"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
-msgstr ""
-"Dieses Modul wird zur Verwaltung von Benutzer in Kerberos benötigt, es ist "
-"über das PEAR-Netzwerk verfügbar."
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Anwenden"
 
-#: setup/class_setupStep_Checks.inc:144
-msgid "Checking for SNMP support"
-msgstr "Prüfe auf SNMP-Unterstützung"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
+msgstr "Verwende Mitglieder von"
 
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
-msgstr ""
-"Das Simple Network Management Protocol (SNMP) benötigt, um Status-"
-"Informationen von Clients zu beziehen."
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr "Verfügbare Mitglieder"
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
-msgstr ""
-"Dieses Modul wird für die Client-Überwachung benötigt. Bitte installation "
-"Sie php5-snmp."
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
+msgstr "Zeige mögliche Empfänger dieser Nachricht"
 
-#: setup/class_setupStep_Checks.inc:152
-msgid "Checking for CUPS support"
-msgstr "Prüfe auf CUPS-Unterstützung"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "Mitglieder"
 
-#: setup/class_setupStep_Checks.inc:153
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Falls Sie eine Liste der verfügbaren Drucker über IPP an Stelle von printcap "
-"Dateien auslesen möchten, benötigen Sie das CUPS-Modul."
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
+msgstr "Zeige Nachrichtenempfänger"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Suche fping-Programm"
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+msgid "List of available ACL categories"
+msgstr "Liste verfügbarer ACL-Kategorien"
 
-#: setup/class_setupStep_Checks.inc:163
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
-msgstr ""
-"Das fping-Werkzeug wird in einer Thin-Client basierten Terminal-Umgebung "
-"benötigt."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
+msgstr "ACLs für dieses Objekt"
 
-#: setup/class_setupStep_Checks.inc:164
-msgid ""
-"The fping utility is only used in thin client based terminal environment."
-msgstr "Fping wird nur in Thin-Client basierten Terminal-Umgebungen benötigt."
+#: ihtml/themes/default/acl.tpl:69
+msgid "Available roles"
+msgstr "Verfügbare Rollen"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
-msgstr "Samba Passwort-Hash Erzeugung"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: setup/class_setupStep_Checks.inc:180
-msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
-msgstr ""
-"Um Samba 2/3-Passwörter verwenden zu können, müssen zusätzliche Pakete zum "
-"Erzeugen von Passwort-Hashes installiert werden."
+#: ihtml/themes/default/logout-close.tpl:5
+msgid "Your GOsa session has been closed!"
+msgstr "Ihre GOsa-Sitzung wurde geschlossen!"
 
-#: setup/class_setupStep_Checks.inc:181
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"Um Samba 2.x/3.x nutzen zu können, werden zusätzliche Perl-Bibliotheken "
-"benötigt. Werfen Sie einen Blick auf mkntpasswd."
-
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
-msgstr "Aus"
+"Bitte schliessen Sie dieses Browserfenster und leeren den "
+"Authentisierungscache um eine automatische Wiederanmeldung des Browsers zu "
+"verhindern."
 
-#: setup/class_setupStep_Checks.inc:192
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 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."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
-"register_globals ist ein PHP-Mechanismus, welcher alle globalen Variablen "
-"für Skripte direkt zugänglich macht. Dies kann ein Sicherheitsrisiko sein."
+"Sie bearbeiten gerade einen Datenbankeintrag. Sollen die Daten verworfen "
+"werden?"
 
-#: setup/class_setupStep_Checks.inc:193
-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'."
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Hauptmenü"
 
-#: setup/class_setupStep_Checks.inc:201
-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."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Hilfe"
 
-#: setup/class_setupStep_Checks.inc:202
-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."
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Abmelden"
 
-#: setup/class_setupStep_Checks.inc:203
-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."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Angemeldet:"
 
-#: setup/class_setupStep_Checks.inc:211
-msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
-msgstr ""
-"Um GOsa fehlerfrei benutzen zu können, muß die Option session.auto_register "
-"in Ihrer php.ini auf 'Off' stehen."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
+msgstr "GOsa Hauptmenü"
 
-#: setup/class_setupStep_Checks.inc:212
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
+msgstr "Stelle Objekt-Snapshots wieder her"
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"GOsa benötigt mindestens 32MB Speicher, weniger Speicher würde "
-"unvorhersehbare Probleme verursachen! Bei größeren Installationen sollte "
-"dieser Wert noch vergrössert werden."
+"Dieser Vorgang stellt einen Snaphot des gewählten Objekts wieder her. Er "
+"wird dabei das vorhandene überschreiben, nachdem Sie den Wiederherstellen-"
+"Knopf gedrückt haben."
 
-#: setup/class_setupStep_Checks.inc:220
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
-"Suchen Sie in Ihrer php.ini nach 'memory_limit' und setzen Sie es auf '32M' "
-"oder höher."
+"Beachten Sie, dass die DNS-Konfiguration mitsamt den Datenbankeinträgen "
+"nicht wiederhergestellt werden kann.Für manche Objekte reicht es bereits, "
+"sie zu öffnen und zu speichen (GOfon), andere Einträge müssen manuell "
+"erstellt werden (glpi)."
 
-#: setup/class_setupStep_Checks.inc:227
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"Diese Einstellung beeinflusst die Verarbeitung der Ausgabe. Stellen Sie "
-"diese auf 'off', um die Leistung zu erhöhen."
+"Vergessen Sie nicht, Verweise auf andere Objekte zu überprüfen, bspw. ob der "
+"gewählte Drucker noch existiert."
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Objekt"
+
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
+msgstr "Es ist kein Snapshot verfügbar, der wiederhergestellt werden kann"
+
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
-"Suchen Sie in Ihrer php.ini nach 'implicit_flush' und setzen Sie es auf "
-"'Off'."
+"Wählen Sie einen Snapshot und klicken Sie auf das Ordner-Bild, um diesen "
+"wiederherzustellen."
 
-#: setup/class_setupStep_Checks.inc:235
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen."
+#: ihtml/themes/default/snapshotdialog.tpl:49
+msgid "Creating object snapshots"
+msgstr "Erstelle Objekte-Snapshots"
 
-#: setup/class_setupStep_Checks.inc:236
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"Suchen Sie in Ihrer php.ini nach 'max_execution_time' und setzen Sie es auf "
-"'30' oder höher."
+"Dieser Vorgang wird einen Snapshot des gewählten Objekts erzeugen. Er wird "
+"innerhalb eines speziellen Zweiges Ihres Verzeichnisses gespeichert und kann "
+"später wieder hergestellt werden."
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/snapshotdialog.tpl:55
 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."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 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."
+"Beachten Sie, dass Datenbankeinträge, DNS-Konfigurationen und evtl. "
+"erstellte Zonen in den Server-Erweiterungen nicht im Snapshot gespeichert "
+"werden."
 
-#: setup/class_setupStep_Checks.inc:244
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:70
+msgid "Timestamp"
+msgstr "Zeitstempel"
 
-#: setup/class_setupStep_Checks.inc:250
-msgid "On"
-msgstr "An"
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
+msgstr "Grund für das Erzeugen dieses Snapshots"
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
-msgstr ""
-"Erhöhen Sie die Sicherheit des Server, indem sie magic_quotes_gpc auf 'on' "
-"stellen. PHP wird in dieser Einstellung alle 'quotes' in 'strings' umwandeln."
-
-#: setup/class_setupStep_Checks.inc:252
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr ""
-"Suchen Sie in Ihrer php.ini nach 'magic_quotes_gpc' und setzen Sie es auf "
-"'On'."
-
-#: setup/class_setupStep_Checks.inc:259
-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."
-
-#: setup/class_setupStep_Checks.inc:260
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Fortsetzen"
 
-#: setup/class_setupStep_Checks.inc:270
-msgid "Configuration writeable"
-msgstr "Konfigurationsdatei schreibbar"
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
+msgstr "Fehler"
 
-#: setup/class_setupStep_Checks.inc:271
-msgid "The configuration file can't be written"
-msgstr "Die Konfigurationsdatei kann nicht geschrieben werden"
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Information"
 
-#: setup/class_setupStep_Checks.inc:272
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
 #, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
-msgstr ""
-"GOsa liest sein Konfiguration von einer Datei in (%s/%s). Die Einrichtung "
-"kann die Konfiguration direkt schreiben, wenn diese schreibbar ist."
+msgid "Ok"
+msgstr "Ok"
 
-#: setup/setup_language.tpl:3
-msgid "Please select the preferred language"
-msgstr "Bitte wählen Sie Ihre bevorzugte Sprache"
+#: ihtml/themes/default/pwd_heimdal.tpl:5
+msgid "Heimdal options"
+msgstr "Heimdal-Einstellungen"
 
-#: setup/setup_language.tpl:5
-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 ""
-"An dieser Stelle können Sie die standortweite Standardsprache auswählen. Bei "
-"Auswahl von 'automatisch' wird automatisch die vom Browser angeforderte "
-"Sprache verwendet. Diese Einstellung kann von der Einstellung des Benutzers "
-"überschrieben werden."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
+msgstr "Verwende leere Werte für unendlich"
 
-#: setup/setup_language.tpl:9
-msgid "Please select your preferred language here"
-msgstr "Bitte wählen Sie hier Ihre bevorzugte Sprache"
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
+msgstr "Maximale Lebenszeit des Tickets"
 
-#: setup/setup_frame.tpl:12
-msgid "GOsa setup wizard"
-msgstr "GOsa Einrichtungsassistent"
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
+msgstr "Maximale Anzahl von Verlängerungen des Tickets"
 
-#: setup/setup_frame.tpl:19
-msgid "Installation"
-msgstr "Installation"
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
+msgstr "unendlich"
 
-#: setup/setup_frame.tpl:19
-msgid "Steps"
-msgstr "Schritte"
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+msgid "Hour"
+msgstr "Stunde"
 
-#: setup/setup_finish.tpl:3
-msgid "Create your configuration file"
-msgstr "Erzeugen Ihrer Konfigurationsdatei"
+#: ihtml/themes/default/pwd_heimdal.tpl:36
+msgid "Minute"
+msgstr "Minute"
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "Konfiguration herunterladen"
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+msgid "Day"
+msgstr "Tag"
 
-#: setup/setup_finish.tpl:18
-msgid "Status: "
-msgstr "Status: "
+#: ihtml/themes/default/pwd_heimdal.tpl:40
+msgid "Month"
+msgstr "Monat"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
-msgid "LDAP schema check"
-msgstr "LDAP Schemaprüfung"
+#: ihtml/themes/default/pwd_heimdal.tpl:42
+msgid "Year"
+msgstr "Jahr"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
-msgstr "Führe Test auf Ihrem aktuellen LDAP Schema durch"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
+msgstr "Gültigkeitsbeginn des Tickets"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "nein"
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr "Gültigkeitsende des Tickets"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "ja"
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+msgid "Password end"
+msgstr "Ende der Gültigkeit des Passworts"
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
-msgstr "Abonnieren der GOsa-Announce Mailingliste"
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "Speichern"
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
-"Wenn Sie diese Option auswählen wird GOsa eine Verbindung zu http://oss."
-"gonicus.de versuchen, um die GOsa-Announce Mailingliste für Sie zu "
-"abonnieren. Sie müssen dem Abonnement danach noch per Mail zustimmen."
-
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Organisation"
-
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Name"
+"Dieser Eintrag wird unter Umständen von verschiedenen Gruppen genutzt. Bitte "
+"überprüfen Sie genau was Sie tun, da GOsa keine Möglichkeit hat, die Daten "
+"wiederherzustellen."
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "Mail-Adresse"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+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."
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
-msgstr "Sende Feedback an das GOsa Projektteam."
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Ein Zugriffskonflikt wurde festgestellt"
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
-"Bei Auswahl dieser Option wird GOsa versuchen, sich zu http://oss.gonicus.de "
-"zu verbinden, um Ihr Formular anonym abzusenden."
+"Wenn diese Anzeige eines Zugriffskonflikts fehlerhaft ist, hat eine andere "
+"Person offenbar während der Bearbeitung eines Eintrages einfach den "
+"Webbrowser geschlossen. In einem solchen Fall können Sie den Konflikt durch "
+"einen Klick auf Trotzdem bearbeiten übergehen."
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Allgemein"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Filter"
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr "Hat Ihnen die Setup-Prozedur weitergeholfen?"
+#: ihtml/themes/default/password.tpl:6
+msgid "Change your password"
+msgstr "Ihr Passwort ändern"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
-msgstr "Falls nicht, welche Probleme sind Ihnen aufgefallen"
+#: ihtml/themes/default/password.tpl:34
+msgid "Success"
+msgstr "Erfolg"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr "Ist dies die erstmalige Verwendung von GOsa?"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
+msgstr "Ihr Passwort wurde erfolgreich geändert."
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr "Ich verwende es seit"
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "Password change"
+msgstr "Passwort-Änderung"
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
-msgstr "Wählen Sie das Jahr aus, seit dem Sie GOsa verwenden"
+#: ihtml/themes/default/password.tpl:52
+msgid ""
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
+msgstr ""
+"Dieser Dialog ermöglicht Ihnen auf einfache Weise, Ihr Passwort zu ändern. "
+"Geben Sie das aktuelle Passwort und zweimal das neue Passwort in den Feldern "
+"unterhalb ein und drücken Sie den 'Ändern'-Knopf."
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
-msgstr "Welches Betriebssystem / welche Distribution verwenden Sie?"
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Momentanes Passwort"
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
-msgstr "Welchen Webserver verwenden Sie?"
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Neues Passwort"
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
-msgstr "Welche PHP-Version verwenden Sie?"
+#: ihtml/themes/default/password.tpl:85
+msgid "again"
+msgstr "nochmals"
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
-msgstr "LDAP"
+#: ihtml/themes/default/password.tpl:86
+msgid "New password repeated"
+msgstr "Neues Passwort (Wiederholung)"
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
-msgstr "Welche(n) LDAP-Server verwenden Sie?"
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+msgid "Password strength"
+msgstr "Passwort-Stärke"
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr "Wie viele Objekte befinden sich in Ihrem LDAP-Verzeichnis?"
+#: ihtml/themes/default/password.tpl:100
+msgid "Change"
+msgstr "Ändern"
 
-#: setup/setup_feedback.tpl:123
-msgid "Features"
-msgstr "Fähigkeiten"
+#: ihtml/themes/default/password.tpl:101
+msgid "Click here to change your password"
+msgstr "Hier klicken, um Ihr Passwort zu ändern"
 
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr "Welche Funktionen von GOsa verwenden Sie?"
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
+msgstr "Kopieren & Einfügen - Assistent"
 
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
-"Welche Funktionen würden Sie gerne in zukünftigen Versionen von GOsa sehen?"
-
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr "Feedback senden"
+"Bestimmte Werte müssen im gesamten Verzeichnis eindeutig sein, während "
+"andere Kombinationen keinen Sinn ergeben. GOsa zeigt die relevanten "
+"Attribute. Bitte verwalten Sie die Werte, die unten angezeigt werden, um die "
+"Auflagen zu erfüllen."
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-msgid "GOsa settings 3/3"
-msgstr "GOsa-Einstellungen 3/3"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+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!"
 
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr "Einstellen von grundlegendem GOsa Verhalten"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
+msgstr ""
+"Oder wenn sie einen Eintrag in GOsa kopieren oder ausschneiden und das "
+"Quellobjekt entfernen, werden Sie wahrscheinlich wieder eine Fehlermeldung "
+"erhalten, wenn Sie das Objekt einfügen!"
 
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
-msgstr "Lebenszeit der Sitzung muss ein numerischer Wert sein."
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+msgid "Cancel all"
+msgstr "Alle abbrechen"
 
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "Die maximale LDAP-Abfragedauer muß ein numerischer Wert sein. "
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
+msgstr "Vorgang abgeschlossen"
 
-#: setup/class_setupStep_Feedback.inc:91
-msgid "UNIX accounts/groups"
-msgstr "UNIX Konten/Gruppen"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Speichern"
 
-#: setup/class_setupStep_Feedback.inc:93
-msgid "Samba management"
-msgstr "Samba-Verwaltung"
+#: ihtml/themes/default/sizelimit.tpl:3
+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."
 
-#: setup/class_setupStep_Feedback.inc:95
-msgid "Mailsystem management"
-msgstr "Mailsystem-Verwaltung"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
+msgstr "Bitte entscheiden Sie, wie für diese Sitzung verfahren werden soll"
 
-#: setup/class_setupStep_Feedback.inc:97
-msgid "FAX system administration"
-msgstr "Faxsystem-Verwaltung"
+#: ihtml/themes/default/sizelimit.tpl:9
+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/class_setupStep_Feedback.inc:99
-msgid "Asterisk administration"
-msgstr "Asterisk-Verwaltung"
+#: ihtml/themes/default/sizelimit.tpl:10
+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/class_setupStep_Feedback.inc:101
-msgid "System inventory"
-msgstr "System-Inventar"
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
+msgstr "Setzen"
 
-#: setup/class_setupStep_Feedback.inc:103
-msgid "System-/Configmanagement"
-msgstr "System-/Konfigurationsverwaltung"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
+msgstr "GOsa Hilfe-Browser"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Adressbuch"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
+msgstr "Index"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-msgid "Notification and feedback"
-msgstr "Benachrichtigung und Rückmeldung"
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Suchen"
 
-#: setup/class_setupStep_Feedback.inc:112
-msgid "Get notifications or send feedback"
-msgstr "Erhalte Benachrichtungen oder sende Rückmeldung"
+#: plugins/generic/welcome/welcome.tpl:4
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
+msgstr ""
+"Dies ist das GOsa Hauptmenü. Wählen Sie die gewünschte Option aus dem Menü "
+"links oder durch die Auswahl eines Piktogrammes unten. Alle Änderungen "
+"werden direkt in den LDAP-Server Ihres Unternehmens eingepflegt."
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-msgid "Setup error"
-msgstr "Einrichtungsfehler"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
+msgstr ""
+"Benutzen Sie 'Abmelden' oben links, um die Arbeit mit GOsa zu beenden und "
+"'Hauptmenü', um wieder in diese Ansicht zurückzugelangen."
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr "Fehler beim Rückmelden"
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "Das GOsa Team"
 
-#: setup/class_setupStep_Feedback.inc:140
+#: plugins/generic/welcome/main.inc:26
 #, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr "Kann Rückmeldung nicht an '%s' senden: %s"
+msgid "Welcome %s!"
+msgstr "Willkommen %s!"
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
-"Kann Rückmeldung nicht senden: Der Dienst ist vorübergehend nicht verfügbar"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Allgemein"
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr "Feedback erfolgreich gesendet"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "UNIX"
 
-#: setup/class_setupStep_Feedback.inc:179
-msgid "Please specify a valid email address."
-msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Mail"
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
-msgstr ""
-"Sie müssen mindestens eine der beiden Optionen auswählen, Abonnement der "
-"Mailingliste oder Senden einer Rückmeldung."
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Samba-Einstellungen"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "Fax"
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
-msgstr "Samba Hash-Generator"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-msgid "Samba SID"
-msgstr "Samba SID"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/setup_config2.tpl:31
-msgid "RID base"
-msgstr "RID Basis"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Gruppe"
 
-#: setup/setup_config2.tpl:46
-msgid "Workstation container"
-msgstr "Container für Arbeitsstationen"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Abteilung"
 
-#: setup/setup_config2.tpl:61
-msgid "Samba SID mapping"
-msgstr "Samba SID Abbildung"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Telefon"
 
-#: setup/setup_config2.tpl:71
-msgid "Timezone"
-msgstr "Zeitzone"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Anwendung"
 
-#: setup/setup_config2.tpl:74
-msgid "Please choose your preferred timezone here"
-msgstr "Bitte wählen Sie hier Ihre bevorzugte Zeitzone"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Server"
 
-#: setup/setup_config2.tpl:96
-msgid "Additional GOsa settings"
-msgstr "Zusätzliche GOsa-Einstellungen"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "Thin Client"
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
-msgstr "Ermögliche Kopieren & Einfügen"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "Arbeitsstation"
 
-#: setup/setup_config2.tpl:112
-msgid "Enable DNS extension"
-msgstr "Aktiviere DNS-Erweiterung"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Objektgruppe"
 
-#: setup/setup_config2.tpl:124
-msgid "Enable DHCP extension"
-msgstr "Aktiviere DHCP-Erweiterung"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Drucker"
 
-#: setup/setup_config2.tpl:136
-msgid "Enable mime type management"
-msgstr "Aktiviere MIME-Typen Verwaltung"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Objektname"
 
-#: setup/setup_config2.tpl:148
-msgid "Enable FAI release management"
-msgstr "Aktiviere FAI Release-Verwaltung"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Beschreibung"
 
-#: setup/setup_config2.tpl:160
-msgid "Enable user netatalk plugin"
-msgstr "Aktiviere Netatalk-Erweiterung für Benutzer"
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "Inhalt"
 
-#: setup/setup_config2.tpl:171
-msgid "Government mode"
-msgstr "Behörden-Modus"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten."
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "Mail-Einstellungen"
+#: plugins/personal/password/class_password.inc:27
+#, fuzzy
+msgid "Change user passwords"
+msgstr "Ihr Passwort ändern"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "Zustellungs-Methode"
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+msgid "User password"
+msgstr "Benutzerpasswort"
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "deaktiviert"
+#: plugins/personal/password/class_password.inc:80
+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."
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr "Attribut für Kontoidentifikation"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr ""
+"Die Passwörter, die Sie als 'Neues Passwort' und 'Neues Passwort "
+"(Wiederholung)' eingegeben haben sind nicht identisch."
 
-#: setup/setup_config2.tpl:214
-msgid "Vacation templates"
-msgstr "Urlaubsvorlagen"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr ""
+"Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben ist leer."
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr "Verwenden Cyrus UNIX-Stil"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr "Das alte und neue Passwort sind sich zu ähnlich."
 
-#: setup/setup_config2.tpl:240
-msgid "Snapshots / Undo"
-msgstr "Snapshots / Rückgängig"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr ""
+"Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben, ist zu kurz."
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-msgid "Enable snapshots"
-msgstr "Snapshots ermöglichen"
+#: plugins/personal/password/class_password.inc:95
+#, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet: %s."
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-msgid "Snapshot base"
-msgstr "Basis für Snapshots"
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr ""
+"Das Passwort, welches Sie als aktuelles Passwort eingegeben haben, ist nicht "
+"korrekt."
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Server"
+#: plugins/personal/password/class_password.inc:115
+msgid "You have no permission to change your password."
+msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern."
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Benutzer"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Mein Konto"
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Passwort"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
+msgstr "Passwort-Änderung ist nicht erlaubt"
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-msgid "LDAP inspection"
-msgstr "LDAP-Inspektion"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr "Sie haben keine Berechtigung, ihr Passwort zu ändern"
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr "Untersuche Ihr LDAP-Verzeichnis auf GOsa-Kompatibilität"
+#: plugins/personal/password/changed.tpl:3
+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/class_setupStep_Migrate.inc:113
-msgid "Checking for root object"
-msgstr "Prüfe auf Wurzelobjekt"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Zurück"
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank"
-
-#: setup/class_setupStep_Migrate.inc:125
-msgid "Checking for invisible departments"
-msgstr "Prüfe auf unsichtbare Abteilungen"
-
-#: setup/class_setupStep_Migrate.inc:131
-msgid "Checking for invisible users"
-msgstr "Prüfe auf unsichtbare Benutzer"
-
-#: setup/class_setupStep_Migrate.inc:137
-msgid "Checking for super administrator"
-msgstr "Prüfe auf Superadministrator"
-
-#: setup/class_setupStep_Migrate.inc:143
-msgid "Checking for users outside the people tree"
-msgstr "Prüfe auf Benutzer ausserhalb des Benutzerbaums"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
+msgstr ""
+"Um das Passwort zu ändern, benutzen Sie das untere Feld. Die Änderung wird "
+"sofort wirksam. Bitte merken Sie sich das neue Passwort, da Sie sich ohne "
+"dieses nicht mehr anmelden können."
 
-#: setup/class_setupStep_Migrate.inc:149
-msgid "Checking for groups outside the groups tree"
-msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
+msgstr ""
+"Das Ändern des Passwortes wirkt sich auf ihre Authentifizierung bei Mail-, "
+"Proxy-, Samba- und Unix-Diensten aus."
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
-msgstr "Prüfe auf Windows-Arbeitsstationen ausserhalb des Winstation-Baums"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Neues Passwort (Wiederholung)"
 
-#: setup/class_setupStep_Migrate.inc:161
-msgid "Checking for duplicate uid numbers"
-msgstr "Prüfe auf doppelte UID Nummern"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Passwort setzen"
 
-#: setup/class_setupStep_Migrate.inc:167
-msgid "Checking for duplicate gid numbers"
-msgstr "Prüfe auf doppelte GID Nummern"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Felder löschen"
 
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-msgid "LDAP query failed"
-msgstr "LDAP-Abfrage fehlgeschlagen."
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
+msgid "Password settings"
+msgstr "Passwort-Einstellungen"
 
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr "Wahrscheinlich fehlt das Wurzelobjekt."
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Zertifikate"
 
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Warnung"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Standard-Zertifikat"
 
-#: setup/class_setupStep_Migrate.inc:213
-#, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Es wurden %s doppelte Werte für das Attribute 'uidNumber' gefunden."
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Entfernen"
 
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "S/MIME-Zertifikat"
 
-#: setup/class_setupStep_Migrate.inc:262
-#, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Es wurden %s doppelte Werte für das Attribute 'gidNumber' gefunden."
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "PKCS12-Zertifikat"
 
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Fehlgeschlagen"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Zertifikat-Seriennummer"
 
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-"Es wurden %s Windows-Arbeitsstationen ausserhalb der für diese Abteilung "
-"vordefinierten Winstation Organisationseinheit '%s' gefunden."
+#: plugins/personal/generic/class_user.inc:38
+#, fuzzy
+msgid "Edit organizational user settings"
+msgstr "Zusätzliche GOsa-Einstellungen"
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-msgid "Migrate"
-msgstr "Migrieren"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "weiblich"
 
-#: setup/class_setupStep_Migrate.inc:387
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr ""
-"Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden."
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "männlich"
 
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-msgid "Move"
-msgstr "Verschieben"
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
+msgstr "Kann Datei nicht hochladen!"
 
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
-"Es wurde(n) %s Benutzer ausserhalb des konfigurierten Baums '%s' gefunden."
+#: plugins/personal/generic/class_user.inc:496
+#, fuzzy
+msgid "Serial number"
+msgstr "Pagernummer"
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
+#: plugins/personal/generic/class_user.inc:541
 msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-"Der angegebene Benutzer '%s' hat keinen Vollzugriff auf Ihre LDAP-Datenbank."
-
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr ""
-"Es wurde(n) %s Benutzer gefunden, die in GOsa nicht sichtbar sein werden."
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-msgid "Migration error"
-msgstr "Migrationsfehler"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Die Abteilung '%s' kann nicht migriert werden:"
-
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
 msgstr ""
-"Es wurde(n) %s Abteilung(en) gefunden, die nicht in GOsa sichtbar sein "
-"werden."
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr "Es gibt keinen GOsa Administrator in Ihrem LDAP."
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Anlegen"
+"(Manche Zertifikate werden momentan nicht unterstützt und werden daher als "
+"'ungültig' angezeigt)."
 
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr "Kann ACL für Benutzer '%s' nicht hinzufügen:"
-
-#: setup/class_setupStep_Migrate.inc:970
-msgid "Password error"
-msgstr "Passwortfehler"
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "Zertifkat ist gültig im Zeitraum von %s bis %s (momentan: %s)."
 
-#: setup/class_setupStep_Migrate.inc:970
-msgid "Provided passwords do not match!"
-msgstr "Die angegebenen Passwörter stimmen nicht überein!"
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "gültig"
 
-#: setup/class_setupStep_Migrate.inc:975
-msgid "Input error"
-msgstr "Eingabefehler"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "ungültig"
 
-#: setup/class_setupStep_Migrate.inc:975
-msgid "Specify a valid user ID!"
-msgstr "Geben Sie eine gültige Benutzer ID an!"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "Kein Zertifikat eingerichtet"
 
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr "Fehler"
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
+msgid "Password method"
+msgstr "Passwort-Methode"
 
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
-"Hinzufügen eines administrativen Benutzers fehlgeschlagen: Objekt '%s' "
-"existiert bereits!"
+#: plugins/personal/generic/class_user.inc:586
+msgid "The selected password method is no longer available."
+msgstr "Die gewählte Passwort-Methode ist nicht mehr verfügbar."
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1086,5421 +1080,5486 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 msgid "LDAP error"
 msgstr "LDAP-Fehler"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "Cannot move users to the requested department!"
-msgstr "Kann Benutzer nicht in die geforderte Abteilung verschieben!"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr "Die Windows-Arbeitsstation wird verschoben von"
-
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-msgid "to"
-msgstr "an"
-
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr "Aktualisiere ebenfalls die folgenden Referenzen"
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Kennung"
 
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr "Die Gruppe wird verschoben von"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Name"
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr "Der Benutzer wird verschoben von"
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Vorname"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr "Die folgenden Referenzen werden aktualisiert"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Homepage"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
-"Das LDAP Wurzelobjekt fehlt. Es wird für den Betrieb des LDAP-Dienstes "
-"benötigt."
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-msgid "Try to create root object"
-msgstr "Versuche, das Wurzelobjekt zu erzeugen"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "Mobiltelefon"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
-"Das Wurzelobjekt konnte nicht erstellt werden, Sie sollten dies manuell "
-"erledigen."
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Pager"
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Kopieren von '%s' nach '%s' fehlgeschlagen:"
+#: plugins/personal/generic/class_user.inc:1296
+msgid "Cannot open certificate!"
+msgstr "Kann Zertifikat nicht öffnen!"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr "Ich habe die Lizenz gelesen und akzeptiere diese"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Referat"
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-msgid "License"
-msgstr "Lizenz"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Hausbezeichnung"
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr "Bedingungen und Auflagen für den Gebrauch"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Anrede"
 
-#: setup/class_setupStep_Welcome.inc:38
-msgid "Welcome"
-msgstr "Willkommen"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "letzte Übermittlung"
 
-#: setup/class_setupStep_Welcome.inc:39
-msgid "The welcome message"
-msgstr "Die Willkommensnachricht"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Dienstort"
 
-#: setup/class_setupStep_Welcome.inc:40
-msgid "Welcome to GOsa setup wizard"
-msgstr "Willkommen beim GOsa Einrichtungsassistent"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Aufgabengebiet"
 
-#: setup/setup_config3.tpl:2
-msgid "GOsa core settings"
-msgstr "GOsa-Grundeinstellungen"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Sachgebiet"
 
-#: setup/setup_config3.tpl:6
-msgid "Disable primary group filter"
-msgstr "Abschalten des Filters für primäre Gruppen"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Amts-/Dienstbezeichnung"
 
-#: setup/setup_config3.tpl:18
-msgid "Display summary in listings"
-msgstr "Zeige Zusammenfassung in Listen"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Öffentlich sichtbar"
 
-#: setup/setup_config3.tpl:30
-msgid "Honour administrative units"
-msgstr "Beachte administrative Einheiten"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Straße"
 
-#: setup/setup_config3.tpl:42
-msgid "Smarty compile directory"
-msgstr "Smarty Arbeitsverzeichnis"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Rolle"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr "SNMP Gemeinschaft"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Postleitzahl"
 
-#: setup/setup_config3.tpl:60
-msgid "Path for PPD storage"
-msgstr "Pfad für PPD-Ablage"
+#: plugins/personal/generic/class_user.inc:1443
+msgid "Generic user settings"
+msgstr "Allgemeine Benutzereinstellungen"
 
-#: setup/setup_config3.tpl:77
-msgid "Path for kiosk profile storage"
-msgstr "Pfad für Kioskprofil-Ablage"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Benutzer"
 
-#: setup/setup_config3.tpl:96
-msgid "Enable system deployment"
-msgstr "Aktiviere Systemverteilung"
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Basis"
 
-#: setup/setup_config3.tpl:115
-msgid "Mail queue script"
-msgstr "Mail-Queue Skript"
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Nachname"
 
-#: setup/setup_config3.tpl:134
-msgid "Notification script"
-msgstr "Benachrichtigungsskript"
+#: plugins/personal/generic/class_user.inc:1456
+msgid "User identification"
+msgstr "Benutzerkennung"
 
-#: setup/setup_config3.tpl:153
-msgid "Enable edit locking"
-msgstr "Aktiviere Bearbeitungssperre"
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Titel"
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr "Anmeldung und Sitzung"
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Akademischer Titel"
 
-#: setup/setup_config3.tpl:175
-msgid "Login attribute"
-msgstr "Anmeldeattribut"
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "Private Adresse"
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr "Erzwinge das Deaktivieren von register_globals"
+#: plugins/personal/generic/class_user.inc:1460
+msgid "Home phone number"
+msgstr "Telefonnummer (privat)"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr "Erzwinge verschlüsselte Verbindungen"
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Organisation"
 
-#: setup/setup_config3.tpl:210
-msgid "Warn if session is not encrypted"
-msgstr "Warnen wenn die Sitzung nicht verschlüsselt ist"
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Geburtsdatum"
 
-#: setup/setup_config3.tpl:222
-msgid "Remember dialog filter settings"
-msgstr "Merken der Dialogfilter-Einstellungen"
+#: plugins/personal/generic/class_user.inc:1465
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: setup/setup_config3.tpl:234
-msgid "Session lifetime"
-msgstr "Lebenszeit der Sitzung"
+#: plugins/personal/generic/class_user.inc:1466
+msgid "Preferred language"
+msgstr "Bevorzugte Sprache"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr "Debugging"
+#: plugins/personal/generic/class_user.inc:1467
+msgid "Department number"
+msgstr "Abteilungsnummer"
 
-#: setup/setup_config3.tpl:247
-msgid "Show PHP errors"
-msgstr "Zeige PHP Fehler"
+#: plugins/personal/generic/class_user.inc:1468
+msgid "Employee number"
+msgstr "Personalnummer"
 
-#: setup/setup_config3.tpl:259
-msgid "Maximum LDAP query time"
-msgstr "Maximale LDAP Abfragedauer"
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Anstellungsart"
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr "Protokolliere LDAP-Statistiken"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Ort"
 
-#: setup/setup_config3.tpl:289
-msgid "Debug level"
-msgstr "Debug Level"
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Land"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "Benutzerbild"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-msgid "Enabled"
-msgstr "Aktiviert"
+#: plugins/personal/generic/class_user.inc:1473
+msgid "Room number"
+msgstr "Raumnummer"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr "Bitte wählen Sie den LDAP-Benutzer, der von GOsa verwendet werden soll"
+#: plugins/personal/generic/class_user.inc:1474
+msgid "Telefon number"
+msgstr "Telefonnummer"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Suchen"
+#: plugins/personal/generic/class_user.inc:1475
+msgid "Mobile number"
+msgstr "Mobiltelefon"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Anwenden"
+#: plugins/personal/generic/class_user.inc:1476
+msgid "Pager number"
+msgstr "Pagernummer"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Abbrechen"
+#: plugins/personal/generic/class_user.inc:1477
+msgid "User certificates"
+msgstr "Benutzer-Zertifikate"
 
-#: setup/setup_ldap.tpl:25
-msgid "LDAP connection"
-msgstr "LDAP-Verbindung"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "Adresse"
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Name des Standortes:"
+#: plugins/personal/generic/class_user.inc:1480
+msgid "Fax number"
+msgstr "Faxnummer"
 
-#: setup/setup_ldap.tpl:37
-msgid "Connection URL"
-msgstr "Verbindungs-URL"
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Persönliche Informationen"
 
-#: setup/setup_ldap.tpl:45
-msgid "TLS connection"
-msgstr "TLS-Verbindung"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Bild"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Basis"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "Bevorzugte Sprache"
 
-#: setup/setup_ldap.tpl:65
-msgid "Reload"
-msgstr "Neu laden"
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Wählen Sie den Teilbaum, in den der Benutzer eingepflegt werden soll"
 
-#: setup/setup_ldap.tpl:69
-msgid "Authentication"
-msgstr "Authentisierung"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
+msgstr "Wählen Sie eine Basis"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "Administrator-DN:"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Adresse"
 
-#: setup/setup_ldap.tpl:78
-msgid "Select user"
-msgstr "Benutzer wählen"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Privat-Telefon"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr "Automatisch die LDAP-Basis an die Admin DN anhängen"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Passwort-Speicherung"
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Administrator-Passwort:"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Zertifikate bearbeiten"
 
-#: setup/setup_ldap.tpl:101
-msgid "Schema based settings"
-msgstr "Schema-basierte Einstellungen"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Angabe zur Organisationseinheit"
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr "Verwende rfc2307bis-konforme Gruppen"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "Abteilungs-Nr."
 
-#: setup/setup_ldap.tpl:117
-msgid "Current status"
-msgstr "Momentaner Status"
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "Angestellten-Nr."
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "Information"
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "Zimmer-Nr."
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
-"Während der LDAP-Inspektion wird auf verschiedene, gängige Stolpersteine "
-"geprüft, die auftreten können, wenn auf eine GOsa-basierte LDAP-"
-"Administration migriert wird. Sie sollten die unten genannten Probleme "
-"beseitigen, um einen problemlosen Betrieb der Dienste zu ermöglichen."
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
+msgstr "Benutzer-Einstellungen"
 
-#: setup/setup_migrate.tpl:33
-msgid "Check again"
-msgstr "Erneut prüfen"
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
+msgstr "Nachname"
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
-"Verschiebe Windows-Arbeitsstationen in eine gültige Windows-Workstation "
-"Abteilung"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
+msgstr "Vorname"
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
-"Dieser Dialog ermöglicht es Ihnen, die angezeigten Windows-Arbeitsstationen "
-"in eine gültige Abteilung zu verschieben"
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
+msgstr "Passwort löschen"
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
-"Seien Sie vorsichtig mit diesem Werkzeug, es könnte Referenzen geben, die "
-"auf diese Arbeitsstationen zeigen, die nicht migriert werden können."
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
+msgstr "Neues Passwort setzen"
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-msgid "Select all"
-msgstr "Alle auswählen"
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Bild entfernen"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
+#: plugins/personal/generic/password.tpl:2
+msgid ""
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
-"Verschiebe die ausgewählten Windows-Arbeitsstationen in die folgende GOsa-"
-"Abteilung"
+"Sie haben die Verschlüsselungsart, mit der Ihr Passwort in der LDAP-"
+"Datenbank gespeichert wird, geändert. Aus diesem Grund müssen Sie das "
+"Passwort an dieser Stelle noch einmal eingeben, damit es von GOsa in der "
+"gewünschten Verschlüsselung abgelegt werden kann."
 
-#: setup/setup_migrate.tpl:72
-msgid "Move selected workstations"
-msgstr "Die gewählten Arbeitsstationen verschieben"
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Bild ändern"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr "Was wird hier durchgeführt"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
+msgstr "Mehrfach bearbeiten"
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr "Schliessen"
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
+msgstr "Name der Vorlage"
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr "Verschiebe Gruppen in den konfigurierten Gruppenbaum"
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Geschlecht"
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-"Dieser Dialog ermöglicht Ihnen das Verschieben einer Zahl von Gruppen in den "
-"konfigurierten Gruppenbaum. Dies kann Ihren LDAP-Dienst aufräumen."
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Konfigurieren"
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
-"Seien Sie vorsichtig mt dieser Option! Es könnte Referenzen geben, die auf "
-"diese Gruppen verweisen. Die GOsa-Einrichtung kann Referenzen nicht "
-"migrieren, Sie sollten die Migration an dieser Stelle abbrechen."
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Verwenden sie den Telefon-Reiter"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr "Verschiebe die ausgewählten Gruppen in diesen Gruppenbaum"
+#: plugins/personal/generic/main.inc:104
+msgid "You have no permission to set your password!"
+msgstr "Sie haben keine Berechtigung ihr Passwort zu speichern!"
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-msgid "Hide changes"
-msgstr "Verstecke Änderungen"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Generische Benutzer-Information"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-msgid "Show changes"
-msgstr "Zeige Änderungen"
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Wählen Sie die hinzuzufügenden Gruppen"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr "Verschiebe Benutzer in den konfigurierten Benutzerbaum"
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Zeige Gruppen der Abteilung"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-"Dieser Dialol ermöglicht Ihnen das Verschieben einer Zahl von Nutzern in den "
-"konfigurierten Benutzerbaum. Dies kann Ihren LDAP-Dienst aufräumen."
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Wählen Sie die Abteilung, auf die die Suchfunktion angewandt wird"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
-"Seien Sie vorsichtig mt dieser Option! Es könnte Referenzen geben, die auf "
-"diese Benutzer verweisen. Die GOsa-Einrichtung kann Referenzen nicht "
-"migrieren, Sie sollten die Migration an dieser Stelle abbrechen."
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Zeige Gruppen, auf die zutrifft"
 
-#: setup/setup_migrate.tpl:148
-msgid "Move selected users into this people tree"
-msgstr "Verschiebe die ausgewählten Benutzer in diesen Benutzerbaum"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Regulärer Ausdruck zum Erkennen von Gruppennamen"
 
-#: setup/setup_migrate.tpl:198
-msgid "Next"
-msgstr "Vor"
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Zeige Gruppen des Benutzers"
 
-#: setup/setup_migrate.tpl:199
-msgid "Abort"
-msgstr "Abbrechen"
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Benutzername, dessen Gruppen angezeigt werden"
 
-#: setup/setup_migrate.tpl:201
-msgid "Create a new GOsa administrator account"
-msgstr "Erzeuge ein neues GOsa Administratorkonto"
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Search in subtrees"
+msgstr "Suche in Teilbäumen"
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
-"Dieser Dialog wird automatisch einen neuen Superadministrator in Ihren LDAP-"
-"Baum einfügen."
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "Benutzer-ID"
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "abgelaufen"
 
-#: setup/setup_migrate.tpl:233
-msgid "Password (again)"
-msgstr "Passwort (erneut)"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "Nachfrist aktiv"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
-msgstr ""
-"Die angezeigten Abteilungen sind momentan in GOsa unsichtbar. Wenn Sie dies "
-"für eine Zahl von Einträgen ändern möchten, wählen Sie sie einfach aus und "
-"verwenden den 'Migrieren'-Knopf unterhalb."
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "aktiv, Passwort kann nicht geändert werden"
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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."
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "aktiv, Passwort abgelaufen"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-msgid "Current"
-msgstr "Aktuell"
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "aktiv"
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-msgid "After migration"
-msgstr "Nach der Migration"
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "unkonfiguriert"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automatisch"
+
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
-"Die folgenden Benutzer sind momentan in GOsa unsichtbar. Wenn Sie dies für "
-"eine Zahl von Benutzern ändern möchten, wählen Sie sie einfach aus und "
-"drücken Sie den 'Migrieren'-Knopf unterhalb."
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr "PHP Modul- und Erweiterungsprüfung"
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Umgebung"
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
 msgstr ""
-"GOsa kann nicht ausgeführt werden, wenn das Problem nicht behoben wird."
+"Passwort kann bis zu %s Tage nach der letzten Änderung nicht geändert werden"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr "GOsa wird verwendbar sein, ohne dies zu beheben."
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "Der Benutzer muß sein Passwort nach %s Tagen ändern"
 
-#: setup/setup_checks.tpl:67
-msgid "PHP setup configuration"
-msgstr "Konfiguration der PHP-Umgebung"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr "Konto nach %s Tagen nach Ablauf ohne Aktivität deaktivieren"
 
-#: setup/setup_checks.tpl:67
-msgid "show information"
-msgstr "zeige Information"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Benutzer %s Tage vor dem Ablauf des Passwortes warnen"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Speichern"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "deaktiviert"
 
-#: setup/class_setupStep_Finish.inc:38
-msgid "Write configuration file"
-msgstr "Schreibe Konfigurationsdatei"
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "Vollzugriff"
 
-#: setup/class_setupStep_Finish.inc:39
-msgid "Finish - write the configuration file"
-msgstr "Abschluß - Schreiben der Konfigurationsdatei"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "erlaube Zugriff auf diese Hosts"
 
-#: setup/class_setupStep_Finish.inc:100
-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/posix/class_posixAccount.inc:820
+#, fuzzy
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr "Wartezeit für Sperre abgelaufen! Ignoriere Sperre."
 
-#: setup/class_setupStep_Finish.inc:102
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht."
+#: plugins/personal/posix/class_posixAccount.inc:914
+msgid "Uid number"
+msgstr "Uid Nummer"
 
-#: setup/class_setupStep_Finish.inc:111
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:914
 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. You may want to execute these commands to achieve this "
-"requirement:"
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"Nachdem Sie die Konfigurationsdatei unter %s abgelegt haben, muß "
-"sichergestellt werden, daß der Webserver auf %s zugreifen kann, während "
-"normale Nutzer dies nicht dürfen. Führen Sie diese Kommandos aus, um die "
-"obigen Voraussetzungen zu erfüllen:"
-
-#: setup/class_setupStep_Ldap.inc:53
-msgid "LDAP setup"
-msgstr "LDAP-Einrichtung"
+"Für diesen Benutzer wurde eine bereits vorhandene uid-Nummer geschrieben. "
+"Wenn dies unbeabsichtigt geschah, prüfen Sie bitte alle verwendeten uid-"
+"Nummern."
 
-#: setup/class_setupStep_Ldap.inc:54
-msgid "LDAP connection setup"
-msgstr "Einrichten der LDAP-Verbindung"
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Gruppe des Benutzers"
 
-#: setup/class_setupStep_Ldap.inc:55
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
-msgstr ""
-"Dieser Dialog richtet die grundlegende Konfiguration der LDAP-Verbindung für "
-"GOsa ein."
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Basisverzeichnis"
 
-#: setup/class_setupStep_Ldap.inc:105
-#, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "Verbindung als anonymer Benutzer zu Server '%s' schlug fehl."
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/class_setupStep_Ldap.inc:107
-#, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Verbindung als Benutzer '%s' zu Server '%s' schlug fehl."
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich."
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
+#, fuzzy
+msgid "shadowMin"
+msgstr "Shadow min"
 
-#: setup/class_setupStep_Ldap.inc:113
-msgid "Please specify user and password."
-msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein."
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+#, fuzzy
+msgid "shadowMax"
+msgstr "Shadow max"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich."
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
+#, fuzzy
+msgid "shadowWarning"
+msgstr "Shadow warning"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
-msgid "Language setup"
-msgstr "Sprachauswahl"
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
+#, fuzzy
+msgid "shadowInactive"
+msgstr "Shadow inactive"
 
-#: setup/class_setupStep_Language.inc:42
-msgid "This step allows you to select your preferred language."
-msgstr "Dieser Schritt erlaubt es Ihnen, Ihre bevorzugte Sprache auszuwählen."
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
+msgstr "Konnte keine freie ID allozieren: Zu viele Benutzer!"
 
-#: setup/class_setupStep_Language.inc:47
-msgid "Automatic"
-msgstr "Automatisch"
+#: plugins/personal/posix/class_posixAccount.inc:1496
+msgid "POSIX account"
+msgstr "POSIX-Konto"
 
-#: setup/class_setup.inc:196
-msgid "Completed"
-msgstr "Abgeschlossen"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Zurück"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "Benutzer-ID"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Fortsetzen"
+#: plugins/personal/posix/class_posixAccount.inc:1509
+msgid "Group ID"
+msgstr "Gruppen-ID"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr "Aussehen und Verhalten"
+#: plugins/personal/posix/class_posixAccount.inc:1511
+msgid "Force password change on login"
+msgstr "Erzwinge Änderung des Passwort bei Anmeldung"
 
-#: setup/setup_config1.tpl:6
-msgid "Theme"
-msgstr "Thema"
+#: plugins/personal/posix/class_posixAccount.inc:1512
+msgid "Shadow min"
+msgstr "Shadow min"
 
-#: setup/setup_config1.tpl:15
-msgid "Apache"
-msgstr "Apache"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
+msgstr "Shadow max"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr "Sende komprimierte Ausgabe an den Browser"
+#: plugins/personal/posix/class_posixAccount.inc:1514
+msgid "Shadow warning"
+msgstr "Shadow warning"
 
-#: setup/setup_config1.tpl:27
-msgid "People and group storage"
-msgstr "Ablage für Personen und Gruppen"
+#: plugins/personal/posix/class_posixAccount.inc:1515
+msgid "Shadow inactive"
+msgstr "Shadow inactive"
 
-#: setup/setup_config1.tpl:30
-msgid "People DN attribute"
-msgstr "DN-Attribut für Personen"
+#: plugins/personal/posix/class_posixAccount.inc:1516
+msgid "Shadow expire"
+msgstr "Shadow expire"
 
-#: setup/setup_config1.tpl:41
-msgid "People storage subtree"
-msgstr "Teilbaum für Benutzerablage"
+#: plugins/personal/posix/class_posixAccount.inc:1517
+msgid "System trust model"
+msgstr "Modell des System-Vertrauens"
 
-#: setup/setup_config1.tpl:50
-msgid "Group storage subtree"
-msgstr "Teilbaum für Gruppenablage"
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
+msgstr "UNIX-Einstellungen"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr "Persönlichen Titel in der Benutzer-DN mitführen"
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Erzwinge UID/GID"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr "Gelockerte Namensvorgaben"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Gruppenmitgliedschaft"
 
-#: setup/setup_config1.tpl:81
-msgid "Automatic uids"
-msgstr "Automatische UIDs"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(Warnung: mehr als 16 Gruppen werden von NFS nicht unterstützt!)"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr "GID / UID min id"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Primäre Gruppe"
 
-#: setup/setup_config1.tpl:113
-msgid "Number base for people/groups"
-msgstr "Zählbasis für Benutzer/Gruppen"
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Status"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr "Hook für Zählbasis"
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+msgid "In all groups"
+msgstr "In allen Gruppen"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-msgid "Password settings"
-msgstr "Passwort-Einstellungen"
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+msgid "Not in all groups"
+msgstr "Nicht in allen Gruppen"
 
-#: setup/setup_config1.tpl:140
-msgid "Password encryption algorithm"
-msgstr "Passwort-Verschlüsselungsalgorithmus"
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Konto"
 
-#: setup/setup_config1.tpl:151
-msgid "Password restrictions"
-msgstr "Passwort-Einschränkungen"
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "System-Vertrauen"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr "Minimale Passwortlänge"
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
+msgstr "Vertrauens-Modus"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
-msgstr "Verschiedene Zeichen vom vorherigen Kennwort"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "Der Benutzer muss beim ersten Anmelden sein Passwort ändern"
 
-#: setup/setup_config1.tpl:182
-msgid "Password change hook"
-msgstr "Hook für Passwort-Änderung"
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "Passwort läuft ab am"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr "Verwende SASL für Kerberos."
+#: plugins/personal/posix/main.inc:131
+#, fuzzy
+msgid "POSIX settings"
+msgstr "UNIX-Einstellungen"
 
-#: setup/setup_config1.tpl:209
-msgid "Use account expiration"
-msgstr "Verwende verfallende Konten"
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Wählen Sie die hinzuzufügenden Systeme"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa unterstützt zahlreiche Verschlüsselungsarten für Ihre Passwörter. "
-"Üblicherweise wird die Auswahl über Vorlagen verwaltet, Sie können aber auch "
-"eine Standardmethode festlegen, die benutzt werden soll."
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Zeige die Systeme der Abteilung"
 
-#: setup/setup_config1.tpl:222
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa arbeitet immer als Administrator und verwaltet die Rechte intern "
-"(solange die in OpenLDAP implementierten ACIs nicht vollständig unterstützt "
-"werden, wird dieser Workaround bestehen bleiben). Damit dies möglich ist, "
-"wird an dieser Stelle der DN des LDAP-Administrators und das dazugehörige "
-"Passwort benötigt."
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Zeige die Systeme, auf die das Folgende passt"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"Einige LDAP-Parameter beeinflussen die Art und Weise wie (und wo) GOsa Daten "
-"in der Baumstruktur ablegt. Prüfen Sie die vorgegebenen Werte, ob sie Ihren "
-"Vorgaben entsprechen."
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Regulärer Ausdruck zum Erkennen von Mail-Adressen"
 
-#: setup/setup_config1.tpl:224
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
-msgstr ""
-"GOsa unterstützt verschiedene Zustellungs-Methoden. Diese Methoden stellen "
-"Schnittstellen für Benutzer-Postfächer und die allgemeine Verwaltung von "
-"Kontingenten bereit. Wählen sie 'dummy', um all Ihre Mail-Einstellungen "
-"unberührt zu lassen."
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
+msgstr "Bug-Melder"
 
-#: setup/setup_welcome.tpl:4
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+#, fuzzy
 msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
-"Dies scheint das erste Mal zu sein, dass GOsa gestartet wurde - es wurde "
-"keine Konfiguration gefunden. Dieser einfache Assistent hilft Ihnen bei der "
-"Einrichtung."
+"<a·href='https://oss.gonicus.de/labs/gosa/"
+"newticket'·target='_blank'>Bugsubmitter</a>"
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr "Was wird der Assistent für Sie erledigen?"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Liste der Benutzer"
 
-#: setup/setup_welcome.tpl:11
-msgid "Create a basic, single site configuration"
-msgstr "Erstellen einer einfachen Konfiguration für einen Standort"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Eigenschaften"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr "Versucht, Probleme in Ihrer PHP- und LDAP-Umgebung zu ermitteln"
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Aktionen"
 
-#: setup/setup_welcome.tpl:13
-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/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Wählen Sie dies, um Vorlagen für Benutzer anzuzeigen"
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr "Geführte Migration existierende LDAP-Bäume"
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Zeige Vorlagen"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr "Was wird der Assistent NICHT für Sie erledigen?"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr "Auswählen, um die Benutzer anzuzeigen, die nur ein GOsa-Objekt haben"
 
-#: setup/setup_welcome.tpl:20
-msgid "Find every possible configuration error"
-msgstr "Finde jeden möglichen Konfigurationsfehler"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Zeige zweckbezogene Benutzer"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migriere jede mögliche LDAP-Umgebung - erstellen Sie Sicherungsabzüge!"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Auswählen, um die Benutzer mit UNIX-Konto zu sehen"
 
-#: setup/setup_welcome.tpl:25
-msgid "To continue..."
-msgstr "Wird fortgesetzt..."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Zeige UNIX-Benutzer"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
 msgstr ""
-"Aus Sicherheitsgründen müssen Sie die Installation authorisieren, indem Sie "
-"die Datei '/tmp/gosa.auth' mit der aktuellen Sitzungs-ID im Dateisystem des "
-"Servers erzeugen. Dies wird durch das Ausführen des folgenden Kommandos "
-"erreicht:"
+"Auswählen, um die Benutzer zu sehen, die eine Mail-Erweiterung besitzen"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr "Drücken Sie auf den Knopf 'Fortfahren', wenn Sie fertig sind."
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Zeige Mail-Benutzer"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-msgid "GOsa settings 2/3"
-msgstr "GOsa-Einstellungen 2/3"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Auswählen, um die Benutzer zu sehen, die Samba-Einstellungen besitzen"
 
-#: setup/class_setupStep_Config2.inc:87
-msgid "Customize special parameters"
-msgstr "Anpassen von Spezialparametern"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Zeige Samba-Benutzer"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-msgid "GOsa settings 1/3"
-msgstr "GOsa-Einstellungen 1/3"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Auswählen, um die Benutzer zu sehen, die Proxy-Einstellungen besitzen"
 
-#: setup/class_setupStep_Config1.inc:76
-msgid "GOsa generic settings"
-msgstr "Allgemeine GOsa-Einstellungen"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Zeige Proxy-Benutzer"
 
-#: setup/class_setupStep_Config1.inc:118
-#, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "Der angegebene Wert für '%s' muss numerisch sein."
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr "Fügen Sie kein Komma an das Ende von '%s'."
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Zeige die Benutzer, auf die Folgendes passt"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "Ablage-OU für Benutzer:"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Aktualisieren"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "Ablage-OU für Gruppen:"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "Übertragen"
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
-msgstr "Der Wert für 'UID Base' muss numerisch sein"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Anlegen"
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
-msgstr "Die angegebene minimale Passwortlänge ist nicht numerisch."
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Benutzer"
 
-#: setup/class_setupStep_Config1.inc:137
-msgid "The given password differ value is not numeric."
-msgstr "Die angegebene Passwort-Differenz ist nicht numerisch."
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Vorlage"
 
-#: setup/setup_schema.tpl:3
-msgid "Schema specific settings"
-msgstr "Schemaspezifische Einstellungen"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr "Ermögliche Schema-Validierung bei der Anmeldung"
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "Passwort ändern"
 
-#: setup/setup_schema.tpl:16
-msgid "Check status"
-msgstr "Status prüfen"
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
+msgid "Copy"
+msgstr "Kopieren"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr "Schema-Prüfung erfolgreich"
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
+msgid "Cut"
+msgstr "Ausschneiden"
 
-#: setup/setup_schema.tpl:23
-msgid "Schema check failed"
-msgstr "Schema-Prüfung fehlgeschlagen"
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
+msgstr "Einfügen"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "Allgemeine Einstellungen bearbeiten"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Filter"
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr "GOsa Anmeldefenster"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "UNIX-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "Umgebungs-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "Mail-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "Telefon-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "Fax-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "Samba-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr "Netatalk"
+
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "Netatalk-Einstellungen bearbeiten"
+
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "Neuen Benutzer aus Vorlage erstellen"
+
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "Neuen Benutzer aus dieser Vorlage erstellen"
 
-#: ihtml/themes/default/login.tpl:27
-msgid "Login screen"
-msgstr "Anmeldefenster"
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "Ausschneiden"
 
-#: ihtml/themes/default/login.tpl:34
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr ""
-"Verwenden Sie bitte Ihren Benutzernamen und Ihr Passwort, um sich an der "
-"Verwaltung des Standorts anzumelden."
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "Diesen Eintrag ausschneiden"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Benutzername"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "Kopieren"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Verzeichnis"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "Diesen Eintrag kopieren"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Anmelden"
+#: plugins/admin/users/class_divListUsers.inc:318
+msgid "Deactivated"
+msgstr "Abgeschaltet"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Hier klicken zum Anmelden"
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
+msgstr "Aktiv"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr "GOsa Hilfe-Browser"
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "Bearbeiten"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr "Index"
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "Benutzer bearbeiten"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
-msgid "Heimdal options"
-msgstr "Heimdal-Einstellungen"
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "Passwort"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr "Verwende leere Werte für unendlich"
+#: plugins/admin/users/class_divListUsers.inc:342
+msgid "You are not allowed to change the password for this user."
+msgstr "Sie haben keine Berechtigung, das Passwort dieses Benutzers zu ändern."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr "Maximale Lebenszeit des Tickets"
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "Entfernen"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr "Maximale Anzahl von Verlängerungen des Tickets"
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "Benutzer entfernen"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
-msgstr "unendlich"
+#: plugins/admin/users/class_divListUsers.inc:356
+msgid "You are not allowed to remove this user."
+msgstr "Sie haben keine Berechtigung, diesen Benutzer zu löschen."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-msgid "Hour"
-msgstr "Stunde"
+#: plugins/admin/users/class_divListUsers.inc:442
+msgid "Number of listed users"
+msgstr "Anzahl der angezeigten Benutzer"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
-msgid "Minute"
-msgstr "Minute"
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+msgid "Number of listed departments"
+msgstr "Anzahl der angezeigten Abteilungen"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
-msgid "Day"
-msgstr "Tag"
+#: plugins/admin/users/class_userManagement.inc:27
+#, fuzzy
+msgid "Manage users"
+msgstr "Domänen-Benutzer"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
-msgid "Month"
-msgstr "Monat"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, fuzzy
+msgid "Daemon"
+msgstr "Ab"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-msgid "Year"
-msgstr "Jahr"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
+msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr "Gültigkeitsbeginn des Tickets"
+#: plugins/admin/users/class_userManagement.inc:293
+msgid "Password change failed."
+msgstr "Passwort-Änderung fehlgeschlagen."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr "Gültigkeitsende des Tickets"
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr "Sie haben keine Berechtigung, das Passwort dieses Benutzers zu setzen!"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
-msgid "Password end"
-msgstr "Ende der Gültigkeit des Passworts"
+#: plugins/admin/users/class_userManagement.inc:456
+#, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "Sie löschen gerade den folgenden Eintrag: %s"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
+#: plugins/admin/users/class_userManagement.inc:458
 #, php-format
-msgid "Save"
-msgstr "Speichern"
+msgid "You're about to delete the following entries: %s"
+msgstr "Sie löschen gerade die folgenden Einträge: %s"
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Ein Zugriffskonflikt wurde festgestellt"
+#: plugins/admin/users/class_userManagement.inc:460
+msgid "Delete users"
+msgstr "Benutzer entfernen"
 
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
-"Wenn diese Anzeige eines Zugriffskonflikts fehlerhaft ist, hat eine andere "
-"Person offenbar während der Bearbeitung eines Eintrages einfach den "
-"Webbrowser geschlossen. In einem solchen Fall können Sie den Konflikt durch "
-"einen Klick auf Trotzdem bearbeiten übergehen."
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "User delete"
+msgstr "Benutzer Entfernen"
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr "Ihr Passwort ist abgelaufen, geben Sie bitte ein neues Passwort ein"
+#: plugins/admin/users/class_userManagement.inc:488
+#, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "Sie haben keine Berechtigung, um den Benutzer '%s' zu löschen!"
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
-msgstr "Altes Passwort"
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "Sie löschen gerade den Benutzer %s."
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
-msgstr "Neues Passwort"
+#: plugins/admin/users/class_userManagement.inc:603
+msgid "User deleted"
+msgstr "Benutzer entfernt"
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
-msgstr "Passwort überprüfen"
+#: plugins/admin/users/class_userManagement.inc:603
+msgid "User successfully removed."
+msgstr "Benutzer erfolgreich entfernt."
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
-msgstr "Passwort ändern"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "Sie haben keine Berechtigung, diesen Benutzer zu löschen!"
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
-msgstr "Hier klicken, um Ihr Passwort zu ändern"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "keine"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Ein Sitzungskonflikt wurde festgestellt"
+#: plugins/admin/users/remove.tpl:6
+msgid ""
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
+msgstr ""
+"Dies umfasst alle Konto-Informationen, Zugriffsregeln, IMAP-Einstellungen, "
+"etc. dieses Benutzers. Bitte prüfen Sie genau, da es keine Möglichkeit für "
+"GOsa gibt, die Daten wiederherzustellen. "
 
-#: ihtml/themes/default/conflict.tpl:6
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Erzeugen eines neuen Benutzer aus einer Vorlage"
+
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
-"Vermutlich existiert eine andere aktive Instanz Ihrer Sitzung. Das Arbeiten "
-"mit mehreren Fenstern ist technisch so nicht möglich und hängt stark vom "
-"eingesetzten Browser ab. Die Verwendung unterschiedlicher Browser zur "
-"gleichen Zeit (z.B. IE und Mozilla) ist möglich. Das Drücken von 'Abmelden' "
-"schließt diese Sitzung."
+"Das Anlegen von neuen Benutzern kann durch die Verwendung von Vorlagen "
+"vereinfacht werden. Viele Datenbankeinträge lassen sich damit automatisch "
+"ausfüllen. Wählen sie 'keine' um den Vorlagen-Dialog zu überspringen."
+
+#: plugins/admin/users/password.tpl:4
+msgid ""
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
+msgstr ""
+"Um das Benutzer-Passwort zu ändern, nutzen Sie die Felder unten. Die "
+"Änderungen werden sofort wirksam. Merken Sie sich das Passwort, da sich der "
+"Benutzer ohne dieses Passwort nicht anmelden kann."
+
+#: plugins/admin/users/password.tpl:21
+msgid "Strength"
+msgstr "Stärke"
+
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Benutzerverwaltung"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
-"Falls Sie trotzdem fortfahren, können einige Daten der momentan bearbeiteten "
-"Dialoge verlorengehen. Deshalb schließen Sie bitte die verschiedenen Fenster "
-"und melden sich neu an."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Objektgruppen"
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Abmelden"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
+#, fuzzy
+msgid "Manage object groups"
+msgstr "Name der Objektgruppen"
 
-#: ihtml/themes/default/logout-close.tpl:5
-msgid "Your GOsa session has been closed!"
-msgstr "Ihre GOsa-Sitzung wurde geschlossen!"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "Sie löschen gerade den Objekteintrag %s"
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
-msgstr ""
-"Bitte schliessen Sie dieses Browserfenster und leeren den "
-"Authentisierungscache um eine automatische Wiederanmeldung des Browsers zu "
-"verhindern."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "Sie löschen gerade die Objekteinträge %s"
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
-msgstr "Stelle Objekt-Snapshots wieder her"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+msgid "Permission error"
+msgstr "Berechtigungsfehler"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
-msgstr ""
-"Dieser Vorgang stellt einen Snaphot des gewählten Objekts wieder her. Er "
-"wird dabei das vorhandene überschreiben, nachdem Sie den Wiederherstellen-"
-"Knopf gedrückt haben."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+msgid "You have no permission to delete this entry!"
+msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
-msgstr ""
-"Beachten Sie, dass die DNS-Konfiguration mitsamt den Datenbankeinträgen "
-"nicht wiederhergestellt werden kann.Für manche Objekte reicht es bereits, "
-"sie zu öffnen und zu speichen (GOfon), andere Einträge müssen manuell "
-"erstellt werden (glpi)."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "Sie sind dabei die Objektgruppe '%s' zu löschen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+msgid "Windows Install"
+msgstr "Windows Installation"
+
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "Terminal"
+
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
-"Vergessen Sie nicht, Verweise auf andere Objekte zu überprüfen, bspw. ob der "
-"gewählte Drucker noch existiert."
+"Sie können Terminals und Arbeitsstationen nicht zu einer Objektgruppe "
+"zusammenfassen!"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Objekt"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "Diese 'dn' ist keine Objektgruppenerweiterungen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
-msgstr "Es ist kein Snapshot verfügbar, der wiederhergestellt werden kann"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "zu viele unterschiedliche Objekte!"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
-"Wählen Sie einen Snapshot und klicken Sie auf das Ordner-Bild, um diesen "
-"wiederherzustellen."
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "Benutzer"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-msgid "Creating object snapshots"
-msgstr "Erstelle Objekte-Snapshots"
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "Gruppen"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
-"Dieser Vorgang wird einen Snapshot des gewählten Objekts erzeugen. Er wird "
-"innerhalb eines speziellen Zweiges Ihres Verzeichnisses gespeichert und kann "
-"später wieder hergestellt werden."
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "Anwendungen"
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
-"Beachten Sie, dass Datenbankeinträge, DNS-Konfigurationen und evtl. "
-"erstellte Zonen in den Server-Erweiterungen nicht im Snapshot gespeichert "
-"werden."
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "Abteilungen"
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
-msgid "Timestamp"
-msgstr "Zeitstempel"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "Server"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
-msgstr "Grund für das Erzeugen dieses Snapshots"
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "Arbeitsstationen"
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr "Zugewiesene ACLs für aktuellen Eintrag"
+#: plugins/admin/ogroups/class_ogroup.inc:315
+msgid "winstations"
+msgstr "Windows-Arbeitsstationen"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-msgid "New ACL"
-msgstr "Neue ACL"
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "Terminals"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "ACL type"
-msgstr "ACL-Typ"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "Telefone"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "Select an acl type"
-msgstr "Wählen Sie einen ACL-Typ"
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "Drucker"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr "Verwende Mitglieder von"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "und"
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr "Verfügbare Mitglieder"
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
+msgstr "Unbekannte dn:"
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr "Zeige mögliche Empfänger dieser Nachricht"
+#: plugins/admin/ogroups/class_ogroup.inc:629
+#, fuzzy
+msgid "You can combine two different object types at maximum, only!"
+msgstr ""
+"Sie können maximal zwei verschiedene Objekttypen miteinander kombinieren!"
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "Mitglieder"
+#: plugins/admin/ogroups/class_ogroup.inc:763
+msgid "Object group generic"
+msgstr "Objektgruppe (Allgemein)"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr "Zeige Nachrichtenempfänger"
+#: plugins/admin/ogroups/class_ogroup.inc:774
+msgid "Member"
+msgstr "Mitglied"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-msgid "List of available ACL categories"
-msgstr "Liste verfügbarer ACL-Kategorien"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "Wählen Sie die hinzuzufügenden Objekte"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr "ACLs für dieses Objekt"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "Zeige Abteilungen"
 
-#: ihtml/themes/default/acl.tpl:69
-msgid "Available roles"
-msgstr "Verfügbare Rollen"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Zeige Abteilungen"
 
-#: ihtml/themes/default/password.tpl:6
-msgid "Change your password"
-msgstr "Ihr Passwort ändern"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "Wählen, um GOsa-Konten zu sehen"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Success"
-msgstr "Erfolg"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Zeige Personen"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr "Ihr Passwort wurde erfolgreich geändert."
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "Wählen, um GOsa Gruppen zu sehen"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "Password change"
-msgstr "Passwort-Änderung"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Zeige Gruppen"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
-"Dieser Dialog ermöglicht Ihnen auf einfache Weise, Ihr Passwort zu ändern. "
-"Geben Sie das aktuelle Passwort und zweimal das neue Passwort in den Feldern "
-"unterhalb ein und drücken Sie den 'Ändern'-Knopf."
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Wählen, um Anwendungen zu sehen"
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "Momentanes Passwort"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Zeige Anwendungen"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Neues Passwort"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Wählen um Server anzuzeigen"
 
-#: ihtml/themes/default/password.tpl:85
-msgid "again"
-msgstr "nochmals"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Zeige Server"
 
-#: ihtml/themes/default/password.tpl:86
-msgid "New password repeated"
-msgstr "Neues Passwort (Wiederholung)"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "Wählen, um die 'Arbeitsstationen' zu sehen"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-msgid "Password strength"
-msgstr "Passwort-Stärke"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Zeige Arbeitsstationen"
 
-#: ihtml/themes/default/password.tpl:100
-msgid "Change"
-msgstr "Ändern"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "Wählen, um die 'Terminals' zu sehen"
 
-#: ihtml/themes/default/password.tpl:101
-msgid "Click here to change your password"
-msgstr "Hier klicken, um Ihr Passwort zu ändern"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Zeige Terminals"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
-msgstr "Kopieren & Einfügen - Assistent"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "Wählen, um die 'Netzwerkdrucker' zu sehen"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
-"Bestimmte Werte müssen im gesamten Verzeichnis eindeutig sein, während "
-"andere Kombinationen keinen Sinn ergeben. GOsa zeigt die relevanten "
-"Attribute. Bitte verwalten Sie die Werte, die unten angezeigt werden, um die "
-"Auflagen zu erfüllen."
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Zeige Netzwerk-Drucker"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-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/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "Wählen, um die 'VOIP Telefone' zu sehen"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
-"Oder wenn sie einen Eintrag in GOsa kopieren oder ausschneiden und das "
-"Quellobjekt entfernen, werden Sie wahrscheinlich wieder eine Fehlermeldung "
-"erhalten, wenn Sie das Objekt einfügen!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Zeige Telefone"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-msgid "Cancel all"
-msgstr "Alle abbrechen"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "Zeige die Objekte der Abteilung"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr "Vorgang abgeschlossen"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "Zeige die Objekte, auf die Folgendes passt"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr "Die Gültigkeit ihrer GOsa-Sitzung ist abgelaufen!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "Regulärer Ausdruck zum Erkennen von Objekt-Namen"
 
-#: ihtml/themes/default/logout.tpl:7
+#: plugins/admin/ogroups/remove.tpl:7
 msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
-"Die letzte in der Web-Applikation durchgeführte Aktion liegt einige Zeit in "
-"der Vergangenheit. Aus Sicherheitsgründen wurde die Sitzung geschlossen. Um "
-"mit der Administration fortzufahren, melden Sie sich bitte erneut an."
+"Bitte überprüfen Sie genau was Sie tun, weil GOsa keine Möglichkeit hat, die "
+"Daten wiederherzustellen."
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr "Erneut anmelden"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Gruppenname"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr ""
-"Sie bearbeiten gerade einen Datenbankeintrag. Sollen die Daten verworfen "
-"werden?"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+msgid "Please enter the new object group name"
+msgstr "Bitte geben Sie einen Namen für die neue Objektgruppe ein"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Hauptmenü"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Name der Gruppe"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Hilfe"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Beschreibender Text für diese Gruppe"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Abmelden"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Wählen Sie den Teilbaum, in den die Gruppe eingepflegt werden soll"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Angemeldet:"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Zusammengefasste Objekte"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr "GOsa Hauptmenü"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr "Liste von Objektgruppen"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr "Name der Objektgruppen"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "Bitte entscheiden Sie, wie für diese Sitzung verfahren werden soll"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Abteilungen"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-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"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
+msgstr "Zeige Gruppen die Benutzer enthalten"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-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"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Zeige Gruppen mit Benutzern"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Setzen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
+msgstr "Zeige Gruppen die Gruppen enthalten"
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"Dieser Eintrag wird unter Umständen von verschiedenen Gruppen genutzt. Bitte "
-"überprüfen Sie genau was Sie tun, da GOsa keine Möglichkeit hat, die Daten "
-"wiederherzustellen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Zeige Gruppen mit Gruppen"
+
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
+msgstr "Zeige Gruppen die Applikationen enthalten"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-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."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Zeige Gruppen mit Applikationen"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Entfernen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
+msgstr "Zeige Gruppen die Abteilungen enthalten"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
-"Kann angegebene Datei nicht öffnen, prüfen Sie die Existenz und/oder "
-"Zugriffsrechte"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Zeige Gruppen mit Abteilungen"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr ""
-"Kann angegebenes Zertifikat nicht lesen (oder es wurde eine leere "
-"Zeichenkette übergeben)"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
+msgstr "Zeige Gruppen die Server enthalten"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
-"Kann Zertifikat nicht laden, wahrscheinlich aufgrund eines nicht "
-"unterstützten Formats (benutzen Sie PEM/DER)"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Zeige Gruppen mit Servern"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr "Um Zertifikatsinformationen anzuzeigen muss das Format PEM sein"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
+msgstr "Zeige Gruppen die Arbeitsstationen enthalten"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "Kann Datei nicht anlegen/öffnen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Zeige Gruppen mit Arbeitsstationen"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr "Kein gültiges Zertifikat geladen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+msgid "Select to see groups containing windows workstations"
+msgstr "Zeige Gruppen die Windows-Arbeitsstationen enthalten"
 
-#: include/utils/class_msgPool.inc:14
-#, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+msgid "Show groups containing windows workstations"
+msgstr "Zeige Gruppen mit Windows-Arbeitsstationen"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
-#, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
+msgstr "Zeige Gruppen die Terminals enthalten"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Zeige Gruppen mit Terminals"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
+msgstr "Zeige Gruppen die Drucker enthalten"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
+msgstr "Zeige Gruppen mit Druckern"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
+msgstr "Zeige Gruppen die Telefone enthalten"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
+msgstr "Zeige Gruppen mit Telefonen"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Diesen Eintrag bearbeiten"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Diesen Eintrag entfernen"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+msgid "You are not allowed to remove this entry."
+msgstr "Sie haben keine Berechtigung, diesen Eintrag zu löschen!"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "Sie haben keine Berechtigung um das Objekt '%s' zu speichern."
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+msgid "Number of listed object groups"
+msgstr "Anzahl der angezeigten Objektgruppen"
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
+msgstr "Warteschlange"
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr "System"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Geräte"
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Start"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-#, fuzzy
-msgid "Connection information"
-msgstr "Persönliche Informationen"
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "Übersicht"
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Die SQL-Datenbank kann nicht erreicht werden!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Arbeitsplätze"
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "Die angegebene Datenbank kann nicht ausgewählt werden."
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "Abteilungen"
 
-#: include/utils/class_msgPool.inc:128
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
 #, php-format
-msgid "No %s server defined!"
-msgstr ""
-
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "Die angegebene Datenbank kann nicht ausgewählt werden."
+msgid "You're about to delete the following entry %s"
+msgstr "Sie löschen gerade den Eintrag %s"
 
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Das Feld 'Fax' enthält eine ungültige Telefonnummer."
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
+#, php-format
+msgid "You're about to delete the following entries %s"
+msgstr "Sie löschen gerade die Einträge %s"
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
 msgstr ""
-"Das in CHECK angegebene Kommando '%s' (Modul '%s') scheint nicht zu "
-"existieren."
+"Sie sind dabei, einen gesamten LDAP-Teilbaum unterhalb von '%s' zu löschen."
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Die von ihnen angebene 'UID' ist zu klein."
+#: plugins/admin/departments/tabs_department.inc:55
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+msgstr ""
+"Verschieben des Baums ist fehlgeschlagen: Der Zielbaum ist ein Teilbaum der "
+"Quelle!"
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+msgid "You are currently moving/renaming this department."
 msgstr ""
+"Momentan sind Sie dabei, diese Abteilung zu verschieben bzw. neu zu benennen."
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Die von ihnen angebene 'UID' ist zu klein."
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
+msgstr ""
+"Verändern des für die Namensbildung zuständigen Attributes 'ou' einer "
+"Abteilung oder der Basis kann vorhandene ACLs und/oder Snapshots für alle "
+"Objekte unbrauchbar machen."
 
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr "PHP muß in Version %s oder höher vorliegen."
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
+msgstr "GOsa kann dies (noch) NICHT für Sie reparieren."
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
+"Bevor Sie diese Aktion bestätigen, stellen Sie sicher, dass alles wie "
+"erwartet sein wird, vielleicht ist die beste Lösung, vorher ein Backup zu "
+"erstellen."
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Die von Ihnen angegebene 'Kennung' ist bereits vergeben."
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "Das benötigte Feld 'Name' ist nicht ausgefüllt."
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Das benötigte Feld 'Name' ist nicht gesetzt."
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "Das benötigte Feld 'Beschreibung' ist nicht gesetzt."
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+msgid "Fatal error"
+msgstr "Schwerer Fehler"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "Das Feld 'Name' enthält ungültige Zeichen."
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+msgid "Cannot find an unused tag for this administrative unit!"
+msgstr "Kann keinen unbenutzten Tag für diese administrative Einheit finden!"
 
-#: include/utils/class_msgPool.inc:216
+#: plugins/admin/departments/class_departmentGeneric.inc:415
 #, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
-
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "Passwort-Änderung ist nicht erlaubt"
+msgid "Tagging '%s'."
+msgstr "Markiere '%s'."
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Aktiviere DHCP-Erweiterung"
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr "Verschiebe '%s' nach '%s'"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
+#: plugins/admin/departments/class_departmentGeneric.inc:543
 #, php-format
-msgid "Add"
-msgstr "Hinzufügen"
+msgid "FAILED to copy %s, aborting operation"
+msgstr "Fehler beim kopieren von %s, breche ab"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Hinzufügen"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Land"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Entfernen"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Telefon"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Setzen"
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "Name der Abteilung"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Bearbeiten"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Kategorie"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Benutzer bearbeiten"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "Administrative Einstellungen"
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Dieses Konto besitzt keine gültigen GOsa-Erweiterungen."
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
+msgstr "Objekt '%s' ist bereits markiert"
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
-msgstr ""
-"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Sie können diese durch "
-"einen Klick auf die untere Schaltfläche deaktivieren."
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
+msgstr "Füge Markierung (%s) zu Objekt '%s' hinzu"
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, 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 UNIX-Erweiterungen. Um sie zu deaktivieren, "
-"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
+msgstr "Entferne Markierung von Objekt '%s'"
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
+#: plugins/admin/departments/remove.tpl:6
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
-"Dieses Konto besitzt keine aktivierten UNIX-Erweiterungen. Sie können diese "
-"durch einen Klick auf die untere Schaltfläche aktivieren."
+"Dies umfasst 'alle' Konten, System- und Setup-Informationen dieses "
+"Teilbaums. Bitte prüfen Sie genau, da es keine Möglichkeit für GOsa gibt, "
+"die Daten wiederherzustellen. "
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
-"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Um sie zu deaktivieren, "
-"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
+"Eine Sicherung der LDAP-Datenbank bietet sich an. Wenn Sie dies erledigt "
+"haben, drücken Sie 'Entfernen' um Fortzufahren oder 'Abbrechen', um den "
+"Vorgang abzubrechen."
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
-msgstr ""
-"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Um sie zu deaktivieren, "
-"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Liste der Abteilungen"
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Zusätzliche GOsa-Einstellungen"
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "Regulärer Ausdruck zum Erkennen von Abteilungs-Namen"
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "UNIX-Einstellungen"
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "Abteilung"
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-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/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "Name der Abteilung"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Januar"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "Name des zu erzeugenden Teilbaums"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Februar"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "Beschreibender Text zu dieser Abteilung"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "März"
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "Kategorie dieses Teilbaums"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "April"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr "Wählen Sie den Teilbaum, in den die Abteilung eingepflegt werden soll"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Mai"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "Land, in dem dieser Teilbaum anzusiedeln ist"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Juni"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "Ort dieses Teilbaums"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Juli"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "Postalische Anschrift dieses Teilbaums"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "August"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "Einleitende Telefonnummer dieses Teilbaums"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "September"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "Einleitende Fax-Nummer dieses Teilbaums"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Oktober"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
+msgstr "Abteilung als eigenständige administrative Einheit kennzeichnen"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "November"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Abteilungsverwaltung"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Dezember"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr "Gewünschte Operation wird durchgeführt"
+
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
+msgstr ""
+"Ihr Browser unterstützt keine IFrames - bitte wählen Sie diesen Link, um die "
+"gewünschte Operation durchzuführen."
+
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
+msgstr "ACL"
+
+#: plugins/admin/acl/class_aclRole.inc:26
+msgid "Access control list templates"
+msgstr "Vorlagen für Zugriffskontrollisten"
+
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "ACL-Rollen"
+
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+msgid "All categories"
+msgstr "Alle Kategorien"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "Übersicht"
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
+msgstr "ACLs zurücksetzen"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Monday"
-msgstr "Mai"
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+msgid "One level"
+msgstr "Diese Ebene"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+msgid "Current object"
+msgstr "Aktuelles Objekt"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Wednesday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+msgid "Complete subtree"
+msgstr "Vollständiger Teilbaum"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr "Vollständiger Teilbaum (permanent)"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr "Auf"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
+msgstr "Ab"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "read operation"
-msgstr "Heimdal-Einstellungen"
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+msgid "Edit ACL"
+msgstr "ACL Bearbeiten"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+msgid "Delete ACL"
+msgstr "ACL Entfernen"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "modify operation"
-msgstr "zeige Information"
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
+msgstr "Keine ACL-Einstellungen für diese Kategorie"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "delete operation"
-msgstr "Wählen, um die 'Arbeitsstationen' zu sehen"
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
+#, php-format
+msgid "Contains ACLs for these objects: %s"
+msgstr "Enthält ACLs für diese Objekte: %s"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "search operation"
-msgstr "Verwende verfallende Konten"
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+msgid "Edit categories ACLs"
+msgstr "ACLs dieser Kategorie bearbeiten"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Authentisierung"
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
+msgstr "ACLs dieser Kategorie leeren"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "LDAP-Abfrage fehlgeschlagen."
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
+#, php-format
+msgid "Edit ACL for '%s', scope is '%s'"
+msgstr "ACL für '%s' bearbeiten, Bereich ist '%s'"
 
-#: include/utils/class_msgPool.inc:374
-#, fuzzy
-msgid "LDAP operation failed!"
-msgstr "LDAP-Abfrage fehlgeschlagen."
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
+msgstr "Alle Objekte im aktuellen Teilbaum"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
-msgid "Configuration error"
-msgstr "Konfigurationsfehler"
+#: plugins/admin/acl/class_aclRole.inc:618
+msgid "Object in use"
+msgstr "Objekt in Verwendung"
 
-#: include/utils/class_timezone.inc:51
+#: plugins/admin/acl/class_aclRole.inc:618
 #, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
+msgstr ""
+"Die Rolle kann nicht entfernt werden, solange sie noch von folgenden "
+"Objekten verwendet wird:"
+
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+msgid "ACL roles"
+msgstr "ACL-Rollen"
+
+#: plugins/admin/acl/class_aclRole.inc:700
+msgid "Acl roles"
+msgstr "ACL-Rollen"
+
+#: plugins/admin/acl/remove.tpl:6
 msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
-"Die Einstellung '%s' der Zeitzone in Ihrer gosa.conf ist ungültig. Kann "
-"Zeitzonen-Versatz nicht berechnen."
+"Dies umfasst alle System- und Setup-Informationen Bitte prüfen Sie dies "
+"genau, da es keine Möglichkeit für GOsa gibt, die Daten zu restaurieren. "
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
-msgstr "Konnte XML nicht erfassen."
+#: plugins/admin/acl/tabs_acl_role.inc:28
+msgid "ACL Templates"
+msgstr "ACL Vorlagen"
 
-#: include/class_gosaSupportDaemon.inc:745
-#, fuzzy, php-format
-msgid "Cannot send abort event for entry: %s"
-msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
+#: plugins/admin/acl/class_divListACL.inc:51
+msgid "List of acl"
+msgstr "Liste der ACL"
 
-#: include/class_gosaSupportDaemon.inc:765
-#, fuzzy, php-format
-msgid "Cannot remove entry: %s"
-msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
+#: plugins/admin/acl/class_divListACL.inc:52
+msgid "List of acls"
+msgstr "Liste der ACLs"
 
-#: include/class_tabs.inc:216
-#, 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/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "Ignoriere Teilbäume"
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "Zugriffsregeln"
+#: plugins/admin/acl/class_divListACL.inc:84
+msgid "Display acls matching"
+msgstr "Zeige ACLs, auf die zutrifft"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "Referenzen"
+#: plugins/admin/acl/class_divListACL.inc:243
+msgid "Edit acl role"
+msgstr "ACL-Rolle bearbeiten"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "Kann GOtomasses Queue-Datei '%s' nicht finden."
+#: plugins/admin/acl/class_divListACL.inc:253
+msgid "Delete acl role"
+msgstr "ACL-Rolle entfernen"
 
-#: include/class_hostActionQueue.inc:73
-#, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Kann GOtomasses Queue-Datei '%s' nicht lesen."
+#: plugins/admin/acl/class_divListACL.inc:265
+msgid "Edit acl"
+msgstr "ACL bearbeiten"
 
-#: include/class_hostActionQueue.inc:80
-#, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Kann GOtomasses Archiv-Datei '%s' nicht lesen."
+#: plugins/admin/acl/class_divListACL.inc:269
+msgid "Delete acl"
+msgstr "ACL entfernen"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
-msgstr "GOsa Infrastruktur"
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+msgid "ACL management"
+msgstr "ACL-Verwaltung"
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
+#: plugins/admin/acl/class_aclManagement.inc:26
+msgid "ACLs"
+msgstr "ACLs"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Kann GOtomasses Queue-Datei '%s' nicht schreiben."
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "Zugriffskontrollliste"
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
-"Die Queue-Datei wurde seit der letzten Aktualisierung verändert. Kann die "
-"Änderungen nicht speichern."
+#: plugins/admin/acl/class_aclManagement.inc:163
+msgid "You have no permission to create a new role!"
+msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
 
-#: include/class_hostActionQueue.inc:277
-#, php-format
-msgid "Entry with id '%s' not found."
-msgstr "Eintrag mit der ID '%s' wurde nicht gefunden."
+#: plugins/admin/acl/class_aclManagement.inc:200
+msgid "You have no permission to edit this ACL!"
+msgstr "Sie haben keine Berechtigung, diese ACL zu bearbeiten!"
 
-#: include/class_hostActionQueue.inc:287
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
 #, php-format
-msgid "Could not update entry, entry with id '%s' not found."
-msgstr ""
-"Konnte Eintrag nicht aktualisieren, der Eintrag mit der ID '%s' wurde nicht "
-"gefunden."
+msgid "You're about to delete the acl %s."
+msgstr "Sie sind dabei die ACL %s zu löschen."
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Liste der Gruppen"
+
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "Gruppenname / Abteilung"
+
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
 msgstr ""
-"Konnte Eintrag nicht entfernen, der Eintrag mit der ID '%s' wurde nicht "
-"gefunden."
+"Auswählen, um die Gruppen zu sehen, die primären Gruppen der Benutzer sind"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr "Kann die Priorität der ID '%s' nicht festlegen. Die ID ist unbekannt."
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Zeige primäre Gruppen"
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
 msgstr ""
-"Kann die Kopieren & Einfügen Queue nicht aufräumen: das Setzen der "
-"Berechtigungen für '%s' schlug fehl!"
+"Auswählen, um die Gruppen zu sehen, denen Samba-Eigenschaften zugeordnet sind"
+
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Zeige Samba-Gruppen"
+
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "Auswählen, um die Gruppen zu sehen, denen Anwendungen zugeordnet sind"
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
-"Kann·die·Kopieren·&·Einfügen·Queue·nicht·aufräumen:·keine "
-"Schreibberechtigung innerhalb von '%s'!"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Zeige Anwendungs-Gruppen"
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
 msgstr ""
-"Kopieren und Einfügen fehlgeschlagen: das Objekt '%s' ist kein gültiges LDAP-"
-"Objekt!"
+"Auswählen, um die Gruppen zu sehen, denen E-Mail-Eigenschaften zugeordnet "
+"sind"
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
-msgid "Internal error"
-msgstr "Interner Fehler"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Zeige E-Mail-Gruppen"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
-"Kann LDAP-Abzug nicht speichern: keine Schreibberechtigung innerhalb von '%"
-"s'!"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "Auswählen, um die \"normalen\" Gruppen zu sehen"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
-msgstr ""
-"Kann·LDAP-Abzug·nicht·speichern:·Setzen der Berechtigungen·für·'%s' "
-"fehlgeschlagen!"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Zeige Funktions-Gruppen"
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr "Kann LDAP-Abzug nicht speichern: keine Schreibberechtigung in '%s/%s'!"
+#: plugins/admin/groups/class_divListGroup.inc:359
+msgid "Number of listed groups"
+msgstr "Anzahl der angezeigten Gruppen"
 
-#: include/class_CopyPasteHandler.inc:268
-#, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "Kann Abzug-Datei '%s' nicht laden!"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Wählen Sie die hinzuzufügenden Benutzer"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Sie sind dabei, den kopierten Eintrag '%s' einzufügen."
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr "Suche im Teilbaum"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Sie sind dabei, den kopierten Eintrag '%s' einzufügen."
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Zeige die Benutzer der Abteilung"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr "Einfügen"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "Regulärer Ausdruck zum Erkennen von Benutzernamen"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr "Kann nicht einfügen"
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "Gruppen"
 
-#: include/class_plugin.inc:492
-#, fuzzy
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
 msgstr ""
-"Das Objekt wurde verändert nachdem es in GOsa geöffnet wurde. Bitte stellen "
-"Sie sicher, dass niemand wichtige Änderungen vorgenommen hat, die verloren "
-"gehen, wenn Sie diesen Eintrag speichern."
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: plugins/admin/groups/class_groupManagement.inc:434
 #, php-format
+msgid "You're about to delete the group '%s'."
+msgstr "Sie sind dabei die Gruppe '%s' zu löschen."
+
+#: plugins/admin/groups/remove.tpl:6
 msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
-"Die Snapshot-Funktionalität ist aktiviert, aber die erforderliche Variable '%"
-"s' ist nicht gesetzt."
+"Bitte prüfen Sie, ob Sie die Aktion wirklich durchführen möchten, da GOsa "
+"die Daten nicht wiederherstellen kann."
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr "Ändere ACL dn"
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
+msgstr "Gruppen-Einstellungen"
 
-#: include/class_plugin.inc:1613
-msgid "from"
-msgstr "von"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "UNIX-Name der Gruppe"
 
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
-"Der PHP-Interpreter meldete einen oder mehrere Fehler beim Erzeugen dieser "
-"Seite!"
+"Normalerweise werden IDs automatisch generiert. Auswählen um dies zu umgehen"
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr "Sende Fehlerbericht an das GOsa Team"
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Erzwinge GID"
 
-#: include/php_setup.inc:96
-msgid "Send bugreport"
-msgstr "Fehlerbericht senden"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "Erzwungene ID-Nummer"
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
-msgstr "Zeige/Verstecke Informationen"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Auswählen, um eine sambakonforme Gruppe zu erzeugen"
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "PHP Fehler"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "in der Domain"
 
-#: include/php_setup.inc:130
-msgid "class"
-msgstr "Klasse"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "Mitglieder sind in einer Telefon-Gruppe"
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "Funktion"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr "Mitglieder sind in einer Nagios-Gruppe"
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "statisch"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Gruppenmitglieder"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "Methode"
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Gruppenverwaltung"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr "Ablaufverfolgung"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+msgid "Configuration error"
+msgstr "Konfigurationsfehler"
 
-#: include/php_setup.inc:179
-msgid "File"
-msgstr "Datei"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+msgid "Cannot find group SID in your configuration!"
+msgstr "Kann keine Gruppen-SID in Ihrer Konfiguration finden!"
 
-#: include/php_setup.inc:179
-msgid "Line"
-msgstr "Zeile"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Diese 'dn' hat keine Gruppenerweiterungen."
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Typ"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Samba-Gruppe"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "Argumente"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Domänen-Administratoren"
 
-#: include/class_acl.inc:26
-msgid "Access control"
-msgstr "Zugriffskontrolle"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Domänen-Benutzer"
+
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Domänen-Gäste"
+
+#: plugins/admin/groups/class_groupGeneric.inc:355
+#, php-format
+msgid "Special group (%d)"
+msgstr "Spezielle Gruppe (%d)"
+
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "! unbekannte id"
+
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#, fuzzy, php-format
+msgid "Search returned too many results. Not displaying more than %s entries!"
+msgstr ""
+"Die Suche ergab zu viele Treffer. Es werden maximal %s Einträge angezeigt."
+
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, php-format
+msgid "Cannot find any SID for '%s'!"
+msgstr "Kann keine SID für '%s' finden!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Kann keine RIDBASE für '%s' finden!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:966
+msgid "Cannot allocate a free ID!"
+msgstr "Konnte keine freie ID allozieren!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+msgid "Generic group settings"
+msgstr "Allgemeine Gruppeneinstellungen"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+msgid "Phone pickup group"
+msgstr "Gesprächs-Annahme Gruppe"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-#, fuzzy
-msgid "Manage access control lists"
-msgstr "Zugriffskontrollliste"
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+msgid "Nagios group"
+msgstr "Nagios-Gruppe"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-msgid "All categories"
-msgstr "Alle Kategorien"
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+msgid "Group member"
+msgstr "Gruppenmitglieder"
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
-msgstr "ACLs zurücksetzen"
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+msgid "Samba group type"
+msgstr "Samba-Gruppentyp"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-msgid "One level"
-msgstr "Diese Ebene"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+msgid "Samba domain name"
+msgstr "Samba Domänen-Name"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-msgid "Current object"
-msgstr "Aktuelles Objekt"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+msgid "Samba SID"
+msgstr "Samba SID"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-msgid "Complete subtree"
-msgstr "Vollständiger Teilbaum"
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+msgid "Language setup"
+msgstr "Sprachauswahl"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr "Vollständiger Teilbaum (permanent)"
+#: setup/class_setupStep_Language.inc:42
+msgid "This step allows you to select your preferred language."
+msgstr "Dieser Schritt erlaubt es Ihnen, Ihre bevorzugte Sprache auszuwählen."
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr "Verwende ACL aus Rollendefinition"
+#: setup/class_setupStep_Language.inc:47
+msgid "Automatic"
+msgstr "Automatisch"
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Benutzer"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - 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 GOsa gestartet wurde - es wurde "
+"keine Konfiguration gefunden. Dieser einfache Assistent hilft Ihnen bei der "
+"Einrichtung."
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "Gruppen"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
+msgstr "Was wird der Assistent für Sie erledigen?"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr "Auf"
+#: setup/setup_welcome.tpl:11
+msgid "Create a basic, single site configuration"
+msgstr "Erstellen einer einfachen Konfiguration für einen Standort"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
-msgstr "Ab"
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
+msgstr "Versucht, Probleme in Ihrer PHP- und LDAP-Umgebung zu ermitteln"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "Bearbeiten"
+#: setup/setup_welcome.tpl:13
+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"
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
-msgid "Edit ACL"
-msgstr "ACL Bearbeiten"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
+msgstr "Geführte Migration existierende LDAP-Bäume"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "Entfernen"
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
+msgstr "Was wird der Assistent NICHT für Sie erledigen?"
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
-msgid "Delete ACL"
-msgstr "ACL Entfernen"
+#: setup/setup_welcome.tpl:20
+msgid "Find every possible configuration error"
+msgstr "Finde jeden möglichen Konfigurationsfehler"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
-msgstr "Keine ACL-Einstellungen für diese Kategorie"
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migriere jede mögliche LDAP-Umgebung - erstellen Sie Sicherungsabzüge!"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
-msgstr "Enthält ACLs für diese Objekte: %s"
+#: setup/setup_welcome.tpl:25
+msgid "To continue..."
+msgstr "Wird fortgesetzt..."
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
-msgid "Edit categories ACLs"
-msgstr "ACLs dieser Kategorie bearbeiten"
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
+msgstr ""
+"Aus Sicherheitsgründen müssen Sie die Installation authorisieren, indem Sie "
+"die Datei '/tmp/gosa.auth' mit der aktuellen Sitzungs-ID im Dateisystem des "
+"Servers erzeugen. Dies wird durch das Ausführen des folgenden Kommandos "
+"erreicht:"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
-msgstr "ACLs dieser Kategorie leeren"
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
+msgstr "Drücken Sie auf den Knopf 'Fortfahren', wenn Sie fertig sind."
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
-msgstr "ACL für '%s' bearbeiten, Bereich ist '%s'"
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+msgid "GOsa settings 1/3"
+msgstr "GOsa-Einstellungen 1/3"
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
-msgstr "Alle Objekte im aktuellen Teilbaum"
+#: setup/class_setupStep_Config1.inc:76
+msgid "GOsa generic settings"
+msgstr "Allgemeine GOsa-Einstellungen"
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-msgid "Show/Hide Advanced Settings"
-msgstr "Zeige/Verstecke Erweiterte Einstellungen"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "nein"
 
-#: include/class_acl.inc:690
-msgid "Create objects"
-msgstr "Erstelle Objekte"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "ja"
 
-#: include/class_acl.inc:691
-msgid "Move objects"
-msgstr "Objekte verschieben"
+#: setup/class_setupStep_Config1.inc:118
+#, php-format
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "Der angegebene Wert für '%s' muss numerisch sein."
 
-#: include/class_acl.inc:692
-msgid "Remove objects"
-msgstr "Objekte entfernen"
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
+msgstr "GID / UID min id"
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
-msgstr "Änderbar vom Eigentümer"
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
+#, php-format
+msgid "Don't add a trailing comma to '%s'."
+msgstr "Fügen Sie kein Komma an das Ende von '%s'."
 
-#: include/class_acl.inc:697
-msgid "Move object"
-msgstr "Objekt verschieben"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "Ablage-OU für Benutzer:"
 
-#: include/class_acl.inc:698
-msgid "Remove object"
-msgstr "Objekt entfernen"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "Ablage-OU für Gruppen:"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "lesen"
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
+msgstr "Der Wert für 'UID Base' muss numerisch sein"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "schreiben"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
+msgstr "Die angegebene minimale Passwortlänge ist nicht numerisch."
 
-#: include/class_acl.inc:710
-msgid "Complete object"
-msgstr "Vollständiges Objekt"
+#: setup/class_setupStep_Config1.inc:137
+msgid "The given password differ value is not numeric."
+msgstr "Die angegebene Passwort-Differenz ist nicht numerisch."
 
-#: include/class_acl.inc:826
-#, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
-msgstr "Unbekannter ACL-Typ '%s'. Verarbeitung nicht möglich."
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
+msgstr "Bitte wählen Sie den LDAP-Benutzer, der von GOsa verwendet werden soll"
 
-#: include/class_acl.inc:869
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Unbekannter Eintrag '%s'!"
+#: setup/setup_ldap.tpl:25
+msgid "LDAP connection"
+msgstr "LDAP-Verbindung"
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
-#, php-format
-msgid "Role: %s"
-msgstr "Rolle: %s"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Name des Standortes:"
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr "Unbekannte Rolle, möglicherweise wurde sie entfernt"
+#: setup/setup_ldap.tpl:37
+msgid "Connection URL"
+msgstr "Verbindungs-URL"
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Enthält Einstellungen für diese Objekte: %s"
+#: setup/setup_ldap.tpl:45
+msgid "TLS connection"
+msgstr "TLS-Verbindung"
 
-#: include/class_acl.inc:948
-msgid "Members:"
-msgstr "Mitglieder:"
+#: setup/setup_ldap.tpl:65
+msgid "Reload"
+msgstr "Neu laden"
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
-msgstr "ACL ist gültig für alle Benutzer"
+#: setup/setup_ldap.tpl:69
+msgid "Authentication"
+msgstr "Authentisierung"
 
-#: include/class_acl.inc:1115
-msgid "Access control list"
-msgstr "Zugriffskontrollliste"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "Administrator-DN:"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
-msgid "ACL roles"
-msgstr "ACL-Rollen"
+#: setup/setup_ldap.tpl:78
+msgid "Select user"
+msgstr "Benutzer wählen"
 
-#: include/class_acl.inc:1123
-msgid "Role name"
-msgstr "Rollenname"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
+msgstr "Automatisch die LDAP-Basis an die Admin DN anhängen"
 
-#: include/class_acl.inc:1124
-msgid "Role description"
-msgstr "Rollenbeschreibung"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Administrator-Passwort:"
 
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
-msgstr "Keine Objekte dieser Kategorie"
+#: setup/setup_ldap.tpl:101
+msgid "Schema based settings"
+msgstr "Schema-basierte Einstellungen"
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
-msgstr ""
-"Das Konfigurationsformat hat sich geändert. Bitte durchlaufen Sie erneut die "
-"Einrichtung!"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
+msgstr "Verwende rfc2307bis-konforme Gruppen"
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr "Unbekannt"
+#: setup/setup_ldap.tpl:117
+msgid "Current status"
+msgstr "Momentaner Status"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
-"Das mcrypt-Modul wurde nicht gefunden. Bitte installieren Sie php5-mcrypt."
+"Während der LDAP-Inspektion wird auf verschiedene, gängige Stolpersteine "
+"geprüft, die auftreten können, wenn auf eine GOsa-basierte LDAP-"
+"Administration migriert wird. Sie sollten die unten genannten Probleme "
+"beseitigen, um einen problemlosen Betrieb der Dienste zu ermöglichen."
 
-#: include/class_log.inc:88
-#, php-format
-msgid "Logging failed: %s"
-msgstr "Protokollieren fehlgeschlagen: %s"
+#: setup/setup_migrate.tpl:33
+msgid "Check again"
+msgstr "Erneut prüfen"
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
-msgstr "Protokollieren nach MySQL inaktiv"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
+msgstr ""
+"Verschiebe Windows-Arbeitsstationen in eine gültige Windows-Workstation "
+"Abteilung"
 
-#: include/class_log.inc:107
+#: setup/setup_migrate.tpl:39
 msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
-"Das Protokollieren in die MySQL-Datenbank ist für diese Sitzung "
-"abgeschaltet, da es Kommunikationsfehler mit der angegebenen Protokoll-"
-"Datenbank gab."
+"Dieser Dialog ermöglicht es Ihnen, die angezeigten Windows-Arbeitsstationen "
+"in eine gültige Abteilung zu verschieben"
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
-msgstr "Ungültige Option '%s' angegeben."
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
+msgstr ""
+"Seien Sie vorsichtig mit diesem Werkzeug, es könnte Referenzen geben, die "
+"auf diese Arbeitsstationen zeigen, die nicht migriert werden können."
 
-#: include/class_log.inc:124
-msgid "Specified objectType is empty or invalid"
-msgstr "Der angegebene Objekttyp ist leer oder ungültig"
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
+msgid "Select all"
+msgstr "Alle auswählen"
 
-#: include/class_log.inc:145
-msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
 msgstr ""
-"Sie haben das Protokollieren in eine MySQL-Datenbank aktiviert, aber es gibt "
-"keine verfügbaren Protokoll-Server."
+"Verschiebe die ausgewählten Windows-Arbeitsstationen in die folgende GOsa-"
+"Abteilung"
 
-#: include/class_log.inc:157
-#, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Kann nicht zum Protokoll-Server '%s' verbinden."
+#: setup/setup_migrate.tpl:72
+msgid "Move selected workstations"
+msgstr "Die gewählten Arbeitsstationen verschieben"
 
-#: include/class_log.inc:165
-#, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "Kann die Datenbank '%s' auf dem Server '%s' nicht auswählen: %s"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
+msgstr "Was wird hier durchgeführt"
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
+msgstr "Schliessen"
+
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
+msgstr "Verschiebe Gruppen in den konfigurierten Gruppenbaum"
+
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
+"Dieser Dialog ermöglicht Ihnen das Verschieben einer Zahl von Gruppen in den "
+"konfigurierten Gruppenbaum. Dies kann Ihren LDAP-Dienst aufräumen."
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
+"Seien Sie vorsichtig mt dieser Option! Es könnte Referenzen geben, die auf "
+"diese Gruppen verweisen. Die GOsa-Einrichtung kann Referenzen nicht "
+"migrieren, Sie sollten die Migration an dieser Stelle abbrechen."
 
-#: include/class_log.inc:241
-#, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "Kann die Datenbank '%s' auf dem Server '%s' nicht abfragen: %s"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr "Verschiebe die ausgewählten Gruppen in diesen Gruppenbaum"
 
-#: include/class_multi_plug.inc:362
-msgid "You are currently editing mutliple entries."
-msgstr "Sie bearbeiten momentan mehrere Einträge."
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+msgid "Hide changes"
+msgstr "Verstecke Änderungen"
 
-#: include/class_multi_plug.inc:391
-msgid "Password reset"
-msgstr "Passwort Rücksetzung"
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+msgid "Show changes"
+msgstr "Zeige Änderungen"
 
-#: include/class_multi_plug.inc:391
-msgid "The user password was resetted, please set a new password value!"
-msgstr "Das Nutzer-Passwort wurde zurückgesetzt, bitte setzen Sie ein Neues!"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
+msgstr "Verschiebe Benutzer in den konfigurierten Benutzerbaum"
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
-msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu."
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
+msgstr ""
+"Dieser Dialol ermöglicht Ihnen das Verschieben einer Zahl von Nutzern in den "
+"konfigurierten Benutzerbaum. Dies kann Ihren LDAP-Dienst aufräumen."
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "XML-Fehler in der Datei guide.xml: %s in Zeile %d"
+#: setup/setup_migrate.tpl:145
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
+"Seien Sie vorsichtig mt dieser Option! Es könnte Referenzen geben, die auf "
+"diese Benutzer verweisen. Die GOsa-Einrichtung kann Referenzen nicht "
+"migrieren, Sie sollten die Migration an dieser Stelle abbrechen."
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
-msgstr "Für dieses Modul ist keine Hilfe verfügbar."
+#: setup/setup_migrate.tpl:148
+msgid "Move selected users into this people tree"
+msgstr "Verschiebe die ausgewählten Benutzer in diesen Benutzerbaum"
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
-msgstr "Vorherige"
+#: setup/setup_migrate.tpl:198
+msgid "Next"
+msgstr "Vor"
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
-msgstr "Nächste"
+#: setup/setup_migrate.tpl:199
+msgid "Abort"
+msgstr "Abbrechen"
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
-msgstr "%s Ergebnisse für Ihre Suche nach %s"
+#: setup/setup_migrate.tpl:201
+msgid "Create a new GOsa administrator account"
+msgstr "Erzeuge ein neues GOsa Administratorkonto"
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr "%s%% Trefferquote in Datei %s"
+#: setup/setup_migrate.tpl:204
+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."
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Gehe zur Wurzel-Abteilung"
+#: setup/setup_migrate.tpl:233
+msgid "Password (again)"
+msgstr "Passwort (erneut)"
+
+#: setup/setup_migrate.tpl:258
+msgid ""
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
+msgstr ""
+"Die angezeigten Abteilungen sind momentan in GOsa unsichtbar. Wenn Sie dies "
+"für eine Zahl von Einträgen ändern möchten, wählen Sie sie einfach aus und "
+"verwenden den 'Migrieren'-Knopf unterhalb."
+
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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."
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Wurzel"
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+msgid "Current"
+msgstr "Aktuell"
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Eine Abteilung nach oben"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+msgid "After migration"
+msgstr "Nach der Migration"
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Gehe zur Abteilung des Benutzers"
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
+msgstr ""
+"Die folgenden Benutzer sind momentan in GOsa unsichtbar. Wenn Sie dies für "
+"eine Zahl von Benutzern ändern möchten, wählen Sie sie einfach aus und "
+"drücken Sie den 'Migrieren'-Knopf unterhalb."
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Heimat"
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+msgid "GOsa settings 3/3"
+msgstr "GOsa-Einstellungen 3/3"
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "Liste neu laden"
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
+msgstr "Einstellen von grundlegendem GOsa Verhalten"
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "Übertragen"
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
+msgstr "Lebenszeit der Sitzung muss ein numerischer Wert sein."
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
-msgstr "Inkonsistente Enkodierung der DN erkannt: '%s'"
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "Die maximale LDAP-Abfragedauer muß ein numerischer Wert sein. "
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
-msgid "Restore"
-msgstr "Wiederherstellen"
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+msgid "LDAP inspection"
+msgstr "LDAP-Inspektion"
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
-msgstr "Stelle Abzüge von bereits entfernten Objekten her"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
+msgstr "Untersuche Ihr LDAP-Verzeichnis auf GOsa-Kompatibilität"
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
-msgstr "Abzug wiederherstellen"
+#: setup/class_setupStep_Migrate.inc:113
+msgid "Checking for root object"
+msgstr "Prüfe auf Wurzelobjekt"
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create snapshot"
-msgstr "Snapshot erstellen"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
+msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank"
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create a new snapshot from this object"
-msgstr "Erstelle einen neuen Snapshot dieses Objekts"
+#: setup/class_setupStep_Migrate.inc:125
+msgid "Checking for invisible departments"
+msgstr "Prüfe auf unsichtbare Abteilungen"
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "XML-Fehler in der Datei gosa.conf: %s in Zeile %d"
+#: setup/class_setupStep_Migrate.inc:131
+msgid "Checking for invisible users"
+msgstr "Prüfe auf unsichtbare Benutzer"
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
-msgstr "Erfassung der Konfigurationsdatei"
+#: setup/class_setupStep_Migrate.inc:137
+msgid "Checking for super administrator"
+msgstr "Prüfe auf Superadministrator"
 
-#: include/class_config.inc:228
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den "
-"Administrator."
+#: setup/class_setupStep_Migrate.inc:143
+msgid "Checking for users outside the people tree"
+msgstr "Prüfe auf Benutzer ausserhalb des Benutzerbaums"
 
-#: include/class_config.inc:560
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "SID und/oder RIDBASE fehlen in der Konfiguration!"
+#: setup/class_setupStep_Migrate.inc:149
+msgid "Checking for groups outside the groups tree"
+msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums"
 
-#: include/class_SnapShotDialog.inc:83
-#, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "Sie sind dabei den Snapshot '%s' zu entfernen."
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
+msgstr "Prüfe auf Windows-Arbeitsstationen ausserhalb des Winstation-Baums"
 
-#: include/class_SnapShotDialog.inc:135
-msgid "Remove snapshot"
-msgstr "Snapshot entfernen."
+#: setup/class_setupStep_Migrate.inc:161
+msgid "Checking for duplicate uid numbers"
+msgstr "Prüfe auf doppelte UID Nummern"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
+#: setup/class_setupStep_Migrate.inc:167
+msgid "Checking for duplicate gid numbers"
+msgstr "Prüfe auf doppelte GID Nummern"
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Beschreibung"
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+msgid "LDAP query failed"
+msgstr "LDAP-Abfrage fehlgeschlagen."
 
-#: include/functions.inc:101
-#, 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"
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr "Wahrscheinlich fehlt das Wurzelobjekt."
 
-#: include/functions.inc:108
+#: setup/class_setupStep_Migrate.inc:213
 #, 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"
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "Es wurden %s doppelte Werte für das Attribute 'uidNumber' gefunden."
 
-#: include/functions.inc:318
+#: setup/class_setupStep_Migrate.inc:262
 #, 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'."
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Es wurden %s doppelte Werte für das Attribute 'gidNumber' gefunden."
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, php-format
-msgid "User login failed."
-msgstr "Benutzeranmeldung fehlgeschlagen."
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Fehlgeschlagen"
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
-msgid "LDAP server returned: %s"
-msgstr "Der LDAP-Server meldete: %s"
-
-#: include/functions.inc:380 include/functions.inc:450
 msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
-"Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum. Bitte "
-"kontaktieren Sie Ihren Administrator."
+"Es wurden %s Windows-Arbeitsstationen ausserhalb der für diese Abteilung "
+"vordefinierten Winstation Organisationseinheit '%s' gefunden."
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
-msgstr ""
-"Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!"
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+msgid "Migrate"
+msgstr "Migrieren"
 
-#: include/functions.inc:605
+#: setup/class_setupStep_Migrate.inc:387
 #, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
-"Kann Sperrinformation für LDAP-Baum nicht erzeugen. Bitte kontaktieren Sie "
-"Ihren Administrator!"
+"Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden."
 
-#: include/functions.inc:620
-#, php-format
-msgid "Adding a lock failed."
-msgstr "Hinzufügen der Sperre ist fehlgeschlagen"
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+msgid "Move"
+msgstr "Verschieben"
 
-#: include/functions.inc:652
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "Removing a lock failed."
-msgstr "Entfernen der Sperre ist fehlgeschlagen"
+msgid "Found %s user(s) outside the configured tree '%s'."
+msgstr ""
+"Es wurde(n) %s Benutzer ausserhalb des konfigurierten Baums '%s' gefunden."
 
-#: include/functions.inc:691 include/functions.inc:736
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr "Kann die Sperr-Information des LDAP-Baums nicht ermitteln!"
-
-#: include/functions.inc:699
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
-"Mehrere Sperren für das zu sperrende Objekt gefunden. Dies sollte nicht "
-"passieren - räume mehrere Referenzen auf."
+"Der angegebene Benutzer '%s' hat keinen Vollzugriff auf Ihre LDAP-Datenbank."
 
-#: include/functions.inc:996
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!"
+msgid "Found %s user(s) that will not be visible in GOsa."
+msgstr ""
+"Es wurde(n) %s Benutzer gefunden, die in GOsa nicht sichtbar sein werden."
 
-#: include/functions.inc:998
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+msgid "Migration error"
+msgstr "Migrationsfehler"
+
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
 #, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr ""
-"Verwende eine neue Größenbeschränkung von %s Einträgen und zeige diese "
-"Meldung bei Überschreitung wieder an"
+msgid "Cannot migrate department '%s':"
+msgstr "Die Abteilung '%s' kann nicht migriert werden:"
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Konfigurieren"
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
+msgstr ""
+"Es wurde(n) %s Abteilung(en) gefunden, die nicht in GOsa sichtbar sein "
+"werden."
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "unvollständig"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
+msgstr "Es gibt keinen GOsa Administrator in Ihrem LDAP."
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "LDAP-Fehler:"
+#: setup/class_setupStep_Migrate.inc:945
+#, php-format
+msgid "Cannot add ACL for user '%s':"
+msgstr "Kann ACL für Benutzer '%s' nicht hinzufügen:"
 
-#: include/functions.inc:1254
-msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
-msgstr ""
-"Probleme mit dem LDAP-Server bedeuten meist, dass ihre letzten Änderungen "
-"verloren gegangen sind. Bitte prüfen Sie die LDAP-Konfiguration um "
-"eventuelle Fehler aufzudecken und wiederholen Sie die Aktion."
+#: setup/class_setupStep_Migrate.inc:970
+msgid "Password error"
+msgstr "Passwortfehler"
 
-#: include/functions.inc:1260
-msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
-msgstr ""
-"Bitte prüfen Sie ihre Eingaben und beheben Sie den Fehler. Drücken Sie den "
-"'OK'-Knopf um dieses Meldungsfenster zu schließen."
+#: setup/class_setupStep_Migrate.inc:970
+msgid "Provided passwords do not match!"
+msgstr "Die angegebenen Passwörter stimmen nicht überein!"
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr "Trotzdem Fortsetzen"
+#: setup/class_setupStep_Migrate.inc:975
+msgid "Input error"
+msgstr "Eingabefehler"
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr "Trotzdem bearbeiten"
+#: setup/class_setupStep_Migrate.inc:975
+msgid "Specify a valid user ID!"
+msgstr "Geben Sie eine gültige Benutzer ID an!"
 
-#: include/functions.inc:1329
+#: setup/class_setupStep_Migrate.inc:1019
 #, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge '%s'"
-
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr "Einträge pro Seite"
+msgid "Adding an administrative user failed: object '%s' already exists!"
+msgstr ""
+"Hinzufügen eines administrativen Benutzers fehlgeschlagen: Objekt '%s' "
+"existiert bereits!"
 
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr "Filter anwenden"
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "Cannot move users to the requested department!"
+msgstr "Kann Benutzer nicht in die geforderte Abteilung verschieben!"
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
+msgstr "Die Windows-Arbeitsstation wird verschoben von"
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "GOsa Entwicklerversion (Rev %s)"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+msgid "to"
+msgstr "an"
 
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
-msgstr "Die Datei '%s' konnte nicht entfernt werden."
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
+msgstr "Aktualisiere ebenfalls die folgenden Referenzen"
 
-#: include/functions.inc:1950 include/functions.inc:1970
-msgid "Cannot write to revision file!"
-msgstr "Kann nicht in Revisions-Datei schreiben!"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
+msgstr "Die Gruppe wird verschoben von"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
-msgstr "'base_hook' ist nicht verfügbar. Verwende die Standard-Basis."
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
+msgstr "Der Benutzer wird verschoben von"
 
-#: include/functions.inc:2244
-msgid "LDAP warning"
-msgstr "LDAP-Warnung"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
+msgstr "Die folgenden Referenzen werden aktualisiert"
 
-#: include/functions.inc:2244
-msgid "Cannot get schema information from server. No schema check possible!"
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
-"Kann die Schema-Informationen nicht vom Server beziehen. Keine Schemaprüfung "
-"möglich!"
+"Das LDAP Wurzelobjekt fehlt. Es wird für den Betrieb des LDAP-Dienstes "
+"benötigt."
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
-msgstr "Verwendet, um kontenbezogene Informationen zu speichern."
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+msgid "Try to create root object"
+msgstr "Versuche, das Wurzelobjekt zu erzeugen"
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
-"Verwenden, um die momentan bearbeiteten Einträge für andere zu sperren (um "
-"gleichzeitige Änderungen zu verhindern)."
+"Das Wurzelobjekt konnte nicht erstellt werden, Sie sollten dies manuell "
+"erledigen."
 
-#: include/functions.inc:2320
+#: setup/class_setupStep_Migrate.inc:1916
 #, php-format
-msgid "Missing required object class '%s'!"
-msgstr "Die benötigte Objektklasse '%s' fehlt!"
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Kopieren von '%s' nach '%s' fehlgeschlagen:"
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
-msgstr "Die optionale Objektklasse '%s' fehlt!"
+#: setup/setup_frame.tpl:12
+msgid "GOsa setup wizard"
+msgstr "GOsa Einrichtungsassistent"
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
-msgstr "Falsche·Version·der·benötigten·Objektklasse·'%s'·(!=%s)!"
+#: setup/setup_frame.tpl:19
+msgid "Installation"
+msgstr "Installation"
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
-msgstr "Falsche Version der optionalen Objektklasse '%s' (!=%s)!"
+#: setup/setup_frame.tpl:19
+msgid "Steps"
+msgstr "Schritte"
 
-#: include/functions.inc:2334
-#, php-format
-msgid "Class(es) available"
-msgstr "Verfügbare Klasse(n)"
+#: setup/class_setupStep_Feedback.inc:91
+msgid "UNIX accounts/groups"
+msgstr "UNIX Konten/Gruppen"
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
-msgstr ""
-"Sie haben die rfc2307bis-Option in der LDAP-Einrichtung aktiviert, aber Ihre "
-"Schema-Konfiguration unterstützt dies nicht."
+#: setup/class_setupStep_Feedback.inc:93
+msgid "Samba management"
+msgstr "Samba-Verwaltung"
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
-"Um rfc2307bis-konforme Gruppen verwenden zu können, muss die Objektklasse "
-"'posixGroup' AUXILIARY sein"
+#: setup/class_setupStep_Feedback.inc:95
+msgid "Mailsystem management"
+msgstr "Mailsystem-Verwaltung"
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
-msgstr ""
-"Ihre Schemakonfiguration ist für rfc2307bis-Gruppen eingerichtet, aber Sie "
-"haben die Unterstützung im LDAP-Einrichtungsschritt ausgeschaltet."
+#: setup/class_setupStep_Feedback.inc:97
+msgid "FAX system administration"
+msgstr "Faxsystem-Verwaltung"
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
-msgstr "Die Objektklasse 'posixGroup' muss STRUCTURAL sein"
+#: setup/class_setupStep_Feedback.inc:99
+msgid "Asterisk administration"
+msgstr "Asterisk-Verwaltung"
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Deutsch"
+#: setup/class_setupStep_Feedback.inc:101
+msgid "System inventory"
+msgstr "System-Inventar"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Französisch"
+#: setup/class_setupStep_Feedback.inc:103
+msgid "System-/Configmanagement"
+msgstr "System-/Konfigurationsverwaltung"
 
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "Italienisch"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Adressbuch"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Spanisch"
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+msgid "Notification and feedback"
+msgstr "Benachrichtigung und Rückmeldung"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Englisch"
+#: setup/class_setupStep_Feedback.inc:112
+msgid "Get notifications or send feedback"
+msgstr "Erhalte Benachrichtungen oder sende Rückmeldung"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Niederländisch"
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+msgid "Setup error"
+msgstr "Einrichtungsfehler"
 
-#: include/functions.inc:2391
-msgid "Polish"
-msgstr "Polnisch"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
+msgstr "Fehler beim Rückmelden"
 
-#: include/functions.inc:2392
-msgid "Swedish"
-msgstr "Schwedisch"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
+msgstr "Kann Rückmeldung nicht an '%s' senden: %s"
 
-#: include/functions.inc:2393
-msgid "Chinese"
-msgstr "Chinesisch"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
+msgstr ""
+"Kann Rückmeldung nicht senden: Der Dienst ist vorübergehend nicht verfügbar"
 
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Russisch"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
+msgstr "Feedback erfolgreich gesendet"
 
-#: include/functions.inc:2544
-#, php-format
-msgid "Setting the password failed!"
-msgstr "Das Setzen des Passworts ist fehlgeschlagen!"
+#: setup/class_setupStep_Feedback.inc:179
+msgid "Please specify a valid email address."
+msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
 
-#: include/functions.inc:2562
-#, php-format
+#: setup/class_setupStep_Feedback.inc:183
 msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+"You have to select at least one of both options, subscribe or send feedback."
 msgstr ""
-"Das in POSTMODIFY angegebene Kommando '%s' (Modul '%s') scheint nicht zu "
-"existieren."
+"Sie müssen mindestens eine der beiden Optionen auswählen, Abonnement der "
+"Mailingliste oder Senden einer Rückmeldung."
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
-msgstr "Kann Samba-Hash nicht erzeugen!"
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+msgid "License"
+msgstr "Lizenz"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
-msgstr "Leistungswarnung"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr "Bedingungen und Auflagen für den Gebrauch"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, 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!"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Samba-Einstellungen"
 
-#: include/class_ldap.inc:579
-#, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
-msgstr ""
-"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: keine Objektklasse "
-"gefunden"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
+msgstr "Samba Hash-Generator"
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
-msgstr ""
-"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: nicht unterstützt"
+#: setup/setup_config2.tpl:31
+msgid "RID base"
+msgstr "RID Basis"
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "während der Arbeit mit '%s' auf dem LDAP-Server '%s'"
+#: setup/setup_config2.tpl:46
+msgid "Workstation container"
+msgstr "Container für Arbeitsstationen"
 
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
-msgstr "während der Arbeit auf LDAP-Server '%s'"
+#: setup/setup_config2.tpl:61
+msgid "Samba SID mapping"
+msgstr "Samba SID Abbildung"
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
-msgstr ""
-"Dies ist keine valide DN: '%s'.  Ein Block für den Import sollte mit "
-"'dn:...' beginnen in Zeile %s"
+#: setup/setup_config2.tpl:71
+msgid "Timezone"
+msgstr "Zeitzone"
 
-#: include/class_ldap.inc:964
-#, 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!"
+#: setup/setup_config2.tpl:74
+msgid "Please choose your preferred timezone here"
+msgstr "Bitte wählen Sie hier Ihre bevorzugte Zeitzone"
 
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
-msgstr "Benutzer-Einstellungen"
+#: setup/setup_config2.tpl:96
+msgid "Additional GOsa settings"
+msgstr "Zusätzliche GOsa-Einstellungen"
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
-msgstr "Nachname"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr "Ermögliche Kopieren & Einfügen"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr "Vorname"
+#: setup/setup_config2.tpl:112
+msgid "Enable DNS extension"
+msgstr "Aktiviere DNS-Erweiterung"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Kennung"
+#: setup/setup_config2.tpl:124
+msgid "Enable DHCP extension"
+msgstr "Aktiviere DHCP-Erweiterung"
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
-msgstr "Passwort löschen"
+#: setup/setup_config2.tpl:136
+msgid "Enable mime type management"
+msgstr "Aktiviere MIME-Typen Verwaltung"
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr "Neues Passwort setzen"
+#: setup/setup_config2.tpl:148
+msgid "Enable FAI release management"
+msgstr "Aktiviere FAI Release-Verwaltung"
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Bild"
+#: setup/setup_config2.tpl:160
+msgid "Enable user netatalk plugin"
+msgstr "Aktiviere Netatalk-Erweiterung für Benutzer"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "Benutzerbild"
+#: setup/setup_config2.tpl:171
+msgid "Government mode"
+msgstr "Behörden-Modus"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Bild entfernen"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "Mail-Einstellungen"
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Zertifikate"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "Zustellungs-Methode"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Standard-Zertifikat"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr "Attribut für Kontoidentifikation"
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Entfernen"
+#: setup/setup_config2.tpl:214
+msgid "Vacation templates"
+msgstr "Urlaubsvorlagen"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "S/MIME-Zertifikat"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr "Verwenden Cyrus UNIX-Stil"
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "PKCS12-Zertifikat"
+#: setup/setup_config2.tpl:240
+msgid "Snapshots / Undo"
+msgstr "Snapshots / Rückgängig"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Zertifikat-Seriennummer"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+msgid "Enable snapshots"
+msgstr "Snapshots ermöglichen"
 
-#: plugins/personal/generic/class_user.inc:38
-#, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Zusätzliche GOsa-Einstellungen"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+msgid "Snapshot base"
+msgstr "Basis für Snapshots"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "weiblich"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr "Abonnieren der GOsa-Announce Mailingliste"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "männlich"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
+"Wenn Sie diese Option auswählen wird GOsa eine Verbindung zu http://oss."
+"gonicus.de versuchen, um die GOsa-Announce Mailingliste für Sie zu "
+"abonnieren. Sie müssen dem Abonnement danach noch per Mail zustimmen."
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
-msgstr "Kann Datei nicht hochladen!"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "Mail-Adresse"
 
-#: plugins/personal/generic/class_user.inc:492
-msgid "Please enter a valid serial number!"
-msgstr "Bitte geben Sie eine gültige Seriennummer ein!"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr "Sende Feedback an das GOsa Projektteam."
 
-#: plugins/personal/generic/class_user.inc:536
+#: setup/setup_feedback.tpl:44
 msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
 msgstr ""
-"(Manche Zertifikate werden momentan nicht unterstützt und werden daher als "
-"'ungültig' angezeigt)."
+"Bei Auswahl dieser Option wird GOsa versuchen, sich zu http://oss.gonicus.de "
+"zu verbinden, um Ihr Formular anonym abzusenden."
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "Zertifkat ist gültig im Zeitraum von %s bis %s (momentan: %s)."
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr "Hat Ihnen die Setup-Prozedur weitergeholfen?"
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "gültig"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr "Falls nicht, welche Probleme sind Ihnen aufgefallen"
+
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr "Ist dies die erstmalige Verwendung von GOsa?"
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "ungültig"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr "Ich verwende es seit"
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "Kein Zertifikat eingerichtet"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr "Wählen Sie das Jahr aus, seit dem Sie GOsa verwenden"
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-msgid "Password method"
-msgstr "Passwort-Methode"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr "Welches Betriebssystem / welche Distribution verwenden Sie?"
 
-#: plugins/personal/generic/class_user.inc:575
-msgid "The selected password method is no longer available."
-msgstr "Die gewählte Passwort-Methode ist nicht mehr verfügbar."
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr "Welchen Webserver verwenden Sie?"
 
-#: plugins/personal/generic/class_user.inc:755
-#, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr ""
-"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr "Welche PHP-Version verwenden Sie?"
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Vorname"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr "LDAP"
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Homepage"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr "Welche(n) LDAP-Server verwenden Sie?"
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Telefon"
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr "Wie viele Objekte befinden sich in Ihrem LDAP-Verzeichnis?"
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/setup_feedback.tpl:123
+msgid "Features"
+msgstr "Fähigkeiten"
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "Mobiltelefon"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr "Welche Funktionen von GOsa verwenden Sie?"
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Pager"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
+"Welche Funktionen würden Sie gerne in zukünftigen Versionen von GOsa sehen?"
 
-#: plugins/personal/generic/class_user.inc:1285
-msgid "Cannot open certificate!"
-msgstr "Kann Zertifikat nicht öffnen!"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr "Feedback senden"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Referat"
+#: setup/setup_schema.tpl:3
+msgid "Schema specific settings"
+msgstr "Schemaspezifische Einstellungen"
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Hausbezeichnung"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr "Ermögliche Schema-Validierung bei der Anmeldung"
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Anrede"
+#: setup/setup_schema.tpl:16
+msgid "Check status"
+msgstr "Status prüfen"
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "letzte Übermittlung"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr "Schema-Prüfung erfolgreich"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Dienstort"
+#: setup/setup_schema.tpl:23
+msgid "Schema check failed"
+msgstr "Schema-Prüfung fehlgeschlagen"
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Aufgabengebiet"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Sachgebiet"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Amts-/Dienstbezeichnung"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr "Ich habe die Lizenz gelesen und akzeptiere diese"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Öffentlich sichtbar"
+#: setup/class_setup.inc:196
+msgid "Completed"
+msgstr "Abgeschlossen"
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Straße"
+#: setup/class_setupStep_Ldap.inc:53
+msgid "LDAP setup"
+msgstr "LDAP-Einrichtung"
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Rolle"
+#: setup/class_setupStep_Ldap.inc:54
+msgid "LDAP connection setup"
+msgstr "Einrichten der LDAP-Verbindung"
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Postleitzahl"
+#: setup/class_setupStep_Ldap.inc:55
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
+msgstr ""
+"Dieser Dialog richtet die grundlegende Konfiguration der LDAP-Verbindung für "
+"GOsa ein."
 
-#: plugins/personal/generic/class_user.inc:1432
-msgid "Generic user settings"
-msgstr "Allgemeine Benutzereinstellungen"
+#: setup/class_setupStep_Ldap.inc:105
+#, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "Verbindung als anonymer Benutzer zu Server '%s' schlug fehl."
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Mein Konto"
+#: setup/class_setupStep_Ldap.inc:107
+#, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Verbindung als Benutzer '%s' zu Server '%s' schlug fehl."
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-msgid "User password"
-msgstr "Benutzerpasswort"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich."
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Nachname"
+#: setup/class_setupStep_Ldap.inc:113
+msgid "Please specify user and password."
+msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein."
 
-#: plugins/personal/generic/class_user.inc:1445
-msgid "User identification"
-msgstr "Benutzerkennung"
+#: setup/class_setupStep_Ldap.inc:115
+#, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich."
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Titel"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr "Aussehen und Verhalten"
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Akademischer Titel"
+#: setup/setup_config1.tpl:6
+msgid "Theme"
+msgstr "Thema"
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "Private Adresse"
+#: setup/setup_config1.tpl:15
+msgid "Apache"
+msgstr "Apache"
 
-#: plugins/personal/generic/class_user.inc:1449
-msgid "Home phone number"
-msgstr "Telefonnummer (privat)"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr "Sende komprimierte Ausgabe an den Browser"
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Abteilung"
+#: setup/setup_config1.tpl:27
+msgid "People and group storage"
+msgstr "Ablage für Personen und Gruppen"
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Geburtsdatum"
+#: setup/setup_config1.tpl:30
+msgid "People DN attribute"
+msgstr "DN-Attribut für Personen"
 
-#: plugins/personal/generic/class_user.inc:1454
-msgid "Gender"
-msgstr "Geschlecht"
+#: setup/setup_config1.tpl:41
+msgid "People storage subtree"
+msgstr "Teilbaum für Benutzerablage"
 
-#: plugins/personal/generic/class_user.inc:1455
-msgid "Preferred language"
-msgstr "Bevorzugte Sprache"
+#: setup/setup_config1.tpl:50
+msgid "Group storage subtree"
+msgstr "Teilbaum für Gruppenablage"
 
-#: plugins/personal/generic/class_user.inc:1456
-msgid "Department number"
-msgstr "Abteilungsnummer"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr "Persönlichen Titel in der Benutzer-DN mitführen"
 
-#: plugins/personal/generic/class_user.inc:1457
-msgid "Employee number"
-msgstr "Personalnummer"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr "Gelockerte Namensvorgaben"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Anstellungsart"
+#: setup/setup_config1.tpl:81
+msgid "Automatic uids"
+msgstr "Automatische UIDs"
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Ort"
+#: setup/setup_config1.tpl:113
+msgid "Number base for people/groups"
+msgstr "Zählbasis für Benutzer/Gruppen"
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Land"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr "Hook für Zählbasis"
 
-#: plugins/personal/generic/class_user.inc:1462
-msgid "Room number"
-msgstr "Raumnummer"
+#: setup/setup_config1.tpl:140
+msgid "Password encryption algorithm"
+msgstr "Passwort-Verschlüsselungsalgorithmus"
 
-#: plugins/personal/generic/class_user.inc:1463
-msgid "Telefon number"
-msgstr "Telefonnummer"
+#: setup/setup_config1.tpl:151
+msgid "Password restrictions"
+msgstr "Passwort-Einschränkungen"
 
-#: plugins/personal/generic/class_user.inc:1464
-msgid "Mobile number"
-msgstr "Mobiltelefon"
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr "Minimale Passwortlänge"
 
-#: plugins/personal/generic/class_user.inc:1465
-msgid "Pager number"
-msgstr "Pagernummer"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr "Verschiedene Zeichen vom vorherigen Kennwort"
 
-#: plugins/personal/generic/class_user.inc:1466
-msgid "User certificates"
-msgstr "Benutzer-Zertifikate"
+#: setup/setup_config1.tpl:182
+msgid "Password change hook"
+msgstr "Hook für Passwort-Änderung"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "Adresse"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr "Verwende SASL für Kerberos."
 
-#: plugins/personal/generic/class_user.inc:1469
-msgid "Fax number"
-msgstr "Faxnummer"
+#: setup/setup_config1.tpl:209
+msgid "Use account expiration"
+msgstr "Verwende verfallende Konten"
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/setup_config1.tpl:221
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
 msgstr ""
-"Sie haben die Verschlüsselungsart, mit der Ihr Passwort in der LDAP-"
-"Datenbank gespeichert wird, geändert. Aus diesem Grund müssen Sie das "
-"Passwort an dieser Stelle noch einmal eingeben, damit es von GOsa in der "
-"gewünschten Verschlüsselung abgelegt werden kann."
-
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Neues Passwort (Wiederholung)"
+"GOsa unterstützt zahlreiche Verschlüsselungsarten für Ihre Passwörter. "
+"Üblicherweise wird die Auswahl über Vorlagen verwaltet, Sie können aber auch "
+"eine Standardmethode festlegen, die benutzt werden soll."
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Passwort setzen"
+#: setup/setup_config1.tpl:222
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa arbeitet immer als Administrator und verwaltet die Rechte intern "
+"(solange die in OpenLDAP implementierten ACIs nicht vollständig unterstützt "
+"werden, wird dieser Workaround bestehen bleiben). Damit dies möglich ist, "
+"wird an dieser Stelle der DN des LDAP-Administrators und das dazugehörige "
+"Passwort benötigt."
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Persönliche Informationen"
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
+msgstr ""
+"Einige LDAP-Parameter beeinflussen die Art und Weise wie (und wo) GOsa Daten "
+"in der Baumstruktur ablegt. Prüfen Sie die vorgegebenen Werte, ob sie Ihren "
+"Vorgaben entsprechen."
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
-msgstr "Bevorzugte Sprache"
+#: setup/setup_config1.tpl:224
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa unterstützt verschiedene Zustellungs-Methoden. Diese Methoden stellen "
+"Schnittstellen für Benutzer-Postfächer und die allgemeine Verwaltung von "
+"Kontingenten bereit. Wählen sie 'dummy', um all Ihre Mail-Einstellungen "
+"unberührt zu lassen."
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Wählen Sie den Teilbaum, in den der Benutzer eingepflegt werden soll"
+#: setup/setup_language.tpl:3
+msgid "Please select the preferred language"
+msgstr "Bitte wählen Sie Ihre bevorzugte Sprache"
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
-msgstr "Wählen Sie eine Basis"
+#: setup/setup_language.tpl:5
+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 ""
+"An dieser Stelle können Sie die standortweite Standardsprache auswählen. Bei "
+"Auswahl von 'automatisch' wird automatisch die vom Browser angeforderte "
+"Sprache verwendet. Diese Einstellung kann von der Einstellung des Benutzers "
+"überschrieben werden."
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Adresse"
+#: setup/setup_language.tpl:9
+msgid "Please select your preferred language here"
+msgstr "Bitte wählen Sie hier Ihre bevorzugte Sprache"
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Privat-Telefon"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr "Installationsprüfung"
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Passwort-Speicherung"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
+"Grundlegende Überprüfungen der PHP-Version und benötigten Erweiterungen."
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Zertifikate bearbeiten"
+#: setup/class_setupStep_Checks.inc:64
+msgid "Checking PHP version"
+msgstr "Prüfe PHP-Version"
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Angabe zur Organisationseinheit"
+#: setup/class_setupStep_Checks.inc:65
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP muß in Version %s oder höher vorliegen."
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "Abteilungs-Nr."
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
+"GOsa benötigt Funktionen, die in älteren PHP-Versionen nicht unbedingt "
+"(stabil) verfügbar sind, aktualisieren Sie daher auf eine unterstützte PHP-"
+"Version."
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "Angestellten-Nr."
+#: setup/class_setupStep_Checks.inc:72
+msgid "Checking for LDAP support"
+msgstr "Prüfe auf LDAP-Unterstützung"
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "Zimmer-Nr."
+#: setup/class_setupStep_Checks.inc:73
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr ""
+"Dies ist die grundlegende Erweiterung für GOsa und wird daher wirklich "
+"benötigt."
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/class_setupStep_Checks.inc:74
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
-"Die Passwörter, die Sie als 'Neues Passwort' und 'Neues Passwort "
-"(Wiederholung)' eingegeben haben sind nicht identisch."
+"Das LDAP-Modul (php5-ldap) wird zur Kommunikation mit dem LDAP-Server "
+"benötigt."
 
-#: plugins/personal/generic/main.inc:104
-msgid "You have no permission to set your password!"
-msgstr "Sie haben keine Berechtigung ihr Passwort zu speichern!"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Prüfe auf gettext-Erweiterung"
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Bearbeiten"
+#: setup/class_setupStep_Checks.inc:81
+msgid "Gettext support is required for internationalization."
+msgstr "Gettext-Unterstützung wird für Mehrsprachigkeit benötigt."
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Generische Benutzer-Information"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr "Bitte stellen Sie sicher, dass die Erweiterung aktiviert ist."
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Bild ändern"
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Prüfe auf iconv-Erweiterung"
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
-msgstr "Mehrfach bearbeiten"
+#: setup/class_setupStep_Checks.inc:89
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr ""
+"Dieses Modul wird von GOsa benutzt, um Samba Munged Dial-Information zu "
+"konvertieren und wird daher benötigt."
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
-msgstr "Name der Vorlage"
+#: setup/class_setupStep_Checks.inc:96
+msgid "Checking for mhash support"
+msgstr "Prüfe auf mHash-Unterstützung"
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Geschlecht"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr "Sie benötigen dieses Modul um die SSHA-Verschlüsselung zu verwenden"
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Verwenden sie den Telefon-Reiter"
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
+"Das mHash-Modul für PHP 5 ist nicht verfügbar, bitte installieren Sie php5-"
+"mhash."
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
-msgstr "Passwort-Änderung ist nicht erlaubt"
+#: setup/class_setupStep_Checks.inc:104
+msgid "Checking for IMAP support"
+msgstr "Prüfe auf IMAP-Unterstützung"
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
-msgstr "Sie haben keine Berechtigung, ihr Passwort zu ändern"
+#: setup/class_setupStep_Checks.inc:105
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
+msgstr ""
+"Das IMAP-Modul wird für die Kommunikation mit ihrem IMAP-Server benötigt. "
+"GOsa bezieht damit Statusinformationen, erstellt und entfernt Mail-Konten, "
+"etc."
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/class_setupStep_Checks.inc:106
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
 msgstr ""
-"Sie haben erfolgreich Ihr Passwort geändert. Bitte denken Sie daran alle "
-"Programme anzupassen, die dieses Passwort auch benutzen."
+"Dieses Modul wird verwendet, um mit Ihrem Mail-Server zu kommunizieren. "
+"Bitte installieren Sie php5-imap."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/class_setupStep_Checks.inc:112
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Ihr Passwort ändern"
+msgid "Checking for multi byte support"
+msgstr "Prüfe auf gettext-Erweiterung"
 
-#: plugins/personal/password/class_password.inc:80
-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."
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
 msgstr ""
-"Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben ist leer."
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
-msgstr "Das alte und neue Passwort sind sich zu ähnlich."
+#: setup/class_setupStep_Checks.inc:120
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Prüfe auf getacl im IMAP-Modul"
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
+#: setup/class_setupStep_Checks.inc:121
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
-"Das Passwort, welches Sie als 'Neues Passwort' eingegeben haben, ist zu kurz."
+"Diese Funktion wird benötigt um Zugriffsrechte von verteilten Ordnern zu "
+"verwalten. Ältere IMAP-Module unterstützen das Auslesen dieser "
+"Zugriffsregeln nicht. Sie benötigen eine aktuelle PHP-Version, um diese "
+"Funktion nutzen zu können."
 
-#: plugins/personal/password/class_password.inc:95
-#, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet: %s."
+#: setup/class_setupStep_Checks.inc:128
+msgid "Checking for MySQL support"
+msgstr "Prüfe auf MySQL-Unterstützung"
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:129
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
+"MySQL support is needed to communicate with several supported databases."
 msgstr ""
-"Das Passwort, welches Sie als aktuelles Passwort eingegeben haben, ist nicht "
-"korrekt."
+"Das MySQL-Modul wird benötigt, um mit verschiedenen unterstützten "
+"Datenbanken zu kommunizieren."
 
-#: plugins/personal/password/class_password.inc:115
-msgid "You have no permission to change your password."
-msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern."
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
+"Dieses Modul wird verwendet, um mit Datenbank-Servern zu kommunizieren "
+"(GOfax, asterisk, GLPI, etc.). Bitte installieren Sie php5-mysql"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:136
+msgid "Checking for kadm5 support"
+msgstr "Prüfe auf kadm5-Unterstützung"
+
+#: setup/class_setupStep_Checks.inc:137
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
 msgstr ""
-"Um das Passwort zu ändern, benutzen Sie das untere Feld. Die Änderung wird "
-"sofort wirksam. Bitte merken Sie sich das neue Passwort, da Sie sich ohne "
-"dieses nicht mehr anmelden können."
+"Um Benutzer auch im Kerberos verwalten zu können, muß das kadm5-Modul "
+"installiert sein. Sie können es über das PEAR-Netzwerk beziehen."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:138
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
 msgstr ""
-"Das Ändern des Passwortes wirkt sich auf ihre Authentifizierung bei Mail-, "
-"Proxy-, Samba- und Unix-Diensten aus."
+"Dieses Modul wird zur Verwaltung von Benutzer in Kerberos benötigt, es ist "
+"über das PEAR-Netzwerk verfügbar."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Felder löschen"
+#: setup/class_setupStep_Checks.inc:144
+msgid "Checking for SNMP support"
+msgstr "Prüfe auf SNMP-Unterstützung"
 
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
-msgstr "UNIX-Einstellungen"
+#: setup/class_setupStep_Checks.inc:145
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
+msgstr ""
+"Das Simple Network Management Protocol (SNMP) benötigt, um Status-"
+"Informationen von Clients zu beziehen."
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Basisverzeichnis"
+#: setup/class_setupStep_Checks.inc:146
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
+msgstr ""
+"Dieses Modul wird für die Client-Überwachung benötigt. Bitte installation "
+"Sie php5-snmp."
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "Erzwinge UID/GID"
+#: setup/class_setupStep_Checks.inc:152
+msgid "Checking for CUPS support"
+msgstr "Prüfe auf CUPS-Unterstützung"
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:153
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"Falls Sie eine Liste der verfügbaren Drucker über IPP an Stelle von printcap "
+"Dateien auslesen möchten, benötigen Sie das CUPS-Modul."
+
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Suche fping-Programm"
+
+#: setup/class_setupStep_Checks.inc:163
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"Das fping-Werkzeug wird in einer Thin-Client basierten Terminal-Umgebung "
+"benötigt."
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:164
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr "Fping wird nur in Thin-Client basierten Terminal-Umgebungen benötigt."
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "Gruppenmitgliedschaft"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr "Samba Passwort-Hash Erzeugung"
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(Warnung: mehr als 16 Gruppen werden von NFS nicht unterstützt!)"
+#: setup/class_setupStep_Checks.inc:180
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Um Samba 2/3-Passwörter verwenden zu können, müssen zusätzliche Pakete zum "
+"Erzeugen von Passwort-Hashes installiert werden."
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Wählen Sie die hinzuzufügenden Gruppen"
+#: setup/class_setupStep_Checks.inc:181
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Um Samba 2.x/3.x nutzen zu können, werden zusätzliche Perl-Bibliotheken "
+"benötigt. Werfen Sie einen Blick auf mkntpasswd."
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Zeige Gruppen der Abteilung"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
+msgstr "Aus"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Wählen Sie die Abteilung, auf die die Suchfunktion angewandt wird"
+#: setup/class_setupStep_Checks.inc:192
+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/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Zeige Gruppen, auf die zutrifft"
+#: setup/class_setupStep_Checks.inc:193
+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/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Regulärer Ausdruck zum Erkennen von Gruppennamen"
+#: setup/class_setupStep_Checks.inc:201
+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/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Zeige Gruppen des Benutzers"
+#: setup/class_setupStep_Checks.inc:202
+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/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Benutzername, dessen Gruppen angezeigt werden"
+#: setup/class_setupStep_Checks.inc:203
+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/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Search in subtrees"
-msgstr "Suche in Teilbäumen"
+#: setup/class_setupStep_Checks.inc:211
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr ""
+"Um GOsa fehlerfrei benutzen zu können, muß die Option session.auto_register "
+"in Ihrer php.ini auf 'Off' stehen."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "Der Benutzer muss beim ersten Anmelden sein Passwort ändern"
+#: setup/class_setupStep_Checks.inc:212
+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/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "Passwort läuft ab am"
+#: setup/class_setupStep_Checks.inc:219
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr ""
+"GOsa benötigt mindestens 32MB Speicher, weniger Speicher würde "
+"unvorhersehbare Probleme verursachen! Bei größeren Installationen sollte "
+"dieser Wert noch vergrössert werden."
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "UNIX"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
+"Suchen Sie in Ihrer php.ini nach 'memory_limit' und setzen Sie es auf '32M' "
+"oder höher."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:227
+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/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "abgelaufen"
+#: setup/class_setupStep_Checks.inc:228
+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/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "Nachfrist aktiv"
+#: setup/class_setupStep_Checks.inc:235
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen."
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "aktiv, Passwort kann nicht geändert werden"
+#: setup/class_setupStep_Checks.inc:236
+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/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "aktiv, Passwort abgelaufen"
+#: setup/class_setupStep_Checks.inc:243
+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/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "aktiv"
+#: setup/class_setupStep_Checks.inc:244
+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/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "unkonfiguriert"
+#: setup/class_setupStep_Checks.inc:250
+msgid "On"
+msgstr "An"
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automatisch"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
+"Erhöhen Sie die Sicherheit des Server, indem sie magic_quotes_gpc auf 'on' "
+"stellen. PHP wird in dieser Einstellung alle 'quotes' in 'strings' umwandeln."
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:252
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
 msgstr ""
+"Suchen Sie in Ihrer php.ini nach 'magic_quotes_gpc' und setzen Sie es auf "
+"'On'."
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:259
+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/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Umgebung"
+#: setup/class_setupStep_Checks.inc:260
+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/personal/posix/class_posixAccount.inc:465
+#: setup/class_setupStep_Checks.inc:270
+msgid "Configuration writeable"
+msgstr "Konfigurationsdatei schreibbar"
+
+#: setup/class_setupStep_Checks.inc:271
+msgid "The configuration file can't be written"
+msgstr "Die Konfigurationsdatei kann nicht geschrieben werden"
+
+#: setup/class_setupStep_Checks.inc:272
 #, php-format
-msgid "Password can't be changed up to %s days after last change"
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
-"Passwort kann bis zu %s Tage nach der letzten Änderung nicht geändert werden"
+"GOsa liest sein Konfiguration von einer Datei in (%s/%s). Die Einrichtung "
+"kann die Konfiguration direkt schreiben, wenn diese schreibbar ist."
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "Der Benutzer muß sein Passwort nach %s Tagen ändern"
+#: setup/setup_config3.tpl:2
+msgid "GOsa core settings"
+msgstr "GOsa-Grundeinstellungen"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
-msgstr "Konto nach %s Tagen nach Ablauf ohne Aktivität deaktivieren"
+#: setup/setup_config3.tpl:6
+msgid "Disable primary group filter"
+msgstr "Abschalten des Filters für primäre Gruppen"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Benutzer %s Tage vor dem Ablauf des Passwortes warnen"
+#: setup/setup_config3.tpl:18
+msgid "Display summary in listings"
+msgstr "Zeige Zusammenfassung in Listen"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "Vollzugriff"
+#: setup/setup_config3.tpl:30
+msgid "Honour administrative units"
+msgstr "Beachte administrative Einheiten"
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "erlaube Zugriff auf diese Hosts"
+#: setup/setup_config3.tpl:42
+msgid "Smarty compile directory"
+msgstr "Smarty Arbeitsverzeichnis"
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-#, fuzzy
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr "Wartezeit für Sperre abgelaufen! Ignoriere Sperre."
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
+msgstr "SNMP Gemeinschaft"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid "Uid number"
-msgstr "Uid Nummer"
+#: setup/setup_config3.tpl:60
+msgid "Path for PPD storage"
+msgstr "Pfad für PPD-Ablage"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
-msgstr ""
-"Für diesen Benutzer wurde eine bereits vorhandene uid-Nummer geschrieben. "
-"Wenn dies unbeabsichtigt geschah, prüfen Sie bitte alle verwendeten uid-"
-"Nummern."
+#: setup/setup_config3.tpl:77
+msgid "Path for kiosk profile storage"
+msgstr "Pfad für Kioskprofil-Ablage"
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Gruppe des Benutzers"
+#: setup/setup_config3.tpl:96
+msgid "Enable system deployment"
+msgstr "Aktiviere Systemverteilung"
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
-#, fuzzy
-msgid "shadowMin"
-msgstr "Shadow min"
+#: setup/setup_config3.tpl:115
+msgid "Mail queue script"
+msgstr "Mail-Queue Skript"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-#, fuzzy
-msgid "shadowMax"
-msgstr "Shadow max"
+#: setup/setup_config3.tpl:134
+msgid "Notification script"
+msgstr "Benachrichtigungsskript"
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
-#, fuzzy
-msgid "shadowWarning"
-msgstr "Shadow warning"
+#: setup/setup_config3.tpl:153
+msgid "Enable edit locking"
+msgstr "Aktiviere Bearbeitungssperre"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
-#, fuzzy
-msgid "shadowInactive"
-msgstr "Shadow inactive"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr "Anmeldung und Sitzung"
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
-msgstr "Konnte keine freie ID allozieren: Zu viele Benutzer!"
+#: setup/setup_config3.tpl:175
+msgid "Login attribute"
+msgstr "Anmeldeattribut"
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-msgid "POSIX account"
-msgstr "POSIX-Konto"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr "Erzwinge das Deaktivieren von register_globals"
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
+msgstr "Erzwinge verschlüsselte Verbindungen"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-msgid "Group ID"
-msgstr "Gruppen-ID"
+#: setup/setup_config3.tpl:210
+msgid "Warn if session is not encrypted"
+msgstr "Warnen wenn die Sitzung nicht verschlüsselt ist"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-msgid "Force password change on login"
-msgstr "Erzwinge Änderung des Passwort bei Anmeldung"
+#: setup/setup_config3.tpl:222
+msgid "Remember dialog filter settings"
+msgstr "Merken der Dialogfilter-Einstellungen"
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
-msgid "Shadow min"
-msgstr "Shadow min"
+#: setup/setup_config3.tpl:234
+msgid "Session lifetime"
+msgstr "Lebenszeit der Sitzung"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
-msgstr "Shadow max"
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr "Debugging"
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
-msgid "Shadow warning"
-msgstr "Shadow warning"
+#: setup/setup_config3.tpl:247
+msgid "Show PHP errors"
+msgstr "Zeige PHP Fehler"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-msgid "Shadow inactive"
-msgstr "Shadow inactive"
+#: setup/setup_config3.tpl:259
+msgid "Maximum LDAP query time"
+msgstr "Maximale LDAP Abfragedauer"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
-msgid "Shadow expire"
-msgstr "Shadow expire"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr "Protokolliere LDAP-Statistiken"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
-msgid "System trust model"
-msgstr "Modell des System-Vertrauens"
+#: setup/setup_config3.tpl:289
+msgid "Debug level"
+msgstr "Debug Level"
 
-#: plugins/personal/posix/main.inc:131
-#, fuzzy
-msgid "POSIX settings"
-msgstr "UNIX-Einstellungen"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Primäre Gruppe"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+msgid "Enabled"
+msgstr "Aktiviert"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Status"
+#: setup/class_setupStep_Welcome.inc:38
+msgid "Welcome"
+msgstr "Willkommen"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
-msgid "In all groups"
-msgstr "In allen Gruppen"
+#: setup/class_setupStep_Welcome.inc:39
+msgid "The welcome message"
+msgstr "Die Willkommensnachricht"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
-msgid "Not in all groups"
-msgstr "Nicht in allen Gruppen"
+#: setup/class_setupStep_Welcome.inc:40
+msgid "Welcome to GOsa setup wizard"
+msgstr "Willkommen beim GOsa Einrichtungsassistent"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Konto"
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+msgid "LDAP schema check"
+msgstr "LDAP Schemaprüfung"
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "System-Vertrauen"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr "Führe Test auf Ihrem aktuellen LDAP Schema durch"
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
-msgstr "Vertrauens-Modus"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
+msgstr "PHP Modul- und Erweiterungsprüfung"
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Wählen Sie die hinzuzufügenden Systeme"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr ""
+"GOsa kann nicht ausgeführt werden, wenn das Problem nicht behoben wird."
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Zeige die Systeme der Abteilung"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
+msgstr "GOsa wird verwendbar sein, ohne dies zu beheben."
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Zeige die Systeme, auf die das Folgende passt"
+#: setup/setup_checks.tpl:67
+msgid "PHP setup configuration"
+msgstr "Konfiguration der PHP-Umgebung"
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Regulärer Ausdruck zum Erkennen von Mail-Adressen"
+#: setup/setup_checks.tpl:67
+msgid "show information"
+msgstr "zeige Information"
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Erzeugen eines neuen Benutzer aus einer Vorlage"
+#: setup/setup_finish.tpl:3
+msgid "Create your configuration file"
+msgstr "Erzeugen Ihrer Konfigurationsdatei"
 
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
-msgstr ""
-"Das Anlegen von neuen Benutzern kann durch die Verwendung von Vorlagen "
-"vereinfacht werden. Viele Datenbankeinträge lassen sich damit automatisch "
-"ausfüllen. Wählen sie 'keine' um den Vorlagen-Dialog zu überspringen."
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "Konfiguration herunterladen"
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Vorlage"
+#: setup/setup_finish.tpl:18
+msgid "Status: "
+msgstr "Status: "
 
-#: plugins/admin/users/password.tpl:4
+#: setup/class_setupStep_Finish.inc:38
+msgid "Write configuration file"
+msgstr "Schreibe Konfigurationsdatei"
+
+#: setup/class_setupStep_Finish.inc:39
+msgid "Finish - write the configuration file"
+msgstr "Abschluß - Schreiben der Konfigurationsdatei"
+
+#: setup/class_setupStep_Finish.inc:100
 msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
-"Um das Benutzer-Passwort zu ändern, nutzen Sie die Felder unten. Die "
-"Änderungen werden sofort wirksam. Merken Sie sich das Passwort, da sich der "
-"Benutzer ohne dieses Passwort nicht anmelden kann."
-
-#: plugins/admin/users/password.tpl:21
-msgid "Strength"
-msgstr "Stärke"
+"Ihre Konfigurationsdatei ist momentan für jeden lesbar. Bitte ändern Sie die "
+"Zugriffsrechte!"
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Liste der Benutzer"
+#: setup/class_setupStep_Finish.inc:102
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht."
 
-#: plugins/admin/users/class_divListUsers.inc:60
+#: setup/class_setupStep_Finish.inc:111
+#, php-format
 msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+"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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
-"Dieses Menü ermöglicht es Ihnen, Benutzer hinzuzufügen, zu bearbeiten oder "
-"zu entfernen. Bei einer großen Anzahl von Benutzern bietet sich die "
-"Verwendung der Bereichsauswahl an."
-
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Eigenschaften"
+"Nachdem Sie die Konfigurationsdatei unter %s abgelegt haben, muß "
+"sichergestellt werden, daß der Webserver auf %s zugreifen kann, während "
+"normale Nutzer dies nicht dürfen. Führen Sie diese Kommandos aus, um die "
+"obigen Voraussetzungen zu erfüllen:"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Aktionen"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+msgid "GOsa settings 2/3"
+msgstr "GOsa-Einstellungen 2/3"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Wählen Sie dies, um Vorlagen für Benutzer anzuzeigen"
+#: setup/class_setupStep_Config2.inc:87
+msgid "Customize special parameters"
+msgstr "Anpassen von Spezialparametern"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Zeige Vorlagen"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "XML-Fehler in der Datei guide.xml: %s in Zeile %d"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr "Auswählen, um die Benutzer anzuzeigen, die nur ein GOsa-Objekt haben"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr "Für dieses Modul ist keine Hilfe verfügbar."
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Zeige zweckbezogene Benutzer"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr "Vorherige"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Auswählen, um die Benutzer mit UNIX-Konto zu sehen"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr "Nächste"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Zeige UNIX-Benutzer"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr "%s Ergebnisse für Ihre Suche nach %s"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr ""
-"Auswählen, um die Benutzer zu sehen, die eine Mail-Erweiterung besitzen"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr "%s%% Trefferquote in Datei %s"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Zeige Mail-Benutzer"
+#: include/class_tabs.inc:216
+#, 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/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Auswählen, um die Benutzer zu sehen, die Samba-Einstellungen besitzen"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "Zugriffsregeln"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Zeige Samba-Benutzer"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Referenzen"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Auswählen, um die Benutzer zu sehen, die Proxy-Einstellungen besitzen"
+#: include/class_plugin.inc:492
+#, fuzzy
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
+"Das Objekt wurde verändert nachdem es in GOsa geöffnet wurde. Bitte stellen "
+"Sie sicher, dass niemand wichtige Änderungen vorgenommen hat, die verloren "
+"gehen, wenn Sie diesen Eintrag speichern."
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Zeige Proxy-Benutzer"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, 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."
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr "Ändere ACL dn"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Zeige die Benutzer, auf die Folgendes passt"
+#: include/class_plugin.inc:1613
+msgid "from"
+msgstr "von"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Aktualisieren"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Gehe zur Wurzel-Abteilung"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Passwort ändern"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Wurzel"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-msgid "Copy"
-msgstr "Kopieren"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Eine Abteilung nach oben"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-msgid "Cut"
-msgstr "Ausschneiden"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Gehe zur Abteilung des Benutzers"
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Heimat"
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "Allgemeine Einstellungen bearbeiten"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "Liste neu laden"
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr "Inkonsistente Enkodierung der DN erkannt: '%s'"
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "UNIX-Einstellungen bearbeiten"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+msgid "Restore"
+msgstr "Wiederherstellen"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "Umgebungs-Einstellungen bearbeiten"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr "Stelle Abzüge von bereits entfernten Objekten her"
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Mail"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr "Abzug wiederherstellen"
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "Mail-Einstellungen bearbeiten"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create snapshot"
+msgstr "Snapshot erstellen"
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "Telefon-Einstellungen bearbeiten"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create a new snapshot from this object"
+msgstr "Erstelle einen neuen Snapshot dieses Objekts"
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "Fax-Einstellungen bearbeiten"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr "Keine Objekte dieser Kategorie"
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "Samba-Einstellungen bearbeiten"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
+"Das Konfigurationsformat hat sich geändert. Bitte durchlaufen Sie erneut die "
+"Einrichtung!"
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
-msgstr "Netatalk"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr "Unbekannt"
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "Netatalk-Einstellungen bearbeiten"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
+"Kann angegebene Datei nicht öffnen, prüfen Sie die Existenz und/oder "
+"Zugriffsrechte"
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "Neuen Benutzer aus Vorlage erstellen"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr ""
+"Kann angegebenes Zertifikat nicht lesen (oder es wurde eine leere "
+"Zeichenkette übergeben)"
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "Neuen Benutzer aus dieser Vorlage erstellen"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr ""
+"Kann Zertifikat nicht laden, wahrscheinlich aufgrund eines nicht "
+"unterstützten Formats (benutzen Sie PEM/DER)"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "Ausschneiden"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr "Um Zertifikatsinformationen anzuzeigen muss das Format PEM sein"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "Diesen Eintrag ausschneiden"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "Kann Datei nicht anlegen/öffnen"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "Kopieren"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr "Kein gültiges Zertifikat geladen"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "Diesen Eintrag kopieren"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
+"Das mcrypt-Modul wurde nicht gefunden. Bitte installieren Sie php5-mcrypt."
 
-#: plugins/admin/users/class_divListUsers.inc:319
-msgid "Deactivated"
-msgstr "Abgeschaltet"
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "Sie sind dabei den Snapshot '%s' zu entfernen."
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
-msgstr "Aktiv"
+#: include/class_SnapShotDialog.inc:135
+msgid "Remove snapshot"
+msgstr "Snapshot entfernen."
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "Benutzer bearbeiten"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "Passwort"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "XML-Fehler in der Datei gosa.conf: %s in Zeile %d"
 
-#: plugins/admin/users/class_divListUsers.inc:343
-msgid "You are not allowed to change the password for this user."
-msgstr "Sie haben keine Berechtigung, das Passwort dieses Benutzers zu ändern."
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr "Erfassung der Konfigurationsdatei"
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "Benutzer entfernen"
+#: include/class_config.inc:228
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
+"Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den "
+"Administrator."
 
-#: plugins/admin/users/class_divListUsers.inc:357
-msgid "You are not allowed to remove this user."
-msgstr "Sie haben keine Berechtigung, diesen Benutzer zu löschen."
+#: include/class_config.inc:561
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "SID und/oder RIDBASE fehlen in der Konfiguration!"
 
-#: plugins/admin/users/class_divListUsers.inc:443
-msgid "Number of listed users"
-msgstr "Anzahl der angezeigten Benutzer"
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
+msgid "Internal error"
+msgstr "Interner Fehler"
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-msgid "Number of listed departments"
-msgstr "Anzahl der angezeigten Abteilungen"
+#: include/class_log.inc:88
+#, php-format
+msgid "Logging failed: %s"
+msgstr "Protokollieren fehlgeschlagen: %s"
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "Domänen-Benutzer"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr "Protokollieren nach MySQL inaktiv"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "Ab"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
+"Das Protokollieren in die MySQL-Datenbank ist für diese Sitzung "
+"abgeschaltet, da es Kommunikationsfehler mit der angegebenen Protokoll-"
+"Datenbank gab."
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_log.inc:120
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
-msgstr ""
+msgid "Invalid option '%s' specified."
+msgstr "Ungültige Option '%s' angegeben."
 
-#: plugins/admin/users/class_userManagement.inc:293
-msgid "Password change failed."
-msgstr "Passwort-Änderung fehlgeschlagen."
+#: include/class_log.inc:124
+msgid "Specified objectType is empty or invalid"
+msgstr "Der angegebene Objekttyp ist leer oder ungültig"
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
-msgstr "Sie haben keine Berechtigung, das Passwort dieses Benutzers zu setzen!"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
+msgstr ""
+"Sie haben das Protokollieren in eine MySQL-Datenbank aktiviert, aber es gibt "
+"keine verfügbaren Protokoll-Server."
 
-#: plugins/admin/users/class_userManagement.inc:456
+#: include/class_log.inc:157
 #, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Sie löschen gerade den folgenden Eintrag: %s"
+msgid "Cannot connect to logging server '%s'."
+msgstr "Kann nicht zum Protokoll-Server '%s' verbinden."
 
-#: plugins/admin/users/class_userManagement.inc:458
+#: include/class_log.inc:165
 #, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Sie löschen gerade die folgenden Einträge: %s"
-
-#: plugins/admin/users/class_userManagement.inc:460
-msgid "Delete users"
-msgstr "Benutzer entfernen"
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "Kann die Datenbank '%s' auf dem Server '%s' nicht auswählen: %s"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "User delete"
-msgstr "Benutzer Entfernen"
+#: include/class_log.inc:181
+#, php-format
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
+#: include/class_log.inc:218
 #, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "Sie haben keine Berechtigung, um den Benutzer '%s' zu löschen!"
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:576
+#: include/class_log.inc:241
 #, php-format
-msgid "You're about to delete the user %s."
-msgstr "Sie löschen gerade den Benutzer %s."
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "Kann die Datenbank '%s' auf dem Server '%s' nicht abfragen: %s"
 
-#: plugins/admin/users/class_userManagement.inc:603
-msgid "User deleted"
-msgstr "Benutzer entfernt"
+#: include/php_setup.inc:91
+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/admin/users/class_userManagement.inc:603
-msgid "User successfully removed."
-msgstr "Benutzer erfolgreich entfernt."
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr "Sende Fehlerbericht an das GOsa Team"
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "Sie haben keine Berechtigung, diesen Benutzer zu löschen!"
+#: include/php_setup.inc:96
+msgid "Send bugreport"
+msgstr "Fehlerbericht senden"
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "keine"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr "Zeige/Verstecke Informationen"
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
-msgstr ""
-"Dies umfasst alle Konto-Informationen, Zugriffsregeln, IMAP-Einstellungen, "
-"etc. dieses Benutzers. Bitte prüfen Sie genau, da es keine Möglichkeit für "
-"GOsa gibt, die Daten wiederherzustellen. "
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "PHP Fehler"
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Benutzerverwaltung"
+#: include/php_setup.inc:130
+msgid "class"
+msgstr "Klasse"
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
-msgstr "Gruppen-Einstellungen"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "Funktion"
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Gruppenname"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "statisch"
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "UNIX-Name der Gruppe"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "Methode"
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr ""
-"Normalerweise werden IDs automatisch generiert. Auswählen um dies zu umgehen"
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr "Ablaufverfolgung"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "Erzwinge GID"
+#: include/php_setup.inc:179
+msgid "File"
+msgstr "Datei"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Erzwungene ID-Nummer"
+#: include/php_setup.inc:179
+msgid "Line"
+msgstr "Zeile"
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Wählen Sie die hinzuzufügenden Benutzer"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Typ"
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Wählen um Server anzuzeigen"
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "Argumente"
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
-msgstr "Suche im Teilbaum"
+#: include/class_acl.inc:26
+msgid "Access control"
+msgstr "Zugriffskontrolle"
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Zeige die Benutzer der Abteilung"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
+msgstr "Verwende ACL aus Rollendefinition"
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "Regulärer Ausdruck zum Erkennen von Benutzernamen"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+msgid "Show/Hide Advanced Settings"
+msgstr "Zeige/Verstecke Erweiterte Einstellungen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-msgid "Cannot find group SID in your configuration!"
-msgstr "Kann keine Gruppen-SID in Ihrer Konfiguration finden!"
+#: include/class_acl.inc:690
+msgid "Create objects"
+msgstr "Erstelle Objekte"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Diese 'dn' hat keine Gruppenerweiterungen."
+#: include/class_acl.inc:691
+msgid "Move objects"
+msgstr "Objekte verschieben"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Samba-Gruppe"
+#: include/class_acl.inc:692
+msgid "Remove objects"
+msgstr "Objekte entfernen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Domänen-Administratoren"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr "Änderbar vom Eigentümer"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Domänen-Benutzer"
+#: include/class_acl.inc:697
+msgid "Move object"
+msgstr "Objekt verschieben"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Domänen-Gäste"
+#: include/class_acl.inc:698
+msgid "Remove object"
+msgstr "Objekt entfernen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "Spezielle Gruppe (%d)"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "lesen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "! unbekannte id"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "schreiben"
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
-#, fuzzy, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
-msgstr ""
-"Die Suche ergab zu viele Treffer. Es werden maximal %s Einträge angezeigt."
+#: include/class_acl.inc:710
+msgid "Complete object"
+msgstr "Vollständiges Objekt"
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
+#: include/class_acl.inc:826
 #, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "Kann keine SID für '%s' finden!"
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgstr "Unbekannter ACL-Typ '%s'. Verarbeitung nicht möglich."
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
+#: include/class_acl.inc:869
 #, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "Kann keine RIDBASE für '%s' finden!"
-
-#: plugins/admin/groups/class_groupGeneric.inc:966
-msgid "Cannot allocate a free ID!"
-msgstr "Konnte keine freie ID allozieren!"
+msgid "Unknown entry '%s'!"
+msgstr "Unbekannter Eintrag '%s'!"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-msgid "Generic group settings"
-msgstr "Allgemeine Gruppeneinstellungen"
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, php-format
+msgid "Role: %s"
+msgstr "Rolle: %s"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
-msgid "Phone pickup group"
-msgstr "Gesprächs-Annahme Gruppe"
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
+msgstr "Unbekannte Rolle, möglicherweise wurde sie entfernt"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-msgid "Nagios group"
-msgstr "Nagios-Gruppe"
+#: include/class_acl.inc:939
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Enthält Einstellungen für diese Objekte: %s"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
-msgid "Group member"
-msgstr "Gruppenmitglieder"
+#: include/class_acl.inc:948
+msgid "Members:"
+msgstr "Mitglieder:"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
-msgid "Samba group type"
-msgstr "Samba-Gruppentyp"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr "ACL ist gültig für alle Benutzer"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
-msgid "Samba domain name"
-msgstr "Samba Domänen-Name"
+#: include/class_acl.inc:1115
+msgid "Access control list"
+msgstr "Zugriffskontrollliste"
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Liste der Gruppen"
+#: include/class_acl.inc:1123
+msgid "Role name"
+msgstr "Rollenname"
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
-msgstr ""
-"Dieses Menü erlaubt es Ihnen Gruppen hinzuzufügen, zu bearbeiten oder zu "
-"entfernen. Bei einer großen Anzahl von Gruppen bietet sich die Verwendung "
-"der Bereichsauswahl an."
+#: include/class_acl.inc:1124
+msgid "Role description"
+msgstr "Rollenbeschreibung"
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "Gruppenname / Abteilung"
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
+msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu."
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr ""
-"Auswählen, um die Gruppen zu sehen, die primären Gruppen der Benutzer sind"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "Kann GOtomasses Queue-Datei '%s' nicht finden."
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Zeige primäre Gruppen"
+#: include/class_hostActionQueue.inc:73
+#, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "Kann GOtomasses Queue-Datei '%s' nicht lesen."
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr ""
-"Auswählen, um die Gruppen zu sehen, denen Samba-Eigenschaften zugeordnet sind"
+#: include/class_hostActionQueue.inc:80
+#, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "Kann GOtomasses Archiv-Datei '%s' nicht lesen."
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Zeige Samba-Gruppen"
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
+msgstr "GOsa Infrastruktur"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "Auswählen, um die Gruppen zu sehen, denen Anwendungen zugeordnet sind"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Zeige Anwendungs-Gruppen"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Kann GOtomasses Queue-Datei '%s' nicht schreiben."
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
 msgstr ""
-"Auswählen, um die Gruppen zu sehen, denen E-Mail-Eigenschaften zugeordnet "
-"sind"
-
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Zeige E-Mail-Gruppen"
-
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "Auswählen, um die \"normalen\" Gruppen zu sehen"
+"Die Queue-Datei wurde seit der letzten Aktualisierung verändert. Kann die "
+"Änderungen nicht speichern."
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Zeige Funktions-Gruppen"
+#: include/class_hostActionQueue.inc:277
+#, php-format
+msgid "Entry with id '%s' not found."
+msgstr "Eintrag mit der ID '%s' wurde nicht gefunden."
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Gruppe"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
+"Konnte Eintrag nicht aktualisieren, der Eintrag mit der ID '%s' wurde nicht "
+"gefunden."
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Anwendung"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
+msgstr ""
+"Konnte Eintrag nicht entfernen, der Eintrag mit der ID '%s' wurde nicht "
+"gefunden."
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Diesen Eintrag bearbeiten"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr "Kann die Priorität der ID '%s' nicht festlegen. Die ID ist unbekannt."
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Diesen Eintrag entfernen"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr "Konnte XML nicht erfassen."
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-msgid "Number of listed groups"
-msgstr "Anzahl der angezeigten Gruppen"
+#: include/class_gosaSupportDaemon.inc:745
+#, fuzzy, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/class_gosaSupportDaemon.inc:765
+#, fuzzy, php-format
+msgid "Cannot remove entry: %s"
+msgstr "Kann kaputten Eintrag nicht lesen - übersprungen!"
+
+#: include/functions.inc:101
+#, 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/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/functions.inc:108
 #, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Sie löschen gerade den Eintrag %s"
+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/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:318
 #, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Sie löschen gerade die Einträge %s"
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr ""
+"FATAL: Fehler beim Verbinden mit dem LDAP-Server. Die Meldung lautet '%s'."
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-msgid "Permission error"
-msgstr "Berechtigungsfehler"
+#: include/functions.inc:380
+#, fuzzy
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr ""
+"Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum. Bitte "
+"kontaktieren Sie Ihren Administrator."
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-msgid "You have no permission to delete this entry!"
-msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
+#: include/functions.inc:450
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr ""
+"Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum. Bitte "
+"kontaktieren Sie Ihren Administrator."
 
-#: plugins/admin/groups/class_groupManagement.inc:434
-#, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "Sie sind dabei die Gruppe '%s' zu löschen."
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
+"Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!"
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:605
+#, php-format
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
-"Bitte prüfen Sie, ob Sie die Aktion wirklich durchführen möchten, da GOsa "
-"die Daten nicht wiederherstellen kann."
+"Kann Sperrinformation für LDAP-Baum nicht erzeugen. Bitte kontaktieren Sie "
+"Ihren Administrator!"
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Gruppenverwaltung"
+#: include/functions.inc:605 include/functions.inc:620
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr "Der LDAP-Server meldete: %s"
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Beschreibender Text für diese Gruppe"
+#: include/functions.inc:620
+#, php-format
+msgid "Adding a lock failed."
+msgstr "Hinzufügen der Sperre ist fehlgeschlagen"
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Wählen Sie den Teilbaum, in den die Gruppe eingepflegt werden soll"
+#: include/functions.inc:699
+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/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Auswählen, um eine sambakonforme Gruppe zu erzeugen"
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!"
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "in der Domain"
+#: include/functions.inc:998
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
+"Verwende eine neue Größenbeschränkung von %s Einträgen und zeige diese "
+"Meldung bei Überschreitung wieder an"
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "Mitglieder sind in einer Telefon-Gruppe"
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "unvollständig"
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
-msgstr "Mitglieder sind in einer Nagios-Gruppe"
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "LDAP-Fehler:"
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Gruppenmitglieder"
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+"Probleme mit dem LDAP-Server bedeuten meist, dass ihre letzten Änderungen "
+"verloren gegangen sind. Bitte prüfen Sie die LDAP-Konfiguration um "
+"eventuelle Fehler aufzudecken und wiederholen Sie die Aktion."
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-msgid "ACL Templates"
-msgstr "ACL Vorlagen"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr ""
+"Bitte prüfen Sie ihre Eingaben und beheben Sie den Fehler. Drücken Sie den "
+"'OK'-Knopf um dieses Meldungsfenster zu schließen."
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
-msgstr "ACL"
+#: include/functions.inc:1325
+msgid "Continue anyway"
+msgstr "Trotzdem Fortsetzen"
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-msgid "ACLs"
-msgstr "ACLs"
+#: include/functions.inc:1327
+msgid "Edit anyway"
+msgstr "Trotzdem bearbeiten"
 
-#: plugins/admin/acl/class_aclManagement.inc:163
-msgid "You have no permission to create a new role!"
-msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
+#: include/functions.inc:1329
+#, 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/admin/acl/class_aclManagement.inc:200
-msgid "You have no permission to edit this ACL!"
-msgstr "Sie haben keine Berechtigung, diese ACL zu bearbeiten!"
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr "Einträge pro Seite"
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
-#, php-format
-msgid "You're about to delete the acl %s."
-msgstr "Sie sind dabei die ACL %s zu löschen."
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr "Filter anwenden"
 
-#: plugins/admin/acl/class_divListACL.inc:51
-msgid "List of acl"
-msgstr "Liste der ACL"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/admin/acl/class_divListACL.inc:52
-msgid "List of acls"
-msgstr "Liste der ACLs"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "GOsa Entwicklerversion (Rev %s)"
 
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
-msgstr ""
-"Dieses Menü erlaubt es Ihnen, ausgewählte ACLs zu entfernen und zu "
-"bearbeiten."
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr "Die Datei '%s' konnte nicht entfernt werden."
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "Übersicht"
+#: include/functions.inc:1950 include/functions.inc:1970
+msgid "Cannot write to revision file!"
+msgstr "Kann nicht in Revisions-Datei schreiben!"
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "Ignoriere Teilbäume"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr "'base_hook' ist nicht verfügbar. Verwende die Standard-Basis."
 
-#: plugins/admin/acl/class_divListACL.inc:85
-msgid "Display acls matching"
-msgstr "Zeige ACLs, auf die zutrifft"
+#: include/functions.inc:2244
+msgid "LDAP warning"
+msgstr "LDAP-Warnung"
 
-#: plugins/admin/acl/class_divListACL.inc:244
-msgid "Edit acl role"
-msgstr "ACL-Rolle bearbeiten"
+#: include/functions.inc:2244
+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/admin/acl/class_divListACL.inc:254
-msgid "Delete acl role"
-msgstr "ACL-Rolle entfernen"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr "Verwendet, um kontenbezogene Informationen zu speichern."
 
-#: plugins/admin/acl/class_divListACL.inc:266
-msgid "Edit acl"
-msgstr "ACL bearbeiten"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
+"Verwenden, um die momentan bearbeiteten Einträge für andere zu sperren (um "
+"gleichzeitige Änderungen zu verhindern)."
 
-#: plugins/admin/acl/class_divListACL.inc:270
-msgid "Delete acl"
-msgstr "ACL entfernen"
+#: include/functions.inc:2320
+#, php-format
+msgid "Missing required object class '%s'!"
+msgstr "Die benötigte Objektklasse '%s' fehlt!"
 
-#: plugins/admin/acl/class_aclRole.inc:26
-msgid "Access control list templates"
-msgstr "Vorlagen für Zugriffskontrollisten"
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
+msgstr "Die optionale Objektklasse '%s' fehlt!"
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "ACL-Rollen"
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr "Falsche·Version·der·benötigten·Objektklasse·'%s'·(!=%s)!"
 
-#: plugins/admin/acl/class_aclRole.inc:618
-msgid "Object in use"
-msgstr "Objekt in Verwendung"
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr "Falsche Version der optionalen Objektklasse '%s' (!=%s)!"
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2334
 #, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
-msgstr ""
-"Die Rolle kann nicht entfernt werden, solange sie noch von folgenden "
-"Objekten verwendet wird:"
+msgid "Class(es) available"
+msgstr "Verfügbare Klasse(n)"
 
-#: plugins/admin/acl/class_aclRole.inc:700
-msgid "Acl roles"
-msgstr "ACL-Rollen"
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
+msgstr ""
+"Sie haben die rfc2307bis-Option in der LDAP-Einrichtung aktiviert, aber Ihre "
+"Schema-Konfiguration unterstützt dies nicht."
 
-#: plugins/admin/acl/remove.tpl:6
+#: include/functions.inc:2357
 msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
-"Dies umfasst alle System- und Setup-Informationen Bitte prüfen Sie dies "
-"genau, da es keine Möglichkeit für GOsa gibt, die Daten zu restaurieren. "
+"Um rfc2307bis-konforme Gruppen verwenden zu können, muss die Objektklasse "
+"'posixGroup' AUXILIARY sein"
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2361
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
-"Eine Sicherung der LDAP-Datenbank bietet sich an. Wenn Sie dies erledigt "
-"haben, drücken Sie 'Entfernen' um Fortzufahren oder 'Abbrechen', um den "
-"Vorgang abzubrechen."
+"Ihre Schemakonfiguration ist für rfc2307bis-Gruppen eingerichtet, aber Sie "
+"haben die Unterstützung im LDAP-Einrichtungsschritt ausgeschaltet."
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-msgid "ACL management"
-msgstr "ACL-Verwaltung"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr "Die Objektklasse 'posixGroup' muss STRUCTURAL sein"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "Das benötigte Feld 'Name' ist nicht ausgefüllt."
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Deutsch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "Das benötigte Feld 'Beschreibung' ist nicht gesetzt."
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Französisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-msgid "Fatal error"
-msgstr "Schwerer Fehler"
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "Italienisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-msgid "Cannot find an unused tag for this administrative unit!"
-msgstr "Kann keinen unbenutzten Tag für diese administrative Einheit finden!"
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Spanisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr "Markiere '%s'."
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Englisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "Verschiebe '%s' nach '%s'"
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Niederländisch"
+
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr "Polnisch"
+
+#: include/functions.inc:2392
+msgid "Swedish"
+msgstr "Schwedisch"
+
+#: include/functions.inc:2393
+msgid "Chinese"
+msgstr "Chinesisch"
+
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Russisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
+#: include/functions.inc:2562
 #, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "Fehler beim kopieren von %s, breche ab"
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr ""
+"Das in POSTMODIFY angegebene Kommando '%s' (Modul '%s') scheint nicht zu "
+"existieren."
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Abteilungen"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr "Kann Samba-Hash nicht erzeugen!"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "Land"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr "Leistungswarnung"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Telefon"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+#, 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!"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "Name der Abteilung"
+#: include/class_ldap.inc:592
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
+"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: keine Objektklasse "
+"gefunden"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Kategorie"
+#: include/class_ldap.inc:640
+#, php-format
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
+"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: nicht unterstützt"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "Administrative Einstellungen"
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "während der Arbeit mit '%s' auf dem LDAP-Server '%s'"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:726
 #, php-format
-msgid "Object '%s' is already tagged"
-msgstr "Objekt '%s' ist bereits markiert"
+msgid "while operating on LDAP server %s"
+msgstr "während der Arbeit auf LDAP-Server '%s'"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:948
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
-msgstr "Füge Markierung (%s) zu Objekt '%s' hinzu"
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
+msgstr ""
+"Dies ist keine valide DN: '%s'.  Ein Block für den Import sollte mit "
+"'dn:...' beginnen in Zeile %s"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:977
 #, php-format
-msgid "Removing tag from object '%s'"
-msgstr "Entferne Markierung von Objekt '%s'"
+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!"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-msgid "You are currently moving/renaming this department."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
-"Momentan sind Sie dabei, diese Abteilung zu verschieben bzw. neu zu benennen."
+"Kann die Kopieren & Einfügen Queue nicht aufräumen: das Setzen der "
+"Berechtigungen für '%s' schlug fehl!"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
-"Verändern des für die Namensbildung zuständigen Attributes 'ou' einer "
-"Abteilung oder der Basis kann vorhandene ACLs und/oder Snapshots für alle "
-"Objekte unbrauchbar machen."
+"Kann·die·Kopieren·&·Einfügen·Queue·nicht·aufräumen:·keine "
+"Schreibberechtigung innerhalb von '%s'!"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
-msgstr "GOsa kann dies (noch) NICHT für Sie reparieren."
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+msgstr ""
+"Kopieren und Einfügen fehlgeschlagen: das Objekt '%s' ist kein gültiges LDAP-"
+"Objekt!"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
-"Bevor Sie diese Aktion bestätigen, stellen Sie sicher, dass alles wie "
-"erwartet sein wird, vielleicht ist die beste Lösung, vorher ein Backup zu "
-"erstellen."
+"Kann LDAP-Abzug nicht speichern: keine Schreibberechtigung innerhalb von '%"
+"s'!"
 
-#: plugins/admin/departments/tabs_department.inc:54
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
-"Verschieben des Baums ist fehlgeschlagen: Der Zielbaum ist ein Teilbaum der "
-"Quelle!"
+"Kann·LDAP-Abzug·nicht·speichern:·Setzen der Berechtigungen·für·'%s' "
+"fehlgeschlagen!"
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
-msgstr "Gewünschte Operation wird durchgeführt"
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
+msgstr "Kann LDAP-Abzug nicht speichern: keine Schreibberechtigung in '%s/%s'!"
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
-msgstr ""
-"Ihr Browser unterstützt keine IFrames - bitte wählen Sie diesen Link, um die "
-"gewünschte Operation durchzuführen."
+#: include/class_CopyPasteHandler.inc:268
+#, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "Kann Abzug-Datei '%s' nicht laden!"
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Liste der Abteilungen"
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Sie sind dabei, den kopierten Eintrag '%s' einzufügen."
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
-msgstr ""
-"Dieses Menü erlaubt es Ihnen, Abteilungen hinzuzufügen, zu bearbeiten oder "
-"zu entfernen. Bei einer Vielzahl von Abteilungen bietet sich die Verwendung "
-"der Bereichsauswahl über der Abteilungsliste an."
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Sie sind dabei, den kopierten Eintrag '%s' einzufügen."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Regulärer Ausdruck zum Erkennen von Abteilungs-Namen"
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
+msgstr "Kann nicht einfügen"
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "Abteilung"
+#: include/utils/class_msgPool.inc:14
+#, fuzzy
+msgid "You have no permission to delete this object!"
+msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Abteilungen"
+msgid "You have no permission to delete the object:"
+msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr ""
-"Sie sind dabei, einen gesamten LDAP-Teilbaum unterhalb von '%s' zu löschen."
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"Dies umfasst 'alle' Konten, System- und Setup-Informationen dieses "
-"Teilbaums. Bitte prüfen Sie genau, da es keine Möglichkeit für GOsa gibt, "
-"die Daten wiederherzustellen. "
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "Sie haben keine Berechtigung um diesen Eintrag zu entfernen!"
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Abteilungsverwaltung"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "Name der Abteilung"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "Sie haben keine Berechtigung, eine neue Rolle zu erzeugen!"
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "Name des zu erzeugenden Teilbaums"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "Beschreibender Text zu dieser Abteilung"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "Kategorie dieses Teilbaums"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr "Wählen Sie den Teilbaum, in den die Abteilung eingepflegt werden soll"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "Land, in dem dieser Teilbaum anzusiedeln ist"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "Sie haben keine Berechtigung um das Objekt '%s' zu speichern."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "Ort dieses Teilbaums"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "Postalische Anschrift dieses Teilbaums"
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "Einleitende Telefonnummer dieses Teilbaums"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "Einleitende Fax-Nummer dieses Teilbaums"
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr ""
+"Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr "Abteilung als eigenständige administrative Einheit kennzeichnen"
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+#, fuzzy
+msgid "Connection information"
+msgstr "Persönliche Informationen"
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
-msgid "Please enter the new object group name"
-msgstr "Bitte geben Sie einen Namen für die neue Objektgruppe ein"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Die SQL-Datenbank kann nicht erreicht werden!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
-msgstr "Warteschlange"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "Die angegebene Datenbank kann nicht ausgewählt werden."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
-msgstr "System"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Geräte"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "Die angegebene Datenbank kann nicht ausgewählt werden."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Start"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Das Feld 'Fax' enthält eine ungültige Telefonnummer."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Arbeitsplätze"
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr ""
+"Das in CHECK angegebene Kommando '%s' (Modul '%s') scheint nicht zu "
+"existieren."
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Die von ihnen angebene 'UID' ist zu klein."
+
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
 msgstr ""
-"Sie können Terminals und Arbeitsstationen nicht zu einer Objektgruppe "
-"zusammenfassen!"
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "Diese 'dn' ist keine Objektgruppenerweiterungen."
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Die von ihnen angebene 'UID' ist zu klein."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "zu viele unterschiedliche Objekte!"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr "PHP muß in Version %s oder höher vorliegen."
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "Benutzer"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "Gruppen"
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Die von Ihnen angegebene 'Kennung' ist bereits vergeben."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "Anwendungen"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Das benötigte Feld 'Name' ist nicht gesetzt."
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "Abteilungen"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "Server"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "Das Feld 'Name' enthält ungültige Zeichen."
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "Arbeitsstationen"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-msgid "winstations"
-msgstr "Windows-Arbeitsstationen"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Passwort-Änderung ist nicht erlaubt"
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "Terminals"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Aktiviere DHCP-Erweiterung"
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "Telefone"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "Drucker"
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Hinzufügen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "und"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Entfernen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr "Unbekannte dn:"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Entfernen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr ""
-"Sie können maximal zwei verschiedene Objekttypen miteinander kombinieren!"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "Setzen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-msgid "Object group generic"
-msgstr "Objektgruppe (Allgemein)"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Bearbeiten"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Objektgruppen"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Benutzer bearbeiten"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-msgid "Member"
-msgstr "Mitglied"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "Zurück"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Name der Objektgruppen"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back %s..."
+msgstr "Benutzer bearbeiten"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
-#, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "Sie löschen gerade den Objekteintrag %s"
+#: include/utils/class_msgPool.inc:298
+#, fuzzy, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Dieses Konto besitzt keine gültigen GOsa-Erweiterungen."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
-#, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "Sie löschen gerade die Objekteinträge %s"
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr ""
+"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Sie können diese durch "
+"einen Klick auf die untere Schaltfläche deaktivieren."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "Sie sind dabei die Objektgruppe '%s' zu löschen."
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, 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 UNIX-Erweiterungen. Um sie zu deaktivieren, "
+"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Arbeitsstation"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr ""
+"Dieses Konto besitzt keine aktivierten UNIX-Erweiterungen. Sie können diese "
+"durch einen Klick auf die untere Schaltfläche aktivieren."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-msgid "Windows Install"
-msgstr "Windows Installation"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Um sie zu deaktivieren, "
+"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "Terminal"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Dieses Konto besitzt aktivierte UNIX-Erweiterungen. Um sie zu deaktivieren, "
+"müssen Sie zunächst die Samba- und Umgebungserweiterungen deaktivieren."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Drucker"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Zusätzliche GOsa-Einstellungen"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "Wählen Sie die hinzuzufügenden Objekte"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "UNIX-Einstellungen"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "Zeige Abteilungen"
+#: include/utils/class_msgPool.inc:353
+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/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Zeige Abteilungen"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Januar"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "Wählen, um GOsa-Konten zu sehen"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Februar"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Zeige Personen"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "März"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "Wählen, um GOsa Gruppen zu sehen"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "April"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Zeige Gruppen"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Mai"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Wählen, um Anwendungen zu sehen"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Juni"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Zeige Anwendungen"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Juli"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Zeige Server"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "August"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "Wählen, um die 'Arbeitsstationen' zu sehen"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "September"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Zeige Arbeitsstationen"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Oktober"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "Wählen, um die 'Terminals' zu sehen"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "November"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Zeige Terminals"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Dezember"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "Wählen, um die 'Netzwerkdrucker' zu sehen"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Übersicht"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Zeige Netzwerk-Drucker"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "Mai"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "Wählen, um die 'VOIP Telefone' zu sehen"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Zeige Telefone"
+#: include/utils/class_msgPool.inc:367
+msgid "Wednesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "Zeige die Objekte der Abteilung"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "Zeige die Objekte, auf die Folgendes passt"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "Regulärer Ausdruck zum Erkennen von Objekt-Namen"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
-msgstr "Liste von Objektgruppen"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "Heimdal-Einstellungen"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"Dieses Menü erlaubt es Ihnen Makros hinzuzufügen, zu bearbeiten oder zu "
-"entfernen. Bei einer großen Anzahl von Makros bietet sich die Verwendung der "
-"Bereichsauswahl an."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr "Name der Objektgruppen"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "modify operation"
+msgstr "zeige Information"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
-msgstr "Zeige Gruppen die Benutzer enthalten"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "delete operation"
+msgstr "Wählen, um die 'Arbeitsstationen' zu sehen"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Zeige Gruppen mit Benutzern"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "search operation"
+msgstr "Verwende verfallende Konten"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
-msgstr "Zeige Gruppen die Gruppen enthalten"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Authentisierung"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Zeige Gruppen mit Gruppen"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "LDAP-Abfrage fehlgeschlagen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr "Zeige Gruppen die Applikationen enthalten"
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "LDAP-Abfrage fehlgeschlagen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Zeige Gruppen mit Applikationen"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
+"Die Einstellung '%s' der Zeitzone in Ihrer gosa.conf ist ungültig. Kann "
+"Zeitzonen-Versatz nicht berechnen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr "Zeige Gruppen die Abteilungen enthalten"
+#: include/class_multi_plug.inc:362
+msgid "You are currently editing mutliple entries."
+msgstr "Sie bearbeiten momentan mehrere Einträge."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Zeige Gruppen mit Abteilungen"
+#: include/class_multi_plug.inc:391
+msgid "Password reset"
+msgstr "Passwort Rücksetzung"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
-msgstr "Zeige Gruppen die Server enthalten"
+#: include/class_multi_plug.inc:391
+msgid "The user password was resetted, please set a new password value!"
+msgstr "Das Nutzer-Passwort wurde zurückgesetzt, bitte setzen Sie ein Neues!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Zeige Gruppen mit Servern"
+#: html/getvcard.php:39
+msgid "Missing parameters!"
+msgstr "Fehlende Parameter!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
-msgstr "Zeige Gruppen die Arbeitsstationen enthalten"
+#: html/getldif.php:82 html/getxls.php:493
+msgid "Permission denied!"
+msgstr "Zugriff verweigert!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Zeige Gruppen mit Arbeitsstationen"
+#: html/getldif.php:82
+msgid "You are not allowed to create ldap dumps."
+msgstr "Es ist Ihnen nicht erlaubt, LDAP-Abzüge zu erstellen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
-msgid "Select to see groups containing windows workstations"
-msgstr "Zeige Gruppen die Windows-Arbeitsstationen enthalten"
+#: html/getldif.php:107
+msgid "Error in ivbb parameter!"
+msgstr "Fehler im ivbb-Parameter!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
-msgid "Show groups containing windows workstations"
-msgstr "Zeige Gruppen mit Windows-Arbeitsstationen"
+#: html/password.php:58 html/index.php:141
+#, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "Die GOsa-Konfigurationsdatei %s/%s ist nicht lesbar. Abgebrochen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr "Zeige Gruppen die Terminals enthalten"
+#: html/password.php:78
+msgid "Accessibility"
+msgstr "Zugänglichkeit"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Zeige Gruppen mit Terminals"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr ""
+"Auf das als Compile-Verzeichnis angegegebene Verzeichnis '%s' kann nicht "
+"zugegriffen werden!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr "Zeige Gruppen die Drucker enthalten"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr "Fehler: Passwort-Methode ist nicht verfügbar!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
-msgstr "Zeige Gruppen mit Druckern"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
-msgstr "Zeige Gruppen die Telefone enthalten"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "Sie haben keine Berechtigung ihr Passwort zu ändern."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
-msgstr "Zeige Gruppen mit Telefonen"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet:"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Objektgruppe"
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "Die Sitzung ist nicht verschlüsselt."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
-msgid "You are not allowed to remove this entry."
-msgstr "Sie haben keine Berechtigung, diesen Eintrag zu löschen!"
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "SSL Sitzung"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
-msgid "Number of listed object groups"
-msgstr "Anzahl der angezeigten Objektgruppen"
+#: html/setup.php:66 html/index.php:166
+msgid "Smarty"
+msgstr "Smarty"
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:57
+msgid "Session is not encrypted!"
+msgstr "Die Sitzung ist nicht verschlüsselt!"
+
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
-"Bitte überprüfen Sie genau was Sie tun, weil GOsa keine Möglichkeit hat, die "
-"Daten wiederherzustellen."
+"Die Konfiguration der Gültigkeitsdauer einer Sitzung in Ihrer gosa.conf wird "
+"von der Einstellung in der php.ini überschrieben."
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Name der Gruppe"
+#: html/index.php:141
+msgid "Configuration accessibility"
+msgstr "Zugänglichkeit der Konfigurationsdatei"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Zusammengefasste Objekte"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr "Es gab ein Problem mit der Authentisierungseinrichtung!"
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Objektname"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
+"Es konnte kein gültiger Benutzer für die aktuell eingerichtete "
+"Authentisierung gefunden werden!"
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "Inhalt"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
+"Die Benutzerinformation ist für die konfigurierten LDAP-Bäume nicht "
+"eindeutig!"
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten."
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr "Kann Information über das installierte LDAP-Schema nicht ermitteln!"
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "Fax"
+#: html/index.php:282
+msgid "Your ldap setup contains old schema definitions:"
+msgstr "Ihre LDAP-Einrichtung enthält veraltete Schema-Definitionen:"
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "Bitte geben Sie Ihr Passwort ein!"
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "Thin Client"
+#: html/index.php:318
+msgid "Authentication error"
+msgstr "Authentifizierungsfehler"
 
-#: plugins/generic/welcome/welcome.tpl:4
-msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
 msgstr ""
-"Dies ist das GOsa Hauptmenü. Wählen Sie die gewünschte Option aus dem Menü "
-"links oder durch die Auswahl eines Piktogrammes unten. Alle Änderungen "
-"werden direkt in den LDAP-Server Ihres Unternehmens eingepflegt."
+"Konnte Benutzerinformation für htaccess-Authentisierung nicht beziehen!"
 
-#: plugins/generic/welcome/welcome.tpl:8
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
+msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator."
+
+#: html/index.php:425
 msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
-"Benutzen Sie 'Abmelden' oben links, um die Arbeit mit GOsa zu beenden und "
-"'Hauptmenü', um wieder in diese Ansicht zurückzugelangen."
-
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "Das GOsa Team"
+"Ihr Browser hat Cookies deaktiviert. Bitte aktivieren Sie zunächst Cookies "
+"und laden anschliessend diese Seite neu, bevor Sie sich anmelden!"
 
-#: plugins/generic/welcome/main.inc:26
+#: html/main.php:153
 #, php-format
-msgid "Welcome %s!"
-msgstr "Willkommen %s!"
+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/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
-msgstr "Bug-Melder"
+#: html/main.php:171
+msgid "PHP configuration"
+msgstr "PHP-Konfiguration"
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-#, fuzzy
+#: html/main.php:172
 msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
-"<a·href='https://oss.gonicus.de/labs/gosa/"
-"newticket'·target='_blank'>Bugsubmitter</a>"
+"FATAL: 'Register globals' ist im PHP aktiviert. GOsa läßt keine Anmeldung "
+"zu, bis dies von einem Administrator behoben wurde."
+
+#: html/main.php:217
+msgid "Configuration warning"
+msgstr "Konfigurationswarnung"
+
+#: html/main.php:217
+msgid "Running out of memory!"
+msgstr "Der verfügbare Arbeitsspeicher wird knapp!"
+
+#: html/main.php:356
+msgid "Password reminder"
+msgstr "Passwort Erinnerung"
+
+#: html/main.php:356
+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:365
+msgid "Plugin"
+msgstr "Erweiterung"
+
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "FATAL: Es kann kein Plugin für die Definition '%s' gefunden werden!"
 
 #: html/getxls.php:88
 msgid "Birthday"
@@ -6624,10 +6683,6 @@ msgstr "Benutzerliste von %s vom %s"
 msgid "Computers of %s on %s"
 msgstr "Systeme von %s vom %s"
 
-#: html/getxls.php:493 html/getldif.php:82
-msgid "Permission denied!"
-msgstr "Zugriff verweigert!"
-
 #: html/getxls.php:493
 msgid "You are not allowed to perform this action."
 msgstr "Sie sind nicht berechtigt, diese Aktion durchzuführen."
@@ -6644,18 +6699,6 @@ msgstr "Die angegebene Datenbank kann nicht ausgewählt werden."
 msgid "Database query failed!"
 msgstr "Die Datenbankabfrage ist fehlgeschlagen!"
 
-#: html/getldif.php:82
-msgid "You are not allowed to create ldap dumps."
-msgstr "Es ist Ihnen nicht erlaubt, LDAP-Abzüge zu erstellen."
-
-#: html/getldif.php:107
-msgid "Error in ivbb parameter!"
-msgstr "Fehler im ivbb-Parameter!"
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr "Fehlende Parameter!"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr "Hilfe-Browser"
@@ -6671,168 +6714,70 @@ msgstr ""
 "Auf das Hilfeverzeichnis '%s' kann nicht zugegriffen werden - kann daher "
 "keine Hilfedateien lesen."
 
-#: html/password.php:58 html/index.php:141
-#, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "Die GOsa-Konfigurationsdatei %s/%s ist nicht lesbar. Abgebrochen."
-
-#: html/password.php:78
-msgid "Accessibility"
-msgstr "Zugänglichkeit"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-"Auf das als Compile-Verzeichnis angegegebene Verzeichnis '%s' kann nicht "
-"zugegriffen werden!"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr "Fehler: Passwort-Methode ist nicht verfügbar!"
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort."
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "Sie haben keine Berechtigung ihr Passwort zu ändern."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet:"
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "Die Sitzung ist nicht verschlüsselt."
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "SSL Sitzung"
-
-#: html/setup.php:66 html/index.php:166
-msgid "Smarty"
-msgstr "Smarty"
-
-#: html/main.php:153
-#, 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"
-
-#: html/main.php:171
-msgid "PHP configuration"
-msgstr "PHP-Konfiguration"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-"FATAL: 'Register globals' ist im PHP aktiviert. GOsa läßt keine Anmeldung "
-"zu, bis dies von einem Administrator behoben wurde."
-
-#: html/main.php:217
-msgid "Configuration warning"
-msgstr "Konfigurationswarnung"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr "Der verfügbare Arbeitsspeicher wird knapp!"
-
-#: html/main.php:356
-msgid "Password reminder"
-msgstr "Passwort Erinnerung"
-
-#: html/main.php:356
-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:365
-msgid "Plugin"
-msgstr "Erweiterung"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "FATAL: Es kann kein Plugin für die Definition '%s' gefunden werden!"
-
-#: html/index.php:57
-msgid "Session is not encrypted!"
-msgstr "Die Sitzung ist nicht verschlüsselt!"
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
-"Die Konfiguration der Gültigkeitsdauer einer Sitzung in Ihrer gosa.conf wird "
-"von der Einstellung in der php.ini überschrieben."
-
-#: html/index.php:141
-msgid "Configuration accessibility"
-msgstr "Zugänglichkeit der Konfigurationsdatei"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr "Es gab ein Problem mit der Authentisierungseinrichtung!"
+#~ msgid "User login failed."
+#~ msgstr "Benutzeranmeldung fehlgeschlagen."
 
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-"Es konnte kein gültiger Benutzer für die aktuell eingerichtete "
-"Authentisierung gefunden werden!"
+#~ msgid "Removing a lock failed."
+#~ msgstr "Entfernen der Sperre ist fehlgeschlagen"
 
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-"Die Benutzerinformation ist für die konfigurierten LDAP-Bäume nicht "
-"eindeutig!"
+#~ msgid "Cannot get locking information from LDAP tree!"
+#~ msgstr "Kann die Sperr-Information des LDAP-Baums nicht ermitteln!"
 
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Kann den LDAP-Server nicht erreichen. Bitte benachrichtigen Sie den "
-"Administrator."
+#~ msgid "Setting the password failed!"
+#~ msgstr "Das Setzen des Passworts ist fehlgeschlagen!"
 
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr "Kann Information über das installierte LDAP-Schema nicht ermitteln!"
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Bitte geben Sie eine gültige Seriennummer ein!"
 
-#: html/index.php:282
-msgid "Your ldap setup contains old schema definitions:"
-msgstr "Ihre LDAP-Einrichtung enthält veraltete Schema-Definitionen:"
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr ""
+#~ "Sie haben keine Berechtigung, um dieses Objekt nach '%s' zu verschieben!"
 
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "Dieses Menü ermöglicht es Ihnen, Benutzer hinzuzufügen, zu bearbeiten "
+#~ "oder zu entfernen. Bei einer großen Anzahl von Benutzern bietet sich die "
+#~ "Verwendung der Bereichsauswahl an."
 
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "Bitte geben Sie Ihr Passwort ein!"
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "Dieses Menü erlaubt es Ihnen Gruppen hinzuzufügen, zu bearbeiten oder zu "
+#~ "entfernen. Bei einer großen Anzahl von Gruppen bietet sich die Verwendung "
+#~ "der Bereichsauswahl an."
 
-#: html/index.php:318
-msgid "Authentication error"
-msgstr "Authentifizierungsfehler"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr ""
+#~ "Dieses Menü erlaubt es Ihnen, ausgewählte ACLs zu entfernen und zu "
+#~ "bearbeiten."
 
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
-"Konnte Benutzerinformation für htaccess-Authentisierung nicht beziehen!"
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "Dieses Menü erlaubt es Ihnen, Abteilungen hinzuzufügen, zu bearbeiten "
+#~ "oder zu entfernen. Bei einer Vielzahl von Abteilungen bietet sich die "
+#~ "Verwendung der Bereichsauswahl über der Abteilungsliste an."
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator."
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "Dieses Menü erlaubt es Ihnen Makros hinzuzufügen, zu bearbeiten oder zu "
+#~ "entfernen. Bei einer großen Anzahl von Makros bietet sich die Verwendung "
+#~ "der Bereichsauswahl an."
 
-#: html/index.php:425
-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!"
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Kann den LDAP-Server nicht erreichen. Bitte benachrichtigen Sie den "
+#~ "Administrator."
 
 #~ msgid "Removing of user/generic account with dn '%s' failed."
 #~ msgstr ""
index 817d347a69d4b17782f5e246e304b0fce867249a..ca622c62bd320665ae31ef44766582d4ce175739 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: admin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2007-07-24 00:26+0200\n"
 "Last-Translator: ALEJANDRO ESCANERO BLANCO\n"
 "Language-Team:  <es@li.org>\n"
@@ -17,1051 +17,994 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr "Comprobación de la instalación"
-
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr "Comprobación básica de la versión de PHP y las extensiones necesarias."
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:64
-msgid "Checking PHP version"
-msgstr "Comprobando la versión de PHP"
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Aviso"
 
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP debe ser versión '%s'/'%s' o superior."
+#: ihtml/themes/default/conflict.tpl:6
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
-"GOsa necesita funcionalidades que no son disponibles (o son defectuosas) en "
-"versiones antiguas de PHP. Por favor actualice a una versión soportada."
 
-#: setup/class_setupStep_Checks.inc:72
-msgid "Checking for LDAP support"
-msgstr "Comprobando el soporte de LDAP"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:73
-msgid "This is the main extension used by GOsa and therefore really required."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
 msgstr ""
-"Esta es la extensión principalmente usada por GOsa y por lo tanto "
-"obligatoria."
 
-#: setup/class_setupStep_Checks.inc:74
-#, fuzzy
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
 msgstr ""
-"La extensión LDAP (php4-ldap/php5-ldap) es necesaria para comunicarse con el "
-"servidor LDAP."
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Comprobando soporte gettext"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:81
-msgid "Gettext support is required for internationalization."
-msgstr "El soporte de gettext es necesario para soportar múltiples idiomas."
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
-msgstr "Por favor asegúrese que esta extensión está activada."
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Comprobando soporte iconv"
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:89
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
+msgstr ""
+
+#: ihtml/themes/default/login.tpl:27
+msgid "Login screen"
+msgstr ""
+
+#: ihtml/themes/default/login.tpl:34
 msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
+"Please use your username and your password to log into the site "
+"administration system."
 msgstr ""
-"Este módulo es usado por GOsa para convertir munged dial de samba y es por "
-"lo tanto necesario."
 
-#: setup/class_setupStep_Checks.inc:96
-msgid "Checking for mhash support"
-msgstr "Comprobando soporte mhash"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Nombre de Usuario"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Contraseña"
+
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
 msgstr ""
-"Este módulo es necesario para poder hacer uso del método de codificación SSHA"
 
-#: setup/class_setupStep_Checks.inc:98
-#, fuzzy
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
 msgstr ""
-"El módulo mhash para PHP 4/5 no está disponible. Por favor instale php4-"
-"mhash/php5-mhash."
 
-#: setup/class_setupStep_Checks.inc:104
-msgid "Checking for IMAP support"
-msgstr "Comprobando soporte IMAP"
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:105
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
 msgstr ""
-"El módulo IMAP es necesario para comunicar con un servidor IMAP, GOsa "
-"recupera información de estado, crea y elimina usuarios de correo, etc."
 
-#: setup/class_setupStep_Checks.inc:106
-#, fuzzy
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
-"Este módulo se necesita para comunicarse con el servidor de correo. Por "
-"favor instale php4-imap/php5-imap."
-
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Comprobando soporte gettext"
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:120
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Comprobando getacl en la implementación de IMAP"
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+msgid "New ACL"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:121
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "ACL type"
 msgstr ""
-"El soporte de getacl es necesario para manejar permisos en carpetas "
-"compartidas. Versiones antiguas de la extensión IMAP no son capaces de leer "
-"acls. Necesita una versión reciente de PHP para hacer uso de esta "
-"característica."
 
-#: setup/class_setupStep_Checks.inc:128
-msgid "Checking for MySQL support"
-msgstr "Comprobando soporte MySQL"
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "Select an acl type"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:129
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas."
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Aplicar"
 
-#: setup/class_setupStep_Checks.inc:130
-#, fuzzy
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
-"Este módulo es necesario para comunicarse con servicios de bases de datos "
-"(GOfax, asterisk, GLPI, etc.). Por favor instale php4-mysql/php5-mysql"
 
-#: setup/class_setupStep_Checks.inc:136
-msgid "Checking for kadm5 support"
-msgstr "Comprobando soporte kadm5"
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
 msgstr ""
-"Administrar cuentas en kerberos necesita el módulo kadm5, el cual se puede "
-"descargar desde la red PEAR"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
 msgstr ""
-"Este módulo es necesario para manejar cuentas kerberos, se puede descargar a "
-"través de la red PEAR"
 
-#: setup/class_setupStep_Checks.inc:144
-msgid "Checking for SNMP support"
-msgstr "Comprobando soporte snmp"
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+msgid "List of available ACL categories"
 msgstr ""
-"El protocolo de gestión simple de red es necesario para obtener información "
-"de los clientes."
 
-#: setup/class_setupStep_Checks.inc:146
-#, fuzzy
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
-"El módulo es necesario para la monitorización de clientes. Por favor instale "
-"php4-snmp/php5-snmp."
 
-#: setup/class_setupStep_Checks.inc:152
-msgid "Checking for CUPS support"
-msgstr "Comprobando soporte CUPS"
+#: ihtml/themes/default/acl.tpl:69
+msgid "Available roles"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:153
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Para poder leer la lista de impresoras disponibles a través del protocolo "
-"IPP en vez de archivos de princap, necesita tener instalado el módulo CUPS."
-
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Comprobando soporte fping"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: setup/class_setupStep_Checks.inc:163
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
+#: ihtml/themes/default/logout-close.tpl:5
+msgid "Your GOsa session has been closed!"
 msgstr ""
-"La utilidad fping es utilizada cuando se tiene un entorno de terminales "
-"basados en clientes ligeros."
 
-#: setup/class_setupStep_Checks.inc:164
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The fping utility is only used in thin client based terminal environment."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"La utilidad fping es solo utilizada en un entorno de terminales basados en "
-"clientes ligeros."
-
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
-msgstr "Función de generación de hash de la contraseña SAMBA"
 
-#: setup/class_setupStep_Checks.inc:180
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
-"Para poder usar contraseñas en SAMBA 2/3 necesita instalar paquetes "
-"adicionales que generen los hashes de las contraseñas."
 
-#: setup/class_setupStep_Checks.inc:181
-msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
 msgstr ""
-"Para poder usar SAMBA 2/3 necesita instalar ciertas librerías en perl. Vea "
-"mkntpasswd."
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
-msgstr "Off"
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:192
-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."
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
 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."
 
-#: setup/class_setupStep_Checks.inc:193
-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'."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
-"PHP usa este valor en el recolector de basura para eliminar las sesiones "
-"antiguas."
 
-#: setup/class_setupStep_Checks.inc:202
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
 msgstr ""
-"Ajustando este valor a un día impedirá la perdida de sesiones y cookies "
-"antes de que realmente se desconecte por tiempo."
 
-#: setup/class_setupStep_Checks.inc:203
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor."
 
-#: setup/class_setupStep_Checks.inc:211
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
-"Si quiere usar GOsa sin problemas, debe modificar a 'Off' la opción 'session."
-"auto_register' en su php.ini."
-
-#: setup/class_setupStep_Checks.inc:212
-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'."
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"GOsa necesita al menos 32Mb de memoria. Teniéndola por debajo de ese limite "
-"provocara errores inesperados. Aumentar para configuraciones mayores."
 
-#: setup/class_setupStep_Checks.inc:220
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
-msgstr "Busque 'memory_limit' en su php.ini y modifíquelo a '32M' o mayor."
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Objeto"
 
-#: setup/class_setupStep_Checks.inc:227
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
 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."
 
-#: setup/class_setupStep_Checks.inc:228
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
-msgid "The Execution time should be at least 30 seconds."
-msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
+#: ihtml/themes/default/snapshotdialog.tpl:49
+msgid "Creating object snapshots"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:236
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor."
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/snapshotdialog.tpl:55
 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."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 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."
-
-#: setup/class_setupStep_Checks.inc:244
-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'."
 
-#: setup/class_setupStep_Checks.inc:250
-msgid "On"
-msgstr "On"
+#: ihtml/themes/default/snapshotdialog.tpl:70
+msgid "Timestamp"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
-"Aumente la seguridad del servidor modificando el parámetro 'magic_quotes_gpc "
-"' a 'on'. PHP debería escapar todas las comillas de las cadenas en este caso."
 
-#: setup/class_setupStep_Checks.inc:252
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr "Busque 'magic_quotes_gpc' en su php.ini y modifíquelo a 'On'."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Continuar"
 
-#: setup/class_setupStep_Checks.inc:259
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
 msgstr ""
-"Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'"
 
-#: setup/class_setupStep_Checks.inc:260
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
 msgstr ""
-"Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'."
 
-#: setup/class_setupStep_Checks.inc:270
-msgid "Configuration writeable"
-msgstr "Se puede escribir en la configuración"
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
+msgstr "Ok"
 
-#: setup/class_setupStep_Checks.inc:271
-msgid "The configuration file can't be written"
-msgstr "No se puede escribir en la configuración"
+#: ihtml/themes/default/pwd_heimdal.tpl:5
+#, fuzzy
+msgid "Heimdal options"
+msgstr "Eliminar opciones"
 
-#: setup/class_setupStep_Checks.inc:272
-#, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
-"GOsa lee la configuración desde un archivo colocado en (%s/%s). El asistente "
-"puede escribir la configuración directamente si tiene permisos de escritura."
 
-#: setup/setup_language.tpl:3
-msgid "Please select the preferred language"
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/setup_language.tpl:5
-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."
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
 msgstr ""
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Este paso le permite seleccionar su idioma preferido"
-
-#: setup/setup_frame.tpl:12
-msgid "GOsa setup wizard"
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Installation"
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+msgid "Hour"
 msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Steps"
-msgstr ""
+#: ihtml/themes/default/pwd_heimdal.tpl:36
+#, fuzzy
+msgid "Minute"
+msgstr "Impresora"
 
-#: setup/setup_finish.tpl:3
-msgid "Create your configuration file"
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+#, fuzzy
+msgid "Day"
+msgstr "Mayo"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:40
+#, fuzzy
+msgid "Month"
+msgstr "mes"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:42
+msgid "Year"
 msgstr ""
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
 msgstr ""
 
-#: setup/setup_finish.tpl:18
-msgid "Status: "
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
-msgid "LDAP schema check"
-msgstr "Comprobar esquemas LDAP"
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+#, fuzzy
+msgid "Password end"
+msgstr "Contraseña"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
-msgstr "Efectuando comprobaciones en los esquemas actuales de LDAP"
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "Guardar"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "No"
+#: ihtml/themes/default/remove.tpl:6
+msgid ""
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
+msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "Si"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
 msgstr ""
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Organización"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr ""
 
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Nombre"
+#: ihtml/themes/default/password.tpl:6
+#, fuzzy
+msgid "Change your password"
+msgstr "Cambiar contraseña"
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "Dirección correo electrónico"
+#: ihtml/themes/default/password.tpl:34
+#, fuzzy
+msgid "Success"
+msgstr "Acceso sin restricciones"
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
 msgstr ""
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+#, fuzzy
+msgid "Password change"
+msgstr "Contraseña"
+
+#: ihtml/themes/default/password.tpl:52
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Genérico"
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr ""
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
 msgstr ""
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
+#: ihtml/themes/default/password.tpl:85
+#, fuzzy
+msgid "again"
+msgstr "Administrador"
+
+#: ihtml/themes/default/password.tpl:86
+#, fuzzy
+msgid "New password repeated"
+msgstr "activo, la contraseña expiró"
+
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+#, fuzzy
+msgid "Password strength"
+msgstr "La contraseña expira en"
+
+#: ihtml/themes/default/password.tpl:100
+#, fuzzy
+msgid "Change"
+msgstr "Cancelar"
+
+#: ihtml/themes/default/password.tpl:101
+#, fuzzy
+msgid "Click here to change your password"
+msgstr "Permitir al usuario cambiar su contraseña"
+
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
 msgstr ""
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+msgid "Cancel all"
 msgstr ""
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
 msgstr ""
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Terminar"
+
+#: ihtml/themes/default/sizelimit.tpl:3
+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 ""
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
 msgstr ""
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
+#: ihtml/themes/default/sizelimit.tpl:9
+msgid "ignore this error and show all entries the LDAP server returns"
 msgstr ""
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
+#: ihtml/themes/default/sizelimit.tpl:10
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
 msgstr ""
 
-#: setup/setup_feedback.tpl:123
-msgid "Features"
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
 msgstr ""
 
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
 msgstr ""
 
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
 msgstr ""
 
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
 msgstr ""
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-msgid "GOsa settings 3/3"
-msgstr "Configuración GOsa 3/3"
-
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr "Ajustar el comportamiento del núcleo común de GOsa"
-
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
-msgstr "Tiempo de vida de sesión debe ser un valor numérico"
-
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "Máximo tiempo de consulta LDAP debe ser un valor numérico."
-
-#: setup/class_setupStep_Feedback.inc:91
-msgid "UNIX accounts/groups"
-msgstr "Cuentas/Grupos UNIX"
+#: plugins/generic/welcome/welcome.tpl:4
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:93
-msgid "Samba management"
-msgstr "Administración Samba"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:95
-msgid "Mailsystem management"
-msgstr "Administración sistema de correo"
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:97
-msgid "FAX system administration"
-msgstr "Administración sistema de FAX"
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:99
-msgid "Asterisk administration"
-msgstr "Administración Asterisk"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Genérico"
 
-#: setup/class_setupStep_Feedback.inc:101
-msgid "System inventory"
-msgstr "Inventario de sistemas"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:103
-msgid "System-/Configmanagement"
-msgstr "Sistemas-/Administración de Configuraciones"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Correo Electrónico"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Libreta direcciones"
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-msgid "Notification and feedback"
-msgstr "Avisos y sugerencias"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:112
-msgid "Get notifications or send feedback"
-msgstr "Recibir avisos o enviar sugerencias"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-msgid "Setup error"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Grupo"
 
-#: setup/class_setupStep_Feedback.inc:140
-#, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Departamento"
 
-#: setup/class_setupStep_Feedback.inc:147
-#, fuzzy
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
-"Error mientras se envía su sugerencia. Es posible que el servicio no se "
-"encuentre disponible"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Teléfono"
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr "Sugerencia enviada correctamente"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Aplicación"
 
-#: setup/class_setupStep_Feedback.inc:179
-msgid "Please specify a valid email address."
-msgstr "Por favor indique una dirección de correo válida."
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Servidor"
 
-#: setup/class_setupStep_Feedback.inc:183
-#, fuzzy
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
 msgstr ""
-"Debe tener activa al menos una opción para suscribirse o enviar una "
-"sugerencia."
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Parametros de samba"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "Estación de trabajo"
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
 msgstr ""
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-msgid "Samba SID"
-msgstr "Samba SID"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Impresora"
 
-#: setup/setup_config2.tpl:31
-msgid "RID base"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
 msgstr ""
 
-#: setup/setup_config2.tpl:46
-msgid "Workstation container"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Descripción"
+
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
 msgstr ""
 
-#: setup/setup_config2.tpl:61
-msgid "Samba SID mapping"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_config2.tpl:71
+#: plugins/personal/password/class_password.inc:27
 #, fuzzy
-msgid "Timezone"
-msgstr "Zona de uso horario del usuario OX"
+msgid "Change user passwords"
+msgstr "Cambiar contraseña"
 
-#: setup/setup_config2.tpl:74
-msgid "Please choose your preferred timezone here"
-msgstr ""
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+msgid "User password"
+msgstr "Contraseña del usuario"
 
-#: setup/setup_config2.tpl:96
-msgid "Additional GOsa settings"
-msgstr ""
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "Necesita introducir su contraseña actual para continuar."
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
 msgstr ""
+"No coinciden las contraseñas introducidas como 'Nueva contraseña' y 'Repetir "
+"nueva contraseña'."
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Eliminar extensión de impresión"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "No se ha asignado ningún valor al campo 'Nueva contraseña'."
 
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Eliminar extensión de impresión"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr ""
+"La contraseña actual y la introducida como nueva son demasiado parecidas."
 
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "Administración Sieve"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "La nueva contraseña es demasiado corta."
 
-#: setup/setup_config2.tpl:148
-#, fuzzy
-msgid "Enable FAI release management"
-msgstr "Administración Samba"
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "El programa externo de cambio de contraseña informo de un problema: "
 
-#: setup/setup_config2.tpl:160
-msgid "Enable user netatalk plugin"
-msgstr ""
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr "La contraseña introducida como contraseña actual no es correcta."
 
-#: setup/setup_config2.tpl:171
-msgid "Government mode"
-msgstr ""
+#: plugins/personal/password/class_password.inc:115
+#, fuzzy
+msgid "You have no permission to change your password."
+msgstr "No tiene permisos para cambiar su contraseña."
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "Parámetros de correo"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Mi cuenta"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
 msgstr ""
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "desactivado"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr ""
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
+#: plugins/personal/password/changed.tpl:3
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_config2.tpl:214
-msgid "Vacation templates"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Atrás"
+
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
 msgstr ""
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
 msgstr ""
 
-#: setup/setup_config2.tpl:240
-msgid "Snapshots / Undo"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
 msgstr ""
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-msgid "Enable snapshots"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
 msgstr ""
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-msgid "Snapshot base"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
 msgstr ""
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Servidor"
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
+msgid "Password settings"
+msgstr "Parámetros de Contraseña"
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Usuario"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr ""
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Contraseña"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-msgid "LDAP inspection"
-msgstr "Inspección LDAP"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Eliminar"
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr "Analice la compatibilidad con GOsa de su directorio LDAP"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:113
-msgid "Checking for root object"
-msgstr "Comprobando objeto raíz"
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr "Comprobando permisos en la base de datos LDAP"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Número de serie del certificado"
 
-#: setup/class_setupStep_Migrate.inc:125
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Comprobando departamentos invisibles"
-
-#: setup/class_setupStep_Migrate.inc:131
-msgid "Checking for invisible users"
-msgstr "Comprobando usuarios invisibles"
-
-#: setup/class_setupStep_Migrate.inc:137
-msgid "Checking for super administrator"
-msgstr "Comprobando súper administrador"
+msgid "Edit organizational user settings"
+msgstr "Parámetros administrativos"
 
-#: setup/class_setupStep_Migrate.inc:143
-msgid "Checking for users outside the people tree"
-msgstr "Comprobando cuentas fuera del árbol de usuarios"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "mujer"
 
-#: setup/class_setupStep_Migrate.inc:149
-msgid "Checking for groups outside the groups tree"
-msgstr "Comprobando grupos fuera del árbol de grupos"
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "hombre"
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
-"Comprobando estaciones de trabajo windows fuera del árbol de estaciones de "
-"trabajo windows"
-
-#: setup/class_setupStep_Migrate.inc:161
-msgid "Checking for duplicate uid numbers"
-msgstr "Comprobando números uid duplicados"
-
-#: setup/class_setupStep_Migrate.inc:167
-msgid "Checking for duplicate gid numbers"
-msgstr "Comprobando números gid duplicados"
-
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-msgid "LDAP query failed"
-msgstr "La consulta LDAP ha fallado"
-
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr "Posiblemente el objeto raíz está desaparecido"
 
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Aviso"
+#: plugins/personal/generic/class_user.inc:496
+#, fuzzy
+msgid "Serial number"
+msgstr "Número del busca"
 
-#: setup/class_setupStep_Migrate.inc:213
-#, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Encontrado '%s' valores duplicados del atributo 'uidNumber'."
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
+msgstr ""
+"(Algunos tipos de certificados no están soportados y pueden ser mostrados "
+"como no validos.)"
 
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Ok"
-msgstr "Ok"
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "El certificado es valido desde %s hasta %s y es actualmente %s."
 
-#: setup/class_setupStep_Migrate.inc:262
-#, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Encontrado '%s' valores duplicados del atributo 'gidNumber'."
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "válido"
 
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Error"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "no válido"
 
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-"Se encontraron '%s' estaciones de trabajo windows fuera del contenedor ou de "
-"estaciones de trabajo windows '%s'"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "No hay certificados instalados"
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-msgid "Migrate"
-msgstr "Migrar"
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
+#, fuzzy
+msgid "Password method"
+msgstr "Contraseña"
 
-#: setup/class_setupStep_Migrate.inc:387
-#, 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:388 setup/class_setupStep_Migrate.inc:463
-msgid "Move"
-msgstr "Mover"
-
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr "Encontrados '%s' usuario(s) fuera del árbol configurado '%s'."
-
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-"El usuario especificado '%s' no tiene acceso total a la base de datos LDAP."
-
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr "Encontrados %s usuario(s) que nos son visibles para GOsa."
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-#, fuzzy
-msgid "Migration error"
-msgstr "Migrar"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Crear nuevo departamento"
-
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr "Encontrados %s departamento(s) que nos son visibles para GOsa."
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr "No hay cuenta de administrador GOsa en la base de datos LDAP."
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Crear"
-
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "La contraseña expira en"
-
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr ""
-"¡La contraseñas introducidas como nueva y repita nueva contraseña no "
-"coinciden!"
-
-#: setup/class_setupStep_Migrate.inc:975
-msgid "Input error"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:975
-#, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Por favor especifique un uid valido."
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:586
+#, fuzzy
+msgid "The selected password method is no longer available."
+msgstr "La aplicación ya no está disponible."
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1071,5204 +1014,5319 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "Servicio LDAP"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "No puedo mover los usuarios al departamento especificado."
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr "La estaciones de trabajo windows serán trasladadas desde"
-
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-msgid "to"
-msgstr "a"
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr "También se actualizaran las siguientes referencias"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Nombre"
 
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr "El grupo serán trasladado desde"
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Nombre de pila"
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr "El usuario serán trasladado desde"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Página Web"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr "Las siguientes referencias se actualizaran"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
 msgstr ""
-"EL objeto raíz de LDAP ha desaparecido. Es necesario para poder usar el "
-"servicio LDAP."
-
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-msgid "Try to create root object"
-msgstr "Intentando crear el objeto raíz"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
 msgstr ""
-"El objeto raíz no ha podido ser creado, tendra que crearlo usted mismo."
-
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Moviendo '%s' a '%s'"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1296
+#, fuzzy
+msgid "Cannot open certificate!"
+msgstr "¡No puedo abrir el certificado especificado!"
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-msgid "License"
-msgstr "Licencia"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Unidad"
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr "Términos y condiciones de uso"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Tipo de Vía"
 
-#: setup/class_setupStep_Welcome.inc:38
-msgid "Welcome"
-msgstr "Bienvenido"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Profesión"
 
-#: setup/class_setupStep_Welcome.inc:39
-msgid "The welcome message"
-msgstr "Mensaje de Bienvenida"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Última dirección conocida"
 
-#: setup/class_setupStep_Welcome.inc:40
-msgid "Welcome to GOsa setup wizard"
-msgstr "Bienvenidos al asistente de configuración de GOsa"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Lugar de residencia"
 
-#: setup/setup_config3.tpl:2
-msgid "GOsa core settings"
-msgstr ""
-
-#: setup/setup_config3.tpl:6
-msgid "Disable primary group filter"
-msgstr ""
-
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Mostrar sistemas que coincidan con"
-
-#: setup/setup_config3.tpl:30
-msgid "Honour administrative units"
-msgstr ""
-
-#: setup/setup_config3.tpl:42
-msgid "Smarty compile directory"
-msgstr ""
-
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
-
-#: setup/setup_config3.tpl:60
-msgid "Path for PPD storage"
-msgstr ""
-
-#: setup/setup_config3.tpl:77
-msgid "Path for kiosk profile storage"
-msgstr ""
-
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Administración sistema de correo"
-
-#: setup/setup_config3.tpl:115
-msgid "Mail queue script"
-msgstr ""
-
-#: setup/setup_config3.tpl:134
-msgid "Notification script"
-msgstr ""
-
-#: setup/setup_config3.tpl:153
-#, fuzzy
-msgid "Enable edit locking"
-msgstr "Activar comprobación de correo"
-
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
-
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "Base de datos de Registro"
-
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
-
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr ""
-
-#: setup/setup_config3.tpl:210
-msgid "Warn if session is not encrypted"
-msgstr ""
-
-#: setup/setup_config3.tpl:222
-#, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "Parámetros genéricos del usuario"
-
-#: setup/setup_config3.tpl:234
-msgid "Session lifetime"
-msgstr ""
-
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr ""
-
-#: setup/setup_config3.tpl:247
-msgid "Show PHP errors"
-msgstr ""
-
-#: setup/setup_config3.tpl:259
-msgid "Maximum LDAP query time"
-msgstr ""
-
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
-
-#: setup/setup_config3.tpl:289
-msgid "Debug level"
-msgstr ""
-
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-msgid "Disabled"
-msgstr ""
-
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-msgid "Enabled"
-msgstr ""
-
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
-
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr ""
-
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Aplicar"
-
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: setup/setup_ldap.tpl:25
-msgid "LDAP connection"
-msgstr ""
-
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr ""
-
-#: setup/setup_ldap.tpl:37
-msgid "Connection URL"
-msgstr ""
-
-#: setup/setup_ldap.tpl:45
-msgid "TLS connection"
-msgstr ""
-
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Base"
-
-#: setup/setup_ldap.tpl:65
-msgid "Reload"
-msgstr ""
-
-#: setup/setup_ldap.tpl:69
-msgid "Authentication"
-msgstr ""
-
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr ""
-
-#: setup/setup_ldap.tpl:78
-msgid "Select user"
-msgstr ""
-
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
-
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Contraseña de administrador"
-
-#: setup/setup_ldap.tpl:101
-msgid "Schema based settings"
-msgstr ""
-
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
-
-#: setup/setup_ldap.tpl:117
-msgid "Current status"
-msgstr ""
-
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr ""
-
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
-
-#: setup/setup_migrate.tpl:33
-msgid "Check again"
-msgstr ""
-
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
-
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-msgid "Select all"
-msgstr ""
-
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:72
-msgid "Move selected workstations"
-msgstr ""
-
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr ""
-
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr ""
-
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
-
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
-
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr ""
-
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-msgid "Hide changes"
-msgstr ""
-
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-msgid "Show changes"
-msgstr ""
-
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
-
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
-
-#: setup/setup_migrate.tpl:148
-msgid "Move selected users into this people tree"
-msgstr ""
-
-#: setup/setup_migrate.tpl:198
-msgid "Next"
-msgstr ""
-
-#: setup/setup_migrate.tpl:199
-msgid "Abort"
-msgstr ""
-
-#: setup/setup_migrate.tpl:201
-msgid "Create a new GOsa administrator account"
-msgstr ""
-
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
-
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "Identificador (ID) de usuario"
-
-#: setup/setup_migrate.tpl:233
-msgid "Password (again)"
-msgstr ""
-
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
-msgstr ""
-
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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.tpl:269 setup/setup_migrate.tpl:323
-msgid "Current"
-msgstr ""
-
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-msgid "After migration"
-msgstr ""
-
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
-
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr ""
-
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr ""
-
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Descripción de la unidad"
 
-#: setup/setup_checks.tpl:67
-msgid "PHP setup configuration"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Área de desarrollo"
 
-#: setup/setup_checks.tpl:67
-msgid "show information"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Función"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Terminar"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Visible por todos"
 
-#: setup/class_setupStep_Finish.inc:38
-msgid "Write configuration file"
-msgstr "Escribir archivo de configuración"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Calle"
 
-#: setup/class_setupStep_Finish.inc:39
-msgid "Finish - write the configuration file"
-msgstr "Terminar - Escribir el archivo de configuración"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Rol"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
-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/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Código Postal"
 
-#: setup/class_setupStep_Finish.inc:102
-msgid "The configuration is currently not readable or it does not exists."
-msgstr ""
-"En estos momentos la configuración no es accesible o no tiene permisos para "
-"leerla."
+#: plugins/personal/generic/class_user.inc:1443
+msgid "Generic user settings"
+msgstr "Parámetros genéricos del usuario"
 
-#: setup/class_setupStep_Finish.inc:111
-#, 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. You may want to execute these commands to achieve this "
-"requirement:"
-msgstr ""
-"Despues de descargar y poner el fichero en %s,  compruebe que el usuario del "
-"servicio web es capaz de leer %s, mientras que los otros usuarios no. Si "
-"quiere puede ejecutar los siguientes comandos para cumplir lo requerido:"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Usuarios"
 
-#: setup/class_setupStep_Ldap.inc:53
-msgid "LDAP setup"
-msgstr "Configuración LDAP"
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Base"
 
-#: setup/class_setupStep_Ldap.inc:54
-msgid "LDAP connection setup"
-msgstr "Conectividad LDAP"
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Apellidos"
 
-#: setup/class_setupStep_Ldap.inc:55
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
-msgstr ""
-"Este asistente llevara a cabo la configuración de la conectividad entre GOsa "
-"y LDAP."
+#: plugins/personal/generic/class_user.inc:1456
+msgid "User identification"
+msgstr "Identificación de Usuario"
 
-#: setup/class_setupStep_Ldap.inc:105
-#, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "Ha fallado la Autenticación Anónima en el servidor '%s'."
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Título Personal"
 
-#: setup/class_setupStep_Ldap.inc:107
-#, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Ha fallado la Autenticación como usuario '%s' en el servidor '%s'."
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Títulos académicos"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito."
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "Dirección Postal personal"
 
-#: setup/class_setupStep_Ldap.inc:113
-msgid "Please specify user and password."
-msgstr "Por Favor especifique un usuario y contraseña"
+#: plugins/personal/generic/class_user.inc:1460
+msgid "Home phone number"
+msgstr "Número de teléfono personal"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr ""
-"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Organización"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
-msgid "Language setup"
-msgstr "Selección de idiomas"
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Fecha de nacimiento"
 
-#: setup/class_setupStep_Language.inc:42
-msgid "This step allows you to select your preferred language."
-msgstr "Este paso le permite seleccionar su idioma preferido"
+#: plugins/personal/generic/class_user.inc:1465
+msgid "Gender"
+msgstr "Sexo"
 
-#: setup/class_setupStep_Language.inc:47
-msgid "Automatic"
-msgstr "Automatico"
+#: plugins/personal/generic/class_user.inc:1466
+msgid "Preferred language"
+msgstr "Idioma preferido"
 
-#: setup/class_setup.inc:196
-msgid "Completed"
-msgstr "Completado"
+#: plugins/personal/generic/class_user.inc:1467
+msgid "Department number"
+msgstr "Número del departamento"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Atrás"
+#: plugins/personal/generic/class_user.inc:1468
+msgid "Employee number"
+msgstr "Número de empleado"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Continuar"
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Funciones laborales"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Localización"
 
-#: setup/setup_config1.tpl:6
-msgid "Theme"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Provincia"
 
-#: setup/setup_config1.tpl:15
-msgid "Apache"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "Foto del usuario"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1473
+msgid "Room number"
+msgstr "Número de habitación"
 
-#: setup/setup_config1.tpl:27
-msgid "People and group storage"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1474
+msgid "Telefon number"
+msgstr "Número de teléfono"
 
-#: setup/setup_config1.tpl:30
-msgid "People DN attribute"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1475
+msgid "Mobile number"
+msgstr "Teléfono móvil"
 
-#: setup/setup_config1.tpl:41
-msgid "People storage subtree"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1476
+msgid "Pager number"
+msgstr "Número del busca"
 
-#: setup/setup_config1.tpl:50
-msgid "Group storage subtree"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1477
+msgid "User certificates"
+msgstr "Certificados de usuario"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "Código Postal"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1480
+msgid "Fax number"
+msgstr "Número de Fax"
 
-#: setup/setup_config1.tpl:81
-msgid "Automatic uids"
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
 msgstr ""
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr "GID / UID min id"
-
-#: setup/setup_config1.tpl:113
-msgid "Number base for people/groups"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
 msgstr ""
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
 msgstr ""
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-msgid "Password settings"
-msgstr "Parámetros de Contraseña"
-
-#: setup/setup_config1.tpl:140
-msgid "Password encryption algorithm"
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
 msgstr ""
 
-#: setup/setup_config1.tpl:151
-msgid "Password restrictions"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
 msgstr ""
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Dirección"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
 msgstr ""
 
-#: setup/setup_config1.tpl:182
-msgid "Password change hook"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
 msgstr ""
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
 msgstr ""
 
-#: setup/setup_config1.tpl:209
-msgid "Use account expiration"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
 msgstr ""
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
 msgstr ""
 
-#: setup/setup_config1.tpl:222
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
 msgstr ""
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
 msgstr ""
 
-#: setup/setup_config1.tpl:224
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
 msgstr ""
 
-#: setup/setup_welcome.tpl:4
-msgid ""
-"This seems to be the first time you start GOsa - 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:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
 msgstr ""
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
 msgstr ""
 
-#: setup/setup_welcome.tpl:11
-msgid "Create a basic, single site configuration"
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
 msgstr ""
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
 msgstr ""
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
+#: plugins/personal/generic/password.tpl:2
+msgid ""
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
 msgstr ""
 
-#: setup/setup_welcome.tpl:20
-msgid "Find every possible configuration error"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
 msgstr ""
 
-#: setup/setup_welcome.tpl:25
-msgid "To continue..."
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
 msgstr ""
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
 msgstr ""
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
 msgstr ""
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-msgid "GOsa settings 2/3"
-msgstr "Configuración GOsa 2/3"
-
-#: setup/class_setupStep_Config2.inc:87
-msgid "Customize special parameters"
-msgstr "Personalizar parametros especiales"
-
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-msgid "GOsa settings 1/3"
-msgstr "Configuración GOsa 1/3"
+#: plugins/personal/generic/main.inc:104
+#, fuzzy
+msgid "You have no permission to set your password!"
+msgstr "No tiene permisos para cambiar su contraseña."
 
-#: setup/class_setupStep_Config1.inc:76
-msgid "GOsa generic settings"
-msgstr "Configuración genérica de GOsa"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Información genérica del usuario"
 
-#: setup/class_setupStep_Config1.inc:118
-#, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "El valor especificado para '%s' debe ser una valor numérico"
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr ""
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr "No añada una coma final a '%s'"
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr ""
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "OU de almacenamiento de Usuarios"
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr ""
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "OU de almacenamiento de Grupos"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr ""
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
-msgstr "El Uid base debe ser un valor numérico"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Expresión regular para buscar nombres de grupos"
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
 msgstr ""
-"El valor indicado como longitud mínima de la contraseña no es un valor "
-"numérico."
 
-#: setup/class_setupStep_Config1.inc:137
-msgid "The given password differ value is not numeric."
-msgstr ""
-"El valor indicado como diferencias mínimas de la contraseña no es un valor "
-"numérico."
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Nombre de usuario de los grupos que se muestran"
 
-#: setup/setup_schema.tpl:3
-msgid "Schema specific settings"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Search in subtrees"
+msgstr "Buscar en subárboles"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_schema.tpl:16
-msgid "Check status"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "expiró"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "Periodo de gracia activado"
 
-#: setup/setup_schema.tpl:23
-msgid "Schema check failed"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "activo, no puede cambiar la contraseña"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "activo, la contraseña expiró"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "activo"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "Sin configurar"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automático"
 
-#: ihtml/themes/default/login.tpl:27
-msgid "Login screen"
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:34
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Entorno"
+
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
 msgstr ""
+"La contraseñas no pueden ser cambiadas hasta %s días desde el último cambio"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Nombre de Usuario"
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "La contraseñas deben ser cambiadas despues de %s días"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
 msgstr ""
+"Desactivar cuenta despues de %s días de inactividad una vez expirada la "
+"contraseña"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Avisar al usuario %s días antes de que la contraseña expire"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "desactivado"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "Acceso sin restricciones"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "Permitir el acceso a estos equipos"
+
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid "Heimdal options"
-msgstr "Eliminar opciones"
+msgid "Uid number"
+msgstr "Número de Fax"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
+#: plugins/personal/posix/class_posixAccount.inc:914
+msgid ""
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Grupo de usuarios"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Directorio de usuario"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-msgid "Hour"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
 #, fuzzy
-msgid "Minute"
-msgstr "Impresora"
+msgid "shadowMin"
+msgstr "Shadow min"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
 #, fuzzy
-msgid "Day"
-msgstr "Mayo"
+msgid "shadowMax"
+msgstr "Shadow max"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
 #, fuzzy
-msgid "Month"
-msgstr "mes"
+msgid "shadowWarning"
+msgstr "Shadow warning"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-msgid "Year"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
+#, fuzzy
+msgid "shadowInactive"
+msgstr "Shadow inactive"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1496
+msgid "POSIX account"
+msgstr "Cuenta POSIX"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
-#, fuzzy
-msgid "Password end"
-msgstr "Contraseña"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
-msgstr "Guardar"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "Identificador (ID) de usuario"
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1509
+msgid "Group ID"
+msgstr "Identificador (ID) de Grupo"
 
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1511
+msgid "Force password change on login"
+msgstr "Forzar el cambio de contraseña al iniciar"
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1512
+msgid "Shadow min"
+msgstr "Shadow min"
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
+msgstr "Shadow max"
+
+#: plugins/personal/posix/class_posixAccount.inc:1514
+msgid "Shadow warning"
+msgstr "Shadow warning"
+
+#: plugins/personal/posix/class_posixAccount.inc:1515
+msgid "Shadow inactive"
+msgstr "Shadow inactive"
+
+#: plugins/personal/posix/class_posixAccount.inc:1516
+msgid "Shadow expire"
+msgstr "Shadow expire"
+
+#: plugins/personal/posix/class_posixAccount.inc:1517
+msgid "System trust model"
+msgstr "Sistema de confianza"
+
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Estado"
+
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#, fuzzy
+msgid "In all groups"
+msgstr "Mostrar grupos de correo"
+
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#, fuzzy
+msgid "Not in all groups"
+msgstr "Mostrar grupos de correo"
+
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:6
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
 msgstr ""
 
-#: ihtml/themes/default/logout-close.tpl:5
-msgid "Your GOsa session has been closed!"
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
 msgstr ""
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+#: plugins/personal/posix/main.inc:131
+#, fuzzy
+msgid "POSIX settings"
+msgstr "Parametros de samba"
+
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Mostrar sistemas que coincidan con"
+
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
 msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Objeto"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Lista de usuarios"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Propiedades"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Acciones"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-msgid "Creating object snapshots"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Seleccione para mostrar las plantillas de usuarios"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Mostrar plantillas"
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr "Seleccione para ver los usuarios que solo tienen la extensión GOsa"
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
-msgid "Timestamp"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Mostrar usuarios funcionales"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Seleccione para ver los usuarios que tienen extensiones Posix"
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Mostrar los usuarios unix"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-msgid "New ACL"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "Seleccione para ver los usuarios que tienen extensiones de correo"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "ACL type"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Mostrar los usuarios de correo"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "Select an acl type"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Seleccione para ver los usuarios que tienen extensiones samba"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Mostrar usuarios samba"
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Seleccione para ver los usuarios que tienen extensiones proxy"
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Mostrar los usuarios de proxy"
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "Seleccione para buscar dentro de los subárboles"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Mostrar usuarios que coincidan con"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-msgid "List of available ACL categories"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Enviar departamento"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "Enviar"
 
-#: ihtml/themes/default/acl.tpl:69
-msgid "Available roles"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Crear"
 
-#: ihtml/themes/default/password.tpl:6
-#, fuzzy
-msgid "Change your password"
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Usuario"
+
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Plantilla"
+
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Editar"
+
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
 msgstr "Cambiar contraseña"
 
-#: ihtml/themes/default/password.tpl:34
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "Success"
-msgstr "Acceso sin restricciones"
-
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr ""
+msgid "Copy"
+msgstr "copiar"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
 #, fuzzy
-msgid "Password change"
-msgstr "Contraseña"
+msgid "Cut"
+msgstr "mover"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "Editar características generales"
+
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
+
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "Editar características UNIX"
+
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "Editar características de entorno"
+
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "Editar características de correo electrónico"
 
-#: ihtml/themes/default/password.tpl:85
-#, fuzzy
-msgid "again"
-msgstr "Administrador"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "Editar características telefónicas"
 
-#: ihtml/themes/default/password.tpl:86
-#, fuzzy
-msgid "New password repeated"
-msgstr "activo, la contraseña expiró"
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "Editar características de Fax"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "La contraseña expira en"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "Editar características samba"
 
-#: ihtml/themes/default/password.tpl:100
-#, fuzzy
-msgid "Change"
-msgstr "Cancelar"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr "Netatalk"
 
-#: ihtml/themes/default/password.tpl:101
-#, fuzzy
-msgid "Click here to change your password"
-msgstr "Permitir al usuario cambiar su contraseña"
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "Editar características netatalk"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "Crear usuario desde plantilla"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "Crear usuario con esta plantilla"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "mover"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "Mover esta entrada"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-msgid "Cancel all"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "copiar"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "Copiar esta entrada"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:318
+#, fuzzy
+msgid "Deactivated"
+msgstr "Activado"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
 msgstr ""
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "editar"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "Editar usuario"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "contraseña"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:342
+msgid "You are not allowed to change the password for this user."
+msgstr "¡No tiene permisos para cambiar la contraseña de este usuario!"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "eliminar"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "Eliminar usuario"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:356
+msgid "You are not allowed to remove this user."
+msgstr "No le está permitido eliminar este usuario."
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/users/class_divListUsers.inc:442
+msgid "Number of listed users"
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+#, fuzzy
+msgid "Number of listed departments"
+msgstr "Eliminar departamentos seleccionados"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:27
+#, fuzzy
+msgid "Manage users"
+msgstr "Usuarios del dominio"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, fuzzy
+msgid "Daemon"
+msgstr "Abajo"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, php-format
-msgid "Set"
+msgid "Something went wrong while talking to the daemon: %s."
 msgstr ""
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:293
+#, fuzzy
+msgid "Password change failed."
+msgstr "La contraseñas deben ser cambiadas despues de %s días"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr "¡No le estátá permitido cambiarle la contraseña de estos usuarios!"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
+#: plugins/admin/users/class_userManagement.inc:456
 #, php-format
-msgid "Delete"
-msgstr "Eliminar"
-
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
+msgid "You're about to delete the following entry: %s"
+msgstr "Has decidido eliminar la entrada %s"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:458
+#, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "Has decidido eliminar las siguientes entradas: %s"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:460
+#, fuzzy
+msgid "Delete users"
+msgstr "Eliminar usuario"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+#, fuzzy
+msgid "User delete"
+msgstr "eliminar"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:488
+#, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "¡No le está permitido eliminar el usuario '%s'!"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "Esta a punto de eliminar el usuario %s"
 
-#: include/utils/class_msgPool.inc:14
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "No tiene permisos para eliminar este departamento."
+msgid "User deleted"
+msgstr "eliminar"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "No tiene permisos para eliminar este departamento."
+msgid "User successfully removed."
+msgstr "Sugerencia enviada correctamente"
+
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "¡No le está permitido eliminar este usuario!"
+
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "ninguno"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "No tiene permisos para eliminar este departamento."
+#: plugins/admin/users/remove.tpl:6
+msgid ""
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "No tiene permisos para eliminar este departamento."
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "No tiene permisos para eliminar este departamento."
+#: plugins/admin/users/template.tpl:6
+msgid ""
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "No tiene permisos para eliminar este departamento."
+#: plugins/admin/users/password.tpl:4
+msgid ""
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:51
+#: plugins/admin/users/password.tpl:21
 #, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+msgid "Strength"
+msgstr "Calle"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Administración de Usuario"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:69
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
 #, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+msgid "Manage object groups"
+msgstr "Mostrar los grupos samba"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "No tiene permisos para cambiar su contraseña."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:87
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
 #, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+msgid "Permission error"
+msgstr "Permisos"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
 #, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+msgid "You have no permission to delete this entry!"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
 #, fuzzy
-msgid "Connection information"
-msgstr "Información genérica del usuario"
+msgid "Windows Install"
+msgstr "Windows RDP"
 
-#: include/utils/class_msgPool.inc:110
-#, php-format
-msgid "Cannot connect to %s database!"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "Terminal"
+
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
 msgstr ""
-"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
 msgstr ""
-"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "El campo 'Fax' tiene un número de teléfono no valido."
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:152
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "El valor especificado como 'UID' es demasiado pequeño."
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "El valor especificado como 'UID' es demasiado pequeño."
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr "PHP debe ser versión '%s'/'%s' o superior."
+#: plugins/admin/ogroups/class_ogroup.inc:315
+#, fuzzy
+msgid "winstations"
+msgstr "Estación de trabajo Windows"
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Ya existe un usuario con este 'Login' en la base de datos."
-
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'."
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "El campo 'Nombre' no tiene caracteres validos."
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' are not allowed."
+#: plugins/admin/ogroups/class_ogroup.inc:629
+msgid "You can combine two different object types at maximum, only!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Eliminar extensión de impresión"
+#: plugins/admin/ogroups/class_ogroup.inc:763
+msgid "Object group generic"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Añadir"
+#: plugins/admin/ogroups/class_ogroup.inc:774
+msgid "Member"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Añadir"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Eliminar"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:268
-#, php-format
-msgid "Set %s"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Editar"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Editar usuario"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Esta cuenta no tiene extensiones GOsa validas"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
 msgstr ""
-"Esta cuenta tiene características posix activadas. Puede desactivarla "
-"pulsando aquí"
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
 msgstr ""
-"Esta cuenta tiene las características unix activadas. Para desactivarlas, "
-"necesita eliminar la cuenta samba / entorno primero."
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
 msgstr ""
-"Esta cuenta tiene la extensión posix desactivada. Puede activarla pulsando "
-"aquí."
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Seleccione para ver los servidores"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Mostrar servidores"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
 msgstr ""
-"Esta cuenta tiene las características unix activadas. Para desactivarlas, "
-"necesita eliminar la cuenta samba / entorno primero."
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Mostrar estaciones de trabajo"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
 msgstr ""
-"Esta cuenta tiene las características unix activadas. Para desactivarlas, "
-"necesita eliminar la cuenta samba / entorno primero."
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Parametros Unix"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Mostrar terminales"
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Parámetros genéricos del usuario"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
 msgstr ""
-"Pulse en el botón - Editar - para cambiar la información en esta ventana"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Enero"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Febrero"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Mostrar teléfonos"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Marzo"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "Abril"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Mayo"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Junio"
+#: plugins/admin/ogroups/remove.tpl:7
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Julio"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Agosto"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+msgid "Please enter the new object group name"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "Septiembre"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Octubre"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "Noviembre"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Diciembre"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "Junio"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Monday"
-msgstr "mes"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Departamentos"
+
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Wednesday"
-msgstr "Miércoles"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "read operation"
-msgstr "Eliminar opciones"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-msgid "modify operation"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-msgid "delete operation"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-msgid "search operation"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Tipo de autentificación IAX"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "La consulta LDAP ha fallado"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:374
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "LDAP operation failed!"
-msgstr "La consulta LDAP ha fallado"
+msgid "Select to see groups containing windows workstations"
+msgstr "Seleccione para ver estaciones de trabajo basadas en Windows"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "Configuration error"
-msgstr "Se puede escribir en la configuración"
+msgid "Show groups containing windows workstations"
+msgstr "Mostrara estaciones de trabajo basadas en windows"
 
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
 msgstr ""
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
 msgstr ""
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "ACL"
-
-#: include/class_tabs.inc:346
-msgid "References"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "No puedo crear el fichero '%s'."
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Editar esta entrada"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "No puedo crear el fichero '%s'."
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Eliminar esta entrada"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "No puedo crear el fichero '%s'."
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+msgid "You are not allowed to remove this entry."
+msgstr ""
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+msgid "Number of listed object groups"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "No puedo crear el fichero '%s'."
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr ""
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:277
-#, php-format
-msgid "Entry with id '%s' not found."
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Inicio"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "Sumario"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:287
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "Departamentos"
+
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
 #, php-format
-msgid "Could not update entry, entry with id '%s' not found."
-msgstr ""
+msgid "You're about to delete the following entry %s"
+msgstr "Has decidido eliminar la siguiente entrada %s"
 
-#: include/class_hostActionQueue.inc:298
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
 #, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+msgid "You're about to delete the following entries %s"
+msgstr "Has decidido eliminar las siguientes entradas %s"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#: plugins/admin/departments/class_departmentManagement.inc:245
 #, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr "Ha decidido eliminar todo el subárbol LDAP colocado debajo de '%s'."
+
+#: plugins/admin/departments/tabs_department.inc:55
+#, fuzzy
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
 msgstr ""
+"Ha fallado al mover el árbol. El árbol destino es subárbol del elegido."
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+msgid "You are currently moving/renaming this department."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
+msgstr ""
+
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "No ha introducido el campo obligatorio 'Nombre'."
+
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "No ha introducido el campo obligatorio 'Descripción'."
+
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
 #, fuzzy
-msgid "Internal error"
+msgid "Fatal error"
 msgstr "Insertar separador"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+#, fuzzy
+msgid "Cannot find an unused tag for this administrative unit!"
 msgstr ""
+"Error Fatal: ¡No se puede encontrar una etiqueta sin usar para identificar "
+"la unidad administrativa!"
 
-#: include/class_CopyPasteHandler.inc:183
+#: plugins/admin/departments/class_departmentGeneric.inc:415
 #, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
-msgstr ""
+msgid "Tagging '%s'."
+msgstr "Etiquetando '%s'."
 
-#: include/class_CopyPasteHandler.inc:192
+#: plugins/admin/departments/class_departmentGeneric.inc:502
 #, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr ""
+msgid "Moving '%s' to '%s'"
+msgstr "Moviendo '%s' a '%s'"
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "No se puede grabar el archivo '%s'."
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr "Ha fallado a copiar %s, operación abortada"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Has decidido eliminar las siguientes entradas %s"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "País"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Has decidido eliminar la siguiente entrada %s"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Teléfono"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "Nombre de departamento"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Categoría"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "Parámetros administrativos"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
 msgstr ""
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: plugins/admin/departments/class_departmentGeneric.inc:651
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+msgid "Adding tag (%s) to object '%s'"
 msgstr ""
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
 msgstr ""
 
-#: include/class_plugin.inc:1613
-msgid "from"
+#: plugins/admin/departments/remove.tpl:6
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
 
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Lista de Departamentos"
+
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "Expresión regular para buscar el nombre del departamento"
+
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "departamento"
+
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
 msgstr ""
 
-#: include/php_setup.inc:96
-msgid "Send bugreport"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
 msgstr ""
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
 msgstr ""
 
-#: include/php_setup.inc:111
-msgid "PHP error"
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
 msgstr ""
 
-#: include/php_setup.inc:130
-msgid "class"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
 msgstr ""
 
-#: include/php_setup.inc:136
-msgid "function"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
 msgstr ""
 
-#: include/php_setup.inc:141
-msgid "static"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
 msgstr ""
 
-#: include/php_setup.inc:145
-msgid "method"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
 msgstr ""
 
-#: include/php_setup.inc:178
-msgid "Trace"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "File"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Line"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Tipo"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Administración de departamento"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
 msgstr ""
 
-#: include/class_acl.inc:26
-msgid "Access control"
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
+msgstr "Acl"
+
+#: plugins/admin/acl/class_aclRole.inc:26
+msgid "Access control list templates"
+msgstr ""
+
+#: plugins/admin/acl/class_aclRole.inc:27
 #, fuzzy
-msgid "Manage access control lists"
-msgstr "Lista de control de acceso"
+msgid "Edit ACL roles"
+msgstr "Rol"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
 msgid "All categories"
 msgstr "Todas las categorías"
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
 msgid "Reset ACLs"
 msgstr "Eliminar ACLs"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
 msgid "One level"
 msgstr "Un nivel"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
 msgid "Current object"
 msgstr "Objeto actual"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
 msgid "Complete subtree"
 msgstr "Subárbol completo"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
 msgid "Complete subtree (permanent)"
 msgstr "Subárbol completo (permanente)"
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr ""
-
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Usuarios"
-
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "Grupos"
-
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
 #: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
 msgid "Up"
 msgstr "Arriba"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
 msgid "Down"
 msgstr "Abajo"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "editar"
-
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
 msgid "Edit ACL"
 msgstr "Editar ACL"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "eliminar"
-
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
 msgid "Delete ACL"
 msgstr "Eliminar ACL"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
 msgid "No ACL settings for this category"
 msgstr "No hay ACL configuradas en esta categoría"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
 #, php-format
 msgid "Contains ACLs for these objects: %s"
 msgstr "ACLs que tienen estos objetos: %s"
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
 msgid "Edit categories ACLs"
 msgstr "Editar las categorías ACLs"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
 msgid "Clear categories ACLs"
 msgstr "Eliminar categorías ACLs"
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
+#, php-format
+msgid "Edit ACL for '%s', scope is '%s'"
+msgstr "Editar ACL para '%s', el ámbito es '%s'"
+
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
+msgstr "Todos los objetos en el subárbol actual"
+
+#: plugins/admin/acl/class_aclRole.inc:618
+#, fuzzy
+msgid "Object in use"
+msgstr "Objeto"
+
+#: plugins/admin/acl/class_aclRole.inc:618
+#, fuzzy, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
+msgstr ""
+"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes "
+"objetos están usando este rol %s"
+
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+msgid "ACL roles"
+msgstr "Rol"
+
+#: plugins/admin/acl/class_aclRole.inc:700
+msgid "Acl roles"
+msgstr "Roles"
+
+#: plugins/admin/acl/remove.tpl:6
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
+msgstr ""
+
+#: plugins/admin/acl/tabs_acl_role.inc:28
+msgid "ACL Templates"
+msgstr "Plantillas ACL"
+
+#: plugins/admin/acl/class_divListACL.inc:51
+msgid "List of acl"
+msgstr "Lista de acl"
+
+#: plugins/admin/acl/class_divListACL.inc:52
+msgid "List of acls"
+msgstr "Lista de acls"
+
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "Ignorar subárboles"
+
+#: plugins/admin/acl/class_divListACL.inc:84
+msgid "Display acls matching"
+msgstr "Mostrar las acl que coincidan con"
+
+#: plugins/admin/acl/class_divListACL.inc:243
+msgid "Edit acl role"
+msgstr "Editar rol"
+
+#: plugins/admin/acl/class_divListACL.inc:253
+msgid "Delete acl role"
+msgstr "Eliminar rol"
+
+#: plugins/admin/acl/class_divListACL.inc:265
+msgid "Edit acl"
+msgstr "Editar acl"
+
+#: plugins/admin/acl/class_divListACL.inc:269
+msgid "Delete acl"
+msgstr "Eliminar acl"
+
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+msgid "ACL management"
+msgstr "Administración de ACL"
+
+#: plugins/admin/acl/class_aclManagement.inc:26
+msgid "ACLs"
+msgstr ""
+
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "Lista de control de acceso"
+
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "No tiene permisos para eliminar este departamento."
+
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "No tiene permisos para eliminar este departamento."
+
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, php-format
+msgid "You're about to delete the acl %s."
+msgstr "Va a eliminar la acl %s."
+
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Lista de grupos"
+
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "Nombre de grupo / Departamento"
+
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr "Seleccione para ver que grupos son grupos primarios de usuarios"
+
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Mostrar grupos primarios"
+
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Seleccione para ver que grupos tienen asignado un grupo samba"
+
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Mostrar los grupos samba"
+
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "Seleccione para ver que grupos tienen aplicaciones configuradas"
+
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Mostrar los grupos de aplicaciones"
+
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "Seleccione para ver que grupos tienen configuración de correo"
+
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Mostrar grupos de correo"
+
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "Seleccione para ver que grupos tienen solo aspectos funcionales"
+
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Mostrar grupos funcionales"
+
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "Eliminar grupo seleccionado"
+
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr ""
+
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr ""
+
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr ""
+
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr ""
+
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "Grupos"
+
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
+msgstr ""
+
+#: plugins/admin/groups/class_groupManagement.inc:434
 #, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
-msgstr "Editar ACL para '%s', el ámbito es '%s'"
+msgid "You're about to delete the group '%s'."
+msgstr "Está a punto de borrar el grupo '%s'."
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
-msgstr "Todos los objetos en el subárbol actual"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
+msgstr ""
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-msgid "Show/Hide Advanced Settings"
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
 msgstr ""
 
-#: include/class_acl.inc:690
-msgid "Create objects"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
 msgstr ""
 
-#: include/class_acl.inc:691
-msgid "Move objects"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
 
-#: include/class_acl.inc:692
-msgid "Remove objects"
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
 msgstr ""
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
 msgstr ""
 
-#: include/class_acl.inc:697
-msgid "Move object"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
 msgstr ""
 
-#: include/class_acl.inc:698
-msgid "Remove object"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
 msgstr ""
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "leer"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr ""
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "escribir"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr ""
 
-#: include/class_acl.inc:710
-msgid "Complete object"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
 msgstr ""
 
-#: include/class_acl.inc:826
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Administración de grupo"
+
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+#, fuzzy
+msgid "Configuration error"
+msgstr "Se puede escribir en la configuración"
+
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#, fuzzy
+msgid "Cannot find group SID in your configuration!"
+msgstr "¡No se puede encontrar SID en LDAP o en el archivo de configuración!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Este 'dn' no es un grupo."
+
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Grupo de samba"
+
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Administradores del dominio"
+
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Usuarios del dominio"
+
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Invitados del dominio"
+
+#: plugins/admin/groups/class_groupGeneric.inc:355
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
-msgstr ""
+msgid "Special group (%d)"
+msgstr "Grupo especial (%d)"
 
-#: include/class_acl.inc:869
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "¡id desconocido!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:547
 #, php-format
-msgid "Unknown entry '%s'!"
+msgid "Search returned too many results. Not displaying more than %s entries!"
 msgstr ""
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
+#: plugins/admin/groups/class_groupGeneric.inc:728
 #, php-format
-msgid "Role: %s"
+msgid "Cannot find any SID for '%s'!"
 msgstr ""
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "No hay ningún RIDBASE configurado para '%s'."
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#, fuzzy
+msgid "Cannot allocate a free ID!"
+msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres"
 
-#: include/class_acl.inc:948
-msgid "Members:"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+msgid "Generic group settings"
+msgstr "Parámetros genéricos del grupo"
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+msgid "Phone pickup group"
+msgstr "Miembros de grupo de salto telefónico"
 
-#: include/class_acl.inc:1115
-msgid "Access control list"
-msgstr "Lista de control de acceso"
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+msgid "Nagios group"
+msgstr "Grupo Nagios"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
-msgid "ACL roles"
-msgstr "Rol"
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+msgid "Group member"
+msgstr "Miembro del grupo"
 
-#: include/class_acl.inc:1123
-msgid "Role name"
-msgstr "Nombre del Rol"
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+msgid "Samba group type"
+msgstr "Tipo de grupo de samba"
 
-#: include/class_acl.inc:1124
-msgid "Role description"
-msgstr "Descripción del Rol"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+msgid "Samba domain name"
+msgstr "Nombre de dominio samba"
 
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+msgid "Samba SID"
+msgstr "Samba SID"
+
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+msgid "Language setup"
+msgstr "Selección de idiomas"
+
+#: setup/class_setupStep_Language.inc:42
+msgid "This step allows you to select your preferred language."
+msgstr "Este paso le permite seleccionar su idioma preferido"
+
+#: setup/class_setupStep_Language.inc:47
+msgid "Automatic"
+msgstr "Automatico"
+
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
+#: setup/setup_welcome.tpl:11
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Servicio de Registro de sistema"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr ""
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
+#: setup/setup_welcome.tpl:20
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: include/class_log.inc:124
-#, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "La contraseñas especificadas están vacías o no son iguales."
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: include/class_log.inc:145
+#: setup/setup_welcome.tpl:25
+msgid "To continue..."
+msgstr ""
+
+#: setup/setup_welcome.tpl:28
 msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
+msgstr ""
+
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
 msgstr ""
 
-#: include/class_log.inc:157
-#, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr ""
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+msgid "GOsa settings 1/3"
+msgstr "Configuración GOsa 1/3"
+
+#: setup/class_setupStep_Config1.inc:76
+msgid "GOsa generic settings"
+msgstr "Configuración genérica de GOsa"
+
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "No"
 
-#: include/class_log.inc:165
-#, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr ""
-"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "Si"
 
-#: include/class_log.inc:181
+#: setup/class_setupStep_Config1.inc:118
 #, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
-msgstr ""
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "El valor especificado para '%s' debe ser una valor numérico"
 
-#: include/class_log.inc:218
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
+msgstr "GID / UID min id"
+
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
 #, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
-msgstr ""
+msgid "Don't add a trailing comma to '%s'."
+msgstr "No añada una coma final a '%s'"
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr ""
-"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "OU de almacenamiento de Usuarios"
 
-#: include/class_multi_plug.inc:362
-msgid "You are currently editing mutliple entries."
-msgstr ""
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "OU de almacenamiento de Grupos"
 
-#: include/class_multi_plug.inc:391
-#, fuzzy
-msgid "Password reset"
-msgstr "La contraseña expira en"
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
+msgstr "El Uid base debe ser un valor numérico"
 
-#: include/class_multi_plug.inc:391
-msgid "The user password was resetted, please set a new password value!"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
 msgstr ""
+"El valor indicado como longitud mínima de la contraseña no es un valor "
+"numérico."
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/class_setupStep_Config1.inc:137
+msgid "The given password differ value is not numeric."
 msgstr ""
+"El valor indicado como diferencias mínimas de la contraseña no es un valor "
+"numérico."
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
 msgstr ""
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
+#: setup/setup_ldap.tpl:25
+msgid "LDAP connection"
 msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
 msgstr ""
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
+#: setup/setup_ldap.tpl:37
+msgid "Connection URL"
 msgstr ""
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
+#: setup/setup_ldap.tpl:45
+msgid "TLS connection"
 msgstr ""
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
+#: setup/setup_ldap.tpl:65
+msgid "Reload"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Ir al departamento raíz"
-
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Raíz"
-
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Subir un departamento"
+#: setup/setup_ldap.tpl:69
+msgid "Authentication"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Ir al departamento de usuarios"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Inicio"
+#: setup/setup_ldap.tpl:78
+msgid "Select user"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "Recargar lista"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "Enviar"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Contraseña de administrador"
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/setup_ldap.tpl:101
+msgid "Schema based settings"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
-msgid "Restore"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
+#: setup/setup_ldap.tpl:117
+msgid "Current status"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create snapshot"
+#: setup/setup_migrate.tpl:33
+msgid "Check again"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create a new snapshot from this object"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
 msgstr ""
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
 
-#: include/class_config.inc:228
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
+msgid "Select all"
 msgstr ""
 
-#: include/class_config.inc:560
-msgid "SID and/or RIDBASE missing in the configuration!"
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:83
-#, php-format
-msgid "You're about to delete the snapshot '%s'."
+#: setup/setup_migrate.tpl:72
+msgid "Move selected workstations"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
-msgid "Remove snapshot"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Descripción"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
+msgstr ""
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
+#: setup/setup_migrate.tpl:91
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
 
-#: include/functions.inc:318
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
 msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, php-format
-msgid "User login failed."
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+msgid "Hide changes"
 msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, php-format
-msgid "LDAP server returned: %s"
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+msgid "Show changes"
 msgstr ""
 
-#: include/functions.inc:380 include/functions.inc:450
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:605
-#, php-format
+#: setup/setup_migrate.tpl:145
 msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
+
+#: setup/setup_migrate.tpl:148
+msgid "Move selected users into this people tree"
 msgstr ""
 
-#: include/functions.inc:620
-#, php-format
-msgid "Adding a lock failed."
+#: setup/setup_migrate.tpl:198
+msgid "Next"
 msgstr ""
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "Ha fallado la eliminación del antiguo archivo ppd'%s'."
+#: setup/setup_migrate.tpl:199
+msgid "Abort"
+msgstr ""
 
-#: include/functions.inc:691 include/functions.inc:736
-#, php-format
-msgid "Cannot get locking information from LDAP tree!"
+#: setup/setup_migrate.tpl:201
+msgid "Create a new GOsa administrator account"
 msgstr ""
 
-#: include/functions.inc:699
+#: setup/setup_migrate.tpl:204
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
+#: setup/setup_migrate.tpl:233
+msgid "Password (again)"
 msgstr ""
 
-#: include/functions.inc:998
-#, php-format
+#: setup/setup_migrate.tpl:258
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 ""
 
-#: include/functions.inc:1015
-msgid "incomplete"
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+msgid "Current"
 msgstr ""
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+msgid "After migration"
 msgstr ""
 
-#: include/functions.inc:1254
+#: setup/setup_migrate.tpl:313
 msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
 
-#: include/functions.inc:1260
-msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
-msgstr ""
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+msgid "GOsa settings 3/3"
+msgstr "Configuración GOsa 3/3"
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr ""
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
+msgstr "Ajustar el comportamiento del núcleo común de GOsa"
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr ""
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
+msgstr "Tiempo de vida de sesión debe ser un valor numérico"
 
-#: include/functions.inc:1329
-#, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Has decidido eliminar las siguientes entradas %s"
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "Máximo tiempo de consulta LDAP debe ser un valor numérico."
 
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+msgid "LDAP inspection"
+msgstr "Inspección LDAP"
 
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
+msgstr "Analice la compatibilidad con GOsa de su directorio LDAP"
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/class_setupStep_Migrate.inc:113
+msgid "Checking for root object"
+msgstr "Comprobando objeto raíz"
+
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
+msgstr "Comprobando permisos en la base de datos LDAP"
+
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Comprobando departamentos invisibles"
+
+#: setup/class_setupStep_Migrate.inc:131
+msgid "Checking for invisible users"
+msgstr "Comprobando usuarios invisibles"
+
+#: setup/class_setupStep_Migrate.inc:137
+msgid "Checking for super administrator"
+msgstr "Comprobando súper administrador"
+
+#: setup/class_setupStep_Migrate.inc:143
+msgid "Checking for users outside the people tree"
+msgstr "Comprobando cuentas fuera del árbol de usuarios"
+
+#: setup/class_setupStep_Migrate.inc:149
+msgid "Checking for groups outside the groups tree"
+msgstr "Comprobando grupos fuera del árbol de grupos"
+
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
+"Comprobando estaciones de trabajo windows fuera del árbol de estaciones de "
+"trabajo windows"
 
-#: include/functions.inc:1837
+#: setup/class_setupStep_Migrate.inc:161
+msgid "Checking for duplicate uid numbers"
+msgstr "Comprobando números uid duplicados"
+
+#: setup/class_setupStep_Migrate.inc:167
+msgid "Checking for duplicate gid numbers"
+msgstr "Comprobando números gid duplicados"
+
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+msgid "LDAP query failed"
+msgstr "La consulta LDAP ha fallado"
+
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr "Posiblemente el objeto raíz está desaparecido"
+
+#: setup/class_setupStep_Migrate.inc:213
 #, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr ""
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "Encontrado '%s' valores duplicados del atributo 'uidNumber'."
 
-#: include/functions.inc:1916
+#: setup/class_setupStep_Migrate.inc:262
 #, php-format
-msgid "File '%s' could not be deleted."
-msgstr ""
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Encontrado '%s' valores duplicados del atributo 'gidNumber'."
 
-#: include/functions.inc:1950 include/functions.inc:1970
-msgid "Cannot write to revision file!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Error"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
+#: setup/class_setupStep_Migrate.inc:319
+#, php-format
+msgid ""
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
+"Se encontraron '%s' estaciones de trabajo windows fuera del contenedor ou de "
+"estaciones de trabajo windows '%s'"
 
-#: include/functions.inc:2244
-#, fuzzy
-msgid "LDAP warning"
-msgstr "Aviso"
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+msgid "Migrate"
+msgstr "Migrar"
 
-#: include/functions.inc:2244
-#, fuzzy
-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!"
+#: setup/class_setupStep_Migrate.inc:387
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'."
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+msgid "Move"
+msgstr "Mover"
 
-#: include/functions.inc:2277
+#: setup/class_setupStep_Migrate.inc:462
+#, php-format
+msgid "Found %s user(s) outside the configured tree '%s'."
+msgstr "Encontrados '%s' usuario(s) fuera del árbol configurado '%s'."
+
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
+#, php-format
 msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
+"El usuario especificado '%s' no tiene acceso total a la base de datos LDAP."
 
-#: include/functions.inc:2320
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "Missing required object class '%s'!"
-msgstr ""
+msgid "Found %s user(s) that will not be visible in GOsa."
+msgstr "Encontrados %s usuario(s) que nos son visibles para GOsa."
 
-#: include/functions.inc:2322
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "Migrar"
+
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#, fuzzy, php-format
+msgid "Cannot migrate department '%s':"
+msgstr "Crear nuevo departamento"
+
+#: setup/class_setupStep_Migrate.inc:727
 #, php-format
-msgid "Missing optional object class '%s'!"
+msgid "Found %s department(s) that will not be visible in GOsa."
+msgstr "Encontrados %s departamento(s) que nos son visibles para GOsa."
+
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
+msgstr "No hay cuenta de administrador GOsa en la base de datos LDAP."
+
+#: setup/class_setupStep_Migrate.inc:945
+#, php-format
+msgid "Cannot add ACL for user '%s':"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Password error"
+msgstr "La contraseña expira en"
+
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
 msgstr ""
+"¡La contraseñas introducidas como nueva y repita nueva contraseña no "
+"coinciden!"
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+#: setup/class_setupStep_Migrate.inc:975
+msgid "Input error"
 msgstr ""
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Specify a valid user ID!"
+msgstr "Por favor especifique un uid valido."
 
-#: include/functions.inc:2334
+#: setup/class_setupStep_Migrate.inc:1019
 #, php-format
-msgid "Class(es) available"
+msgid "Adding an administrative user failed: object '%s' already exists!"
 msgstr ""
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "No puedo mover los usuarios al departamento especificado."
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
+msgstr "La estaciones de trabajo windows serán trasladadas desde"
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+msgid "to"
+msgstr "a"
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
+msgstr "También se actualizaran las siguientes referencias"
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
+msgstr "El grupo serán trasladado desde"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Francés"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
+msgstr "El usuario serán trasladado desde"
 
-#: include/functions.inc:2387
-msgid "Italian"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
+msgstr "Las siguientes referencias se actualizaran"
+
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
+"EL objeto raíz de LDAP ha desaparecido. Es necesario para poder usar el "
+"servicio LDAP."
 
-#: include/functions.inc:2388
-msgid "Spanish"
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+msgid "Try to create root object"
+msgstr "Intentando crear el objeto raíz"
+
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
+"El objeto raíz no ha podido ser creado, tendra que crearlo usted mismo."
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Inglés"
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Moviendo '%s' a '%s'"
 
-#: include/functions.inc:2390
-msgid "Dutch"
+#: setup/setup_frame.tpl:12
+msgid "GOsa setup wizard"
 msgstr ""
 
-#: include/functions.inc:2391
-msgid "Polish"
+#: setup/setup_frame.tpl:19
+msgid "Installation"
 msgstr ""
 
-#: include/functions.inc:2392
-msgid "Swedish"
+#: setup/setup_frame.tpl:19
+msgid "Steps"
 msgstr ""
 
-#: include/functions.inc:2393
-msgid "Chinese"
-msgstr "Chino"
+#: setup/class_setupStep_Feedback.inc:91
+msgid "UNIX accounts/groups"
+msgstr "Cuentas/Grupos UNIX"
 
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Ruso"
+#: setup/class_setupStep_Feedback.inc:93
+msgid "Samba management"
+msgstr "Administración Samba"
 
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "activo, la contraseña expiró"
+#: setup/class_setupStep_Feedback.inc:95
+msgid "Mailsystem management"
+msgstr "Administración sistema de correo"
 
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:97
+msgid "FAX system administration"
+msgstr "Administración sistema de FAX"
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:99
+msgid "Asterisk administration"
+msgstr "Administración Asterisk"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:101
+msgid "System inventory"
+msgstr "Inventario de sistemas"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:103
+msgid "System-/Configmanagement"
+msgstr "Sistemas-/Administración de Configuraciones"
 
-#: include/class_ldap.inc:579
-#, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Libreta direcciones"
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+msgid "Notification and feedback"
+msgstr "Avisos y sugerencias"
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:112
+msgid "Get notifications or send feedback"
+msgstr "Recibir avisos o enviar sugerencias"
 
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+msgid "Setup error"
 msgstr ""
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
 msgstr ""
 
-#: include/class_ldap.inc:964
+#: setup/class_setupStep_Feedback.inc:140
 #, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr ""
-
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
+msgid "Cannot send feedback to '%s': %s"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
+#: setup/class_setupStep_Feedback.inc:147
+#, fuzzy
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
+"Error mientras se envía su sugerencia. Es posible que el servicio no se "
+"encuentre disponible"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
+msgstr "Sugerencia enviada correctamente"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:179
+msgid "Please specify a valid email address."
+msgstr "Por favor indique una dirección de correo válida."
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
+#: setup/class_setupStep_Feedback.inc:183
+#, fuzzy
+msgid ""
+"You have to select at least one of both options, subscribe or send feedback."
 msgstr ""
+"Debe tener activa al menos una opción para suscribirse o enviar una "
+"sugerencia."
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr ""
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+msgid "License"
+msgstr "Licencia"
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr ""
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr "Términos y condiciones de uso"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "Foto del usuario"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Parametros de samba"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
+#: setup/setup_config2.tpl:31
+msgid "RID base"
+msgstr ""
+
+#: setup/setup_config2.tpl:46
+msgid "Workstation container"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
+#: setup/setup_config2.tpl:61
+msgid "Samba SID mapping"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Eliminar"
+#: setup/setup_config2.tpl:71
+#, fuzzy
+msgid "Timezone"
+msgstr "Zona de uso horario del usuario OX"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
+#: setup/setup_config2.tpl:74
+msgid "Please choose your preferred timezone here"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
+#: setup/setup_config2.tpl:96
+msgid "Additional GOsa settings"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Número de serie del certificado"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/setup_config2.tpl:112
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Parámetros administrativos"
+msgid "Enable DNS extension"
+msgstr "Eliminar extensión de impresión"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "mujer"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "Eliminar extensión de impresión"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "hombre"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Administración Sieve"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
+#: setup/setup_config2.tpl:148
+#, fuzzy
+msgid "Enable FAI release management"
+msgstr "Administración Samba"
+
+#: setup/setup_config2.tpl:160
+msgid "Enable user netatalk plugin"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:492
-#, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Por favor introduzca un número de serie válido"
+#: setup/setup_config2.tpl:171
+msgid "Government mode"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:536
-msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "Parámetros de correo"
+
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
 msgstr ""
-"(Algunos tipos de certificados no están soportados y pueden ser mostrados "
-"como no validos.)"
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "El certificado es valido desde %s hasta %s y es actualmente %s."
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "válido"
+#: setup/setup_config2.tpl:214
+msgid "Vacation templates"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "no válido"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "No hay certificados instalados"
+#: setup/setup_config2.tpl:240
+msgid "Snapshots / Undo"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-#, fuzzy
-msgid "Password method"
-msgstr "Contraseña"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+msgid "Enable snapshots"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575
-#, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "La aplicación ya no está disponible."
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+msgid "Snapshot base"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "No tiene permisos para mover este objeto a '%s'."
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Nombre de pila"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Página Web"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "Dirección correo electrónico"
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Teléfono"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1285
-#, fuzzy
-msgid "Cannot open certificate!"
-msgstr "¡No puedo abrir el certificado especificado!"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Unidad"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Tipo de Vía"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Profesión"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Última dirección conocida"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Lugar de residencia"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Descripción de la unidad"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Área de desarrollo"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Función"
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Visible por todos"
+#: setup/setup_feedback.tpl:123
+msgid "Features"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Calle"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Rol"
+#: setup/setup_schema.tpl:3
+msgid "Schema specific settings"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Código Postal"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1432
-msgid "Generic user settings"
-msgstr "Parámetros genéricos del usuario"
+#: setup/setup_schema.tpl:16
+msgid "Check status"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Mi cuenta"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-msgid "User password"
-msgstr "Contraseña del usuario"
+#: setup/setup_schema.tpl:23
+msgid "Schema check failed"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Apellidos"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1445
-msgid "User identification"
-msgstr "Identificación de Usuario"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Título Personal"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Títulos académicos"
+#: setup/class_setup.inc:196
+msgid "Completed"
+msgstr "Completado"
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "Dirección Postal personal"
+#: setup/class_setupStep_Ldap.inc:53
+msgid "LDAP setup"
+msgstr "Configuración LDAP"
 
-#: plugins/personal/generic/class_user.inc:1449
-msgid "Home phone number"
-msgstr "Número de teléfono personal"
+#: setup/class_setupStep_Ldap.inc:54
+msgid "LDAP connection setup"
+msgstr "Conectividad LDAP"
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Departamento"
+#: setup/class_setupStep_Ldap.inc:55
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
+msgstr ""
+"Este asistente llevara a cabo la configuración de la conectividad entre GOsa "
+"y LDAP."
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Fecha de nacimiento"
+#: setup/class_setupStep_Ldap.inc:105
+#, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "Ha fallado la Autenticación Anónima en el servidor '%s'."
 
-#: plugins/personal/generic/class_user.inc:1454
-msgid "Gender"
-msgstr "Sexo"
+#: setup/class_setupStep_Ldap.inc:107
+#, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Ha fallado la Autenticación como usuario '%s' en el servidor '%s'."
 
-#: plugins/personal/generic/class_user.inc:1455
-msgid "Preferred language"
-msgstr "Idioma preferido"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito."
 
-#: plugins/personal/generic/class_user.inc:1456
-msgid "Department number"
-msgstr "Número del departamento"
+#: setup/class_setupStep_Ldap.inc:113
+msgid "Please specify user and password."
+msgstr "Por Favor especifique un usuario y contraseña"
 
-#: plugins/personal/generic/class_user.inc:1457
-msgid "Employee number"
-msgstr "Número de empleado"
+#: setup/class_setupStep_Ldap.inc:115
+#, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr ""
+"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Funciones laborales"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Localización"
+#: setup/setup_config1.tpl:6
+msgid "Theme"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Provincia"
+#: setup/setup_config1.tpl:15
+msgid "Apache"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1462
-msgid "Room number"
-msgstr "Número de habitación"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1463
-msgid "Telefon number"
-msgstr "Número de teléfono"
+#: setup/setup_config1.tpl:27
+msgid "People and group storage"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
-msgid "Mobile number"
-msgstr "Teléfono móvil"
+#: setup/setup_config1.tpl:30
+msgid "People DN attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1465
-msgid "Pager number"
-msgstr "Número del busca"
+#: setup/setup_config1.tpl:41
+msgid "People storage subtree"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1466
-msgid "User certificates"
-msgstr "Certificados de usuario"
+#: setup/setup_config1.tpl:50
+msgid "Group storage subtree"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "Código Postal"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1469
-msgid "Fax number"
-msgstr "Número de Fax"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr ""
 
-#: plugins/personal/generic/password.tpl:2
-msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+#: setup/setup_config1.tpl:81
+msgid "Automatic uids"
 msgstr ""
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
+#: setup/setup_config1.tpl:113
+msgid "Number base for people/groups"
 msgstr ""
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
+#: setup/setup_config1.tpl:140
+msgid "Password encryption algorithm"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
+#: setup/setup_config1.tpl:151
+msgid "Password restrictions"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Dirección"
+#: setup/setup_config1.tpl:182
+msgid "Password change hook"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
+#: setup/setup_config1.tpl:209
+msgid "Use account expiration"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
+#: setup/setup_config1.tpl:222
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
+#: setup/setup_config1.tpl:224
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
+#: setup/setup_language.tpl:3
+msgid "Please select the preferred language"
 msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/setup_language.tpl:5
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
+"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 ""
-"No coinciden las contraseñas introducidas como 'Nueva contraseña' y 'Repetir "
-"nueva contraseña'."
 
-#: plugins/personal/generic/main.inc:104
+#: setup/setup_language.tpl:9
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "No tiene permisos para cambiar su contraseña."
+msgid "Please select your preferred language here"
+msgstr "Este paso le permite seleccionar su idioma preferido"
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Editar"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr "Comprobación de la instalación"
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Información genérica del usuario"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr "Comprobación básica de la versión de PHP y las extensiones necesarias."
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
+#: setup/class_setupStep_Checks.inc:64
+msgid "Checking PHP version"
+msgstr "Comprobando la versión de PHP"
+
+#: setup/class_setupStep_Checks.inc:65
+#, fuzzy, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP debe ser versión '%s'/'%s' o superior."
+
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
 msgstr ""
+"GOsa necesita funcionalidades que no son disponibles (o son defectuosas) en "
+"versiones antiguas de PHP. Por favor actualice a una versión soportada."
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/class_setupStep_Checks.inc:72
+msgid "Checking for LDAP support"
+msgstr "Comprobando el soporte de LDAP"
+
+#: setup/class_setupStep_Checks.inc:73
+msgid "This is the main extension used by GOsa and therefore really required."
 msgstr ""
+"Esta es la extensión principalmente usada por GOsa y por lo tanto "
+"obligatoria."
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
+#: setup/class_setupStep_Checks.inc:74
+#, fuzzy
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
+"La extensión LDAP (php4-ldap/php5-ldap) es necesaria para comunicarse con el "
+"servidor LDAP."
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Comprobando soporte gettext"
+
+#: setup/class_setupStep_Checks.inc:81
+msgid "Gettext support is required for internationalization."
+msgstr "El soporte de gettext es necesario para soportar múltiples idiomas."
+
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr "Por favor asegúrese que esta extensión está activada."
+
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Comprobando soporte iconv"
+
+#: setup/class_setupStep_Checks.inc:89
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
 msgstr ""
+"Este módulo es usado por GOsa para convertir munged dial de samba y es por "
+"lo tanto necesario."
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
+#: setup/class_setupStep_Checks.inc:96
+msgid "Checking for mhash support"
+msgstr "Comprobando soporte mhash"
+
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
 msgstr ""
+"Este módulo es necesario para poder hacer uso del método de codificación SSHA"
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
+#: setup/class_setupStep_Checks.inc:98
+#, fuzzy
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
 msgstr ""
+"El módulo mhash para PHP 4/5 no está disponible. Por favor instale php4-"
+"mhash/php5-mhash."
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
+#: setup/class_setupStep_Checks.inc:104
+msgid "Checking for IMAP support"
+msgstr "Comprobando soporte IMAP"
+
+#: setup/class_setupStep_Checks.inc:105
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
 msgstr ""
+"El módulo IMAP es necesario para comunicar con un servidor IMAP, GOsa "
+"recupera información de estado, crea y elimina usuarios de correo, etc."
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/class_setupStep_Checks.inc:106
+#, fuzzy
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
 msgstr ""
+"Este módulo se necesita para comunicarse con el servidor de correo. Por "
+"favor instale php4-imap/php5-imap."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/class_setupStep_Checks.inc:112
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Cambiar contraseña"
+msgid "Checking for multi byte support"
+msgstr "Comprobando soporte gettext"
 
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "Necesita introducir su contraseña actual para continuar."
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "No se ha asignado ningún valor al campo 'Nueva contraseña'."
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
+#: setup/class_setupStep_Checks.inc:120
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Comprobando getacl en la implementación de IMAP"
+
+#: setup/class_setupStep_Checks.inc:121
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
-"La contraseña actual y la introducida como nueva son demasiado parecidas."
+"El soporte de getacl es necesario para manejar permisos en carpetas "
+"compartidas. Versiones antiguas de la extensión IMAP no son capaces de leer "
+"acls. Necesita una versión reciente de PHP para hacer uso de esta "
+"característica."
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "La nueva contraseña es demasiado corta."
+#: setup/class_setupStep_Checks.inc:128
+msgid "Checking for MySQL support"
+msgstr "Comprobando soporte MySQL"
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "El programa externo de cambio de contraseña informo de un problema: "
+#: setup/class_setupStep_Checks.inc:129
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas."
+
+#: setup/class_setupStep_Checks.inc:130
+#, fuzzy
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
+"Este módulo es necesario para comunicarse con servicios de bases de datos "
+"(GOfax, asterisk, GLPI, etc.). Por favor instale php4-mysql/php5-mysql"
+
+#: setup/class_setupStep_Checks.inc:136
+msgid "Checking for kadm5 support"
+msgstr "Comprobando soporte kadm5"
+
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr ""
+"Administrar cuentas en kerberos necesita el módulo kadm5, el cual se puede "
+"descargar desde la red PEAR"
+
+#: setup/class_setupStep_Checks.inc:138
+msgid ""
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
+msgstr ""
+"Este módulo es necesario para manejar cuentas kerberos, se puede descargar a "
+"través de la red PEAR"
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:144
+msgid "Checking for SNMP support"
+msgstr "Comprobando soporte snmp"
+
+#: setup/class_setupStep_Checks.inc:145
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
-msgstr "La contraseña introducida como contraseña actual no es correcta."
+"The simple network management protocol is needed to get status information "
+"from clients."
+msgstr ""
+"El protocolo de gestión simple de red es necesario para obtener información "
+"de los clientes."
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:146
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "No tiene permisos para cambiar su contraseña."
-
-#: plugins/personal/password/password.tpl:4
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"This module is required for client monitoring. Please install php5-snmp."
 msgstr ""
+"El módulo es necesario para la monitorización de clientes. Por favor instale "
+"php4-snmp/php5-snmp."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:152
+msgid "Checking for CUPS support"
+msgstr "Comprobando soporte CUPS"
+
+#: setup/class_setupStep_Checks.inc:153
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
 msgstr ""
+"Para poder leer la lista de impresoras disponibles a través del protocolo "
+"IPP en vez de archivos de princap, necesita tener instalado el módulo CUPS."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Comprobando soporte fping"
+
+#: setup/class_setupStep_Checks.inc:163
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
 msgstr ""
+"La utilidad fping es utilizada cuando se tiene un entorno de terminales "
+"basados en clientes ligeros."
 
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
+#: setup/class_setupStep_Checks.inc:164
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
 msgstr ""
+"La utilidad fping es solo utilizada en un entorno de terminales basados en "
+"clientes ligeros."
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Directorio de usuario"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr "Función de generación de hash de la contraseña SAMBA"
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
+#: setup/class_setupStep_Checks.inc:180
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
 msgstr ""
+"Para poder usar contraseñas en SAMBA 2/3 necesita instalar paquetes "
+"adicionales que generen los hashes de las contraseñas."
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
+#: setup/class_setupStep_Checks.inc:181
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
 msgstr ""
+"Para poder usar SAMBA 2/3 necesita instalar ciertas librerías en perl. Vea "
+"mkntpasswd."
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
+msgstr "Off"
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
+#: setup/class_setupStep_Checks.inc:192
+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/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:193
+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/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
+#: setup/class_setupStep_Checks.inc:201
+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/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
+#: setup/class_setupStep_Checks.inc:202
+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/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
+#: setup/class_setupStep_Checks.inc:203
+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/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
+#: setup/class_setupStep_Checks.inc:211
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
 msgstr ""
+"Si quiere usar GOsa sin problemas, debe modificar a 'Off' la opción 'session."
+"auto_register' en su php.ini."
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Expresión regular para buscar nombres de grupos"
+#: setup/class_setupStep_Checks.inc:212
+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/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
+#: setup/class_setupStep_Checks.inc:219
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
 msgstr ""
+"GOsa necesita al menos 32Mb de memoria. Teniéndola por debajo de ese limite "
+"provocara errores inesperados. Aumentar para configuraciones mayores."
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Nombre de usuario de los grupos que se muestran"
-
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Search in subtrees"
-msgstr "Buscar en subárboles"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr "Busque 'memory_limit' en su php.ini y modifíquelo a '32M' o mayor."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
+#: setup/class_setupStep_Checks.inc:227
+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/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:228
+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/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:235
+msgid "The Execution time should be at least 30 seconds."
+msgstr "El tiempo de ejecución debe ser de al menos 30 segundos."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:236
+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/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "expiró"
-
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "Periodo de gracia activado"
+#: setup/class_setupStep_Checks.inc:243
+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/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "activo, no puede cambiar la contraseña"
+#: setup/class_setupStep_Checks.inc:244
+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/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "activo, la contraseña expiró"
+#: setup/class_setupStep_Checks.inc:250
+msgid "On"
+msgstr "On"
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "activo"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
+"Aumente la seguridad del servidor modificando el parámetro 'magic_quotes_gpc "
+"' a 'on'. PHP debería escapar todas las comillas de las cadenas en este caso."
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "Sin configurar"
+#: setup/class_setupStep_Checks.inc:252
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr "Busque 'magic_quotes_gpc' en su php.ini y modifíquelo a 'On'."
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automático"
+#: setup/class_setupStep_Checks.inc:259
+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/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:260
+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/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:270
+msgid "Configuration writeable"
+msgstr "Se puede escribir en la configuración"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Entorno"
+#: setup/class_setupStep_Checks.inc:271
+msgid "The configuration file can't be written"
+msgstr "No se puede escribir en la configuración"
 
-#: plugins/personal/posix/class_posixAccount.inc:465
+#: setup/class_setupStep_Checks.inc:272
 #, php-format
-msgid "Password can't be changed up to %s days after last change"
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
-"La contraseñas no pueden ser cambiadas hasta %s días desde el último cambio"
+"GOsa lee la configuración desde un archivo colocado en (%s/%s). El asistente "
+"puede escribir la configuración directamente si tiene permisos de escritura."
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "La contraseñas deben ser cambiadas despues de %s días"
+#: setup/setup_config3.tpl:2
+msgid "GOsa core settings"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
+#: setup/setup_config3.tpl:6
+msgid "Disable primary group filter"
 msgstr ""
-"Desactivar cuenta despues de %s días de inactividad una vez expirada la "
-"contraseña"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Avisar al usuario %s días antes de que la contraseña expire"
+#: setup/setup_config3.tpl:18
+#, fuzzy
+msgid "Display summary in listings"
+msgstr "Mostrar sistemas que coincidan con"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "Acceso sin restricciones"
+#: setup/setup_config3.tpl:30
+msgid "Honour administrative units"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "Permitir el acceso a estos equipos"
+#: setup/setup_config3.tpl:42
+msgid "Smarty compile directory"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/setup_config3.tpl:60
+msgid "Path for PPD storage"
+msgstr ""
+
+#: setup/setup_config3.tpl:77
+msgid "Path for kiosk profile storage"
+msgstr ""
+
+#: setup/setup_config3.tpl:96
 #, fuzzy
-msgid "Uid number"
-msgstr "Número de Fax"
+msgid "Enable system deployment"
+msgstr "Administración sistema de correo"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+#: setup/setup_config3.tpl:115
+msgid "Mail queue script"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Grupo de usuarios"
+#: setup/setup_config3.tpl:134
+msgid "Notification script"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
+#: setup/setup_config3.tpl:153
 #, fuzzy
-msgid "shadowMin"
-msgstr "Shadow min"
+msgid "Enable edit locking"
+msgstr "Activar comprobación de correo"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-#, fuzzy
-msgid "shadowMax"
-msgstr "Shadow max"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
+#: setup/setup_config3.tpl:175
 #, fuzzy
-msgid "shadowWarning"
-msgstr "Shadow warning"
+msgid "Login attribute"
+msgstr "Base de datos de Registro"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
-#, fuzzy
-msgid "shadowInactive"
-msgstr "Shadow inactive"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-msgid "POSIX account"
-msgstr "Cuenta POSIX"
+#: setup/setup_config3.tpl:210
+msgid "Warn if session is not encrypted"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:222
+#, fuzzy
+msgid "Remember dialog filter settings"
+msgstr "Parámetros genéricos del usuario"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-msgid "Group ID"
-msgstr "Identificador (ID) de Grupo"
+#: setup/setup_config3.tpl:234
+msgid "Session lifetime"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-msgid "Force password change on login"
-msgstr "Forzar el cambio de contraseña al iniciar"
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
-msgid "Shadow min"
-msgstr "Shadow min"
+#: setup/setup_config3.tpl:247
+msgid "Show PHP errors"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
-msgstr "Shadow max"
+#: setup/setup_config3.tpl:259
+msgid "Maximum LDAP query time"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
-msgid "Shadow warning"
-msgstr "Shadow warning"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-msgid "Shadow inactive"
-msgstr "Shadow inactive"
+#: setup/setup_config3.tpl:289
+msgid "Debug level"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
-msgid "Shadow expire"
-msgstr "Shadow expire"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+msgid "Disabled"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
-msgid "System trust model"
-msgstr "Sistema de confianza"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+msgid "Enabled"
+msgstr ""
 
-#: plugins/personal/posix/main.inc:131
-#, fuzzy
-msgid "POSIX settings"
-msgstr "Parametros de samba"
+#: setup/class_setupStep_Welcome.inc:38
+msgid "Welcome"
+msgstr "Bienvenido"
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr ""
+#: setup/class_setupStep_Welcome.inc:39
+msgid "The welcome message"
+msgstr "Mensaje de Bienvenida"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Estado"
+#: setup/class_setupStep_Welcome.inc:40
+msgid "Welcome to GOsa setup wizard"
+msgstr "Bienvenidos al asistente de configuración de GOsa"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
-#, fuzzy
-msgid "In all groups"
-msgstr "Mostrar grupos de correo"
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+msgid "LDAP schema check"
+msgstr "Comprobar esquemas LDAP"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
-#, fuzzy
-msgid "Not in all groups"
-msgstr "Mostrar grupos de correo"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr "Efectuando comprobaciones en los esquemas actuales de LDAP"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
+#: setup/setup_checks.tpl:67
+msgid "PHP setup configuration"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
+#: setup/setup_checks.tpl:67
+msgid "show information"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Mostrar sistemas que coincidan con"
+#: setup/setup_finish.tpl:3
+msgid "Create your configuration file"
+msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
 msgstr ""
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
+#: setup/setup_finish.tpl:18
+msgid "Status: "
 msgstr ""
 
-#: plugins/admin/users/template.tpl:6
+#: setup/class_setupStep_Finish.inc:38
+msgid "Write configuration file"
+msgstr "Escribir archivo de configuración"
+
+#: setup/class_setupStep_Finish.inc:39
+msgid "Finish - write the configuration file"
+msgstr "Terminar - Escribir el archivo de configuración"
+
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
 msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
+"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/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Plantilla"
+#: setup/class_setupStep_Finish.inc:102
+msgid "The configuration is currently not readable or it does not exists."
+msgstr ""
+"En estos momentos la configuración no es accesible o no tiene permisos para "
+"leerla."
 
-#: plugins/admin/users/password.tpl:4
+#: setup/class_setupStep_Finish.inc:111
+#, php-format
 msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+"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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
+"Despues de descargar y poner el fichero en %s,  compruebe que el usuario del "
+"servicio web es capaz de leer %s, mientras que los otros usuarios no. Si "
+"quiere puede ejecutar los siguientes comandos para cumplir lo requerido:"
 
-#: plugins/admin/users/password.tpl:21
-#, fuzzy
-msgid "Strength"
-msgstr "Calle"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+msgid "GOsa settings 2/3"
+msgstr "Configuración GOsa 2/3"
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Lista de usuarios"
+#: setup/class_setupStep_Config2.inc:87
+msgid "Customize special parameters"
+msgstr "Personalizar parametros especiales"
 
-#: plugins/admin/users/class_divListUsers.inc:60
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
 msgstr ""
-"Este menú permite crear, editar o eliminar los usuarios seleccionados. Si "
-"tiene un gran numero de usuarios puede usar los selectores de rangos en la "
-"parte superior del listado."
-
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Propiedades"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Acciones"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Seleccione para mostrar las plantillas de usuarios"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Mostrar plantillas"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr "Seleccione para ver los usuarios que solo tienen la extensión GOsa"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Mostrar usuarios funcionales"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Seleccione para ver los usuarios que tienen extensiones Posix"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Mostrar los usuarios unix"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "ACL"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "Seleccione para ver los usuarios que tienen extensiones de correo"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Mostrar los usuarios de correo"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Seleccione para ver los usuarios que tienen extensiones samba"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Mostrar usuarios samba"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Seleccione para ver los usuarios que tienen extensiones proxy"
+#: include/class_plugin.inc:1613
+msgid "from"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Mostrar los usuarios de proxy"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Ir al departamento raíz"
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "Seleccione para buscar dentro de los subárboles"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Raíz"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Mostrar usuarios que coincidan con"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Subir un departamento"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Enviar departamento"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Ir al departamento de usuarios"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Cambiar contraseña"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Inicio"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "copiar"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "Recargar lista"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "mover"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+msgid "Restore"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "Editar características generales"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "Editar características UNIX"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "Editar características de entorno"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create a new snapshot from this object"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Correo Electrónico"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "Editar características de correo electrónico"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "Editar características telefónicas"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "Editar características de Fax"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "Editar características samba"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
-msgstr "Netatalk"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "Editar características netatalk"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "Crear usuario desde plantilla"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "Crear usuario con esta plantilla"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "mover"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "Mover esta entrada"
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "copiar"
+#: include/class_SnapShotDialog.inc:135
+msgid "Remove snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "Copiar esta entrada"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
-#, fuzzy
-msgid "Deactivated"
-msgstr "Activado"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
+#: include/class_config.inc:109
+msgid "Config file parsing"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "Editar usuario"
+#: include/class_config.inc:228
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "contraseña"
+#: include/class_config.inc:561
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:343
-msgid "You are not allowed to change the password for this user."
-msgstr "¡No tiene permisos para cambiar la contraseña de este usuario!"
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
+#, fuzzy
+msgid "Internal error"
+msgstr "Insertar separador"
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "Eliminar usuario"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Servicio de Registro de sistema"
 
-#: plugins/admin/users/class_divListUsers.inc:357
-msgid "You are not allowed to remove this user."
-msgstr "No le está permitido eliminar este usuario."
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:443
-msgid "Number of listed users"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-#, fuzzy
-msgid "Number of listed departments"
-msgstr "Eliminar departamentos seleccionados"
+#: include/class_log.inc:120
+#, php-format
+msgid "Invalid option '%s' specified."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:27
+#: include/class_log.inc:124
 #, fuzzy
-msgid "Manage users"
-msgstr "Usuarios del dominio"
+msgid "Specified objectType is empty or invalid"
+msgstr "La contraseñas especificadas están vacías o no son iguales."
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "Abajo"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_log.inc:157
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "Cannot connect to logging server '%s'."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
-#, fuzzy
-msgid "Password change failed."
-msgstr "La contraseñas deben ser cambiadas despues de %s días"
-
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
-msgstr "¡No le estátá permitido cambiarle la contraseña de estos usuarios!"
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr ""
+"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: plugins/admin/users/class_userManagement.inc:456
+#: include/class_log.inc:181
 #, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Has decidido eliminar la entrada %s"
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:458
+#: include/class_log.inc:218
 #, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Has decidido eliminar las siguientes entradas: %s"
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:460
-#, fuzzy
-msgid "Delete users"
-msgstr "Eliminar usuario"
+#: include/class_log.inc:241
+#, fuzzy, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr ""
+"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-#, fuzzy
-msgid "User delete"
-msgstr "eliminar"
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
-#, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "¡No le está permitido eliminar el usuario '%s'!"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "Esta a punto de eliminar el usuario %s"
+#: include/php_setup.inc:96
+msgid "Send bugreport"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "eliminar"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User successfully removed."
-msgstr "Sugerencia enviada correctamente"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "¡No le está permitido eliminar este usuario!"
+#: include/php_setup.inc:130
+msgid "class"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "ninguno"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr ""
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+#: include/php_setup.inc:141
+msgid "static"
 msgstr ""
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Administración de Usuario"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
+#: include/php_setup.inc:178
+msgid "Trace"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
+#: include/php_setup.inc:179
+msgid "File"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
+#: include/php_setup.inc:179
+msgid "Line"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Tipo"
+
+#: include/php_setup.inc:180
+msgid "Arguments"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
+#: include/class_acl.inc:26
+msgid "Access control"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+msgid "Show/Hide Advanced Settings"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Seleccione para ver los servidores"
-
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
+#: include/class_acl.inc:690
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
+#: include/class_acl.inc:691
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
+#: include/class_acl.inc:692
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr "¡No se puede encontrar SID en LDAP o en el archivo de configuración!"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Este 'dn' no es un grupo."
+#: include/class_acl.inc:697
+msgid "Move object"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Grupo de samba"
+#: include/class_acl.inc:698
+msgid "Remove object"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Administradores del dominio"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "leer"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Usuarios del dominio"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "escribir"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Invitados del dominio"
+#: include/class_acl.inc:710
+msgid "Complete object"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
+#: include/class_acl.inc:826
 #, php-format
-msgid "Special group (%d)"
-msgstr "Grupo especial (%d)"
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "¡id desconocido!"
+#: include/class_acl.inc:869
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_acl.inc:929 include/class_acl.inc:931
 #, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+msgid "Role: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
+msgstr ""
+
+#: include/class_acl.inc:939
 #, php-format
-msgid "Cannot find any SID for '%s'!"
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "No hay ningún RIDBASE configurado para '%s'."
+#: include/class_acl.inc:948
+msgid "Members:"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
-#, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-msgid "Generic group settings"
-msgstr "Parámetros genéricos del grupo"
+#: include/class_acl.inc:1115
+msgid "Access control list"
+msgstr "Lista de control de acceso"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
-msgid "Phone pickup group"
-msgstr "Miembros de grupo de salto telefónico"
+#: include/class_acl.inc:1123
+msgid "Role name"
+msgstr "Nombre del Rol"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-msgid "Nagios group"
-msgstr "Grupo Nagios"
+#: include/class_acl.inc:1124
+msgid "Role description"
+msgstr "Descripción del Rol"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
-msgid "Group member"
-msgstr "Miembro del grupo"
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
-msgid "Samba group type"
-msgstr "Tipo de grupo de samba"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, fuzzy, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "No puedo crear el fichero '%s'."
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
-msgid "Samba domain name"
-msgstr "Nombre de dominio samba"
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "No puedo crear el fichero '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Lista de grupos"
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "No puedo crear el fichero '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
 msgstr ""
-"Este menú le permite añadir, editar o eliminar los grupos seleccionados. "
-"Cuando trabaje con un gran número de grupos puede usar el selector de rango "
-"en la parte superior de la lista de grupos,."
-
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "Nombre de grupo / Departamento"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr "Seleccione para ver que grupos son grupos primarios de usuarios"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Mostrar grupos primarios"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "No puedo crear el fichero '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Seleccione para ver que grupos tienen asignado un grupo samba"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Mostrar los grupos samba"
+#: include/class_hostActionQueue.inc:277
+#, php-format
+msgid "Entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "Seleccione para ver que grupos tienen aplicaciones configuradas"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Mostrar los grupos de aplicaciones"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "Seleccione para ver que grupos tienen configuración de correo"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Mostrar grupos de correo"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "Seleccione para ver que grupos tienen solo aspectos funcionales"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Mostrar grupos funcionales"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Grupo"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Aplicación"
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Editar esta entrada"
+#: include/functions.inc:318
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Eliminar esta entrada"
+#: include/functions.inc:380
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-#, fuzzy
-msgid "Number of listed groups"
-msgstr "Eliminar grupo seleccionado"
+#: include/functions.inc:450
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/functions.inc:605
 #, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Has decidido eliminar la siguiente entrada %s"
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:605 include/functions.inc:620
 #, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Has decidido eliminar las siguientes entradas %s"
-
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "Permisos"
-
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "No tiene permisos para eliminar este departamento."
+msgid "LDAP server returned: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:434
+#: include/functions.inc:620
 #, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "Está a punto de borrar el grupo '%s'."
+msgid "Adding a lock failed."
+msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:699
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Administración de grupo"
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
+#: include/functions.inc:998
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
+#: include/functions.inc:1015
+msgid "incomplete"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
+#: include/functions.inc:1253
+msgid "LDAP error:"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
+#: include/functions.inc:1325
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
+#: include/functions.inc:1327
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-msgid "ACL Templates"
-msgstr "Plantillas ACL"
+#: include/functions.inc:1329
+#, fuzzy, php-format
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "Has decidido eliminar las siguientes entradas %s"
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
-msgstr "Acl"
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-msgid "ACLs"
+#: include/functions.inc:1541
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:163
-#, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "No tiene permisos para eliminar este departamento."
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-#, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "No tiene permisos para eliminar este departamento."
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:1916
 #, php-format
-msgid "You're about to delete the acl %s."
-msgstr "Va a eliminar la acl %s."
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:51
-msgid "List of acl"
-msgstr "Lista de acl"
+#: include/functions.inc:1950 include/functions.inc:1970
+msgid "Cannot write to revision file!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:52
-msgid "List of acls"
-msgstr "Lista de acls"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
-msgstr "Este menú le permite editar y eliminar las acl seleccionadas."
+#: include/functions.inc:2244
+#, fuzzy
+msgid "LDAP warning"
+msgstr "Aviso"
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "Sumario"
+#: include/functions.inc:2244
+#, fuzzy
+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/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "Ignorar subárboles"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
-msgid "Display acls matching"
-msgstr "Mostrar las acl que coincidan con"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:244
-msgid "Edit acl role"
-msgstr "Editar rol"
+#: include/functions.inc:2320
+#, php-format
+msgid "Missing required object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:254
-msgid "Delete acl role"
-msgstr "Eliminar rol"
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:266
-msgid "Edit acl"
-msgstr "Editar acl"
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:270
-msgid "Delete acl"
-msgstr "Eliminar acl"
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:26
-msgid "Access control list templates"
+#: include/functions.inc:2334
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "Rol"
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "Objeto"
+#: include/functions.inc:2357
+msgid ""
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
-"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes "
-"objetos están usando este rol %s"
 
-#: plugins/admin/acl/class_aclRole.inc:700
-msgid "Acl roles"
-msgstr "Roles"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
-msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+#: include/functions.inc:2385
+msgid "German"
+msgstr ""
+
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Francés"
+
+#: include/functions.inc:2387
+msgid "Italian"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+#: include/functions.inc:2388
+msgid "Spanish"
 msgstr ""
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-msgid "ACL management"
-msgstr "Administración de ACL"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "No ha introducido el campo obligatorio 'Nombre'."
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Inglés"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "No ha introducido el campo obligatorio 'Descripción'."
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Insertar separador"
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-#, fuzzy
-msgid "Cannot find an unused tag for this administrative unit!"
+#: include/functions.inc:2392
+msgid "Swedish"
 msgstr ""
-"Error Fatal: ¡No se puede encontrar una etiqueta sin usar para identificar "
-"la unidad administrativa!"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr "Etiquetando '%s'."
+#: include/functions.inc:2393
+msgid "Chinese"
+msgstr "Chino"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "Moviendo '%s' a '%s'"
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Ruso"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
+#: include/functions.inc:2562
 #, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "Ha fallado a copiar %s, operación abortada"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Departamentos"
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "País"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Teléfono"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "Nombre de departamento"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Categoría"
+#: include/class_ldap.inc:592
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "Parámetros administrativos"
+#: include/class_ldap.inc:640
+#, php-format
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:724
 #, php-format
-msgid "Object '%s' is already tagged"
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:726
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:948
 #, php-format
-msgid "Removing tag from object '%s'"
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-msgid "You are currently moving/renaming this department."
+#: include/class_ldap.inc:977
+#, php-format
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-#, fuzzy
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
-"Ha fallado al mover el árbol. El árbol destino es subárbol del elegido."
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Lista de Departamentos"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "No se puede grabar el archivo '%s'."
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Has decidido eliminar las siguientes entradas %s"
+
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Has decidido eliminar la siguiente entrada %s"
+
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
 msgstr ""
-"Este menú le permitirá crear, eliminar, y editar los departamentos "
-"seleccionados. Puede preferir el selector de rango en la parte superior de "
-"la lista de departamentos cuando maneje un gran número de departamentos."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Expresión regular para buscar el nombre del departamento"
+#: include/utils/class_msgPool.inc:14
+#, fuzzy
+msgid "You have no permission to delete this object!"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "departamento"
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#, fuzzy
+msgid "You have no permission to delete the object:"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:26
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Departamentos"
+msgid "You have no permission to delete these objects:"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr "Ha decidido eliminar todo el subárbol LDAP colocado debajo de '%s'."
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Administración de departamento"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "No tiene permisos para eliminar este departamento."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr ""
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr ""
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr ""
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr ""
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "No tiene permisos para cambiar su contraseña."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr ""
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+#, fuzzy
+msgid "Connection information"
+msgstr "Información genérica del usuario"
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
+#: include/utils/class_msgPool.inc:110
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
-msgid "Please enter the new object group name"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
 msgstr ""
+"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
 msgstr ""
+"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "El campo 'Fax' tiene un número de teléfono no valido."
+
+#: include/utils/class_msgPool.inc:152
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Inicio"
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "El valor especificado como 'UID' es demasiado pequeño."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
-msgstr ""
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "El valor especificado como 'UID' es demasiado pequeño."
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr ""
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr "PHP debe ser versión '%s'/'%s' o superior."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr ""
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Ya existe un usuario con este 'Login' en la base de datos."
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr ""
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "El campo 'Nombre' no tiene caracteres validos."
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' are not allowed."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Estación de trabajo Windows"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Eliminar extensión de impresión"
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr ""
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Añadir"
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr ""
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Añadir"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr ""
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Eliminar"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr ""
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Eliminar"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set %s"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-msgid "You can combine two different object types at maximum, only!"
-msgstr ""
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Editar"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-msgid "Object group generic"
-msgstr ""
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Editar usuario"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "Atrás"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-msgid "Member"
-msgstr ""
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back %s..."
+msgstr "Editar usuario"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Mostrar los grupos samba"
+#: include/utils/class_msgPool.inc:298
+#, fuzzy, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Esta cuenta no tiene extensiones GOsa validas"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
-#, php-format
-msgid "You're about to delete the following object entry %s"
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
 msgstr ""
+"Esta cuenta tiene características posix activadas. Puede desactivarla "
+"pulsando aquí"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
-#, php-format
-msgid "You're about to delete the following object entries %s"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, 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 unix activadas. Para desactivarlas, "
+"necesita eliminar la cuenta samba / entorno primero."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
 msgstr ""
+"Esta cuenta tiene la extensión posix desactivada. Puede activarla pulsando "
+"aquí."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Estación de trabajo"
-
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Windows RDP"
-
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "Terminal"
-
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Impresora"
-
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, 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 unix activadas. Para desactivarlas, "
+"necesita eliminar la cuenta samba / entorno primero."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
+"Esta cuenta tiene las características unix activadas. Para desactivarlas, "
+"necesita eliminar la cuenta samba / entorno primero."
+
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Parametros Unix"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr ""
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Parámetros genéricos del usuario"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
+#: include/utils/class_msgPool.inc:353
+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/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr ""
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Enero"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Febrero"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr ""
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "Abril"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr ""
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Mayo"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Mostrar servidores"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Junio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr ""
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Julio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Mostrar estaciones de trabajo"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Agosto"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr ""
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "Septiembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Mostrar terminales"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Octubre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr ""
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "Noviembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr ""
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Diciembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr ""
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Junio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Mostrar teléfonos"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "mes"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr ""
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "Eliminar opciones"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
+#: include/utils/class_msgPool.inc:374
+msgid "modify operation"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
+#: include/utils/class_msgPool.inc:375
+msgid "delete operation"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
+#: include/utils/class_msgPool.inc:375
+msgid "search operation"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr ""
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Tipo de autentificación IAX"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr ""
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "La consulta LDAP ha fallado"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr ""
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "La consulta LDAP ha fallado"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
+#: include/class_multi_plug.inc:362
+msgid "You are currently editing mutliple entries."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr ""
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "La contraseña expira en"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
+#: include/class_multi_plug.inc:391
+msgid "The user password was resetted, please set a new password value!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr ""
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Parámetro de la aplicación"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82 html/getxls.php:493
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "Seleccione para ver estaciones de trabajo basadas en Windows"
+msgid "Permission denied!"
+msgstr "Permisos"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Mostrara estaciones de trabajo basadas en windows"
+msgid "You are not allowed to create ldap dumps."
+msgstr "No tiene permisos para crear un nuevo rol."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr ""
+#: html/getldif.php:107
+#, fuzzy
+msgid "Error in ivbb parameter!"
+msgstr "Parametros del Kernel"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
+#: html/password.php:58 html/index.php:141
+#, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr ""
+#: html/password.php:78
+#, fuzzy
+msgid "Accessibility"
+msgstr "Se puede escribir en la configuración"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
+#: html/password.php:163
+msgid "Error: Password method not available!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "No tiene permisos para cambiar su contraseña."
+
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "El programa externo de cambio de contraseña informo de un problema: "
+
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
-msgid "You are not allowed to remove this entry."
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
-msgid "Number of listed object groups"
+#: html/setup.php:66 html/index.php:166
+#, fuzzy
+msgid "Smarty"
+msgstr "Sumario"
+
+#: html/index.php:57
+msgid "Session is not encrypted!"
 msgstr ""
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "Se puede escribir en la configuración"
+
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
+
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
 msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
+#: html/index.php:282
+msgid "Your ldap setup contains old schema definitions:"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
+#: html/index.php:303
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
+#: html/index.php:306
+msgid "Please specify your password!"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Tipo de autentificación IAX"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/index.php:425
 msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "Escribir archivo de configuración"
+
+#: html/main.php:172
+msgid ""
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "Se puede escribir en la configuración"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "La contraseña expira en"
+
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "No tiene permisos para cambiar su contraseña."
+
+#: html/main.php:365
+msgid "Plugin"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
 msgstr ""
 
 #: html/getxls.php:88
@@ -6393,11 +6451,6 @@ msgstr ""
 msgid "Computers of %s on %s"
 msgstr ""
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Permisos"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6415,21 +6468,6 @@ msgstr ""
 msgid "Database query failed!"
 msgstr ""
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "No tiene permisos para crear un nuevo rol."
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Parametros del Kernel"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Parámetro de la aplicación"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr ""
@@ -6443,159 +6481,52 @@ msgstr ""
 msgid "Helpdir '%s' is not accessible, can't read any helpfiles."
 msgstr ""
 
-#: html/password.php:58 html/index.php:141
-#, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr ""
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "Se puede escribir en la configuración"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr ""
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "No tiene permisos para cambiar su contraseña."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "El programa externo de cambio de contraseña informo de un problema: "
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr ""
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr ""
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "Sumario"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "Escribir archivo de configuración"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-
-#: html/main.php:217
 #, fuzzy
-msgid "Configuration warning"
-msgstr "Se puede escribir en la configuración"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
+#~ msgid "Removing a lock failed."
+#~ msgstr "Ha fallado la eliminación del antiguo archivo ppd'%s'."
 
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "La contraseña expira en"
+#~ msgid "Setting the password failed!"
+#~ msgstr "activo, la contraseña expiró"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "No tiene permisos para cambiar su contraseña."
-
-#: html/main.php:365
-msgid "Plugin"
-msgstr ""
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Por favor introduzca un número de serie válido"
 
-#: html/index.php:57
-msgid "Session is not encrypted!"
-msgstr ""
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
-
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "Se puede escribir en la configuración"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
-
-#: html/index.php:282
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr ""
-
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr ""
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "No tiene permisos para mover este objeto a '%s'."
 
-#: html/index.php:318
-#, fuzzy
-msgid "Authentication error"
-msgstr "Tipo de autentificación IAX"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "Este menú permite crear, editar o eliminar los usuarios seleccionados. Si "
+#~ "tiene un gran numero de usuarios puede usar los selectores de rangos en "
+#~ "la parte superior del listado."
 
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "Este menú le permite añadir, editar o eliminar los grupos seleccionados. "
+#~ "Cuando trabaje con un gran número de grupos puede usar el selector de "
+#~ "rango en la parte superior de la lista de grupos,."
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr ""
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr "Este menú le permite editar y eliminar las acl seleccionadas."
 
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "Este menú le permitirá crear, eliminar, y editar los departamentos "
+#~ "seleccionados. Puede preferir el selector de rango en la parte superior "
+#~ "de la lista de departamentos cuando maneje un gran número de "
+#~ "departamentos."
 
 #~ msgid "Removing of user/generic account with dn '%s' failed."
 #~ msgstr ""
index 8b96c485c3c2dfa99f7da41400ca7015ccc21afe..6a21bc6fe61c9a6a557d91d7ffc030da10cbf1b8 100644 (file)
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2007-07-19 11:57+0200\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
 "Language-Team: Français <fr@li.org>\n"
@@ -14,1076 +14,1066 @@ msgstr ""
 "X-Generator: KBabel 1.11.4\n"
 "Plural-Forms:  nplurals=2; plural=(n > 1);\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr "Vérification de l'installation"
-
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
-"Vérification de base de la version de PHP et des extensions nécéssaires."
-
-#: setup/class_setupStep_Checks.inc:64
-msgid "Checking PHP version"
-msgstr "Vérification de la version de PHP"
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Conflit détecté entre différentes sessions"
 
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP doit être à la version %s / %s ou supérieure."
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Avertissement"
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:6
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
-msgstr ""
-"GOsa nécessite des fonctionnalités qui ne sont pas disponibles (ou "
-"défectueuses) dans d'anciennes versions de PHP. Veuillez mettre à jour PHP "
-"vers un version supportée."
-
-#: setup/class_setupStep_Checks.inc:72
-msgid "Checking for LDAP support"
-msgstr "Vérification du support LDAP"
-
-#: setup/class_setupStep_Checks.inc:73
-msgid "This is the main extension used by GOsa and therefore really required."
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
-"Ce module est le module de base utilisé par GOsa et est donc indispensable."
+"Une autre instance de votre session a été détectée. Les opérations multiples "
+"sont techniquement impossible et dépendent du navigateur utilisé. L'usage de "
+"navigateurs différents en même temps est possible (ex: IE et Mozilla) est "
+"possible. Cliquer sur le bouton 'Déconnexion' fermera cette session."
 
-#: setup/class_setupStep_Checks.inc:74
-#, fuzzy
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
-"L'extension ldap (php4-ldap/php5-ldap) est nécessaire pour communiquer avec "
-"votre serveur LDAP."
+"Ignorer ce message entraînera la modification/destruction des données en "
+"cours d'édition, il est conseillé de fermer toutes les fenêtres ouvertes et "
+"de se reconnecter."
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Vérification du support gettext"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Déconnexion"
 
-#: setup/class_setupStep_Checks.inc:81
-msgid "Gettext support is required for internationalization."
-msgstr "Gettext est requis afin que GOsa soit multilingue."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe"
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
-msgstr "Veuillez vous assurer que cette extension est activée."
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
+msgstr "Ancien mot de passe"
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Vérification du support iconv"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr "Nouveau mot de passe"
 
-#: setup/class_setupStep_Checks.inc:89
-msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr ""
-"Ce module est utilisé par GOsa pour convertir les options samba munged dial, "
-"il est indispensable."
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr "Vérifier le mot de passe"
 
-#: setup/class_setupStep_Checks.inc:96
-msgid "Checking for mhash support"
-msgstr "Vérification du support mhash"
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr "Modifier le mot de passe"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr "Ce module est nécessaire pour l'utilisation de l'encryption SSHA"
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr "Cliquer ici pour changer votre mot de passe"
 
-#: setup/class_setupStep_Checks.inc:98
-#, fuzzy
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
-"L'extension mhash pour php4 / php5 n'est pas disponible. Veuillez installer "
-"php4-mhash / php5-mhash."
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
+msgstr "Fenêtre de connexion GOsa"
 
-#: setup/class_setupStep_Checks.inc:104
-msgid "Checking for IMAP support"
-msgstr "Vérification du support IMAP"
+#: ihtml/themes/default/login.tpl:27
+msgid "Login screen"
+msgstr "Fenêtre de connexion"
 
-#: setup/class_setupStep_Checks.inc:105
+#: ihtml/themes/default/login.tpl:34
 msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
+"Please use your username and your password to log into the site "
+"administration system."
 msgstr ""
-"L'extension IMAP est nécessaire pour communiquer avec un serveur IMAP. GOsa  "
-"récupère des informations de statuts, crée et supprime les comptes de "
-"messagerie des utilisateurs etc..."
+"Veuillez utiliser votre nom d'utilisateur et votre mot de passe afin de vous "
+"connecter"
 
-#: setup/class_setupStep_Checks.inc:106
-#, fuzzy
-msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
-msgstr ""
-"Cette extension est utilisée pour communiquer avec votre serveur de "
-"messagerie. Veuillez installer php4-imap/php5-imap."
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Nom d'utilisateur"
 
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Vérification du support gettext"
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Mot de passe"
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Répertoire"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
-msgstr ""
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Connexion"
 
-#: setup/class_setupStep_Checks.inc:120
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Vérification de la fonction getacl dans votre implémentation imap"
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Cliquez ici pour vous connecter"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr "Votre session GOsa à expiré !"
+
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
-"Le support de la fonction getacl est requis afin de gérer les permissions "
-"des répertoires partagés. Le module IMAP standard ne peut gérer les acls. "
-"Vous devez installer une version récente de PHP afin d'utiliser cette "
-"fonctionnalité."
+"Votre dernière interaction avec GOsa était il y a un certain temps. Pour des "
+"raisons de sécurité, la session à été fermée. Pour continuer à administrer, "
+"veuillez vous reconnecter."
 
-#: setup/class_setupStep_Checks.inc:128
-msgid "Checking for MySQL support"
-msgstr "Vérification du support MySQL"
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
+msgstr "Reconnexion"
 
-#: setup/class_setupStep_Checks.inc:129
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr ""
-"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de "
-"données."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
+msgstr "ACL assignés à l'entrée actuelle"
 
-#: setup/class_setupStep_Checks.inc:130
-#, fuzzy
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
-msgstr ""
-"Cette extension est nécessaire pour communiquer avec le serveur de base de "
-"données (GOfax, asterisk, GLPI, etc.). Veuillez installer php4-mysql/php5-"
-"mysql"
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+msgid "New ACL"
+msgstr "Nouvel ACL"
 
-#: setup/class_setupStep_Checks.inc:136
-msgid "Checking for kadm5 support"
-msgstr "Vérification du support kadm5"
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "ACL type"
+msgstr "Type ACL"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
-msgstr ""
-"Gérer les utilisateurs dans kerberos nécessite le module kadm5 "
-"téléchargeable sur les réseaux PEAR."
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "Select an acl type"
+msgstr "Sélectionnez un type d'acl"
 
-#: setup/class_setupStep_Checks.inc:138
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
-msgstr ""
-"Cette extension est nécessaire pour gérer les utilisateurs dans kerberos, "
-"elle est téléchargeable sur les réseaux PEAR."
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Appliquer"
 
-#: setup/class_setupStep_Checks.inc:144
-msgid "Checking for SNMP support"
-msgstr "Vérification du support SNMP"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
+msgstr "Utiliser les membres depuis"
 
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
-msgstr ""
-"Le protocole SNMP est nécessaire pour pouvoir obtenir des informations "
-"depuis les clients."
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr "Membres disponibles"
 
-#: setup/class_setupStep_Checks.inc:146
-#, fuzzy
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
-msgstr ""
-"Cette extension est nécessaire pour obtenir des informations depuis les "
-"clients. Veuillez installer php4-snmp/php5-snmp."
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
+msgstr "Liste les destinataires possibles pour les messages"
 
-#: setup/class_setupStep_Checks.inc:152
-msgid "Checking for CUPS support"
-msgstr "Vérification du support CUPS"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "Membres"
 
-#: setup/class_setupStep_Checks.inc:153
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Afin d'obtenir la liste des imprimantes disponibles avec le protocole IPP à "
-"la place des fichiers printcap, vous devez installer l'extension CUPS."
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
+msgstr "Lister les destinataires du message"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Vérification de l'utilitaire fping"
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+msgid "List of available ACL categories"
+msgstr "Liste des catégories d'acl disponibles"
 
-#: setup/class_setupStep_Checks.inc:163
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
-msgstr ""
-"L'utilitaire fping est utilisé dans le cas d'un environnement composé de "
-"clients légers fonctionnant en terminaux."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
+msgstr "ACL pour cet objet"
 
-#: setup/class_setupStep_Checks.inc:164
-msgid ""
-"The fping utility is only used in thin client based terminal environment."
-msgstr ""
-"L'utilitaire fping est seulement utilisé dans le cas d'un environnement "
-"composé de clients légers fonctionnant en terminaux."
+#: ihtml/themes/default/acl.tpl:69
+msgid "Available roles"
+msgstr "Type de rôles disponibles"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
-msgstr "Génération de mot de passe SAMBA"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Annuler"
 
-#: setup/class_setupStep_Checks.inc:180
-msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
-msgstr ""
-"Afin d'utiliser Samba 2/3, vous devez installer des paquets additionnels "
-"prenant en charge le cryptage des mots de passe."
+#: ihtml/themes/default/logout-close.tpl:5
+#, fuzzy
+msgid "Your GOsa session has been closed!"
+msgstr "Votre session GOsa à expiré !"
 
-#: setup/class_setupStep_Checks.inc:181
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"Afin d'utiliser Samba 2/3, vous devez installer des librairies perl "
-"additionnelles. Veuillez regarder mkntpasswd."
-
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
-msgstr "Eteint"
 
-#: setup/class_setupStep_Checks.inc:192
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 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."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 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é."
+"Vous êtes actuellement en train d éditer une entrée de la base de données. "
+"Voulez vous annuler les modifications ?"
 
-#: setup/class_setupStep_Checks.inc:193
-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'."
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Accueil"
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr "PHP utilise cette variable pour effacer des anciennes sessions."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Aide"
 
-#: setup/class_setupStep_Checks.inc:202
-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 soient réellement expirées."
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Déconnexion"
 
-#: setup/class_setupStep_Checks.inc:203
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr ""
-"Cherchez pour 'session.gc_maxlifetime' dans votre php.ini et mettez le à "
-"86400 ou plus haut."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Connecté:"
 
-#: setup/class_setupStep_Checks.inc:211
-msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
-msgstr ""
-"Pour pouvoir utiliser GOSa sans problèmes, la variable session.auto_register "
-"doit être a 'Off' dans votre php.ini."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
+msgstr "Menu Principal de GOsa"
 
-#: setup/class_setupStep_Checks.inc:212
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr ""
-"Recherchez la variable session.auto_register  et mettez la à 'Off' dans "
-"votre php.ini."
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
+msgstr "Restaurer des copie instantanés des objets"
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"GOsa a besoin au minimum de 32MB de mémoire. Moins que 32MB causera des "
-"erreurs imprévisibles, qui ne seront pas reproductibles ! Augmentez la "
-"mémoire pour les installations plus complexes."
+"Cette procédure va restaurer un copie instantanée des objets sélectionnés. "
+"Cela va remplacer les objets sélectionnés après que vous ayez pressé le "
+"bouton restaurer."
 
-#: setup/class_setupStep_Checks.inc:220
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
-"Recherchez pour 'memory_limit' dans votre php.ini et mettez le à '32M' or "
-"plus haut."
+"Souvenez vous que la configuration DNS et les base de données ne peuvent pas "
+"être restaurées. Pour certains objets il est juste nécessaire de les ouvrir "
+"et de les sauvegarder à nouveau (goFon), certaines entrée cependant devront "
+"être recrées manuellement (glpi)."
 
-#: setup/class_setupStep_Checks.inc:227
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"Cette option défini la gestion des sorties, mettez cette option à 'Off', "
-"pour améliorer la performance."
+"N'oubliez pas de vérifier les références avec les autres objets, par exemple "
+"est ce que l'imprimante sélectionnée existe encore ?"
 
-#: setup/class_setupStep_Checks.inc:228
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Objet"
 
-#: setup/class_setupStep_Checks.inc:235
-msgid "The Execution time should be at least 30 seconds."
-msgstr "Le temps d'exécution doit être au moins de 30 secondes."
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
+msgstr "Il n'y a pas de snapshots disponibles qui pourrait êtres restaurés"
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
-"Rechercher l'option 'max_execution_time' dans votre php.ini et mettez le à "
-"'30' ou plus."
+"Choisissez une copie instantanée et cliquez sur l'image du répertoire, pour "
+"restaurer la copie"
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/snapshotdialog.tpl:49
+msgid "Creating object snapshots"
+msgstr "Créer des d'objets snapshots"
+
+#: ihtml/themes/default/snapshotdialog.tpl:52
 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."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"Augmentez la sécurité de votre serveur en mettant l'option expose_php à "
-"'Off'. PHP n'enverra pas d'information a propos du serveur."
-
-#: setup/class_setupStep_Checks.inc:244
-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'."
-
-#: setup/class_setupStep_Checks.inc:250
-msgid "On"
-msgstr "Ouvert"
+"Cette procédure va créer une copie instantanée de l'objet sélectionné. Il "
+"sera stocké dans une branche spéciale de votre annuaire et pourra être "
+"restaurée plus tard."
 
-#: setup/class_setupStep_Checks.inc:251
+#: ihtml/themes/default/snapshotdialog.tpl:55
 msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
-"Améliorez la sécurité de votre serveur en mettant magic_quotes_gpc à 'on'. "
-"PHP préfixera tout les guillemets dans les chaînes avec la séquence escape."
+"Souvenez vous que les entrées dans les base de données, les configurations "
+"DNS et probablement les zones crées dans les serveurs ne seront pas stockées "
+"dans les copie instantanées."
 
-#: setup/class_setupStep_Checks.inc:252
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr ""
-"Recherchez l'option 'magic_quotes_gpc' dans votre php.ini et mettez le à "
-"'On'."
+#: ihtml/themes/default/snapshotdialog.tpl:70
+msgid "Timestamp"
+msgstr "Date"
 
-#: setup/class_setupStep_Checks.inc:259
-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'."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
+msgstr "Raison pour la génération de cette copie instantanée"
 
-#: setup/class_setupStep_Checks.inc:260
-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 hp.ini et "
-"mettez la à 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Continuer"
 
-#: setup/class_setupStep_Checks.inc:270
-msgid "Configuration writeable"
-msgstr "Le fichier de configuration peut être écrit"
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
+msgstr "Erreur"
 
-#: setup/class_setupStep_Checks.inc:271
-msgid "The configuration file can't be written"
-msgstr "Le fichier de configuration ne peut pas être écrit"
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Information"
 
-#: setup/class_setupStep_Checks.inc:272
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
 #, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
-msgstr ""
-"GOsa lit sa configuration d'un fichier situé dans (%s/%s). Le programme "
-"d'installation peut écrire la configuration directement si le fichier est "
-"permet l'écriture."
+msgid "Ok"
+msgstr "Ok"
 
-#: setup/setup_language.tpl:3
-msgid "Please select the preferred language"
-msgstr "Veuillez sélectionner la langue par défaut"
+#: ihtml/themes/default/pwd_heimdal.tpl:5
+#, fuzzy
+msgid "Heimdal options"
+msgstr "Options de messagerie"
 
-#: setup/setup_language.tpl:5
-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."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
-"Maintenant vous pouvez choisir la langue par défaut pour GOSa. Automatique "
-"utilisera la langue demandée par le navigateur. Ce paramètre peut être "
-"configuré par utilisateur."
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Veuillez indiquer votre langue préférée ici"
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
+msgstr ""
 
-#: setup/setup_frame.tpl:12
-msgid "GOsa setup wizard"
-msgstr "Installation de GOsa"
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
+msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Installation"
-msgstr " "
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
+msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Steps"
-msgstr "Etapes"
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+msgid "Hour"
+msgstr "Heure"
 
-#: setup/setup_finish.tpl:3
-msgid "Create your configuration file"
-msgstr "Création du fichier de configuration"
+#: ihtml/themes/default/pwd_heimdal.tpl:36
+#, fuzzy
+msgid "Minute"
+msgstr "Imprimante"
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "Télécharger la configuration"
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+#, fuzzy
+msgid "Day"
+msgstr "Mai"
 
-#: setup/setup_finish.tpl:18
-msgid "Status: "
-msgstr "Statut: "
+#: ihtml/themes/default/pwd_heimdal.tpl:40
+#, fuzzy
+msgid "Month"
+msgstr "mois"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
-msgid "LDAP schema check"
-msgstr "Vérification des schémas LDAP"
+#: ihtml/themes/default/pwd_heimdal.tpl:42
+#, fuzzy
+msgid "Year"
+msgstr "Recherche"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
-msgstr "Exécuter des test sur vos schéma LDAP actuels"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
+msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "Non"
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "Oui"
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+#, fuzzy
+msgid "Password end"
+msgstr "Mot de passe"
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
-msgstr "Souscrire à la liste de discutions gosa-announce"
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "Enregistrer"
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
-"Quand vous cochez cette option, GOsa essayera de se connecter a http://oss."
-"gonicus.de afin de vous inscrire à la liste de discutions gosa-announce. "
-"Vous devrez confirmer cette inscription par email."
-
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Entreprise"
-
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Nom"
+"Cela peut être utilisé par plusieurs groupes. Veuillez vérifier que vous "
+"voulez effectuer cette opération étant donné qu'il est impossible pour GOsa "
+"de récupérer vos données."
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "Adresse de messagerie"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+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."
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
-msgstr "Envoyer vos commentaire au membres du projet Gosa"
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Conflit de verrou détecté"
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
-"Quand vous cocher cette option, GOsa essayera de se connecter à http://oss."
-"gonicus.de pour pouvoir transmettre votre réponse de manière anonyme."
-
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Informations"
+"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 'Éditer malgré tout'."
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr "Est ce que la procédure d'installation vous à aidé ?"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Filtres"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
-msgstr "Si non, quels sont les problèmes que vous avez rencontrés"
+#: ihtml/themes/default/password.tpl:6
+msgid "Change your password"
+msgstr "Modifier votre mot de passe"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr "Est ce la première fois que vous utilisez GOsa ?"
+#: ihtml/themes/default/password.tpl:34
+msgid "Success"
+msgstr "Réussi"
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr "Je l'utilise depuis "
-
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
-msgstr "Veuillez sélectionner l'année depuis laquelle vous utilisez GOsa"
-
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
-msgstr "Quel système d'exploitation / distribution utilisez vous ?"
-
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
-msgstr "Quel serveur web utilisez vous ?"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
+msgstr "Votre mot de passe à été changé."
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
-msgstr "Quelle version de php utilisez vous ?"
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "Password change"
+msgstr "Changement de mot de passe"
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: ihtml/themes/default/password.tpl:52
+msgid ""
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
+"Cette fenêtre vous permet de changer votre mot de passe de manière simple. "
+"Entrez le mot de passe actuel et le nouveau mot de passe (deux fois) dans "
+"les champs ci-dessous et appuyez sur le bouton 'Changer'."
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
-msgstr "Quel type de serveur(s) ldap utilisez vous ?"
-
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr "Combien d'objet sont dans votre annuaire LDAP ?"
-
-#: setup/setup_feedback.tpl:123
-msgid "Features"
-msgstr "Fonctionalités"
-
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr "Quel fonctionnalités de GOsa utilisez vous ?"
-
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
-"Quelle fonctionnalités voulez vous voir dans les prochaines versions de "
-"GOsa ?"
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Mot de passe actuel"
 
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr "Envoyer vos réponses"
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Nouveau mot de passe"
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-msgid "GOsa settings 3/3"
-msgstr "Paramètres de GOsa 3/3"
+#: ihtml/themes/default/password.tpl:85
+msgid "again"
+msgstr "encore"
 
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr "Customiser certains paramètres essentiels de GOsa"
+#: ihtml/themes/default/password.tpl:86
+msgid "New password repeated"
+msgstr "Nouveau mot de passe"
 
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
-msgstr "La durée de la session doit être une valeur numérique."
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+#, fuzzy
+msgid "Password strength"
+msgstr "Format de stockage des mots de passe"
 
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "Le temps maximumpour une requête ldap doit être une valeur numérique."
+#: ihtml/themes/default/password.tpl:100
+msgid "Change"
+msgstr "Changer"
 
-#: setup/class_setupStep_Feedback.inc:91
-msgid "UNIX accounts/groups"
-msgstr "Compte / Groupes UNIX"
+#: ihtml/themes/default/password.tpl:101
+msgid "Click here to change your password"
+msgstr "Cliquez ici pour changer votre mot de passe"
 
-#: setup/class_setupStep_Feedback.inc:93
-msgid "Samba management"
-msgstr "Gestion SAMBA"
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
+msgstr "Assistant pour le copier &amp; coller"
 
-#: setup/class_setupStep_Feedback.inc:95
-msgid "Mailsystem management"
-msgstr "Gestion de la messagerie"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
+msgstr ""
+"Certaines valeurs doivent être unique dans tout l'arbre et certaines "
+"combinations n'ont pas de sens. Gosa vous montre les valeurs "
+"correspondantes. Veuillez maintenir les valeurs pour respecter les policies."
 
-#: setup/class_setupStep_Feedback.inc:97
-msgid "FAX system administration"
-msgstr "Gestion des FAX"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
+"Veuillez vous souvenir que certaines propriétés comme les snapshots ne "
+"seront pas copiés!"
 
-#: setup/class_setupStep_Feedback.inc:99
-msgid "Asterisk administration"
-msgstr "Gestion d'asterisk"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
+msgstr ""
+"ou si vous couper ou copiez un entrée avec GOsa et que vous effacer la "
+"source, vous pouvez rencontrer des erreurs en tentant de le coller à "
+"nouveau !"
 
-#: setup/class_setupStep_Feedback.inc:101
-msgid "System inventory"
-msgstr "Gestion de l'inventaire"
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+msgid "Cancel all"
+msgstr "Tout annuler"
 
-#: setup/class_setupStep_Feedback.inc:103
-msgid "System-/Configmanagement"
-msgstr "Gestion Système / Configuration"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
+msgstr "Opération réalisée"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Carnet d'adresses"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Terminé"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-msgid "Notification and feedback"
-msgstr "Notification et retour d'information"
+#: ihtml/themes/default/sizelimit.tpl:3
+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."
 
-#: setup/class_setupStep_Feedback.inc:112
-msgid "Get notifications or send feedback"
-msgstr "Recevoir des notifications et des retour d'information"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
+msgstr "Veuillez choisir la façon de réagir pour cette session"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-#, fuzzy
-msgid "Setup error"
-msgstr "Erreur PHP"
+#: ihtml/themes/default/sizelimit.tpl:9
+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/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
+#: ihtml/themes/default/sizelimit.tpl:10
+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 qui sont récupérées grâce "
+"au paramètre sizelimit défini et laissez moi utiliser les filtres pour "
+"restreindre les données a visualiser"
 
-#: setup/class_setupStep_Feedback.inc:140
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
 #, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+msgid "Set"
+msgstr "Activer"
 
-#: setup/class_setupStep_Feedback.inc:147
-#, fuzzy
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
-"Erreur lors de l'envoi de votre retour d'information. Le service est "
-"temporairement hors service"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
+msgstr "Aide en ligne de GOsa"
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr "L'envoi du retour d'information à réussi"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
+msgstr "Index"
 
-#: setup/class_setupStep_Feedback.inc:179
-msgid "Please specify a valid email address."
-msgstr "Veuillez indiquer une adresse de messagerie valide."
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Recherche"
 
-#: setup/class_setupStep_Feedback.inc:183
-#, fuzzy
+#: plugins/generic/welcome/welcome.tpl:4
 msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
-"Vous devez au moins avoir activé une option, pour souscrire ou envoyer votre "
-"retour d'information."
+"Vous êtes sur la fenêtre principale de GOsa. Vous pouvez sélectionner une "
+"rubrique soit en utilisant le menu de gauche soit en cliquant sur une des "
+"icônes. Tout les changements sont directement appliqués sur les serveurs "
+"LDAP de votre société."
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Configuration Samba"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
+msgstr ""
+"Cliquez sur déconnexion, en haut à gauche, pour vous déconnecter, sur "
+"Accueil pour revenir à la page principale."
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
-msgstr "Générateur de hash samba"
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "L'équipe de GOsa"
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-msgid "Samba SID"
-msgstr "SID Samba"
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr "Bienvenue %s !"
 
-#: setup/setup_config2.tpl:31
-msgid "RID base"
-msgstr "Base du RID"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Informations"
 
-#: setup/setup_config2.tpl:46
-msgid "Workstation container"
-msgstr "Branche contenant les stations de travail"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "UNIX"
 
-#: setup/setup_config2.tpl:61
-msgid "Samba SID mapping"
-msgstr "Correspondance des SID samba"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Messagerie"
 
-#: setup/setup_config2.tpl:71
-msgid "Timezone"
-msgstr "Fuseau Horaire"
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/setup_config2.tpl:74
-#, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "Veuillez indiquer votre fuseau horaire préféré ici"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "FAX"
 
-#: setup/setup_config2.tpl:96
-msgid "Additional GOsa settings"
-msgstr "Paramètres supplémentaire de GOsa"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
-msgstr "Activer le Copier / Coller"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Extension d'inventaire"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Groupes"
 
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Extension d'inventaire"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Département"
 
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "Gestion des type mime"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Téléphone"
 
-#: setup/setup_config2.tpl:148
-msgid "Enable FAI release management"
-msgstr "Activer la gestion des versions FAI"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Applications"
 
-#: setup/setup_config2.tpl:160
-msgid "Enable user netatalk plugin"
-msgstr "Activer la gestion des comptes Netatalk"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Serveur"
 
-#: setup/setup_config2.tpl:171
-msgid "Government mode"
-msgstr "Mode Gouvernemental"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "Clients légers"
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "Paramètres de messagerie"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "Stations de travail"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "Méthode de messagerie"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Groupes d'objets"
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "désactivé"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Imprimante"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Nom de l'objet"
 
-#: setup/setup_config2.tpl:214
-msgid "Vacation templates"
-msgstr "Modèles de messages d'absence "
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Description"
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr "Utiliser Cyrus en mode UNIX"
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "Contenu"
 
-#: setup/setup_config2.tpl:240
-msgid "Snapshots / Undo"
-msgstr "Copie instantanée / Undo"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Cette objet n'a pas de relation avec d'autres objets."
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-msgid "Enable snapshots"
-msgstr "Activer la copie instantanée"
+#: plugins/personal/password/class_password.inc:27
+#, fuzzy
+msgid "Change user passwords"
+msgstr "Modifier votre mot de passe"
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-msgid "Snapshot base"
-msgstr "Base pour les snapshots"
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+msgid "User password"
+msgstr "Mot de passe"
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Serveur"
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "Vous devez spécifier votre mode de passe actuel pour continuer."
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Utilisateur"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr ""
+"Le mot de passe entrée dans le champ 'Nouveau mot de passe' et celui dans le "
+"champ 'Répéter le nouveau mot de passe' ne concordent pas."
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Mot de passe"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr ""
+"Le mot de passe que vous avez entré comme 'Nouveau mot de passe' est vide."
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-msgid "LDAP inspection"
-msgstr "Vérification de l'annuaire LDAP"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr "Le nouveau et l'ancien mot de passe sont trop similaires."
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr "Analyse de votre annuaire LDAP pour la compatibilité avec GOsa"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "Le nouveau mot de passe ne comporte pas suffisamment de caractères."
 
-#: setup/class_setupStep_Migrate.inc:113
-msgid "Checking for root object"
-msgstr "Recherche de l'objet racine"
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr ""
+"Le programme externe pour changer votre mot de passe à renvoyé une erreur: "
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr "Vérification des permissions sur l'annuaire LDAP"
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr ""
+"Le mot de passe entré comme mot de passe actuel ne correspond pas à votre "
+"mot de passe."
 
-#: setup/class_setupStep_Migrate.inc:125
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Vérification des départements invisibles"
-
-#: setup/class_setupStep_Migrate.inc:131
-msgid "Checking for invisible users"
-msgstr "Vérification des utilisateurs invisibles"
+msgid "You have no permission to change your password."
+msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
 
-#: setup/class_setupStep_Migrate.inc:137
-msgid "Checking for super administrator"
-msgstr "Vérification du superadministrateur"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Mon Compte"
 
-#: setup/class_setupStep_Migrate.inc:143
-msgid "Checking for users outside the people tree"
-msgstr "Vérification d'utilisateurs en dehors de la branche people"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
+msgstr "Le changement du mot de passe n'est pas autorisé"
 
-#: setup/class_setupStep_Migrate.inc:149
-msgid "Checking for groups outside the groups tree"
-msgstr "Vérification des groupes en dehors de la branche groups"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr "Vous n'êtes pas autorisé à modifier votre mot de passe en ce moment"
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
-msgstr "Vérification de stations windows en dehors de la branche winstation"
+#: plugins/personal/password/changed.tpl:3
+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/class_setupStep_Migrate.inc:161
-msgid "Checking for duplicate uid numbers"
-msgstr "Vérification pour les uid en double"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Retour"
 
-#: setup/class_setupStep_Migrate.inc:167
-msgid "Checking for duplicate gid numbers"
-msgstr "Vérification pour les gid en double"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
+msgstr ""
+"Pour changer votre mot de passe, veuillez utiliser les champs ci-dessous. "
+"Les changements prennent effet immédiatement. Veuillez mémoriser le nouveau "
+"mot de passe car sans lui vous ne serez pas capable de vous identifier."
 
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-msgid "LDAP query failed"
-msgstr "La requête LDAP à échoué"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
+msgstr ""
+"Changer le mot de passe affecte votre identification sur la messagerie, le "
+"proxy, samba, et les services unix."
 
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr "L'objet racine est probablement manquant."
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Confirmation du nouveau mot de passe"
 
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Avertissement"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Attribuer le mot de passe"
 
-#: setup/class_setupStep_Migrate.inc:213
-#, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'uidNumber'."
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Effacer les données dans les champs"
 
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
+msgid "Password settings"
+msgstr "Préférences pour les mots de passe"
 
-#: setup/class_setupStep_Migrate.inc:262
-#, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'gidNumber'."
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Certificats"
 
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Echec"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Certificat standard"
 
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-"J'ai trouvé %s winstations en dehors du département winstation prédéfini '%"
-"s'."
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Supprimer"
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-msgid "Migrate"
-msgstr "Migrer"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "Certificat S/MIME"
 
-#: setup/class_setupStep_Migrate.inc:387
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "J'ai trouvé %s groupes en dehors de la branche configurée '%s'."
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "Certificat PKCS12"
 
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-msgid "Move"
-msgstr "Bouger"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Numéro de série du certificat"
 
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr "J'ai trouvé %s utilsateur(s) en dehors de la branche configurée '%s'."
+#: plugins/personal/generic/class_user.inc:38
+#, fuzzy
+msgid "Edit organizational user settings"
+msgstr "Paramètres supplémentaire de GOsa"
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-"L'utilisateur spécifié '%s' n'a pas l'accès complet à votre annuaire ldap."
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "féminin"
 
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr "J'ai trouvé %s utilisateur(s) qui ne seront pas visibles dans GOsa."
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "masculin"
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:496
 #, fuzzy
-msgid "Migration error"
-msgstr "Migrer"
+msgid "Serial number"
+msgstr "Numéro de page"
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Aller au département de base"
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
+msgstr ""
+"(Certains types de certificats ne sont pas supportés et peuvent être "
+"affichés comme 'non valides'.)"
 
-#: setup/class_setupStep_Migrate.inc:727
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr "J'ai trouvé %s département(s) qui ne seront pas visible dans GOsa."
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr "Il n'y a pas d'administrateur GOsa dans votre annuaire LDAP."
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Créer"
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "Le certificat est valide de %s à %s et est actuellement %s."
 
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "valide"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "Le mot de passe expirera le"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "invalide"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr ""
-"Le mot de passe entré dans le champ nouveau et celui dans le champ "
-"vérification ne concordent pas!"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "Pas de certificat installé"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Input error"
-msgstr "Erreur PHP"
+msgid "Password method"
+msgstr "Format de stockage des mots de passe"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586
 #, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Le nom d'utilisateur est incorrect !"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr "Erreur"
-
-#: setup/class_setupStep_Migrate.inc:1019
-#, fuzzy, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
-"Mettre l'option (FAIstate) pour l'objet '%s' à échoué, la valeur était '%s'."
+msgid "The selected password method is no longer available."
+msgstr "L'application sélectionnée n'est plus disponible."
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1093,5453 +1083,5531 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "Erreur LDAP :"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "Impossible de bouger les utilisateurs vers le département spécifié."
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Identifiant"
 
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr "Les stations windows seront bougées depuis"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Nom"
 
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-msgid "to"
-msgstr "vers"
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Prénom"
 
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr "Mise à jour des références suivantes aussi"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Page d'accueil"
 
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr "Les groupes seront bougés depuis"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr "Les utilisateurs seront bougés depuis"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "GSM"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr "Les références suivantes seront mises à jour"
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Bip"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
-"L'objet LDAP racine est manquant. Il est indispensable pour utiliser votre "
-"annuaire LDAP."
+#: plugins/personal/generic/class_user.inc:1296
+#, fuzzy
+msgid "Cannot open certificate!"
+msgstr "Impossible d'ouvrir le certificat demandé !"
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-msgid "Try to create root object"
-msgstr "Essai de création de l'objet racine"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Unité"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr "L'objet racine n'a pas pu être crée, vous devrez essayer vous même."
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Identifiant du bâtiment"
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Bouger '%s' vers '%s'"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Travail"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr "J'ai lu la licence et je l'accepte"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Dernière distribution"
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-msgid "License"
-msgstr "licence"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Lieu de résidence"
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr "Termes et Conditions d'utilisation"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Description de l'unité"
 
-#: setup/class_setupStep_Welcome.inc:38
-msgid "Welcome"
-msgstr "Bienvenue"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Zone de sujet"
 
-#: setup/class_setupStep_Welcome.inc:39
-msgid "The welcome message"
-msgstr "Le message d'accueil"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Fonction"
 
-#: setup/class_setupStep_Welcome.inc:40
-msgid "Welcome to GOsa setup wizard"
-msgstr "Bienvenue dans l'installation de GOsa"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Visible par tous"
 
-#: setup/setup_config3.tpl:2
-msgid "GOsa core settings"
-msgstr "Paramètres essentiels de GOsa"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Rue"
 
-#: setup/setup_config3.tpl:6
-msgid "Disable primary group filter"
-msgstr "Désactiver le filtre sur les groupes primaires"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Rôle"
 
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Afficher les macros correspondantes"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Code postal"
 
-#: setup/setup_config3.tpl:30
-msgid "Honour administrative units"
-msgstr "Honorer les entités administratives"
+#: plugins/personal/generic/class_user.inc:1443
+msgid "Generic user settings"
+msgstr "Paramètres par défaut des utilisateurs"
 
-#: setup/setup_config3.tpl:42
-msgid "Smarty compile directory"
-msgstr "Répertoire de compilation de smarty"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Base"
 
-#: setup/setup_config3.tpl:60
-msgid "Path for PPD storage"
-msgstr "Répertoire pour le stockage des PPD"
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Nom de famille"
 
-#: setup/setup_config3.tpl:77
-msgid "Path for kiosk profile storage"
-msgstr "Répertoire pour le stockage des profiles kiosk"
+#: plugins/personal/generic/class_user.inc:1456
+msgid "User identification"
+msgstr "Information Utilisateur"
 
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Déploiement de système en masse"
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Titre Personnel"
 
-#: setup/setup_config3.tpl:115
-msgid "Mail queue script"
-msgstr "Script pour la gestion de la queue du serveur de messagerie"
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Titre Universitaire"
 
-#: setup/setup_config3.tpl:134
-msgid "Notification script"
-msgstr "Script de notification"
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "Adresse postale personnelle"
 
-#: setup/setup_config3.tpl:153
-#, fuzzy
-msgid "Enable edit locking"
-msgstr "Activer la vérification antivirus de la messagerie"
+#: plugins/personal/generic/class_user.inc:1460
+msgid "Home phone number"
+msgstr "Numéro de téléphone privé"
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr "connexion et session"
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Entreprise"
 
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "Propriétés du téléphone"
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Date de naissance"
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr "Force register_globals à être désactivé"
+#: plugins/personal/generic/class_user.inc:1465
+msgid "Gender"
+msgstr "Sexe"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr "Force les connexions cryptées"
+#: plugins/personal/generic/class_user.inc:1466
+msgid "Preferred language"
+msgstr "Langue préférée"
 
-#: setup/setup_config3.tpl:210
-msgid "Warn if session is not encrypted"
-msgstr "Avertir si la session ne sera pas cryptée"
+#: plugins/personal/generic/class_user.inc:1467
+msgid "Department number"
+msgstr "Numéro du département"
 
-#: setup/setup_config3.tpl:222
-#, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "Paramètres par défaut des utilisateurs"
+#: plugins/personal/generic/class_user.inc:1468
+msgid "Employee number"
+msgstr "Numéro de l'employé"
 
-#: setup/setup_config3.tpl:234
-msgid "Session lifetime"
-msgstr "Durée de vie de la session"
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Type de l'employé"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr "Deboguage"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Lieu"
 
-#: setup/setup_config3.tpl:247
-msgid "Show PHP errors"
-msgstr "Afficher les erreur PHP"
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Département"
 
-#: setup/setup_config3.tpl:259
-msgid "Maximum LDAP query time"
-msgstr "Durée maximale d'une requête LDAP"
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "Image de l'utilisateur"
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr "Inscrit les statistique de l'annuaire LDAP dans les journaux systèmes"
+#: plugins/personal/generic/class_user.inc:1473
+msgid "Room number"
+msgstr "Numéro du bureau"
 
-#: setup/setup_config3.tpl:289
-msgid "Debug level"
-msgstr "Niveau de débogage"
+#: plugins/personal/generic/class_user.inc:1474
+msgid "Telefon number"
+msgstr "Numéro de téléphone"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-msgid "Disabled"
-msgstr "Désactivé"
+#: plugins/personal/generic/class_user.inc:1475
+msgid "Mobile number"
+msgstr "Numéro de GSM"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-msgid "Enabled"
-msgstr "Activé"
+#: plugins/personal/generic/class_user.inc:1476
+msgid "Pager number"
+msgstr "Numéro de page"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr "Veuillez choisir l'utilisateur LDAP qui sera utilise par GOSa"
+#: plugins/personal/generic/class_user.inc:1477
+msgid "User certificates"
+msgstr "Certificats utilisateurs"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Recherche"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "Adresse postale"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Appliquer"
+#: plugins/personal/generic/class_user.inc:1480
+msgid "Fax number"
+msgstr "Numéro de fax"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Annuler"
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Informations personnelles"
 
-#: setup/setup_ldap.tpl:25
-msgid "LDAP connection"
-msgstr "Connexion LDAP"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Image personnelle"
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Nom de l'emplacement"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "Langue préférée"
 
-#: setup/setup_ldap.tpl:37
-msgid "Connection URL"
-msgstr "URL de connexion"
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Sélectionnez la branche où sera enregistrée l'utilisateur"
 
-#: setup/setup_ldap.tpl:45
-msgid "TLS connection"
-msgstr "Connexion TLS"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
+msgstr "Sélectionnez une base"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Base"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Adresse"
 
-#: setup/setup_ldap.tpl:65
-msgid "Reload"
-msgstr "Recharger"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Numéro de téléphone privé"
 
-#: setup/setup_ldap.tpl:69
-msgid "Authentication"
-msgstr "Authentification"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Format de stockage des mots de passe"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "DN de l'administrateur"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Editer des certificats"
 
-#: setup/setup_ldap.tpl:78
-msgid "Select user"
-msgstr "Sélectionner un utilisateur"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Informations sur l'entreprise"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
-"Ajouter automatiquement la base de l'annuaire LDAP au DN de l'administrateur"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "No. du département."
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Mot de passe administrateur"
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "No. de l'employé."
 
-#: setup/setup_ldap.tpl:101
-msgid "Schema based settings"
-msgstr "Paramètres basé sur les schéma"
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "No. de bureau."
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr "Utilisez des groupes rfc2307bis"
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
+msgstr "Préférences utilisateur"
 
-#: setup/setup_ldap.tpl:117
-msgid "Current status"
-msgstr "Statut actuel"
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
+msgstr "Nom de famille"
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "Information"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
+msgstr "Prénom"
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
-"Pendant l'inspection LDAP, nous allons regarder pour les problèmes "
-"classiques qui peuvent arriver lorsque l'on migre vers une administration "
-"basée sur GOsa. Vous pouvez fixer les problèmes si dessous afin de procurer "
-"une administration facilitée."
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
+msgstr "Effacer le mot de passe"
 
-#: setup/setup_migrate.tpl:33
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
+msgstr "Attribuer un nouveau mot de passe"
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
-"Bouger les stations windows dans un département valide pour les stations "
-"windows."
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Suppression de l'image personnelle"
 
-#: setup/setup_migrate.tpl:39
+#: plugins/personal/generic/password.tpl:2
 msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
-"Ce dialogue vous permet de bouger les stations windows affichées dans un "
-"département valide"
+"Vous avez sélectionnez une autre méthode de stockage des mots de passe. Pour "
+"cette raison vous devez ressaisir votre mot de passe afin que GOsa puisse le "
+"réencoder et l'enregistrer dans l'annuaire LDAP."
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Changer la photo"
+
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
-"Soyez prudent avec cet outil, il peut y avoir des références pointant vers "
-"ces machines qui ne seront pas migrées."
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-msgid "Select all"
-msgstr "Sélectionner tout"
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
+msgstr "Nom du modèle"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr "Bouger les machines windows dans le département GOsa suivant"
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Sexe"
 
-#: setup/setup_migrate.tpl:72
-msgid "Move selected workstations"
-msgstr "Bouger les stations de travail sélectionnées"
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Configurer"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr "Que ce qui sera exécuté ici"
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Veuillez utiliser l'onglet téléphone"
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr "Fermer"
+#: plugins/personal/generic/main.inc:104
+#, fuzzy
+msgid "You have no permission to set your password!"
+msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr "Bouger les groupes dans le groupe configuré"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Information générales sur l'utilisateur"
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-"Ce dialogue permet de bouger un couple de groupes dans le groupe configuré. "
-"Exécuter cela peut améliorer votre service LDAP."
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Sélectionner les groupes à ajouter"
 
-#: setup/setup_migrate.tpl:91
-#, fuzzy
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa 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 utilisateurs. Le programme d'installation de GOsa ne peut "
-"pas migrer ces références, vous préférerez peut être annuler la migration "
-"dans ce cas."
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Afficher les groupes du département"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr "Bouger les groupes sélectionnés dans le groupe de base cet annuaire"
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Sélectionner le département où sera effectuée la recherche"
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-msgid "Hide changes"
-msgstr "Camoufler les changements"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Afficher les groupes correspondants"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-msgid "Show changes"
-msgstr "Montrer les changements"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Expression régulière correspondant à des noms de groupe"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr "Bouger les utilisateurs dans la branche utilisateur configurée"
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Afficher les groupes contenant des utilisateurs"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
-"Ce dialogue permet de bouger un ensemble d'utilisateurs dans la branche "
-"utilisateur configurée. Exécuter cette opération peut améliorer votre "
-"service LDAP."
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Utilisateur dont on montre les groupes"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Search in subtrees"
+msgstr "Chercher dans les sous arbre"
+
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
-"Soyez prudent avec cette opération ! Il peut exister des références qui "
-"pointent vers ces utilisateurs. Le programme d'installation de GOsa ne peut "
-"pas migrer ces références, vous préférerez peut être annuler la migration "
-"dans ce cas."
 
-#: setup/setup_migrate.tpl:148
-msgid "Move selected users into this people tree"
-msgstr "Bouger les utilisateurs sélectionnés dans la branche utilisateurs."
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "expire"
 
-#: setup/setup_migrate.tpl:198
-msgid "Next"
-msgstr "Suivant"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "temps de grâce activé"
 
-#: setup/setup_migrate.tpl:199
-msgid "Abort"
-msgstr "Annuler"
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "actif, impossible de changer le mot de passe"
 
-#: setup/setup_migrate.tpl:201
-msgid "Create a new GOsa administrator account"
-msgstr "Créer un nouveau compte administrateur pour GOsa"
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "actif, mot de passe expiré"
 
-#: setup/setup_migrate.tpl:204
-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/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "actif"
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "ID de l'utilisateur"
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "non configuré"
 
-#: setup/setup_migrate.tpl:233
-msgid "Password (again)"
-msgstr "Mot de passe (de nouveau)"
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automatique"
 
-#: setup/setup_migrate.tpl:258
-#, fuzzy
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
-"Les département listés sont actuellement invisibles dans l'interface "
-"utilisateur de GOsa. Si vous voulez changer cela pour un certain nombre "
-"d'entrée, sélectionnez les et utilisez le bouton migration ci dessous."
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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 "
-"fichier LDIF."
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Environnement"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-msgid "Current"
-msgstr "Actuel"
-
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-msgid "After migration"
-msgstr "Après migration"
-
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
 msgstr ""
-"Les utilisateurs listés sont actuellement invisibles dans l'interface "
-"utilisateur de GOsa. Si vous voulez changer ceci pour un ensemble "
-"d'utilisateurs, veuillez les sélectionner et utiliser le bouton 'migration' "
-"ci dessous."
-
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr "Extension PHP et vérification de ceux ci"
-
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr "GOsa ne fonctionnera pas si vous ne corriger pas cela."
+"Les mots de passe ne peuvent être changé qu'après %s jours à compter de la "
+"dernière modification de celui-ci"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr "GOsa fonctionnera même si vous ne corrigez pas cela."
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "Le mot de passe doit être changé après %s jours"
 
-#: setup/setup_checks.tpl:67
-msgid "PHP setup configuration"
-msgstr "Configuration de PHP"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr ""
+"Désactiver le compte après %s jours d'inactivité après l'expiration du mot "
+"de passe"
 
-#: setup/setup_checks.tpl:67
-msgid "show information"
-msgstr "Montrer les informations"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Avertir l'utilisateur %s jours avant l'expiration de son mot de passe"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Terminé"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "désactivé"
 
-#: setup/class_setupStep_Finish.inc:38
-msgid "Write configuration file"
-msgstr "Ecrire le fichier de configuration"
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "accès complet"
 
-#: setup/class_setupStep_Finish.inc:39
-msgid "Finish - write the configuration file"
-msgstr "Fini - écrire le fichier de configuration"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "permettre l'accès a ces hôtes"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
-"Votre fichier de configuration est lisible par tout le monde. Veuillez "
-"modifier les permissions !"
 
-#: setup/class_setupStep_Finish.inc:102
-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/personal/posix/class_posixAccount.inc:914
+#, fuzzy
+msgid "Uid number"
+msgstr "Numéro de fax"
 
-#: setup/class_setupStep_Finish.inc:111
-#, php-format
+#: plugins/personal/posix/class_posixAccount.inc:914
 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. You may want to execute these commands to achieve this "
-"requirement:"
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"Après avoir placé le fichier dans le répertoire %s, assurez vous que seul le "
-"serveur web puisse lire %s. Vous pouvez exécuter les commandes suivantes "
-"pour réaliser cette opération:"
 
-#: setup/class_setupStep_Ldap.inc:53
-msgid "LDAP setup"
-msgstr "Configuration LDAP"
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Groupe d'utilisateurs"
 
-#: setup/class_setupStep_Ldap.inc:54
-msgid "LDAP connection setup"
-msgstr "Configuration de la connexion LDAP"
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Répertoire Home"
 
-#: setup/class_setupStep_Ldap.inc:55
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
-msgstr ""
-"Cette boite de dialogue permet d'indiquer la configuration de base LDAP pour "
-"GOsa."
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/class_setupStep_Ldap.inc:105
-#, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "La connexion anonyme à échoué sur le serveur '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: setup/class_setupStep_Ldap.inc:107
-#, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "la connexion comme l'utilisateur '%s' à échoué sur le serveur '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
+msgid "shadowMin"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "La connexion anonyme sur le serveur '%s' à réussi."
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+msgid "shadowMax"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:113
-msgid "Please specify user and password."
-msgstr "Veuillez introduire un utilisateur et un mot de passe."
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
+#, fuzzy
+msgid "shadowWarning"
+msgstr "Avertissement"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "La connexion comme l'utilisateur '%s' sur le serveur '%s' à réussi."
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
+#, fuzzy
+msgid "shadowInactive"
+msgstr "actif"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
-msgid "Language setup"
-msgstr "Configuration de la langue"
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
+msgstr ""
 
-#: setup/class_setupStep_Language.inc:42
-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/personal/posix/class_posixAccount.inc:1496
+msgid "POSIX account"
+msgstr "Compte Posix"
 
-#: setup/class_setupStep_Language.inc:47
-msgid "Automatic"
-msgstr "Automatique"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: setup/class_setup.inc:196
-msgid "Completed"
-msgstr "Terminé"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "ID de l'utilisateur"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Retour"
+#: plugins/personal/posix/class_posixAccount.inc:1509
+msgid "Group ID"
+msgstr "ID du Groupe"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Continuer"
+#: plugins/personal/posix/class_posixAccount.inc:1511
+msgid "Force password change on login"
+msgstr "Forcer le changement de mot de passe au la connexion"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr "Thèmes et apparences"
+#: plugins/personal/posix/class_posixAccount.inc:1512
+msgid "Shadow min"
+msgstr ""
 
-#: setup/setup_config1.tpl:6
-msgid "Theme"
-msgstr "Thème"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
+msgstr ""
 
-#: setup/setup_config1.tpl:15
-#, fuzzy
-msgid "Apache"
-msgstr "Cache"
+#: plugins/personal/posix/class_posixAccount.inc:1514
+msgid "Shadow warning"
+msgstr ""
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
+#: plugins/personal/posix/class_posixAccount.inc:1515
+msgid "Shadow inactive"
 msgstr ""
 
-#: setup/setup_config1.tpl:27
-msgid "People and group storage"
+#: plugins/personal/posix/class_posixAccount.inc:1516
+msgid "Shadow expire"
 msgstr ""
-"Branches de l'arbre ldap ou sont stockes les utilisateurs et les groupes"
 
-#: setup/setup_config1.tpl:30
-msgid "People DN attribute"
-msgstr "Type d'attribut pour le DN des utilisateurs"
+#: plugins/personal/posix/class_posixAccount.inc:1517
+msgid "System trust model"
+msgstr "Système de Confiance"
 
-#: setup/setup_config1.tpl:41
-msgid "People storage subtree"
-msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs"
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
+msgstr "Paramètres Posix"
 
-#: setup/setup_config1.tpl:50
-msgid "Group storage subtree"
-msgstr "Branches de l'arbre ldap ou sont stockes les groupes"
-
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr "Inclure le personal title dans le DN de l'utilisateur"
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Forcer l'UID/GID"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr "Règles de de nommage souples"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Appartenance au groupe"
 
-#: setup/setup_config1.tpl:81
-msgid "Automatic uids"
-msgstr "Uid automatiques"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(Attention: NFS ne supporte pas plus de 16 groupes !)"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr "GID / UID id min"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Groupe principal"
 
-#: setup/setup_config1.tpl:113
-msgid "Number base for people/groups"
-msgstr "Nombre de départ pour les utilisateurs/groupes"
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Statut"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr "Connexions pour le nombre de base"
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#, fuzzy
+msgid "In all groups"
+msgstr "Groupe de messagerie"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-msgid "Password settings"
-msgstr "Préférences pour les mots de passe"
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#, fuzzy
+msgid "Not in all groups"
+msgstr "Afficher les groupes ayant la messagerie activé"
 
-#: setup/setup_config1.tpl:140
-msgid "Password encryption algorithm"
-msgstr "Algorithme de cryptage pour les mots de passe"
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Compte"
 
-#: setup/setup_config1.tpl:151
-msgid "Password restrictions"
-msgstr "Restrictions pour les mot de passe"
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "Système de Confiance"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr "Taille minimum des mots de passe"
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
+msgstr "Mode de confiance"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
-msgstr "Nombre de caractères différents de l'ancien mot de passe"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr ""
+"L'utilisateur doit changer son mot de passe lors de sa première connexion"
 
-#: setup/setup_config1.tpl:182
-msgid "Password change hook"
-msgstr "Connexions pour le changement de mot de passe"
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "Le mot de passe expirera le"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr "Utiliser SASL pour kerberos"
+#: plugins/personal/posix/main.inc:131
+#, fuzzy
+msgid "POSIX settings"
+msgstr "Paramètres Posix"
 
-#: setup/setup_config1.tpl:209
-msgid "Use account expiration"
-msgstr "Utiliser l'expiration du compte"
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Sélectionner les hôtes à ajouter"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa supporte différents types de cryptage pour vos mots de passe. "
-"Normalement ceci est ajustable avec des modèles utilisateurs, mais vous "
-"pouvez spécifier ici une méthode qui sera utilisée par défaut."
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Afficher les systèmes du département"
 
-#: setup/setup_config1.tpl:222
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa agit toujours comme un administrateur et gère les droits (ACLs) en "
-"interne. C'est un procédé utilisé en attendant que les ACI de OpenLDAP "
-"soient finalisées. Pour ces raisons il est nécessaire d'indiquer le DN de "
-"l'administrateur et son mot de passe."
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Afficher les systèmes correspondant"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"Des paramètres basiques du serveur LDAP sont modifiables et affectent "
-"l'endroit où GOsa va enregistrer les utilisateurs et les groupes, incluant "
-"la façon dont vont être créés les comptes. Vérifiez les valeurs suivantes "
-"afin quelles correspondent à vos besoins."
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Expression régulière pour sélectionner les adresses correspondantes"
 
-#: setup/setup_config1.tpl:224
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
-"GOsa à un support modulaire des méthodes de messagerie. Ces méthodes "
-"fournissent des interfaces vers les boîtes à messages des utilisateurs ainsi "
-"que la gestion de leurs quotas. Vous pouvez choisir l'extension dummy pour "
-"que GOsa ne touche a rien."
 
-#: setup/setup_welcome.tpl:4
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
 msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
-"Il semble que c'est votre première installation de GOsa - nous n'avons pas "
-"trouvé de configuration. Ce programme d'aide à l'installation vous aidera à "
-"configurer GOsa."
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr "Qu'est ce que le programme d'aide à l'installation fera pour vous ?"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Liste des utilisateurs"
 
-#: setup/setup_welcome.tpl:11
-msgid "Create a basic, single site configuration"
-msgstr "Créer une simple configuration mono site"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Propriétés"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr ""
-"Essaye de trouver si il existe des problèmes dans votre configuration PHP ou "
-"LDAP"
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Actions"
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr "Vous permet de choisir un jeu d'option de base ou avancées"
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Sélectionnez afin d'afficher les modèles des pseudo utilisateurs"
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr "Migration assistée d'un annuaire LDAP existant"
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Afficher les modèles"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr "Qu'est ce que le l'assistant d'installation ne fera pas pour vous ?"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr ""
+"Sélectionnez afin d'afficher les utilisateurs qui ont seulement un objet GOsa"
 
-#: setup/setup_welcome.tpl:20
-msgid "Find every possible configuration error"
-msgstr "Trouver toutes les erreur possible dans votre configuration"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Afficher les utilisateurs fonctionnels"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr "Migrer tout les scénario LDAP possible - créez des sauvegardes !"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte posix"
 
-#: setup/setup_welcome.tpl:25
-msgid "To continue..."
-msgstr "Suite de la configuration..."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Afficher les utilisateurs Unix"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
 msgstr ""
-"Pour des raisons de sécurité vous devez vous authentifier en créant le "
-"fichier '/tmp/gosa.auth', contenant l'ID de la session sur le(s) serveur(s). "
-"Ceci peut être réalisé en exécutant la commande suivante:"
-
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr "Cliquer sur 'Continuer' quand vous avez fini."
+"Sélectionnez afin d'afficher les utilisateurs ayant un compte de messagerie"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-msgid "GOsa settings 2/3"
-msgstr "Paramètres de GOsa 2/3"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Afficher les utilisateurs de messagerie"
 
-#: setup/class_setupStep_Config2.inc:87
-msgid "Customize special parameters"
-msgstr "Customiser les paramètres spéciaux"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte samba"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-msgid "GOsa settings 1/3"
-msgstr "Paramètres de GOsa 1/3"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Afficher les utilisateurs samba"
 
-#: setup/class_setupStep_Config1.inc:76
-msgid "GOsa generic settings"
-msgstr "Préférences de base GOsa"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte proxy"
 
-#: setup/class_setupStep_Config1.inc:118
-#, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "Le valeur spécifiée pour '%s' doit être une valeur numérique."
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Afficher les utilisateurs proxy"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr "N'ajoutez pas une virgule à la fin de '%s'."
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "Sélectionner pour chercher dans le sous arbre"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs"
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Afficher les utilisateurs correspondants"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "Branches de l'arbre ldap ou sont stockes les groupes"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Soumettre le département"
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
-msgstr "l'uid de base doit être une valeur numérique"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "Soumettre"
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
-msgstr "La longueur minimale du mot de passe n'est pas une valeur numérique."
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Créer"
 
-#: setup/class_setupStep_Config1.inc:137
-msgid "The given password differ value is not numeric."
-msgstr "L'option password differ n'est pas une valeur numérique."
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Utilisateur"
 
-#: setup/setup_schema.tpl:3
-msgid "Schema specific settings"
-msgstr "Paramètres spécifiques des schémas"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Modèle"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr "Activer la validation des schéma lors de la connexion"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Editer"
 
-#: setup/setup_schema.tpl:16
-msgid "Check status"
-msgstr "Vérifier les statuts"
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "Modifier le mot de passe"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr "La vérification des schéma à réussi"
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
+#, fuzzy
+msgid "Copy"
+msgstr "copier"
 
-#: setup/setup_schema.tpl:23
-msgid "Schema check failed"
-msgstr "La vérification des schéma à échoué"
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
+#, fuzzy
+msgid "Cut"
+msgstr "couper"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
+msgstr "Coller"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Filtres"
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "Modifier les propriétés de base"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr "Fenêtre de connexion GOsa"
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
 
-#: ihtml/themes/default/login.tpl:27
-msgid "Login screen"
-msgstr "Fenêtre de connexion"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "Modifier les propriétés UNIX"
 
-#: ihtml/themes/default/login.tpl:34
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr ""
-"Veuillez utiliser votre nom d'utilisateur et votre mot de passe afin de vous "
-"connecter"
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "Modifier les propriétés d'environnement"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Nom d'utilisateur"
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "Modifier les propriétés de messagerie"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Répertoire"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "Modifier les propriétés téléphoniques"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Connexion"
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "Modifier les propriétés fax"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Cliquez ici pour vous connecter"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "Modifier les propriétés samba"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr "Aide en ligne de GOsa"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr ""
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr "Index"
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "Modifier les propriétés de Netatalk"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
-#, fuzzy
-msgid "Heimdal options"
-msgstr "Options de messagerie"
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "Créer un nouvel utilisateur depuis un modèle"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "Créer un nouvel utilisateur avec ce modèle"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "couper"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "Couper cette entrée"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "copier"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-msgid "Hour"
-msgstr "Heure"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "Copier cette entrée"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
+#: plugins/admin/users/class_divListUsers.inc:318
 #, fuzzy
-msgid "Minute"
-msgstr "Imprimante"
+msgid "Deactivated"
+msgstr "Activé"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
-#, fuzzy
-msgid "Day"
-msgstr "Mai"
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
+msgstr "Actif"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
-#, fuzzy
-msgid "Month"
-msgstr "mois"
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "éditer"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-#, fuzzy
-msgid "Year"
-msgstr "Recherche"
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "Editer un utilisateur"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "mot de passe"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
+#: plugins/admin/users/class_divListUsers.inc:342
+msgid "You are not allowed to change the password for this user."
 msgstr ""
+"Vous n'êtes pas autorisé à modifier le mot de passe de cet utilisateur."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
-#, fuzzy
-msgid "Password end"
-msgstr "Mot de passe"
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "supprimer"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
-msgstr "Enregistrer"
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "Supprimer un utilisateur"
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Conflit de verrou détecté"
+#: plugins/admin/users/class_divListUsers.inc:356
+msgid "You are not allowed to remove this user."
+msgstr "Vous n'êtes pas autorisé à supprimer cet utilisateur."
 
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' 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 'Éditer malgré tout'."
-
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe"
-
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
-msgstr "Ancien mot de passe"
+#: plugins/admin/users/class_divListUsers.inc:442
+#, fuzzy
+msgid "Number of listed users"
+msgstr "Nombre de pages"
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
-msgstr "Nouveau mot de passe"
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+#, fuzzy
+msgid "Number of listed departments"
+msgstr "Nom du département"
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
-msgstr "Vérifier le mot de passe"
+#: plugins/admin/users/class_userManagement.inc:27
+#, fuzzy
+msgid "Manage users"
+msgstr "Utilisateurs du domaine"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
-msgstr "Modifier le mot de passe"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, fuzzy
+msgid "Daemon"
+msgstr "En bas"
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
-msgstr "Cliquer ici pour changer votre mot de passe"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
+msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Conflit détecté entre différentes sessions"
+#: plugins/admin/users/class_userManagement.inc:293
+#, fuzzy
+msgid "Password change failed."
+msgstr "Le changement du mot de passe n'est pas autorisé"
 
-#: ihtml/themes/default/conflict.tpl:6
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
 msgstr ""
-"Une autre instance de votre session a été détectée. Les opérations multiples "
-"sont techniquement impossible et dépendent du navigateur utilisé. L'usage de "
-"navigateurs différents en même temps est possible (ex: IE et Mozilla) est "
-"possible. Cliquer sur le bouton 'Déconnexion' fermera cette session."
+"Vous n'êtes pas autorisé à indiquer un mot de passe pour cet utilisateur!"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
-"Ignorer ce message entraînera la modification/destruction des données en "
-"cours d'édition, il est conseillé de fermer toutes les fenêtres ouvertes et "
-"de se reconnecter."
+#: plugins/admin/users/class_userManagement.inc:456
+#, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "Vous êtes sur le point de supprimer l'entrée: %s."
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Déconnexion"
+#: plugins/admin/users/class_userManagement.inc:458
+#, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "Vous êtes sur le point de supprimer les entrées: %s"
 
-#: ihtml/themes/default/logout-close.tpl:5
+#: plugins/admin/users/class_userManagement.inc:460
 #, fuzzy
-msgid "Your GOsa session has been closed!"
-msgstr "Votre session GOsa à expiré !"
+msgid "Delete users"
+msgstr "Supprimer un utilisateur"
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+#, fuzzy
+msgid "User delete"
+msgstr "supprimer"
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
-msgstr "Restaurer des copie instantanés des objets"
+#: plugins/admin/users/class_userManagement.inc:488
+#, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "Vous n'êtes pas autorisé à supprimer l'utilisateur '%s'!"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
-msgstr ""
-"Cette procédure va restaurer un copie instantanée des objets sélectionnés. "
-"Cela va remplacer les objets sélectionnés après que vous ayez pressé le "
-"bouton restaurer."
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "Vous êtes sur le point de supprimer l'utilisateur %s."
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
-msgstr ""
-"Souvenez vous que la configuration DNS et les base de données ne peuvent pas "
-"être restaurées. Pour certains objets il est juste nécessaire de les ouvrir "
-"et de les sauvegarder à nouveau (goFon), certaines entrée cependant devront "
-"être recrées manuellement (glpi)."
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User deleted"
+msgstr "supprimer"
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
-msgstr ""
-"N'oubliez pas de vérifier les références avec les autres objets, par exemple "
-"est ce que l'imprimante sélectionnée existe encore ?"
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User successfully removed."
+msgstr "L'envoi du retour d'information à réussi"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Objet"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "Vous n'êtes pas autorisé à supprimer cet utilisateur!"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
-msgstr "Il n'y a pas de snapshots disponibles qui pourrait êtres restaurés"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "aucun"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
+#: plugins/admin/users/remove.tpl:6
+msgid ""
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
-"Choisissez une copie instantanée et cliquez sur l'image du répertoire, pour "
-"restaurer la copie"
+"Cela inclut toutes les données des comptes, les droits d'accès, la "
+"configuration imap,etc. pour cet utilisateur. Veuillez vous assurez que vous "
+"voulez effectuez cette opération étant donné qu'il est impossible pour GOsa "
+"de récupérer vos données."
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-msgid "Creating object snapshots"
-msgstr "Créer des d'objets snapshots"
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Créer un nouvel utilisateur à partir d'un modèle"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
-"Cette procédure va créer une copie instantanée de l'objet sélectionné. Il "
-"sera stocké dans une branche spéciale de votre annuaire et pourra être "
-"restaurée plus tard."
+"La création d'un nouvel utilisateur peut être facilité en utilisant les "
+"modèles. De nombreuses informations seront ainsi remplies automatiquement. "
+"Sélectionnez 'aucun' afin de ne pas utiliser les modèles."
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
+#: plugins/admin/users/password.tpl:4
 msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
 msgstr ""
-"Souvenez vous que les entrées dans les base de données, les configurations "
-"DNS et probablement les zones crées dans les serveurs ne seront pas stockées "
-"dans les copie instantanées."
+"Pour changer le mot de passe des utilisateurs, utilisez le champ ci-dessous. "
+"Les changements prennent effet immédiatement. Veuillez mémoriser le nouveau "
+"mot de passe sinon l'utilisateur ne pourra pas s'identifier sans celui-ci."
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
-msgid "Timestamp"
-msgstr "Date"
+#: plugins/admin/users/password.tpl:21
+#, fuzzy
+msgid "Strength"
+msgstr "Rue"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
-msgstr "Raison pour la génération de cette copie instantanée"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Administration des utilisateurs"
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr "ACL assignés à l'entrée actuelle"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Groupes d'objets"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-msgid "New ACL"
-msgstr "Nouvel ACL"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
+#, fuzzy
+msgid "Manage object groups"
+msgstr "Nom du groupe d'objets"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "ACL type"
-msgstr "Type ACL"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "Vous êtes sur le point de supprimer l'entrée %s."
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "Select an acl type"
-msgstr "Sélectionnez un type d'acl"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "Vous êtes sur le point de supprimer les entrées %s"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr "Utiliser les membres depuis"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "Permission error"
+msgstr "Permissions"
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr "Membres disponibles"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr "Liste les destinataires possibles pour les messages"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "Vous êtes sur le point de supprimer le groupe objet '%s'."
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "Membres"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+#, fuzzy
+msgid "Windows Install"
+msgstr "Station de travail Windows"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr "Lister les destinataires du message"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "Terminal"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-msgid "List of available ACL categories"
-msgstr "Liste des catégories d'acl disponibles"
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
+msgstr ""
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr "ACL pour cet objet"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "Ce 'dn' n'est pas un groupe objet."
 
-#: ihtml/themes/default/acl.tpl:69
-msgid "Available roles"
-msgstr "Type de rôles disponibles"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "nombre d'objets différents trop important!"
 
-#: ihtml/themes/default/password.tpl:6
-msgid "Change your password"
-msgstr "Modifier votre mot de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "utilisateurs"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Success"
-msgstr "Réussi"
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "groupes"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr "Votre mot de passe à été changé."
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "applications"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "Password change"
-msgstr "Changement de mot de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "départements"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
-"Cette fenêtre vous permet de changer votre mot de passe de manière simple. "
-"Entrez le mot de passe actuel et le nouveau mot de passe (deux fois) dans "
-"les champs ci-dessous et appuyez sur le bouton 'Changer'."
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "serveurs"
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "Mot de passe actuel"
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "stations de travail"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Nouveau mot de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:315
+#, fuzzy
+msgid "winstations"
+msgstr "Stations Windows"
 
-#: ihtml/themes/default/password.tpl:85
-msgid "again"
-msgstr "encore"
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "terminaux"
 
-#: ihtml/themes/default/password.tpl:86
-msgid "New password repeated"
-msgstr "Nouveau mot de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "téléphones"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "Format de stockage des mots de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "imprimantes"
 
-#: ihtml/themes/default/password.tpl:100
-msgid "Change"
-msgstr "Changer"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "et"
 
-#: ihtml/themes/default/password.tpl:101
-msgid "Click here to change your password"
-msgstr "Cliquez ici pour changer votre mot de passe"
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
+msgstr "le dn n'existe pas:"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
-msgstr "Assistant pour le copier &amp; coller"
+#: plugins/admin/ogroups/class_ogroup.inc:629
+#, fuzzy
+msgid "You can combine two different object types at maximum, only!"
+msgstr "Vous pouvez combiner au maximum deux objets différents !"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
-"Certaines valeurs doivent être unique dans tout l'arbre et certaines "
-"combinations n'ont pas de sens. Gosa vous montre les valeurs "
-"correspondantes. Veuillez maintenir les valeurs pour respecter les policies."
+#: plugins/admin/ogroups/class_ogroup.inc:763
+msgid "Object group generic"
+msgstr "Groupes d'objets"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
-"Veuillez vous souvenir que certaines propriétés comme les snapshots ne "
-"seront pas copiés!"
+#: plugins/admin/ogroups/class_ogroup.inc:774
+msgid "Member"
+msgstr "Membres"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
-"ou si vous couper ou copiez un entrée avec GOsa et que vous effacer la "
-"source, vous pouvez rencontrer des erreurs en tentant de le coller à "
-"nouveau !"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "Sélectionnez les objets à ajouter"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-msgid "Cancel all"
-msgstr "Tout annuler"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "Sélectionner pour voir les départements"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr "Opération réalisée"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Montrer les départements"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr "Votre session GOsa à expiré !"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "Sélectionnez pour voir les comptes GOsa"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
-"Votre dernière interaction avec GOsa était il y a un certain temps. Pour des "
-"raisons de sécurité, la session à été fermée. Pour continuer à administrer, "
-"veuillez vous reconnecter."
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Afficher les utilisateurs"
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr "Reconnexion"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "Sélectionnez pour afficher les groupes GOsa"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr ""
-"Vous êtes actuellement en train d éditer une entrée de la base de données. "
-"Voulez vous annuler les modifications ?"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Afficher les groupes"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Accueil"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Sélectionnez pour voir les applications"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Aide"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Afficher les applications"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Déconnexion"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Sélectionnez pour voir les serveurs"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Connecté:"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Afficher les serveurs"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr "Menu Principal de GOsa"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "Sélectionnez pour voir les stations de travail"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Afficher les stations de travail"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "Veuillez choisir la façon de réagir pour cette session"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "Sélectionnez pour afficher les terminaux"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-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"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Afficher les terminaux"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-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 qui sont récupérées grâce "
-"au paramètre sizelimit défini et laissez moi utiliser les filtres pour "
-"restreindre les données a visualiser"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "Sélectionnez pour afficher les imprimantes"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Activer"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Afficher les imprimantes"
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa 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 GOsa "
-"de récupérer vos données."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "Sélectionnez pour afficher les téléphones"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-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."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Afficher les téléphones"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Supprimer"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "Afficher les objets du département"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
-"Impossible d'ouvrir le fichier spécifié, vérifiez que celui ci est existant "
-"et/ou accessible"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "Afficher les objets correspondants"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr "Impossible de lire le certificat spécifié / ou chaîne vide spécifiée"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "Expression régulière pour trouver les objets correspondants"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+#: plugins/admin/ogroups/remove.tpl:7
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
-"Impossible de charger le certificat, probablement un format non supporté "
-"(utilisez un format PEM/DER) "
+"Veuillez vérifier que vous voulez effectuer cette action. Toutes les données "
+"seront perdues étant donné qu'il est impossible pour GOsa de récupérer vos "
+"données."
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr "Le format doit être PEM, afin de pouvoir afficher les informations"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Nom du groupe"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "Impossible de créer/ouvrir le fichier"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+msgid "Please enter the new object group name"
+msgstr "Veuillez entrer un nouveau nom pour le groupe d'objet"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr "Pas de certificat valide chargé"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Nom du groupe"
 
-#: include/utils/class_msgPool.inc:14
-#, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Description du groupe"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
-#, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Sélectionnez la branche où sera placée le groupe"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Objets membres"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr "Liste des groupes d'objets"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr "Nom du groupe d'objets"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Départements"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
+msgstr "Sélectionner pour afficher les groupes contenant des utilisateurs"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Afficher les groupes contenant des utilisateurs"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
+msgstr "Sélectionner pour afficher les groupes contenant des groupes"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Afficher les groupes contenant des groupes"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "Vous n'avez pas l'autorisation pour envoyer un message!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
+msgstr "Sélectionner pour afficher les groupes contenant des applications"
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Afficher les groupes contenant des applications"
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
+msgstr "Sélectionner pour afficher les groupes contenant des départements"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Afficher les groupes contenant des départements"
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
+msgstr "Sélectionner pour afficher les groupes contenant des serveurs"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-#, fuzzy
-msgid "Connection information"
-msgstr "Informations personnelles"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Afficher les groupes contenant des serveurs"
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Impossible de se connecter au serveur de base de données !"
-
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "Impossible de sélectionner la base de données !"
-
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
 msgstr ""
+"Sélectionner pour afficher les groupes contenant des stations de travail"
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "Impossible de sélectionner la base de données !"
-
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Le champ 'Fax' contient un numéro invalide."
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Afficher les groupes contenant des stations de travail"
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Select to see groups containing windows workstations"
 msgstr ""
-"La commande '%s', utilisée dans le CHECK de l'extension '%s' n'existe pas."
+"Sélectionner pour afficher les groupes contenant des stations de travail"
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "La valeur de l''UID' est trop petite."
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Show groups containing windows workstations"
+msgstr "Afficher les groupes contenant des stations de travail"
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
+msgstr "Sélectionner pour afficher les groupes contenant des terminaux"
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "La valeur de l''UID' est trop petite."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Afficher les groupes contenant des terminaux"
 
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr "PHP doit être à la version %s / %s ou supérieure."
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
+msgstr "Sélectionner pour afficher les groupes contenant des imprimantes"
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
+msgstr "Afficher les groupes contenant des imprimantes"
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Une personne ayant cet 'Identifiant' existe déjà dans l'annuaire."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
+msgstr "Sélectionner pour afficher les groupes contenant des téléphones"
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Le champ obligatoire 'Nom' n'est pas rempli."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
+msgstr "Afficher les groupes contenant des téléphones"
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Editer cette entrée"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "Le champ 'Nom' contient des caractères invalides."
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Supprimer cette entrée"
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+msgid "You are not allowed to remove this entry."
+msgstr "Vous n'êtes pas autorisé à supprimer cette entrée"
 
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "Le changement du mot de passe n'est pas autorisé"
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+#, fuzzy
+msgid "Number of listed object groups"
+msgstr "Nom du groupe d'objets"
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Extension d'inventaire"
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
+msgstr "Queue téléphonique"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Ajouter"
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr "Système"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Ajouter"
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Périphériques"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Supprimer"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Démarrage"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Activer"
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "Sommaire"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Editer"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Terminaux"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Editer un utilisateur"
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "Départements"
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Ce compte n'a pas d'extensions GOsa valides."
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
+#, php-format
+msgid "You're about to delete the following entry %s"
+msgstr "Vous êtes sur le point de supprimer l'entrée %s."
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
-msgstr ""
-"Ce compte possède l'extension posix. Vous pouvez le supprimer en cliquant "
-"sur le bouton ci-dessous."
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
+#, php-format
+msgid "You're about to delete the following entries %s"
+msgstr "Vous êtes sur le point de supprimer les entrées %s"
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
 msgstr ""
-"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
-"préalable supprimer le(s) compte samba / environnement."
+"Vous êtes sur le point de supprimer la branche complète de l'annuaire LDAP "
+"placé sous '%s'."
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+#: plugins/admin/departments/tabs_department.inc:55
+#, fuzzy
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
 msgstr ""
-"Aucune extension posix n'existe pour ce compte. Vous pouvez en créer une en "
-"cliquant sur le bouton ci-dessous."
+"Impossible de bouger l'arbre. L'arbre de destination est un sous arbre de "
+"l'arbre à bouger."
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+msgid "You are currently moving/renaming this department."
+msgstr "Vous êtes occupé à bouger/renommer ce département."
+
+#: plugins/admin/departments/dep_move_confirm.tpl:5
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
-"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
-"préalable supprimer le(s) compte samba / environnement."
+"La modification de l'attribut 'ou' ou la base d'un département peut "
+"corrompre les entrées acls et snapshot pour tout les objets."
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
+msgstr "GOsa ne PEUT PAS encore corriger ceci pour vous."
+
+#: plugins/admin/departments/dep_move_confirm.tpl:11
 msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
-"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
-"préalable supprimer le(s) compte samba / environnement."
+"Avant de confirmer cette action, vérifiez que tout se passera comme prévu, "
+"la meilleure solution est probablement une sauvegarde."
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Paramètres supplémentaire de GOsa"
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "Le champ obligatoire 'Nom' n'est pas rempli."
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Paramètres Posix"
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "Le champ obligatoire 'Description' n'est pas rempli."
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr ""
-"Cliquez sur le bouton 'Editer' ci-dessous pour changer les informations dans "
-"cette boite de dialogue"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+#, fuzzy
+msgid "Fatal error"
+msgstr "Serveur de terminaux"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Janvier"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+#, fuzzy
+msgid "Cannot find an unused tag for this administrative unit!"
+msgstr ""
+"Erreur fatale: Impossible de trouver un marqueur libre pour marquer l'entité "
+"administrative !"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Février"
-
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Mars"
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
+msgstr "Marquer '%s'."
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "Avril"
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr "Bouger '%s' vers '%s'"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Mai"
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr "Impossible de copier %s, arrêt de l'opération"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Juin"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Pays"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Juillet"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Téléphone"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Août"
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "Nom du département"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "Septembre"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Catégorie"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Octobre"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "Paramètres administratifs"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "Novembre"
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
+msgstr "L'objet '%s' est déjà marqué"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Décembre"
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
+msgstr "Ajouter une marque (%s) à l'objet '%s'"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "Nom de famille"
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
+msgstr "Suppression de la marque de l'objet '%s'"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Monday"
-msgstr "mois"
+#: plugins/admin/departments/remove.tpl:6
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
+msgstr ""
+"Ceci inclus tous les comptes systèmes, etc... dans cette branche. Veuillez "
+"vérifier si vous voulez réaliser cette opération étant donné qu'il est "
+"impossible pour GOsa de récupérer vos données."
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
+"Il est conseillé de sauvegarder l'arbre de votre annuaire LDAP dans un "
+"fichier avant de réaliser cette action. Appuyez sur 'Supprimer' pour "
+"continuer ou 'Annuler' pour abandonner."
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Wednesday"
-msgstr "Mercredi"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Liste des départements"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
-msgstr ""
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "Expression régulière pour faire correspondre les départements"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
-msgstr ""
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "département"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
-msgstr ""
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "Nom du département"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "read operation"
-msgstr "Options de messagerie"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "Nom de la branche à créer"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "Description du département"
+
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "Catégorie pour cette branche de l'annuaire"
+
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
 msgstr ""
+"Sélectionnez la branche de l'annuaire dans laquelle sera placée le "
+"département"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "modify operation"
-msgstr "Montrer les informations"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "Lieu où est située cette branche de l'annuaire"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "delete operation"
-msgstr "Sélectionnez pour voir les stations de travail"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "Lieu de cette branche"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "search operation"
-msgstr "Utiliser l'expiration du compte"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "Adresse postale de cette branche"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Authentification"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "Numéro de téléphone de base pour cette sous-branche"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "La requête LDAP à échoué"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "Numéro de fax de base pour cette sous-branche"
 
-#: include/utils/class_msgPool.inc:374
-#, fuzzy
-msgid "LDAP operation failed!"
-msgstr "La requête LDAP à échoué"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
+msgstr "Marquer le département comme une entité administrative indépendante"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
-#, fuzzy
-msgid "Configuration error"
-msgstr "Le fichier de configuration peut être écrit"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Gestion des départements"
 
-#: include/utils/class_timezone.inc:51
-#, php-format
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr "Opération en cours"
+
+#: plugins/admin/departments/dep_iframe.tpl:7
 msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
+"Votre navigateur ne supporte pas les iframes, veuillez utiliser ce lien pour "
+"effectuer l'opération demandée."
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:26
+msgid "Access control list templates"
+msgstr "Liste des modèles de contrôle d'accès"
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "Rôles ACL"
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "L'effacement à été interrompu par l'extension '%s': %s"
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+msgid "All categories"
+msgstr "Toutes les catégories"
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
+msgstr "Remise à zéro des ACL"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "Références"
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+msgid "One level"
+msgstr "Un niveau"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "Impossible de lire ou écrire le fichier csv '%s'."
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+msgid "Current object"
+msgstr "Objet actuel"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Impossible de lire le fichier csv '%s'."
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+msgid "Complete subtree"
+msgstr "Sous arbre complet"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Impossible de lire le fichier csv '%s'."
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr "Le sous arbre complet (permanent)"
 
-#: include/class_hostActionQueue.inc:143
-#, fuzzy
-msgid "GOsa infrastructure"
-msgstr "Fenêtre de connexion GOsa"
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr "Au dessus"
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
+msgstr "En bas"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Impossible d'écrire le fichier csv '%s'."
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+msgid "Edit ACL"
+msgstr "Editer l'ACL"
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+msgid "Delete ACL"
+msgstr "Effacer L'ACL"
 
-#: include/class_hostActionQueue.inc:277
-#, php-format
-msgid "Entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
+msgstr "Pas d'ACL pour cette catégorie"
 
-#: include/class_hostActionQueue.inc:287
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
 #, php-format
-msgid "Could not update entry, entry with id '%s' not found."
-msgstr ""
+msgid "Contains ACLs for these objects: %s"
+msgstr "Contient les ACL pour ces objets: %s"
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+msgid "Edit categories ACLs"
+msgstr "Editer les catégories d'ACL"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, fuzzy, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr "Le paquet '%s' n'existe pas."
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
+msgstr "Effacer les catégories d'ACL"
 
-#: include/class_CopyPasteHandler.inc:118
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
 #, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
-msgstr ""
+msgid "Edit ACL for '%s', scope is '%s'"
+msgstr "Editer l'ACL pour '%s', l'étendue est '%s'"
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
+msgstr "Tout les objets dans le sous arbres actuel"
 
-#: include/class_CopyPasteHandler.inc:158
+#: plugins/admin/acl/class_aclRole.inc:618
+#, fuzzy
+msgid "Object in use"
+msgstr "Nom de l'objet"
+
+#: plugins/admin/acl/class_aclRole.inc:618
 #, fuzzy, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
-"L'objet '%s' n'est pas un objet ldap valide, veuillez vérifier les méthodes "
-"copier & coller."
+"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects  "
+"suivants %s utilisent ce rôle"
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "Serveur de terminaux"
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+msgid "ACL roles"
+msgstr "Rôles ACL"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:700
+msgid "Acl roles"
+msgstr "Rôles ACL"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+#: plugins/admin/acl/remove.tpl:6
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"Cela inclut tout les systèmes et les informations de configuration. Veuillez "
+"vérifier que vous voulez effectuer cette opération étant donné qu'il est "
+"impossible pour GOsa de récupérer vos données."
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr ""
+#: plugins/admin/acl/tabs_acl_role.inc:28
+msgid "ACL Templates"
+msgstr "Modèles des ACL"
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "Impossible de lire le fichier '%s'."
+#: plugins/admin/acl/class_divListACL.inc:51
+msgid "List of acl"
+msgstr "Liste des acl"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Vous êtes sur le point de coller l'entrée %s."
+#: plugins/admin/acl/class_divListACL.inc:52
+msgid "List of acls"
+msgstr "Liste des acls"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Vous êtes sur le point de coller l'entrée %s."
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "Ignorer les sous arbres"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr "Coller"
+#: plugins/admin/acl/class_divListACL.inc:84
+msgid "Display acls matching"
+msgstr "Afficher les acls correspondantes"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr "Impossible de coller"
+#: plugins/admin/acl/class_divListACL.inc:243
+msgid "Edit acl role"
+msgstr "Editer un rôle acl"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:253
+msgid "Delete acl role"
+msgstr "Supprimer un rôle acl"
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
-#, fuzzy, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
-msgstr ""
-"La fonctionnalité pour les copie instantanées est activée, mais la variable "
-"requise '%s' n'est pas configurée dans votre gosa.conf."
+#: plugins/admin/acl/class_divListACL.inc:265
+msgid "Edit acl"
+msgstr "Editer un acl"
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr "Changement du dn de l'acl"
+#: plugins/admin/acl/class_divListACL.inc:269
+msgid "Delete acl"
+msgstr "Effacer un acl"
 
-#: include/class_plugin.inc:1613
-msgid "from"
-msgstr "de"
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+msgid "ACL management"
+msgstr "Gestion des ACL"
 
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr ""
-"La création de cette page à occasionné des erreurs d'après l'interpréteur "
-"PHP !"
+#: plugins/admin/acl/class_aclManagement.inc:26
+msgid "ACLs"
+msgstr "ACLs"
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr "Envoyer vos commentaires au membres du projet Gosa"
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "Contrôle d'accès (ACL)"
 
-#: include/php_setup.inc:96
-msgid "Send bugreport"
-msgstr "Envoyer un rapport de bug"
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
-msgstr "Afficher/Cacher l'information"
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "Erreur PHP"
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, php-format
+msgid "You're about to delete the acl %s."
+msgstr "Vous êtes sur le point de supprimer l'acl '%s'."
 
-#: include/php_setup.inc:130
-msgid "class"
-msgstr "classe"
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Liste des groupes"
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "fonction"
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "Nom du Groupe / Département"
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "statique"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr ""
+"Sélectionnez afin d'afficher les groupes qui sont les groupes principaux "
+"d'utilisateurs"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "méthode"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Afficher les groupes de base"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr "Trace"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Sélectionnez afin d'afficher les groupes qui ont des attributs Samba"
 
-#: include/php_setup.inc:179
-msgid "File"
-msgstr "Fichier"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Afficher les groupes Samba"
 
-#: include/php_setup.inc:179
-msgid "Line"
-msgstr "Ligne"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr ""
+"Sélectionnez afin d'afficher les groupes ayant des applications configurées"
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Type"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Afficher les groupes applications"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "Arguments"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "Sélectionnez afin d'afficher les groupes ayant la messagerie activée"
 
-#: include/class_acl.inc:26
-msgid "Access control"
-msgstr "Contrôle d'accès"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Afficher les groupes ayant la messagerie activé"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-#, fuzzy
-msgid "Manage access control lists"
-msgstr "Contrôle d'accès (ACL)"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr ""
+"Sélectionnez afin d'afficher les groupes normaux ayant uniquement un aspect "
+"fonctionnel"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-msgid "All categories"
-msgstr "Toutes les catégories"
-
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
-msgstr "Remise à zéro des ACL"
-
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-msgid "One level"
-msgstr "Un niveau"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Afficher les groupes fonctionnels"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-msgid "Current object"
-msgstr "Objet actuel"
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "Nom du groupe"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-msgid "Complete subtree"
-msgstr "Sous arbre complet"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Sélectionnez les utilisateurs à ajouter"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr "Le sous arbre complet (permanent)"
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr "Chercher dans le sous arbre"
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr "Utiliser l'ACL définie dans le rôle"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Afficher les utilisateurs du département"
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Utilisateurs"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "Expression régulière concordant avec les noms des utilisateurs"
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
 msgid "Groups"
 msgstr "Groupes"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr "Au dessus"
-
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
-msgstr "En bas"
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
+msgstr ""
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "éditer"
+#: plugins/admin/groups/class_groupManagement.inc:434
+#, php-format
+msgid "You're about to delete the group '%s'."
+msgstr "Vous êtes sur le point de supprimer le groupe '%s'."
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
-msgid "Edit ACL"
-msgstr "Editer l'ACL"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
+msgstr ""
+"Ce groupe est un groupe principal contenant des utilisateurs. Veuillez vous "
+"assurez que vous voulez bien exécuter cette action étant donné qu'il est "
+"impossible pour GOsa de récupérer vos données."
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "supprimer"
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
+msgstr "Préférences des groupes"
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
-msgid "Delete ACL"
-msgstr "Effacer L'ACL"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "Nom posix du groupe"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
-msgstr "Pas d'ACL pour cette catégorie"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
+msgstr ""
+"Normalement les IDs sont générés automatiquement, vous pouvez en spécifier "
+"un manuellement"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
-msgstr "Contient les ACL pour ces objets: %s"
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Forcer le GID"
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
-msgid "Edit categories ACLs"
-msgstr "Editer les catégories d'ACL"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "Forcer le numéro d'ID"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
-msgstr "Effacer les catégories d'ACL"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Sélectionnez afin de créer un groupe samba"
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
-msgstr "Editer l'ACL pour '%s', l'étendue est '%s'"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "dans le domaine"
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
-msgstr "Tout les objets dans le sous arbres actuel"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "Les membres sont dans un groupe téléphonique"
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-msgid "Show/Hide Advanced Settings"
-msgstr "Afficher/Cacher la configuration avancée"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr "Les membres sont dans un groupe nagios"
 
-#: include/class_acl.inc:690
-msgid "Create objects"
-msgstr "Créer un objet"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Membre du groupe"
 
-#: include/class_acl.inc:691
-msgid "Move objects"
-msgstr "Bouger un objet"
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Administration du groupe"
 
-#: include/class_acl.inc:692
-msgid "Remove objects"
-msgstr "Enlever les objets"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+#, fuzzy
+msgid "Configuration error"
+msgstr "Le fichier de configuration peut être écrit"
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
-msgstr "Modifiable par le propriétaire"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#, fuzzy
+msgid "Cannot find group SID in your configuration!"
+msgstr ""
+"Impossible de trouver le SID de ce groupe dans l'annuaire LDAP ou dans le "
+"fichier de configuration!"
 
-#: include/class_acl.inc:697
-msgid "Move object"
-msgstr "Bouger un objet"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Ce 'dn' n'est pas un groupe."
 
-#: include/class_acl.inc:698
-msgid "Remove object"
-msgstr "Enlever un objet"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Groupe Samba"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "lecture"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Administrateurs du domaine"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "écrire"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Utilisateurs du domaine"
 
-#: include/class_acl.inc:710
-msgid "Complete object"
-msgstr "L'objet au complet"
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Invités du domaine"
 
-#: include/class_acl.inc:826
+#: plugins/admin/groups/class_groupGeneric.inc:355
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
-msgstr "Type d'ACL inconnu '%s'. je ne sais pas comment l'utiliser."
+msgid "Special group (%d)"
+msgstr "Groupe spécial (%d)"
 
-#: include/class_acl.inc:869
-#, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Entrée inconnue '%s'  !"
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "! identifiant inconnu"
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
+#: plugins/admin/groups/class_groupGeneric.inc:547
 #, php-format
-msgid "Role: %s"
-msgstr "Rôle : %s"
+msgid "Search returned too many results. Not displaying more than %s entries!"
+msgstr ""
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr "Rôle inconnu, probablement enlevé"
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, fuzzy, php-format
+msgid "Cannot find any SID for '%s'!"
+msgstr "Impossible de lire le fichier csv '%s'."
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Contient les paramètres pour ces objets: %s"
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Impossible de lire le fichier csv '%s'."
 
-#: include/class_acl.inc:948
-msgid "Members:"
-msgstr "Membres:"
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#, fuzzy
+msgid "Cannot allocate a free ID!"
+msgstr "Trop d'utilisateurs, impossible d'assigner un ID libre !"
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
-msgstr "ACL valide pour tout les utilisateurs"
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+msgid "Generic group settings"
+msgstr "Préférences des groupes génériques"
 
-#: include/class_acl.inc:1115
-msgid "Access control list"
-msgstr "Contrôle d'accès (ACL)"
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+msgid "Phone pickup group"
+msgstr "Groupe téléphonique"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
-msgid "ACL roles"
-msgstr "Rôles ACL"
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+msgid "Nagios group"
+msgstr "Groupe Nagios"
 
-#: include/class_acl.inc:1123
-msgid "Role name"
-msgstr "Nom du rôle"
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+msgid "Group member"
+msgstr "Membre du groupe"
 
-#: include/class_acl.inc:1124
-msgid "Role description"
-msgstr "Description du rôle"
-
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
-msgstr "Tout les objets dans cette catégorie"
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+msgid "Samba group type"
+msgstr "Groupe Samba"
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+msgid "Samba domain name"
+msgstr "Domaine Samba"
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr "Inconnu"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+msgid "Samba SID"
+msgstr "SID Samba"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
-msgstr ""
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+msgid "Language setup"
+msgstr "Configuration de la langue"
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Utilisateur de la base de données des journaux systèmes"
+#: setup/class_setupStep_Language.inc:42
+msgid "This step allows you to select your preferred language."
+msgstr "Cette étape vous permet de sélectionner votre langue préférée."
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
-msgstr ""
+#: setup/class_setupStep_Language.inc:47
+msgid "Automatic"
+msgstr "Automatique"
 
-#: include/class_log.inc:107
+#: setup/setup_welcome.tpl:4
 msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+"This seems to be the first time you start GOsa - 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 installation de GOsa - nous n'avons pas "
+"trouvé de configuration. Ce programme d'aide à l'installation vous aidera à "
+"configurer GOsa."
 
-#: include/class_log.inc:120
-#, fuzzy, php-format
-msgid "Invalid option '%s' specified."
-msgstr "Type non valide comme opérateur."
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
+msgstr "Qu'est ce que le programme d'aide à l'installation fera pour vous ?"
 
-#: include/class_log.inc:124
-#, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "Le branche spécifiée est invalide."
+#: setup/setup_welcome.tpl:11
+msgid "Create a basic, single site configuration"
+msgstr "Créer une simple configuration mono site"
 
-#: include/class_log.inc:145
-#, fuzzy
-msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
-"Vous avez activé les journaux systèmes vers une base de données mysql, mais "
-"il n'y a pas de serveur disponible."
-
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Impossible de se connecter au serveur de journaux systèmes %s."
+"Essaye de trouver si il existe des problèmes dans votre configuration PHP ou "
+"LDAP"
 
-#: include/class_log.inc:165
-#, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr ""
-"Impossible de sélectionner la base de données '%s' située sur le serveur '%"
-"s'."
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
+msgstr "Vous permet de choisir un jeu d'option de base ou avancées"
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
-msgstr ""
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
+msgstr "Migration assistée d'un annuaire LDAP existant"
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
-msgstr ""
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
+msgstr "Qu'est ce que le l'assistant d'installation ne fera pas pour vous ?"
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr ""
-"Impossible de sélectionner la base de données '%s' située sur le serveur '%"
-"s'."
+#: setup/setup_welcome.tpl:20
+msgid "Find every possible configuration error"
+msgstr "Trouver toutes les erreur possible dans votre configuration"
 
-#: include/class_multi_plug.inc:362
-#, fuzzy
-msgid "You are currently editing mutliple entries."
-msgstr "Vous êtes occupé à bouger/renommer ce département."
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr "Migrer tout les scénario LDAP possible - créez des sauvegardes !"
 
-#: include/class_multi_plug.inc:391
-#, fuzzy
-msgid "Password reset"
-msgstr "Le mot de passe expirera le"
+#: setup/setup_welcome.tpl:25
+msgid "To continue..."
+msgstr "Suite de la configuration..."
 
-#: include/class_multi_plug.inc:391
-#, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe"
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', 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 '/tmp/gosa.auth', contenant l'ID de la session sur le(s) serveur(s). "
+"Ceci peut être réalisé en exécutant la commande suivante:"
 
-#: include/class_msg_dialog.inc:122
-#, fuzzy
-msgid "Please fix the above error and reload the page."
-msgstr "Veuillez regarder les journaux systèmes de GOsa."
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
+msgstr "Cliquer sur 'Continuer' quand vous avez fini."
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "Erreur XML dans guide.xml: %s à la ligne %d"
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+msgid "GOsa settings 1/3"
+msgstr "Paramètres de GOsa 1/3"
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
-msgstr "L'aide n'est pas disponible pour cette extension."
+#: setup/class_setupStep_Config1.inc:76
+msgid "GOsa generic settings"
+msgstr "Préférences de base GOsa"
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
-msgstr "précédent"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "Non"
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
-msgstr "suivant"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "Oui"
 
-#: include/functions_helpviewer.inc:389
+#: setup/class_setupStep_Config1.inc:118
 #, php-format
-msgid "%s results for your search with the keyword %s"
-msgstr "%s résultats de votre recherche avec le mot %s "
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "Le valeur spécifiée pour '%s' doit être une valeur numérique."
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr "%s%% de correspondance dans le fichier %s"
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
+msgstr "GID / UID id min"
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Aller au département de base"
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
+#, php-format
+msgid "Don't add a trailing comma to '%s'."
+msgstr "N'ajoutez pas une virgule à la fin de '%s'."
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Racine"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs"
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Monter d'un département"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "Branches de l'arbre ldap ou sont stockes les groupes"
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Aller au département des utilisateurs"
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
+msgstr "l'uid de base doit être une valeur numérique"
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Accueil"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
+msgstr "La longueur minimale du mot de passe n'est pas une valeur numérique."
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "Recharger la liste"
+#: setup/class_setupStep_Config1.inc:137
+msgid "The given password differ value is not numeric."
+msgstr "L'option password differ n'est pas une valeur numérique."
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "Soumettre"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
+msgstr "Veuillez choisir l'utilisateur LDAP qui sera utilise par GOSa"
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
-msgstr ""
+#: setup/setup_ldap.tpl:25
+msgid "LDAP connection"
+msgstr "Connexion LDAP"
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
-msgid "Restore"
-msgstr "Restaurer"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Nom de l'emplacement"
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
-msgstr "Restaurer la copie instantanée des objets déjà effacés"
+#: setup/setup_ldap.tpl:37
+msgid "Connection URL"
+msgstr "URL de connexion"
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
-msgstr "Restaurer la copie instantanée"
+#: setup/setup_ldap.tpl:45
+msgid "TLS connection"
+msgstr "Connexion TLS"
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create snapshot"
-msgstr "Créer un snapshot"
+#: setup/setup_ldap.tpl:65
+msgid "Reload"
+msgstr "Recharger"
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create a new snapshot from this object"
-msgstr "Créer un nouveau snapshot depuis cet objet"
+#: setup/setup_ldap.tpl:69
+msgid "Authentication"
+msgstr "Authentification"
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "Erreur XML dans gosa.conf: %s à la ligne %d"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "DN de l'administrateur"
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
-msgstr ""
+#: setup/setup_ldap.tpl:78
+msgid "Select user"
+msgstr "Sélectionner un utilisateur"
 
-#: include/class_config.inc:228
-#, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
-"Impossible de se connecter à l'annuaire LDAP. Veuillez contacter "
-"l'administrateur du système."
+"Ajouter automatiquement la base de l'annuaire LDAP au DN de l'administrateur"
 
-#: include/class_config.inc:560
-#, fuzzy
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "SID et/ou RIDBASE absents dans votre configuration !"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Mot de passe administrateur"
 
-#: include/class_SnapShotDialog.inc:83
-#, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "Vous êtes sur le point de supprimer le snapshot '%s'."
+#: setup/setup_ldap.tpl:101
+msgid "Schema based settings"
+msgstr "Paramètres basé sur les schéma"
 
-#: include/class_SnapShotDialog.inc:135
-msgid "Remove snapshot"
-msgstr "Supprimer le snapshot"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
+msgstr "Utilisez des groupes rfc2307bis"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/setup_ldap.tpl:117
+msgid "Current status"
+msgstr "Statut actuel"
+
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
+"Pendant l'inspection LDAP, nous allons regarder pour les problèmes "
+"classiques qui peuvent arriver lorsque l'on migre vers une administration "
+"basée sur GOsa. Vous pouvez fixer les problèmes si dessous afin de procurer "
+"une administration facilitée."
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Description"
+#: setup/setup_migrate.tpl:33
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
 msgstr ""
+"Bouger les stations windows dans un département valide pour les stations "
+"windows."
 
-#: include/functions.inc:108
-#, php-format
+#: setup/setup_migrate.tpl:39
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
+"Ce dialogue vous permet de bouger les stations windows affichées dans un "
+"département valide"
 
-#: include/functions.inc:318
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
-"FATAL: Erreur lors de la connexion au serveur LDAP. Le serveur à répondu '%"
-"s'."
-
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "Echec de l'authentification. Le serveur LDAP répond '%s'."
+"Soyez prudent avec cet outil, il peut y avoir des références pointant vers "
+"ces machines qui ne seront pas migrées."
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "LDAP server returned: %s"
-msgstr "Serveur LDAP"
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
+msgid "Select all"
+msgstr "Sélectionner tout"
 
-#: include/functions.inc:380 include/functions.inc:450
-#, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
-msgstr ""
-"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base "
-"de données LDAP."
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
+msgstr "Bouger les machines windows dans le département GOsa suivant"
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
-msgstr ""
+#: setup/setup_migrate.tpl:72
+msgid "Move selected workstations"
+msgstr "Bouger les stations de travail sélectionnées"
 
-#: include/functions.inc:605
-#, fuzzy, 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 vérifier l'entrée 'config' dans gosa.conf !"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
+msgstr "Que ce qui sera exécuté ici"
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "Echec lors de l'ajout d'un verrou. Le serveur LDAP répond '%s'."
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
+msgstr "Fermer"
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "La suppression de la queue téléphonique à échoué"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
+msgstr "Bouger les groupes dans le groupe configuré"
 
-#: include/functions.inc:691 include/functions.inc:736
-#, php-format
-msgid "Cannot get locking information from LDAP tree!"
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
+"Ce dialogue permet de bouger un couple de groupes dans le groupe configuré. "
+"Exécuter cela peut améliorer votre service LDAP."
 
-#: include/functions.inc:699
+#: setup/setup_migrate.tpl:91
 #, fuzzy
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
-"Détection de verrou multiple pour un même objet. Ceci ne devrait pas être "
-"possible. Effacement des références multiples."
-
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "La taille limite de %d entrées est dépassée !"
+"Soyez prudent avec cette opération ! Il peut exister des références qui "
+"pointent vers ces utilisateurs. Le programme d'installation de GOsa ne peut "
+"pas migrer ces références, vous préférerez peut être annuler la migration "
+"dans ce cas."
 
-#: include/functions.inc:998
-#, 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 me montrer ce message si la limite est "
-"toujours dépassée"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr "Bouger les groupes sélectionnés dans le groupe de base cet annuaire"
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Configurer"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+msgid "Hide changes"
+msgstr "Camoufler les changements"
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "incomplet"
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+msgid "Show changes"
+msgstr "Montrer les changements"
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "Erreur LDAP :"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
+msgstr "Bouger les utilisateurs dans la branche utilisateur configurée"
 
-#: include/functions.inc:1254
+#: setup/setup_migrate.tpl:142
 msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
-"Des problèmes avec le serveur LDAP on probablement provoqué la perte des "
-"changements. Veuillez vérifier votre serveur LDAP et ressayer."
+"Ce dialogue permet de bouger un ensemble d'utilisateurs dans la branche "
+"utilisateur configurée. Exécuter cette opération peut améliorer votre "
+"service LDAP."
 
-#: include/functions.inc:1260
+#: setup/setup_migrate.tpl:145
 msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
-"Veuillez vérifier vos données et corriger l'erreur. Cliquez sur 'OK' pour "
-"fermer cette fenètre."
+"Soyez prudent avec cette opération ! Il peut exister des références qui "
+"pointent vers ces utilisateurs. Le programme d'installation de GOsa ne peut "
+"pas migrer ces références, vous préférerez peut être annuler la migration "
+"dans ce cas."
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr "Continuer malgré tout"
+#: setup/setup_migrate.tpl:148
+msgid "Move selected users into this people tree"
+msgstr "Bouger les utilisateurs sélectionnés dans la branche utilisateurs."
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr "Éditer malgré tout"
+#: setup/setup_migrate.tpl:198
+msgid "Next"
+msgstr "Suivant"
 
-#: include/functions.inc:1329
-#, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Vous êtes sur le point de coller l'entrée %s."
+#: setup/setup_migrate.tpl:199
+msgid "Abort"
+msgstr "Annuler"
 
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr "Entrées par page"
+#: setup/setup_migrate.tpl:201
+msgid "Create a new GOsa administrator account"
+msgstr "Créer un nouveau compte administrateur pour GOsa"
 
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr "Appliquer le filtre"
-
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "Version de développement de GOsa (Rev %s)"
-
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
-msgstr ""
-
-#: include/functions.inc:1950 include/functions.inc:1970
-#, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "Impossible d'écrire le fichier csv '%s'."
-
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-#, fuzzy
-msgid "'base_hook' is not available. Using default base."
+#: setup/setup_migrate.tpl:204
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
-"Attention - base_hook n'est pas disponible. Utilisation de la base par "
-"défaut."
+"Ce dialogue vas automatiquement créer un nouveau super utilisateur dans "
+"votre arbre LDAP."
 
-#: include/functions.inc:2244
-#, fuzzy
-msgid "LDAP warning"
-msgstr "Gérer l'annuaire"
+#: setup/setup_migrate.tpl:233
+msgid "Password (again)"
+msgstr "Mot de passe (de nouveau)"
 
-#: include/functions.inc:2244
+#: setup/setup_migrate.tpl:258
 #, fuzzy
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr ""
-"Impossible de récupérer les informations sur les schémas. Vérification des "
-"schémas impossibles !"
-
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
-msgstr "Utilisé pour stocker les informations spécifiques des comptes."
-
-#: include/functions.inc:2277
 msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
-"Utilisé pour verrouiller les entrées actuellement modifiées afin d'éviter de "
-"multiples changements simultanés."
+"Les département listés sont actuellement invisibles dans l'interface "
+"utilisateur de GOsa. Si vous voulez changer cela pour un certain nombre "
+"d'entrée, sélectionnez les et utilisez le bouton migration ci dessous."
 
-#: include/functions.inc:2320
-#, php-format
-msgid "Missing required object class '%s'!"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 "
+"fichier LDIF."
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
-msgstr ""
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+msgid "Current"
+msgstr "Actuel"
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
-msgstr ""
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+msgid "After migration"
+msgstr "Après migration"
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
+"Les utilisateurs listés sont actuellement invisibles dans l'interface "
+"utilisateur de GOsa. Si vous voulez changer ceci pour un ensemble "
+"d'utilisateurs, veuillez les sélectionner et utiliser le bouton 'migration' "
+"ci dessous."
 
-#: include/functions.inc:2334
-#, php-format
-msgid "Class(es) available"
-msgstr "Classe(s) disponible(s)"
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+msgid "GOsa settings 3/3"
+msgstr "Paramètres de GOsa 3/3"
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
-msgstr ""
-"Vous avez activé l'option rfc2307bis dans votre option 'configuration du "
-"serveur ldap' lors de l'installation, mais la configuration de vos schéma ne "
-"supportent pas cette option."
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
+msgstr "Customiser certains paramètres essentiels de GOsa"
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
-"Pour pouvoir utiliser des groupes conformes à la norme rfc2307bis, "
-"l'objectClass 'posixGroup' doit être       AUXILIARY"
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
+msgstr "La durée de la session doit être une valeur numérique."
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
-msgstr ""
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "Le temps maximumpour une requête ldap doit être une valeur numérique."
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
-msgstr "L'objectClass 'posixGroup' doit être STRUCTURAL"
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+msgid "LDAP inspection"
+msgstr "Vérification de l'annuaire LDAP"
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Allemand"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
+msgstr "Analyse de votre annuaire LDAP pour la compatibilité avec GOsa"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Français"
+#: setup/class_setupStep_Migrate.inc:113
+msgid "Checking for root object"
+msgstr "Recherche de l'objet racine"
 
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "Italien"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
+msgstr "Vérification des permissions sur l'annuaire LDAP"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Espagnol"
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Vérification des départements invisibles"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Anglais"
+#: setup/class_setupStep_Migrate.inc:131
+msgid "Checking for invisible users"
+msgstr "Vérification des utilisateurs invisibles"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Hollandais"
+#: setup/class_setupStep_Migrate.inc:137
+msgid "Checking for super administrator"
+msgstr "Vérification du superadministrateur"
 
-#: include/functions.inc:2391
-msgid "Polish"
-msgstr "Polonais"
+#: setup/class_setupStep_Migrate.inc:143
+msgid "Checking for users outside the people tree"
+msgstr "Vérification d'utilisateurs en dehors de la branche people"
 
-#: include/functions.inc:2392
-msgid "Swedish"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:149
+msgid "Checking for groups outside the groups tree"
+msgstr "Vérification des groupes en dehors de la branche groups"
 
-#: include/functions.inc:2393
-msgid "Chinese"
-msgstr "Chinois"
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
+msgstr "Vérification de stations windows en dehors de la branche winstation"
 
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Russe"
+#: setup/class_setupStep_Migrate.inc:161
+msgid "Checking for duplicate uid numbers"
+msgstr "Vérification pour les uid en double"
 
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr ""
-"La modification a échoué du mot de passe à échoué. Le serveur LDAP répond '%"
-"s'."
+#: setup/class_setupStep_Migrate.inc:167
+msgid "Checking for duplicate gid numbers"
+msgstr "Vérification pour les gid en double"
 
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
-msgstr ""
-"La commande '%s', utilisée dans le POSTMODIFY de l'extension '%s' n'existe "
-"pas."
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+msgid "LDAP query failed"
+msgstr "La requête LDAP à échoué"
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr "L'objet racine est probablement manquant."
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:213
+#, php-format
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'uidNumber'."
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
+#: setup/class_setupStep_Migrate.inc:262
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr ""
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'gidNumber'."
+
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Echec"
 
-#: include/class_ldap.inc:579
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
+"J'ai trouvé %s winstations en dehors du département winstation prédéfini '%"
+"s'."
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+msgid "Migrate"
+msgstr "Migrer"
 
-#: include/class_ldap.inc:711
+#: setup/class_setupStep_Migrate.inc:387
 #, 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 "Found %s groups outside the configured tree '%s'."
+msgstr "J'ai trouvé %s groupes en dehors de la branche configurée '%s'."
+
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+msgid "Move"
+msgstr "Bouger"
 
-#: include/class_ldap.inc:713
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "while operating on LDAP server %s"
-msgstr "lors de l'opération sur le serveur LDAP %s"
+msgid "Found %s user(s) outside the configured tree '%s'."
+msgstr "J'ai trouvé %s utilsateur(s) en dehors de la branche configurée '%s'."
 
-#: include/class_ldap.inc:935
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
 msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
-"Ceci n'est pas un DN valide: '%s'. Le fichier d'importation doit commencer "
-"avec 'dn: ...' à la ligne %s"
+"L'utilisateur spécifié '%s' n'a pas l'accès complet à votre annuaire ldap."
 
-#: include/class_ldap.inc:964
+#: setup/class_setupStep_Migrate.inc:597
 #, 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 "
-"votre fichier LDIF à partir de la ligne %s !"
-
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
-msgstr "Préférences utilisateur"
+msgid "Found %s user(s) that will not be visible in GOsa."
+msgstr "J'ai trouvé %s utilisateur(s) qui ne seront pas visibles dans GOsa."
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
-msgstr "Nom de famille"
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "Migrer"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr "Prénom"
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#, fuzzy, php-format
+msgid "Cannot migrate department '%s':"
+msgstr "Aller au département de base"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Identifiant"
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
+msgstr "J'ai trouvé %s département(s) qui ne seront pas visible dans GOsa."
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
-msgstr "Effacer le mot de passe"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
+msgstr "Il n'y a pas d'administrateur GOsa dans votre annuaire LDAP."
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr "Attribuer un nouveau mot de passe"
+#: setup/class_setupStep_Migrate.inc:945
+#, php-format
+msgid "Cannot add ACL for user '%s':"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Image personnelle"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Password error"
+msgstr "Le mot de passe expirera le"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "Image de l'utilisateur"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
+msgstr ""
+"Le mot de passe entré dans le champ nouveau et celui dans le champ "
+"vérification ne concordent pas!"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Suppression de l'image personnelle"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Input error"
+msgstr "Erreur PHP"
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Certificats"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Specify a valid user ID!"
+msgstr "Le nom d'utilisateur est incorrect !"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Certificat standard"
+#: setup/class_setupStep_Migrate.inc:1019
+#, fuzzy, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
+msgstr ""
+"Mettre l'option (FAIstate) pour l'objet '%s' à échoué, la valeur était '%s'."
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Supprimer"
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "Impossible de bouger les utilisateurs vers le département spécifié."
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "Certificat S/MIME"
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
+msgstr "Les stations windows seront bougées depuis"
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "Certificat PKCS12"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+msgid "to"
+msgstr "vers"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Numéro de série du certificat"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
+msgstr "Mise à jour des références suivantes aussi"
 
-#: plugins/personal/generic/class_user.inc:38
-#, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Paramètres supplémentaire de GOsa"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
+msgstr "Les groupes seront bougés depuis"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "féminin"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
+msgstr "Les utilisateurs seront bougés depuis"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "masculin"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
+msgstr "Les références suivantes seront mises à jour"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
+"L'objet LDAP racine est manquant. Il est indispensable pour utiliser votre "
+"annuaire LDAP."
 
-#: plugins/personal/generic/class_user.inc:492
-#, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Veuillez entrer un numéro de série valide"
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+msgid "Try to create root object"
+msgstr "Essai de création de l'objet racine"
 
-#: plugins/personal/generic/class_user.inc:536
-msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
-msgstr ""
-"(Certains types de certificats ne sont pas supportés et peuvent être "
-"affichés comme 'non valides'.)"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
+msgstr "L'objet racine n'a pas pu être crée, vous devrez essayer vous même."
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "Le certificat est valide de %s à %s et est actuellement %s."
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Bouger '%s' vers '%s'"
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "valide"
+#: setup/setup_frame.tpl:12
+msgid "GOsa setup wizard"
+msgstr "Installation de GOsa"
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "invalide"
+#: setup/setup_frame.tpl:19
+msgid "Installation"
+msgstr " "
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "Pas de certificat installé"
+#: setup/setup_frame.tpl:19
+msgid "Steps"
+msgstr "Etapes"
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-#, fuzzy
-msgid "Password method"
-msgstr "Format de stockage des mots de passe"
+#: setup/class_setupStep_Feedback.inc:91
+msgid "UNIX accounts/groups"
+msgstr "Compte / Groupes UNIX"
 
-#: plugins/personal/generic/class_user.inc:575
-#, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "L'application sélectionnée n'est plus disponible."
+#: setup/class_setupStep_Feedback.inc:93
+msgid "Samba management"
+msgstr "Gestion SAMBA"
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
+#: setup/class_setupStep_Feedback.inc:95
+msgid "Mailsystem management"
+msgstr "Gestion de la messagerie"
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Prénom"
+#: setup/class_setupStep_Feedback.inc:97
+msgid "FAX system administration"
+msgstr "Gestion des FAX"
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Page d'accueil"
+#: setup/class_setupStep_Feedback.inc:99
+msgid "Asterisk administration"
+msgstr "Gestion d'asterisk"
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Téléphone"
+#: setup/class_setupStep_Feedback.inc:101
+msgid "System inventory"
+msgstr "Gestion de l'inventaire"
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Feedback.inc:103
+msgid "System-/Configmanagement"
+msgstr "Gestion Système / Configuration"
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "GSM"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Carnet d'adresses"
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Bip"
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+msgid "Notification and feedback"
+msgstr "Notification et retour d'information"
+
+#: setup/class_setupStep_Feedback.inc:112
+msgid "Get notifications or send feedback"
+msgstr "Recevoir des notifications et des retour d'information"
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "Impossible d'ouvrir le certificat demandé !"
+msgid "Setup error"
+msgstr "Erreur PHP"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Unité"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Identifiant du bâtiment"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Travail"
+#: setup/class_setupStep_Feedback.inc:147
+#, fuzzy
+msgid "Cannot send feedback: service temporarily unavailable"
+msgstr ""
+"Erreur lors de l'envoi de votre retour d'information. Le service est "
+"temporairement hors service"
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Dernière distribution"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
+msgstr "L'envoi du retour d'information à réussi"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Lieu de résidence"
+#: setup/class_setupStep_Feedback.inc:179
+msgid "Please specify a valid email address."
+msgstr "Veuillez indiquer une adresse de messagerie valide."
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Description de l'unité"
+#: setup/class_setupStep_Feedback.inc:183
+#, fuzzy
+msgid ""
+"You have to select at least one of both options, subscribe or send feedback."
+msgstr ""
+"Vous devez au moins avoir activé une option, pour souscrire ou envoyer votre "
+"retour d'information."
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Zone de sujet"
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+msgid "License"
+msgstr "licence"
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Fonction"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr "Termes et Conditions d'utilisation"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Visible par tous"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Configuration Samba"
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Rue"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
+msgstr "Générateur de hash samba"
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Rôle"
+#: setup/setup_config2.tpl:31
+msgid "RID base"
+msgstr "Base du RID"
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Code postal"
+#: setup/setup_config2.tpl:46
+msgid "Workstation container"
+msgstr "Branche contenant les stations de travail"
 
-#: plugins/personal/generic/class_user.inc:1432
-msgid "Generic user settings"
-msgstr "Paramètres par défaut des utilisateurs"
+#: setup/setup_config2.tpl:61
+msgid "Samba SID mapping"
+msgstr "Correspondance des SID samba"
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Mon Compte"
+#: setup/setup_config2.tpl:71
+msgid "Timezone"
+msgstr "Fuseau Horaire"
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-msgid "User password"
-msgstr "Mot de passe"
+#: setup/setup_config2.tpl:74
+#, fuzzy
+msgid "Please choose your preferred timezone here"
+msgstr "Veuillez indiquer votre fuseau horaire préféré ici"
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Nom de famille"
+#: setup/setup_config2.tpl:96
+msgid "Additional GOsa settings"
+msgstr "Paramètres supplémentaire de GOsa"
 
-#: plugins/personal/generic/class_user.inc:1445
-msgid "User identification"
-msgstr "Information Utilisateur"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr "Activer le Copier / Coller"
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Titre Personnel"
+#: setup/setup_config2.tpl:112
+#, fuzzy
+msgid "Enable DNS extension"
+msgstr "Extension d'inventaire"
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Titre Universitaire"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "Extension d'inventaire"
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "Adresse postale personnelle"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Gestion des type mime"
 
-#: plugins/personal/generic/class_user.inc:1449
-msgid "Home phone number"
-msgstr "Numéro de téléphone privé"
+#: setup/setup_config2.tpl:148
+msgid "Enable FAI release management"
+msgstr "Activer la gestion des versions FAI"
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Département"
+#: setup/setup_config2.tpl:160
+msgid "Enable user netatalk plugin"
+msgstr "Activer la gestion des comptes Netatalk"
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Date de naissance"
+#: setup/setup_config2.tpl:171
+msgid "Government mode"
+msgstr "Mode Gouvernemental"
 
-#: plugins/personal/generic/class_user.inc:1454
-msgid "Gender"
-msgstr "Sexe"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "Paramètres de messagerie"
 
-#: plugins/personal/generic/class_user.inc:1455
-msgid "Preferred language"
-msgstr "Langue préférée"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "Méthode de messagerie"
 
-#: plugins/personal/generic/class_user.inc:1456
-msgid "Department number"
-msgstr "Numéro du département"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1457
-msgid "Employee number"
-msgstr "Numéro de l'employé"
+#: setup/setup_config2.tpl:214
+msgid "Vacation templates"
+msgstr "Modèles de messages d'absence "
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Type de l'employé"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr "Utiliser Cyrus en mode UNIX"
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Lieu"
+#: setup/setup_config2.tpl:240
+msgid "Snapshots / Undo"
+msgstr "Copie instantanée / Undo"
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Département"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+msgid "Enable snapshots"
+msgstr "Activer la copie instantanée"
 
-#: plugins/personal/generic/class_user.inc:1462
-msgid "Room number"
-msgstr "Numéro du bureau"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+msgid "Snapshot base"
+msgstr "Base pour les snapshots"
 
-#: plugins/personal/generic/class_user.inc:1463
-msgid "Telefon number"
-msgstr "Numéro de téléphone"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr "Souscrire à la liste de discutions gosa-announce"
 
-#: plugins/personal/generic/class_user.inc:1464
-msgid "Mobile number"
-msgstr "Numéro de GSM"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
+"Quand vous cochez cette option, GOsa essayera de se connecter a http://oss."
+"gonicus.de afin de vous inscrire à la liste de discutions gosa-announce. "
+"Vous devrez confirmer cette inscription par email."
 
-#: plugins/personal/generic/class_user.inc:1465
-msgid "Pager number"
-msgstr "Numéro de page"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "Adresse de messagerie"
 
-#: plugins/personal/generic/class_user.inc:1466
-msgid "User certificates"
-msgstr "Certificats utilisateurs"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr "Envoyer vos commentaire au membres du projet Gosa"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "Adresse postale"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
+"Quand vous cocher cette option, GOsa essayera de se connecter à http://oss."
+"gonicus.de pour pouvoir transmettre votre réponse de manière anonyme."
 
-#: plugins/personal/generic/class_user.inc:1469
-msgid "Fax number"
-msgstr "Numéro de fax"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr "Est ce que la procédure d'installation vous à aidé ?"
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr "Si non, quels sont les problèmes que vous avez rencontrés"
+
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr "Est ce la première fois que vous utilisez GOsa ?"
+
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr "Je l'utilise depuis "
+
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr "Veuillez sélectionner l'année depuis laquelle vous utilisez GOsa"
+
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr "Quel système d'exploitation / distribution utilisez vous ?"
+
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr "Quel serveur web utilisez vous ?"
+
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr "Quelle version de php utilisez vous ?"
+
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
+
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr "Quel type de serveur(s) ldap utilisez vous ?"
+
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr "Combien d'objet sont dans votre annuaire LDAP ?"
+
+#: setup/setup_feedback.tpl:123
+msgid "Features"
+msgstr "Fonctionalités"
+
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr "Quel fonctionnalités de GOsa utilisez vous ?"
+
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
+"Quelle fonctionnalités voulez vous voir dans les prochaines versions de "
+"GOsa ?"
+
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr "Envoyer vos réponses"
+
+#: setup/setup_schema.tpl:3
+msgid "Schema specific settings"
+msgstr "Paramètres spécifiques des schémas"
+
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr "Activer la validation des schéma lors de la connexion"
+
+#: setup/setup_schema.tpl:16
+msgid "Check status"
+msgstr "Vérifier les statuts"
+
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr "La vérification des schéma à réussi"
+
+#: setup/setup_schema.tpl:23
+msgid "Schema check failed"
+msgstr "La vérification des schéma à échoué"
+
+#: setup/setup_schema.tpl:31
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
 msgstr ""
-"Vous avez sélectionnez une autre méthode de stockage des mots de passe. Pour "
-"cette raison vous devez ressaisir votre mot de passe afin que GOsa puisse le "
-"réencoder et l'enregistrer dans l'annuaire LDAP."
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Confirmation du nouveau mot de passe"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Attribuer le mot de passe"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr "J'ai lu la licence et je l'accepte"
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Informations personnelles"
+#: setup/class_setup.inc:196
+msgid "Completed"
+msgstr "Terminé"
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
-msgstr "Langue préférée"
+#: setup/class_setupStep_Ldap.inc:53
+msgid "LDAP setup"
+msgstr "Configuration LDAP"
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Sélectionnez la branche où sera enregistrée l'utilisateur"
+#: setup/class_setupStep_Ldap.inc:54
+msgid "LDAP connection setup"
+msgstr "Configuration de la connexion LDAP"
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
-msgstr "Sélectionnez une base"
+#: setup/class_setupStep_Ldap.inc:55
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
+msgstr ""
+"Cette boite de dialogue permet d'indiquer la configuration de base LDAP pour "
+"GOsa."
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Adresse"
+#: setup/class_setupStep_Ldap.inc:105
+#, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "La connexion anonyme à échoué sur le serveur '%s'."
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Numéro de téléphone privé"
+#: setup/class_setupStep_Ldap.inc:107
+#, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "la connexion comme l'utilisateur '%s' à échoué sur le serveur '%s'."
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Format de stockage des mots de passe"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "La connexion anonyme sur le serveur '%s' à réussi."
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Editer des certificats"
+#: setup/class_setupStep_Ldap.inc:113
+msgid "Please specify user and password."
+msgstr "Veuillez introduire un utilisateur et un mot de passe."
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Informations sur l'entreprise"
+#: setup/class_setupStep_Ldap.inc:115
+#, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "La connexion comme l'utilisateur '%s' sur le serveur '%s' à réussi."
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "No. du département."
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr "Thèmes et apparences"
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "No. de l'employé."
+#: setup/setup_config1.tpl:6
+msgid "Theme"
+msgstr "Thème"
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "No. de bureau."
+#: setup/setup_config1.tpl:15
+#, fuzzy
+msgid "Apache"
+msgstr "Cache"
+
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
+
+#: setup/setup_config1.tpl:27
+msgid "People and group storage"
+msgstr ""
+"Branches de l'arbre ldap ou sont stockes les utilisateurs et les groupes"
+
+#: setup/setup_config1.tpl:30
+msgid "People DN attribute"
+msgstr "Type d'attribut pour le DN des utilisateurs"
+
+#: setup/setup_config1.tpl:41
+msgid "People storage subtree"
+msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs"
+
+#: setup/setup_config1.tpl:50
+msgid "Group storage subtree"
+msgstr "Branches de l'arbre ldap ou sont stockes les groupes"
+
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr "Inclure le personal title dans le DN de l'utilisateur"
+
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr "Règles de de nommage souples"
+
+#: setup/setup_config1.tpl:81
+msgid "Automatic uids"
+msgstr "Uid automatiques"
+
+#: setup/setup_config1.tpl:113
+msgid "Number base for people/groups"
+msgstr "Nombre de départ pour les utilisateurs/groupes"
+
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr "Connexions pour le nombre de base"
+
+#: setup/setup_config1.tpl:140
+msgid "Password encryption algorithm"
+msgstr "Algorithme de cryptage pour les mots de passe"
+
+#: setup/setup_config1.tpl:151
+msgid "Password restrictions"
+msgstr "Restrictions pour les mot de passe"
+
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr "Taille minimum des mots de passe"
+
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr "Nombre de caractères différents de l'ancien mot de passe"
+
+#: setup/setup_config1.tpl:182
+msgid "Password change hook"
+msgstr "Connexions pour le changement de mot de passe"
+
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr "Utiliser SASL pour kerberos"
+
+#: setup/setup_config1.tpl:209
+msgid "Use account expiration"
+msgstr "Utiliser l'expiration du compte"
+
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
+msgstr ""
+"GOsa supporte différents types de cryptage pour vos mots de passe. "
+"Normalement ceci est ajustable avec des modèles utilisateurs, mais vous "
+"pouvez spécifier ici une méthode qui sera utilisée par défaut."
+
+#: setup/setup_config1.tpl:222
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa agit toujours comme un administrateur et gère les droits (ACLs) en "
+"interne. C'est un procédé utilisé en attendant que les ACI de OpenLDAP "
+"soient finalisées. Pour ces raisons il est nécessaire d'indiquer le DN de "
+"l'administrateur et son mot de passe."
+
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
+msgstr ""
+"Des paramètres basiques du serveur LDAP sont modifiables et affectent "
+"l'endroit où GOsa va enregistrer les utilisateurs et les groupes, incluant "
+"la façon dont vont être créés les comptes. Vérifiez les valeurs suivantes "
+"afin quelles correspondent à vos besoins."
+
+#: setup/setup_config1.tpl:224
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa à un support modulaire des méthodes de messagerie. Ces méthodes "
+"fournissent des interfaces vers les boîtes à messages des utilisateurs ainsi "
+"que la gestion de leurs quotas. Vous pouvez choisir l'extension dummy pour "
+"que GOsa ne touche a rien."
+
+#: setup/setup_language.tpl:3
+msgid "Please select the preferred language"
+msgstr "Veuillez sélectionner la langue par défaut"
+
+#: setup/setup_language.tpl:5
+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 pour GOSa. Automatique "
+"utilisera la langue demandée par le navigateur. Ce paramètre peut être "
+"configuré par utilisateur."
+
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
+msgstr "Veuillez indiquer votre langue préférée ici"
+
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr "Vérification de l'installation"
+
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
+"Vérification de base de la version de PHP et des extensions nécéssaires."
+
+#: setup/class_setupStep_Checks.inc:64
+msgid "Checking PHP version"
+msgstr "Vérification de la version de PHP"
+
+#: setup/class_setupStep_Checks.inc:65
+#, fuzzy, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP doit être à la version %s / %s ou supérieure."
+
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
+"GOsa nécessite des fonctionnalités qui ne sont pas disponibles (ou "
+"défectueuses) dans d'anciennes versions de PHP. Veuillez mettre à jour PHP "
+"vers un version supportée."
+
+#: setup/class_setupStep_Checks.inc:72
+msgid "Checking for LDAP support"
+msgstr "Vérification du support LDAP"
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
-msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
+#: setup/class_setupStep_Checks.inc:73
+msgid "This is the main extension used by GOsa and therefore really required."
 msgstr ""
-"Le mot de passe entrée dans le champ 'Nouveau mot de passe' et celui dans le "
-"champ 'Répéter le nouveau mot de passe' ne concordent pas."
+"Ce module est le module de base utilisé par GOsa et est donc indispensable."
 
-#: plugins/personal/generic/main.inc:104
+#: setup/class_setupStep_Checks.inc:74
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
+msgstr ""
+"L'extension ldap (php4-ldap/php5-ldap) est nécessaire pour communiquer avec "
+"votre serveur LDAP."
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Editer"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Vérification du support gettext"
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Information générales sur l'utilisateur"
+#: setup/class_setupStep_Checks.inc:81
+msgid "Gettext support is required for internationalization."
+msgstr "Gettext est requis afin que GOsa soit multilingue."
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Changer la photo"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr "Veuillez vous assurer que cette extension est activée."
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Vérification du support iconv"
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
-msgstr "Nom du modèle"
+#: setup/class_setupStep_Checks.inc:89
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr ""
+"Ce module est utilisé par GOsa pour convertir les options samba munged dial, "
+"il est indispensable."
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Sexe"
+#: setup/class_setupStep_Checks.inc:96
+msgid "Checking for mhash support"
+msgstr "Vérification du support mhash"
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Veuillez utiliser l'onglet téléphone"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr "Ce module est nécessaire pour l'utilisation de l'encryption SSHA"
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
-msgstr "Le changement du mot de passe n'est pas autorisé"
+#: setup/class_setupStep_Checks.inc:98
+#, fuzzy
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
+"L'extension mhash pour php4 / php5 n'est pas disponible. Veuillez installer "
+"php4-mhash / php5-mhash."
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
-msgstr "Vous n'êtes pas autorisé à modifier votre mot de passe en ce moment"
+#: setup/class_setupStep_Checks.inc:104
+msgid "Checking for IMAP support"
+msgstr "Vérification du support IMAP"
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/class_setupStep_Checks.inc:105
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
 msgstr ""
-"Votre mot de passe a été changé. N'oubliez pas de modifier les programmes "
-"qui l'utilisent."
+"L'extension IMAP est nécessaire pour communiquer avec un serveur IMAP. GOsa  "
+"récupère des informations de statuts, crée et supprime les comptes de "
+"messagerie des utilisateurs etc..."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/class_setupStep_Checks.inc:106
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Modifier votre mot de passe"
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
+msgstr ""
+"Cette extension est utilisée pour communiquer avec votre serveur de "
+"messagerie. Veuillez installer php4-imap/php5-imap."
 
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "Vous devez spécifier votre mode de passe actuel pour continuer."
+#: setup/class_setupStep_Checks.inc:112
+#, fuzzy
+msgid "Checking for multi byte support"
+msgstr "Vérification du support gettext"
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
 msgstr ""
-"Le mot de passe que vous avez entré comme 'Nouveau mot de passe' est vide."
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
-msgstr "Le nouveau et l'ancien mot de passe sont trop similaires."
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "Le nouveau mot de passe ne comporte pas suffisamment de caractères."
+#: setup/class_setupStep_Checks.inc:120
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Vérification de la fonction getacl dans votre implémentation imap"
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
+#: setup/class_setupStep_Checks.inc:121
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
-"Le programme externe pour changer votre mot de passe à renvoyé une erreur: "
+"Le support de la fonction getacl est requis afin de gérer les permissions "
+"des répertoires partagés. Le module IMAP standard ne peut gérer les acls. "
+"Vous devez installer une version récente de PHP afin d'utiliser cette "
+"fonctionnalité."
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:128
+msgid "Checking for MySQL support"
+msgstr "Vérification du support MySQL"
+
+#: setup/class_setupStep_Checks.inc:129
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
+"MySQL support is needed to communicate with several supported databases."
 msgstr ""
-"Le mot de passe entré comme mot de passe actuel ne correspond pas à votre "
-"mot de passe."
+"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de "
+"données."
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:130
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
+"Cette extension est nécessaire pour communiquer avec le serveur de base de "
+"données (GOfax, asterisk, GLPI, etc.). Veuillez installer php4-mysql/php5-"
+"mysql"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:136
+msgid "Checking for kadm5 support"
+msgstr "Vérification du support kadm5"
+
+#: setup/class_setupStep_Checks.inc:137
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
 msgstr ""
-"Pour changer votre mot de passe, veuillez utiliser les champs ci-dessous. "
-"Les changements prennent effet immédiatement. Veuillez mémoriser le nouveau "
-"mot de passe car sans lui vous ne serez pas capable de vous identifier."
+"Gérer les utilisateurs dans kerberos nécessite le module kadm5 "
+"téléchargeable sur les réseaux PEAR."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:138
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
 msgstr ""
-"Changer le mot de passe affecte votre identification sur la messagerie, le "
-"proxy, samba, et les services unix."
+"Cette extension est nécessaire pour gérer les utilisateurs dans kerberos, "
+"elle est téléchargeable sur les réseaux PEAR."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Effacer les données dans les champs"
+#: setup/class_setupStep_Checks.inc:144
+msgid "Checking for SNMP support"
+msgstr "Vérification du support SNMP"
 
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
-msgstr "Paramètres Posix"
+#: setup/class_setupStep_Checks.inc:145
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
+msgstr ""
+"Le protocole SNMP est nécessaire pour pouvoir obtenir des informations "
+"depuis les clients."
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Répertoire Home"
+#: setup/class_setupStep_Checks.inc:146
+#, fuzzy
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
+msgstr ""
+"Cette extension est nécessaire pour obtenir des informations depuis les "
+"clients. Veuillez installer php4-snmp/php5-snmp."
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "Forcer l'UID/GID"
+#: setup/class_setupStep_Checks.inc:152
+msgid "Checking for CUPS support"
+msgstr "Vérification du support CUPS"
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:153
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"Afin d'obtenir la liste des imprimantes disponibles avec le protocole IPP à "
+"la place des fichiers printcap, vous devez installer l'extension CUPS."
+
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Vérification de l'utilitaire fping"
+
+#: setup/class_setupStep_Checks.inc:163
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"L'utilitaire fping est utilisé dans le cas d'un environnement composé de "
+"clients légers fonctionnant en terminaux."
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:164
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr ""
+"L'utilitaire fping est seulement utilisé dans le cas d'un environnement "
+"composé de clients légers fonctionnant en terminaux."
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "Appartenance au groupe"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr "Génération de mot de passe SAMBA"
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(Attention: NFS ne supporte pas plus de 16 groupes !)"
+#: setup/class_setupStep_Checks.inc:180
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Afin d'utiliser Samba 2/3, vous devez installer des paquets additionnels "
+"prenant en charge le cryptage des mots de passe."
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Sélectionner les groupes à ajouter"
+#: setup/class_setupStep_Checks.inc:181
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Afin d'utiliser Samba 2/3, vous devez installer des librairies perl "
+"additionnelles. Veuillez regarder mkntpasswd."
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Afficher les groupes du département"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
+msgstr "Eteint"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Sélectionner le département où sera effectuée la recherche"
+#: setup/class_setupStep_Checks.inc:192
+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/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Afficher les groupes correspondants"
+#: setup/class_setupStep_Checks.inc:193
+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/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Expression régulière correspondant à des noms de groupe"
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr "PHP utilise cette variable pour effacer des anciennes sessions."
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Afficher les groupes contenant des utilisateurs"
+#: setup/class_setupStep_Checks.inc:202
+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 soient réellement expirées."
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Utilisateur dont on montre les groupes"
+#: setup/class_setupStep_Checks.inc:203
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
+"Cherchez pour 'session.gc_maxlifetime' dans votre php.ini et mettez le à "
+"86400 ou plus haut."
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Search in subtrees"
-msgstr "Chercher dans les sous arbre"
+#: setup/class_setupStep_Checks.inc:211
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr ""
+"Pour pouvoir utiliser GOSa sans problèmes, la variable session.auto_register "
+"doit être a 'Off' dans votre php.ini."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
+#: setup/class_setupStep_Checks.inc:212
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
-"L'utilisateur doit changer son mot de passe lors de sa première connexion"
+"Recherchez la variable session.auto_register  et mettez la à 'Off' dans "
+"votre php.ini."
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "Le mot de passe expirera le"
+#: setup/class_setupStep_Checks.inc:219
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr ""
+"GOsa a besoin au minimum de 32MB de mémoire. Moins que 32MB causera des "
+"erreurs imprévisibles, qui ne seront pas reproductibles ! Augmentez la "
+"mémoire pour les installations plus complexes."
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "UNIX"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
+"Recherchez pour 'memory_limit' dans votre php.ini et mettez le à '32M' or "
+"plus haut."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:227
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
+"Cette option défini la gestion des sorties, mettez cette option à 'Off', "
+"pour améliorer la performance."
 
-#: plugins/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "expire"
+#: setup/class_setupStep_Checks.inc:228
+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/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "temps de grâce activé"
+#: setup/class_setupStep_Checks.inc:235
+msgid "The Execution time should be at least 30 seconds."
+msgstr "Le temps d'exécution doit être au moins de 30 secondes."
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "actif, impossible de changer le mot de passe"
+#: setup/class_setupStep_Checks.inc:236
+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 le à "
+"'30' ou plus."
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "actif, mot de passe expiré"
+#: setup/class_setupStep_Checks.inc:243
+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 a propos du serveur."
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "actif"
+#: setup/class_setupStep_Checks.inc:244
+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/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "non configuré"
+#: setup/class_setupStep_Checks.inc:250
+msgid "On"
+msgstr "Ouvert"
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automatique"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
+"Améliorez la sécurité de votre serveur en mettant magic_quotes_gpc à 'on'. "
+"PHP préfixera tout les guillemets dans les chaînes avec la séquence escape."
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:252
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
 msgstr ""
+"Recherchez l'option 'magic_quotes_gpc' dans votre php.ini et mettez le à "
+"'On'."
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:259
+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/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Environnement"
+#: setup/class_setupStep_Checks.inc:260
+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 hp.ini et "
+"mettez la à 'Off'."
 
-#: plugins/personal/posix/class_posixAccount.inc:465
+#: setup/class_setupStep_Checks.inc:270
+msgid "Configuration writeable"
+msgstr "Le fichier de configuration peut être écrit"
+
+#: setup/class_setupStep_Checks.inc:271
+msgid "The configuration file can't be written"
+msgstr "Le fichier de configuration ne peut pas être écrit"
+
+#: setup/class_setupStep_Checks.inc:272
 #, php-format
-msgid "Password can't be changed up to %s days after last change"
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
-"Les mots de passe ne peuvent être changé qu'après %s jours à compter de la "
-"dernière modification de celui-ci"
+"GOsa lit sa configuration d'un fichier situé dans (%s/%s). Le programme "
+"d'installation peut écrire la configuration directement si le fichier est "
+"permet l'écriture."
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "Le mot de passe doit être changé après %s jours"
+#: setup/setup_config3.tpl:2
+msgid "GOsa core settings"
+msgstr "Paramètres essentiels de GOsa"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
-msgstr ""
-"Désactiver le compte après %s jours d'inactivité après l'expiration du mot "
-"de passe"
+#: setup/setup_config3.tpl:6
+msgid "Disable primary group filter"
+msgstr "Désactiver le filtre sur les groupes primaires"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Avertir l'utilisateur %s jours avant l'expiration de son mot de passe"
+#: setup/setup_config3.tpl:18
+#, fuzzy
+msgid "Display summary in listings"
+msgstr "Afficher les macros correspondantes"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "accès complet"
+#: setup/setup_config3.tpl:30
+msgid "Honour administrative units"
+msgstr "Honorer les entités administratives"
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "permettre l'accès a ces hôtes"
+#: setup/setup_config3.tpl:42
+msgid "Smarty compile directory"
+msgstr "Répertoire de compilation de smarty"
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-#, fuzzy
-msgid "Uid number"
-msgstr "Numéro de fax"
+#: setup/setup_config3.tpl:60
+msgid "Path for PPD storage"
+msgstr "Répertoire pour le stockage des PPD"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
-msgstr ""
+#: setup/setup_config3.tpl:77
+msgid "Path for kiosk profile storage"
+msgstr "Répertoire pour le stockage des profiles kiosk"
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Groupe d'utilisateurs"
+#: setup/setup_config3.tpl:96
+#, fuzzy
+msgid "Enable system deployment"
+msgstr "Déploiement de système en masse"
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
-msgid "shadowMin"
-msgstr ""
+#: setup/setup_config3.tpl:115
+msgid "Mail queue script"
+msgstr "Script pour la gestion de la queue du serveur de messagerie"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-msgid "shadowMax"
-msgstr ""
+#: setup/setup_config3.tpl:134
+msgid "Notification script"
+msgstr "Script de notification"
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
+#: setup/setup_config3.tpl:153
 #, fuzzy
-msgid "shadowWarning"
-msgstr "Avertissement"
+msgid "Enable edit locking"
+msgstr "Activer la vérification antivirus de la messagerie"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr "connexion et session"
+
+#: setup/setup_config3.tpl:175
 #, fuzzy
-msgid "shadowInactive"
-msgstr "actif"
+msgid "Login attribute"
+msgstr "Propriétés du téléphone"
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
-msgstr ""
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr "Force register_globals à être désactivé"
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-msgid "POSIX account"
-msgstr "Compte Posix"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
+msgstr "Force les connexions cryptées"
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:210
+msgid "Warn if session is not encrypted"
+msgstr "Avertir si la session ne sera pas cryptée"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-msgid "Group ID"
-msgstr "ID du Groupe"
+#: setup/setup_config3.tpl:222
+#, fuzzy
+msgid "Remember dialog filter settings"
+msgstr "Paramètres par défaut des utilisateurs"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-msgid "Force password change on login"
-msgstr "Forcer le changement de mot de passe au la connexion"
+#: setup/setup_config3.tpl:234
+msgid "Session lifetime"
+msgstr "Durée de vie de la session"
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
-msgid "Shadow min"
-msgstr ""
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr "Deboguage"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
-msgstr ""
+#: setup/setup_config3.tpl:247
+msgid "Show PHP errors"
+msgstr "Afficher les erreur PHP"
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
-msgid "Shadow warning"
-msgstr ""
+#: setup/setup_config3.tpl:259
+msgid "Maximum LDAP query time"
+msgstr "Durée maximale d'une requête LDAP"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-msgid "Shadow inactive"
-msgstr ""
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr "Inscrit les statistique de l'annuaire LDAP dans les journaux systèmes"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
-msgid "Shadow expire"
-msgstr ""
+#: setup/setup_config3.tpl:289
+msgid "Debug level"
+msgstr "Niveau de débogage"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
-msgid "System trust model"
-msgstr "Système de Confiance"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: plugins/personal/posix/main.inc:131
-#, fuzzy
-msgid "POSIX settings"
-msgstr "Paramètres Posix"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+msgid "Enabled"
+msgstr "Activé"
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Groupe principal"
+#: setup/class_setupStep_Welcome.inc:38
+msgid "Welcome"
+msgstr "Bienvenue"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Statut"
+#: setup/class_setupStep_Welcome.inc:39
+msgid "The welcome message"
+msgstr "Le message d'accueil"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
-#, fuzzy
-msgid "In all groups"
-msgstr "Groupe de messagerie"
+#: setup/class_setupStep_Welcome.inc:40
+msgid "Welcome to GOsa setup wizard"
+msgstr "Bienvenue dans l'installation de GOsa"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
-#, fuzzy
-msgid "Not in all groups"
-msgstr "Afficher les groupes ayant la messagerie activé"
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+msgid "LDAP schema check"
+msgstr "Vérification des schémas LDAP"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Compte"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr "Exécuter des test sur vos schéma LDAP actuels"
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "Système de Confiance"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
+msgstr "Extension PHP et vérification de ceux ci"
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
-msgstr "Mode de confiance"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr "GOsa ne fonctionnera pas si vous ne corriger pas cela."
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Sélectionner les hôtes à ajouter"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
+msgstr "GOsa fonctionnera même si vous ne corrigez pas cela."
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Afficher les systèmes du département"
+#: setup/setup_checks.tpl:67
+msgid "PHP setup configuration"
+msgstr "Configuration de PHP"
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Afficher les systèmes correspondant"
+#: setup/setup_checks.tpl:67
+msgid "show information"
+msgstr "Montrer les informations"
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Expression régulière pour sélectionner les adresses correspondantes"
+#: setup/setup_finish.tpl:3
+msgid "Create your configuration file"
+msgstr "Création du fichier de configuration"
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Créer un nouvel utilisateur à partir d'un modèle"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "Télécharger la configuration"
 
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
-msgstr ""
-"La création d'un nouvel utilisateur peut être facilité en utilisant les "
-"modèles. De nombreuses informations seront ainsi remplies automatiquement. "
-"Sélectionnez 'aucun' afin de ne pas utiliser les modèles."
+#: setup/setup_finish.tpl:18
+msgid "Status: "
+msgstr "Statut: "
+
+#: setup/class_setupStep_Finish.inc:38
+msgid "Write configuration file"
+msgstr "Ecrire le fichier de configuration"
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Modèle"
+#: setup/class_setupStep_Finish.inc:39
+msgid "Finish - write the configuration file"
+msgstr "Fini - écrire le fichier de configuration"
 
-#: plugins/admin/users/password.tpl:4
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
 msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
-"Pour changer le mot de passe des utilisateurs, utilisez le champ ci-dessous. "
-"Les changements prennent effet immédiatement. Veuillez mémoriser le nouveau "
-"mot de passe sinon l'utilisateur ne pourra pas s'identifier sans celui-ci."
-
-#: plugins/admin/users/password.tpl:21
-#, fuzzy
-msgid "Strength"
-msgstr "Rue"
+"Votre fichier de configuration est lisible par tout le monde. Veuillez "
+"modifier les permissions !"
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Liste des utilisateurs"
+#: setup/class_setupStep_Finish.inc:102
+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/users/class_divListUsers.inc:60
+#: setup/class_setupStep_Finish.inc:111
+#, php-format
 msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+"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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
-"Ce menu permet d'ajouter, modifier ou supprimer le ou les utilisateur(s) "
-"sélectionné(s). Si vous avez un grand nombre d'utilisateurs il est conseillé "
-"d'utiliser les filtres."
+"Après avoir placé le fichier dans le répertoire %s, assurez vous que seul le "
+"serveur web puisse lire %s. Vous pouvez exécuter les commandes suivantes "
+"pour réaliser cette opération:"
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Propriétés"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+msgid "GOsa settings 2/3"
+msgstr "Paramètres de GOsa 2/3"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Actions"
+#: setup/class_setupStep_Config2.inc:87
+msgid "Customize special parameters"
+msgstr "Customiser les paramètres spéciaux"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Sélectionnez afin d'afficher les modèles des pseudo utilisateurs"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "Erreur XML dans guide.xml: %s à la ligne %d"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Afficher les modèles"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr "L'aide n'est pas disponible pour cette extension."
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr ""
-"Sélectionnez afin d'afficher les utilisateurs qui ont seulement un objet GOsa"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr "précédent"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Afficher les utilisateurs fonctionnels"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr "suivant"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte posix"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr "%s résultats de votre recherche avec le mot %s "
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Afficher les utilisateurs Unix"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr "%s%% de correspondance dans le fichier %s"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "L'effacement à été interrompu par l'extension '%s': %s"
+
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
 msgstr ""
-"Sélectionnez afin d'afficher les utilisateurs ayant un compte de messagerie"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Afficher les utilisateurs de messagerie"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Références"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte samba"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Afficher les utilisateurs samba"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, fuzzy, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
+"La fonctionnalité pour les copie instantanées est activée, mais la variable "
+"requise '%s' n'est pas configurée dans votre gosa.conf."
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Sélectionnez afin d'afficher les utilisateurs ayant un compte proxy"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr "Changement du dn de l'acl"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Afficher les utilisateurs proxy"
+#: include/class_plugin.inc:1613
+msgid "from"
+msgstr "de"
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "Sélectionner pour chercher dans le sous arbre"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Aller au département de base"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Afficher les utilisateurs correspondants"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Racine"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Soumettre le département"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Monter d'un département"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Modifier le mot de passe"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Aller au département des utilisateurs"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "copier"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Accueil"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "couper"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "Recharger la liste"
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "Modifier les propriétés de base"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+msgid "Restore"
+msgstr "Restaurer"
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr "Restaurer la copie instantanée des objets déjà effacés"
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "Modifier les propriétés UNIX"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr "Restaurer la copie instantanée"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "Modifier les propriétés d'environnement"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create snapshot"
+msgstr "Créer un snapshot"
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Messagerie"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create a new snapshot from this object"
+msgstr "Créer un nouveau snapshot depuis cet objet"
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "Modifier les propriétés de messagerie"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr "Tout les objets dans cette catégorie"
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "Modifier les propriétés téléphoniques"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "Modifier les propriétés fax"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr "Inconnu"
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "Modifier les propriétés samba"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
+"Impossible d'ouvrir le fichier spécifié, vérifiez que celui ci est existant "
+"et/ou accessible"
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr "Impossible de lire le certificat spécifié / ou chaîne vide spécifiée"
+
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
 msgstr ""
+"Impossible de charger le certificat, probablement un format non supporté "
+"(utilisez un format PEM/DER) "
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "Modifier les propriétés de Netatalk"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr "Le format doit être PEM, afin de pouvoir afficher les informations"
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "Créer un nouvel utilisateur depuis un modèle"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "Impossible de créer/ouvrir le fichier"
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "Créer un nouvel utilisateur avec ce modèle"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr "Pas de certificat valide chargé"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "couper"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "Couper cette entrée"
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "Vous êtes sur le point de supprimer le snapshot '%s'."
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "copier"
+#: include/class_SnapShotDialog.inc:135
+msgid "Remove snapshot"
+msgstr "Supprimer le snapshot"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "Copier cette entrée"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr ""
+
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "Erreur XML dans gosa.conf: %s à la ligne %d"
+
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
+#: include/class_config.inc:228
 #, fuzzy
-msgid "Deactivated"
-msgstr "Activé"
+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/admin/users/class_divListUsers.inc:322
-msgid "Active"
-msgstr "Actif"
+#: include/class_config.inc:561
+#, fuzzy
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "SID et/ou RIDBASE absents dans votre configuration !"
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "Editer un utilisateur"
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
+#, fuzzy
+msgid "Internal error"
+msgstr "Serveur de terminaux"
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "mot de passe"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Utilisateur de la base de données des journaux systèmes"
 
-#: plugins/admin/users/class_divListUsers.inc:343
-msgid "You are not allowed to change the password for this user."
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
 msgstr ""
-"Vous n'êtes pas autorisé à modifier le mot de passe de cet utilisateur."
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "Supprimer un utilisateur"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:357
-msgid "You are not allowed to remove this user."
-msgstr "Vous n'êtes pas autorisé à supprimer cet utilisateur."
+#: include/class_log.inc:120
+#, fuzzy, php-format
+msgid "Invalid option '%s' specified."
+msgstr "Type non valide comme opérateur."
 
-#: plugins/admin/users/class_divListUsers.inc:443
+#: include/class_log.inc:124
 #, fuzzy
-msgid "Number of listed users"
-msgstr "Nombre de pages"
+msgid "Specified objectType is empty or invalid"
+msgstr "Le branche spécifiée est invalide."
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
+#: include/class_log.inc:145
 #, fuzzy
-msgid "Number of listed departments"
-msgstr "Nom du département"
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
+msgstr ""
+"Vous avez activé les journaux systèmes vers une base de données mysql, mais "
+"il n'y a pas de serveur disponible."
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "Utilisateurs du domaine"
+#: include/class_log.inc:157
+#, fuzzy, php-format
+msgid "Cannot connect to logging server '%s'."
+msgstr "Impossible de se connecter au serveur de journaux systèmes %s."
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "En bas"
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr ""
+"Impossible de sélectionner la base de données '%s' située sur le serveur '%"
+"s'."
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_log.inc:181
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
-#, fuzzy
-msgid "Password change failed."
-msgstr "Le changement du mot de passe n'est pas autorisé"
+#: include/class_log.inc:218
+#, php-format
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
+#: include/class_log.inc:241
+#, fuzzy, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
 msgstr ""
-"Vous n'êtes pas autorisé à indiquer un mot de passe pour cet utilisateur!"
+"Impossible de sélectionner la base de données '%s' située sur le serveur '%"
+"s'."
 
-#: plugins/admin/users/class_userManagement.inc:456
-#, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Vous êtes sur le point de supprimer l'entrée: %s."
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
+"La création de cette page à occasionné des erreurs d'après l'interpréteur "
+"PHP !"
 
-#: plugins/admin/users/class_userManagement.inc:458
-#, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Vous êtes sur le point de supprimer les entrées: %s"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr "Envoyer vos commentaires au membres du projet Gosa"
 
-#: plugins/admin/users/class_userManagement.inc:460
-#, fuzzy
-msgid "Delete users"
-msgstr "Supprimer un utilisateur"
+#: include/php_setup.inc:96
+msgid "Send bugreport"
+msgstr "Envoyer un rapport de bug"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-#, fuzzy
-msgid "User delete"
-msgstr "supprimer"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr "Afficher/Cacher l'information"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "Vous n'êtes pas autorisé à supprimer l'utilisateur '%s'!"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "Erreur PHP"
 
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "Vous êtes sur le point de supprimer l'utilisateur %s."
+#: include/php_setup.inc:130
+msgid "class"
+msgstr "classe"
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "supprimer"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "fonction"
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User successfully removed."
-msgstr "L'envoi du retour d'information à réussi"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "statique"
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "Vous n'êtes pas autorisé à supprimer cet utilisateur!"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "méthode"
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "aucun"
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr "Trace"
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
-msgstr ""
-"Cela inclut toutes les données des comptes, les droits d'accès, la "
-"configuration imap,etc. pour cet utilisateur. Veuillez vous assurez que vous "
-"voulez effectuez cette opération étant donné qu'il est impossible pour GOsa "
-"de récupérer vos données."
+#: include/php_setup.inc:179
+msgid "File"
+msgstr "Fichier"
+
+#: include/php_setup.inc:179
+msgid "Line"
+msgstr "Ligne"
+
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Type"
+
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "Arguments"
+
+#: include/class_acl.inc:26
+msgid "Access control"
+msgstr "Contrôle d'accès"
+
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
+msgstr "Utiliser l'ACL définie dans le rôle"
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Administration des utilisateurs"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+msgid "Show/Hide Advanced Settings"
+msgstr "Afficher/Cacher la configuration avancée"
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
-msgstr "Préférences des groupes"
+#: include/class_acl.inc:690
+msgid "Create objects"
+msgstr "Créer un objet"
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Nom du groupe"
+#: include/class_acl.inc:691
+msgid "Move objects"
+msgstr "Bouger un objet"
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "Nom posix du groupe"
+#: include/class_acl.inc:692
+msgid "Remove objects"
+msgstr "Enlever les objets"
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr ""
-"Normalement les IDs sont générés automatiquement, vous pouvez en spécifier "
-"un manuellement"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr "Modifiable par le propriétaire"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "Forcer le GID"
+#: include/class_acl.inc:697
+msgid "Move object"
+msgstr "Bouger un objet"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Forcer le numéro d'ID"
+#: include/class_acl.inc:698
+msgid "Remove object"
+msgstr "Enlever un objet"
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Sélectionnez les utilisateurs à ajouter"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "lecture"
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Sélectionnez pour voir les serveurs"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "écrire"
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
-msgstr "Chercher dans le sous arbre"
+#: include/class_acl.inc:710
+msgid "Complete object"
+msgstr "L'objet au complet"
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Afficher les utilisateurs du département"
+#: include/class_acl.inc:826
+#, php-format
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgstr "Type d'ACL inconnu '%s'. je ne sais pas comment l'utiliser."
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "Expression régulière concordant avec les noms des utilisateurs"
+#: include/class_acl.inc:869
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Entrée inconnue '%s'  !"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr ""
-"Impossible de trouver le SID de ce groupe dans l'annuaire LDAP ou dans le "
-"fichier de configuration!"
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, php-format
+msgid "Role: %s"
+msgstr "Rôle : %s"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Ce 'dn' n'est pas un groupe."
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
+msgstr "Rôle inconnu, probablement enlevé"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Groupe Samba"
+#: include/class_acl.inc:939
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Contient les paramètres pour ces objets: %s"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Administrateurs du domaine"
+#: include/class_acl.inc:948
+msgid "Members:"
+msgstr "Membres:"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Utilisateurs du domaine"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr "ACL valide pour tout les utilisateurs"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Invités du domaine"
+#: include/class_acl.inc:1115
+msgid "Access control list"
+msgstr "Contrôle d'accès (ACL)"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "Groupe spécial (%d)"
+#: include/class_acl.inc:1123
+msgid "Role name"
+msgstr "Nom du rôle"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "! identifiant inconnu"
+#: include/class_acl.inc:1124
+msgid "Role description"
+msgstr "Description du rôle"
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
-#, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
-msgstr ""
+#: include/class_msg_dialog.inc:122
+#, fuzzy
+msgid "Please fix the above error and reload the page."
+msgstr "Veuillez regarder les journaux systèmes de GOsa."
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
 #, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "Impossible de lire ou écrire le fichier csv '%s'."
+
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
 msgstr "Impossible de lire le fichier csv '%s'."
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
+#: include/class_hostActionQueue.inc:80
 #, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
+msgid "Can't read gotomasses storage file '%s'."
 msgstr "Impossible de lire le fichier csv '%s'."
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
+#: include/class_hostActionQueue.inc:143
 #, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "Trop d'utilisateurs, impossible d'assigner un ID libre !"
-
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-msgid "Generic group settings"
-msgstr "Préférences des groupes génériques"
-
-#: plugins/admin/groups/class_groupGeneric.inc:1027
-msgid "Phone pickup group"
-msgstr "Groupe téléphonique"
-
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-msgid "Nagios group"
-msgstr "Groupe Nagios"
-
-#: plugins/admin/groups/class_groupGeneric.inc:1031
-msgid "Group member"
-msgstr "Membre du groupe"
+msgid "GOsa infrastructure"
+msgstr "Fenêtre de connexion GOsa"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
-msgid "Samba group type"
-msgstr "Groupe Samba"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
-msgid "Samba domain name"
-msgstr "Domaine Samba"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Impossible d'écrire le fichier csv '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Liste des groupes"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_hostActionQueue.inc:277
+#, php-format
+msgid "Entry with id '%s' not found."
 msgstr ""
-"Ce menu permet d'ajouter, de modifier ou de supprimer les groupes "
-"sélectionnés. Vous pouvez utiliser les différents filtres lorsque vous "
-"travaillez avec un nombre élevé de groupes."
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "Nom du Groupe / Département"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
 msgstr ""
-"Sélectionnez afin d'afficher les groupes qui sont les groupes principaux "
-"d'utilisateurs"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Afficher les groupes de base"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, fuzzy, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr "Le paquet '%s' n'existe pas."
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Sélectionnez afin d'afficher les groupes qui ont des attributs Samba"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Afficher les groupes Samba"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
 msgstr ""
-"Sélectionnez afin d'afficher les groupes ayant des applications configurées"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Afficher les groupes applications"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "Sélectionnez afin d'afficher les groupes ayant la messagerie activée"
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Afficher les groupes ayant la messagerie activé"
+#: include/functions.inc:318
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr ""
+"FATAL: Erreur lors de la connexion au serveur LDAP. Le serveur à répondu '%"
+"s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
+#: include/functions.inc:380
+#, fuzzy
+msgid "Username / UID is not unique inside the LDAP tree!"
 msgstr ""
-"Sélectionnez afin d'afficher les groupes normaux ayant uniquement un aspect "
-"fonctionnel"
+"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base "
+"de données LDAP."
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Afficher les groupes fonctionnels"
+#: include/functions.inc:450
+#, fuzzy
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr ""
+"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base "
+"de données LDAP."
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Groupes"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Applications"
+#: include/functions.inc:605
+#, fuzzy, 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 vérifier l'entrée 'config' dans gosa.conf !"
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Editer cette entrée"
+#: include/functions.inc:605 include/functions.inc:620
+#, fuzzy, php-format
+msgid "LDAP server returned: %s"
+msgstr "Serveur LDAP"
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Supprimer cette entrée"
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "Echec lors de l'ajout d'un verrou. Le serveur LDAP répond '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:360
+#: include/functions.inc:699
 #, fuzzy
-msgid "Number of listed groups"
-msgstr "Nom du groupe"
-
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
+"Détection de verrou multiple pour un même objet. Ceci ne devrait pas être "
+"possible. Effacement des références multiples."
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/functions.inc:996
 #, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Vous êtes sur le point de supprimer l'entrée %s."
+msgid "The size limit of %d entries is exceed!"
+msgstr "La taille limite de %d entrées est dépassée !"
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:998
 #, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Vous êtes sur le point de supprimer les entrées %s"
+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 me montrer ce message si la limite est "
+"toujours dépassée"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "Permissions"
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "incomplet"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "Erreur LDAP :"
 
-#: plugins/admin/groups/class_groupManagement.inc:434
-#, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "Vous êtes sur le point de supprimer le groupe '%s'."
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+"Des problèmes avec le serveur LDAP on probablement provoqué la perte des "
+"changements. Veuillez vérifier votre serveur LDAP et ressayer."
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:1260
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
 msgstr ""
-"Ce groupe est un groupe principal contenant des utilisateurs. Veuillez vous "
-"assurez que vous voulez bien exécuter cette action étant donné qu'il est "
-"impossible pour GOsa de récupérer vos données."
+"Veuillez vérifier vos données et corriger l'erreur. Cliquez sur 'OK' pour "
+"fermer cette fenètre."
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Administration du groupe"
+#: include/functions.inc:1325
+msgid "Continue anyway"
+msgstr "Continuer malgré tout"
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Description du groupe"
+#: include/functions.inc:1327
+msgid "Edit anyway"
+msgstr "Éditer malgré tout"
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Sélectionnez la branche où sera placée le groupe"
+#: include/functions.inc:1329
+#, fuzzy, php-format
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "Vous êtes sur le point de coller l'entrée %s."
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Sélectionnez afin de créer un groupe samba"
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr "Entrées par page"
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "dans le domaine"
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr "Appliquer le filtre"
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "Les membres sont dans un groupe téléphonique"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
-msgstr "Les membres sont dans un groupe nagios"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "Version de développement de GOsa (Rev %s)"
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Membre du groupe"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-msgid "ACL Templates"
-msgstr "Modèles des ACL"
+#: include/functions.inc:1950 include/functions.inc:1970
+#, fuzzy
+msgid "Cannot write to revision file!"
+msgstr "Impossible d'écrire le fichier csv '%s'."
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+#, fuzzy
+msgid "'base_hook' is not available. Using default base."
 msgstr ""
+"Attention - base_hook n'est pas disponible. Utilisation de la base par "
+"défaut."
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-msgid "ACLs"
-msgstr "ACLs"
-
-#: plugins/admin/acl/class_aclManagement.inc:163
+#: include/functions.inc:2244
 #, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+msgid "LDAP warning"
+msgstr "Gérer l'annuaire"
 
-#: plugins/admin/acl/class_aclManagement.inc:200
+#: include/functions.inc:2244
 #, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr ""
+"Impossible de récupérer les informations sur les schémas. Vérification des "
+"schémas impossibles !"
+
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr "Utilisé pour stocker les informations spécifiques des comptes."
+
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
+"Utilisé pour verrouiller les entrées actuellement modifiées afin d'éviter de "
+"multiples changements simultanés."
+
+#: include/functions.inc:2320
+#, php-format
+msgid "Missing required object class '%s'!"
+msgstr ""
+
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:2328
 #, php-format
-msgid "You're about to delete the acl %s."
-msgstr "Vous êtes sur le point de supprimer l'acl '%s'."
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:51
-msgid "List of acl"
-msgstr "Liste des acl"
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:52
-msgid "List of acls"
-msgstr "Liste des acls"
+#: include/functions.inc:2334
+#, php-format
+msgid "Class(es) available"
+msgstr "Classe(s) disponible(s)"
 
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
-msgstr "Ce menu vous permet d'éditer et d'effacer des acl sélectionnées."
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
+msgstr ""
+"Vous avez activé l'option rfc2307bis dans votre option 'configuration du "
+"serveur ldap' lors de l'installation, mais la configuration de vos schéma ne "
+"supportent pas cette option."
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "Sommaire"
+#: include/functions.inc:2357
+msgid ""
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
+msgstr ""
+"Pour pouvoir utiliser des groupes conformes à la norme rfc2307bis, "
+"l'objectClass 'posixGroup' doit être       AUXILIARY"
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "Ignorer les sous arbres"
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
-msgid "Display acls matching"
-msgstr "Afficher les acls correspondantes"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr "L'objectClass 'posixGroup' doit être STRUCTURAL"
 
-#: plugins/admin/acl/class_divListACL.inc:244
-msgid "Edit acl role"
-msgstr "Editer un rôle acl"
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Allemand"
 
-#: plugins/admin/acl/class_divListACL.inc:254
-msgid "Delete acl role"
-msgstr "Supprimer un rôle acl"
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Français"
 
-#: plugins/admin/acl/class_divListACL.inc:266
-msgid "Edit acl"
-msgstr "Editer un acl"
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "Italien"
 
-#: plugins/admin/acl/class_divListACL.inc:270
-msgid "Delete acl"
-msgstr "Effacer un acl"
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Espagnol"
 
-#: plugins/admin/acl/class_aclRole.inc:26
-msgid "Access control list templates"
-msgstr "Liste des modèles de contrôle d'accès"
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Anglais"
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "Rôles ACL"
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Hollandais"
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "Nom de l'objet"
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr "Polonais"
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+#: include/functions.inc:2392
+msgid "Swedish"
 msgstr ""
-"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects  "
-"suivants %s utilisent ce rôle"
 
-#: plugins/admin/acl/class_aclRole.inc:700
-msgid "Acl roles"
-msgstr "Rôles ACL"
+#: include/functions.inc:2393
+msgid "Chinese"
+msgstr "Chinois"
 
-#: plugins/admin/acl/remove.tpl:6
-msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"Cela inclut tout les systèmes et les informations de configuration. Veuillez "
-"vérifier que vous voulez effectuer cette opération étant donné qu'il est "
-"impossible pour GOsa de récupérer vos données."
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Russe"
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2562
+#, php-format
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
 msgstr ""
-"Il est conseillé de sauvegarder l'arbre de votre annuaire LDAP dans un "
-"fichier avant de réaliser cette action. Appuyez sur 'Supprimer' pour "
-"continuer ou 'Annuler' pour abandonner."
-
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-msgid "ACL management"
-msgstr "Gestion des ACL"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "Le champ obligatoire 'Nom' n'est pas rempli."
-
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "Le champ obligatoire 'Description' n'est pas rempli."
+"La commande '%s', utilisée dans le POSTMODIFY de l'extension '%s' n'existe "
+"pas."
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Serveur de terminaux"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-#, fuzzy
-msgid "Cannot find an unused tag for this administrative unit!"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
 msgstr ""
-"Erreur fatale: Impossible de trouver un marqueur libre pour marquer l'entité "
-"administrative !"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
 #, php-format
-msgid "Tagging '%s'."
-msgstr "Marquer '%s'."
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
+#: include/class_ldap.inc:592
 #, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "Bouger '%s' vers '%s'"
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
+#: include/class_ldap.inc:640
 #, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "Impossible de copier %s, arrêt de l'opération"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Départements"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "Pays"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Téléphone"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "Nom du département"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Catégorie"
-
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "Paramètres administratifs"
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:724
 #, php-format
-msgid "Object '%s' is already tagged"
-msgstr "L'objet '%s' est déjà marqué"
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "lors de l'opération sur '%s' en utilisant le serveur LDAP '%s'"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:726
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
-msgstr "Ajouter une marque (%s) à l'objet '%s'"
+msgid "while operating on LDAP server %s"
+msgstr "lors de l'opération sur le serveur LDAP %s"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:948
 #, php-format
-msgid "Removing tag from object '%s'"
-msgstr "Suppression de la marque de l'objet '%s'"
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
+msgstr ""
+"Ceci n'est pas un DN valide: '%s'. Le fichier d'importation doit commencer "
+"avec 'dn: ...' à la ligne %s"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-msgid "You are currently moving/renaming this department."
-msgstr "Vous êtes occupé à bouger/renommer ce département."
+#: include/class_ldap.inc:977
+#, 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 "
+"votre fichier LDIF à partir de la ligne %s !"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
-"La modification de l'attribut 'ou' ou la base d'un département peut "
-"corrompre les entrées acls et snapshot pour tout les objets."
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
-msgstr "GOsa ne PEUT PAS encore corriger ceci pour vous."
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:158
+#, fuzzy, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
-"Avant de confirmer cette action, vérifiez que tout se passera comme prévu, "
-"la meilleure solution est probablement une sauvegarde."
+"L'objet '%s' n'est pas un objet ldap valide, veuillez vérifier les méthodes "
+"copier & coller."
 
-#: plugins/admin/departments/tabs_department.inc:54
-#, fuzzy
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
-"Impossible de bouger l'arbre. L'arbre de destination est un sous arbre de "
-"l'arbre à bouger."
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
-msgstr "Opération en cours"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
-"Votre navigateur ne supporte pas les iframes, veuillez utiliser ce lien pour "
-"effectuer l'opération demandée."
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Liste des départements"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "Impossible de lire le fichier '%s'."
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
-msgstr ""
-"Ce menu vous permet de d'ajouter, supprimer et éditer les départements "
-"sélectionnés. Si vous avez un grand nombre de départements il est conseillé "
-"d'utiliser les filtres."
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Vous êtes sur le point de coller l'entrée %s."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Expression régulière pour faire correspondre les départements"
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Vous êtes sur le point de coller l'entrée %s."
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "département"
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
+msgstr "Impossible de coller"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:14
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Départements"
+msgid "You have no permission to delete this object!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr ""
-"Vous êtes sur le point de supprimer la branche complète de l'annuaire LDAP "
-"placé sous '%s'."
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#, fuzzy
+msgid "You have no permission to delete the object:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"Ceci inclus tous les comptes systèmes, etc... dans cette branche. Veuillez "
-"vérifier si vous voulez réaliser cette opération étant donné qu'il est "
-"impossible pour GOsa de récupérer vos données."
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Gestion des départements"
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "Nom du département"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "Nom de la branche à créer"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "Description du département"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "Catégorie pour cette branche de l'annuaire"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr ""
-"Sélectionnez la branche de l'annuaire dans laquelle sera placée le "
-"département"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "Lieu où est située cette branche de l'annuaire"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "Lieu de cette branche"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "Vous n'avez pas l'autorisation pour envoyer un message!"
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "Adresse postale de cette branche"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "Numéro de téléphone de base pour cette sous-branche"
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "Numéro de fax de base pour cette sous-branche"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr "Marquer le département comme une entité administrative indépendante"
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
-msgid "Please enter the new object group name"
-msgstr "Veuillez entrer un nouveau nom pour le groupe d'objet"
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+#, fuzzy
+msgid "Connection information"
+msgstr "Informations personnelles"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
-msgstr "Queue téléphonique"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Impossible de se connecter au serveur de base de données !"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
-msgstr "Système"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "Impossible de sélectionner la base de données !"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Périphériques"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Démarrage"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "Impossible de sélectionner la base de données !"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Terminaux"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Le champ 'Fax' contient un numéro invalide."
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
+"La commande '%s', utilisée dans le CHECK de l'extension '%s' n'existe pas."
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "Ce 'dn' n'est pas un groupe objet."
-
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "nombre d'objets différents trop important!"
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "La valeur de l''UID' est trop petite."
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "utilisateurs"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "groupes"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "La valeur de l''UID' est trop petite."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "applications"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr "PHP doit être à la version %s / %s ou supérieure."
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "départements"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "serveurs"
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Une personne ayant cet 'Identifiant' existe déjà dans l'annuaire."
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "stations de travail"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Le champ obligatoire 'Nom' n'est pas rempli."
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Stations Windows"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "terminaux"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "Le champ 'Nom' contient des caractères invalides."
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "téléphones"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "imprimantes"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Le changement du mot de passe n'est pas autorisé"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "et"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Extension d'inventaire"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr "le dn n'existe pas:"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Ajouter"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr "Vous pouvez combiner au maximum deux objets différents !"
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Ajouter"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-msgid "Object group generic"
-msgstr "Groupes d'objets"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Supprimer"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Groupes d'objets"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Supprimer"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-msgid "Member"
-msgstr "Membres"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "Activer"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Nom du groupe d'objets"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Editer"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
-#, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "Vous êtes sur le point de supprimer l'entrée %s."
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Editer un utilisateur"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
-#, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "Vous êtes sur le point de supprimer les entrées %s"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "Retour"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "Vous êtes sur le point de supprimer le groupe objet '%s'."
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back %s..."
+msgstr "Editer un utilisateur"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Stations de travail"
+#: include/utils/class_msgPool.inc:298
+#, fuzzy, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Ce compte n'a pas d'extensions GOsa valides."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Station de travail Windows"
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr ""
+"Ce compte possède l'extension posix. Vous pouvez le supprimer en cliquant "
+"sur le bouton ci-dessous."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "Terminal"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
+msgstr ""
+"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
+"préalable supprimer le(s) compte samba / environnement."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Imprimante"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr ""
+"Aucune extension posix n'existe pour ce compte. Vous pouvez en créer une en "
+"cliquant sur le bouton ci-dessous."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "Sélectionnez les objets à ajouter"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
+"préalable supprimer le(s) compte samba / environnement."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "Sélectionner pour voir les départements"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Ce compte possède l'extension unix. Pour le désactiver vous devez au "
+"préalable supprimer le(s) compte samba / environnement."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Montrer les départements"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Paramètres supplémentaire de GOsa"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "Sélectionnez pour voir les comptes GOsa"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Paramètres Posix"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Afficher les utilisateurs"
+#: include/utils/class_msgPool.inc:353
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr ""
+"Cliquez sur le bouton 'Editer' ci-dessous pour changer les informations dans "
+"cette boite de dialogue"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "Sélectionnez pour afficher les groupes GOsa"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Janvier"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Afficher les groupes"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Février"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Sélectionnez pour voir les applications"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Mars"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Afficher les applications"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "Avril"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Afficher les serveurs"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Mai"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "Sélectionnez pour voir les stations de travail"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Juin"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Afficher les stations de travail"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Juillet"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "Sélectionnez pour afficher les terminaux"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Août"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Afficher les terminaux"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "Septembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "Sélectionnez pour afficher les imprimantes"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Octobre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Afficher les imprimantes"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "Novembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "Sélectionnez pour afficher les téléphones"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Décembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Afficher les téléphones"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Nom de famille"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "Afficher les objets du département"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "mois"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "Afficher les objets correspondants"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Wednesday"
+msgstr "Mercredi"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "Expression régulière pour trouver les objets correspondants"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
-msgstr "Liste des groupes d'objets"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
 msgstr ""
-"Ce menu permet d'ajouter, de modifier ou de supprimer les groupes "
-"sélectionnés. Vous pouvez utiliser les différents filtres lorsque vous "
-"travaillez avec un nombre élevé de groupes."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr "Nom du groupe d'objets"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "Options de messagerie"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
-msgstr "Sélectionner pour afficher les groupes contenant des utilisateurs"
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Afficher les groupes contenant des utilisateurs"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "modify operation"
+msgstr "Montrer les informations"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
-msgstr "Sélectionner pour afficher les groupes contenant des groupes"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "delete operation"
+msgstr "Sélectionnez pour voir les stations de travail"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Afficher les groupes contenant des groupes"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "search operation"
+msgstr "Utiliser l'expiration du compte"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr "Sélectionner pour afficher les groupes contenant des applications"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Authentification"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Afficher les groupes contenant des applications"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "La requête LDAP à échoué"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr "Sélectionner pour afficher les groupes contenant des départements"
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "La requête LDAP à échoué"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Afficher les groupes contenant des départements"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
-msgstr "Sélectionner pour afficher les groupes contenant des serveurs"
+#: include/class_multi_plug.inc:362
+#, fuzzy
+msgid "You are currently editing mutliple entries."
+msgstr "Vous êtes occupé à bouger/renommer ce département."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Afficher les groupes contenant des serveurs"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "Le mot de passe expirera le"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
-msgstr ""
-"Sélectionner pour afficher les groupes contenant des stations de travail"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "The user password was resetted, please set a new password value!"
+msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Afficher les groupes contenant des stations de travail"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Paramètre de l'application"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82 html/getxls.php:493
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr ""
-"Sélectionner pour afficher les groupes contenant des stations de travail"
+msgid "Permission denied!"
+msgstr "Permissions"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Afficher les groupes contenant des stations de travail"
+msgid "You are not allowed to create ldap dumps."
+msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr "Sélectionner pour afficher les groupes contenant des terminaux"
+#: html/getldif.php:107
+#, fuzzy
+msgid "Error in ivbb parameter!"
+msgstr "Paramètre du kernel"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Afficher les groupes contenant des terminaux"
+#: html/password.php:58 html/index.php:141
+#, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "Le fichier de configuration %s/%s ne peut être lu. Abandon."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr "Sélectionner pour afficher les groupes contenant des imprimantes"
+#: html/password.php:78
+#, fuzzy
+msgid "Accessibility"
+msgstr "Le fichier de configuration peut être écrit"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
-msgstr "Afficher les groupes contenant des imprimantes"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, 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/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
-msgstr "Sélectionner pour afficher les groupes contenant des téléphones"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr "Erreur: Méthode de changement de mot de passe non disponible!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
-msgstr "Afficher les groupes contenant des téléphones"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Groupes d'objets"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
-msgid "You are not allowed to remove this entry."
-msgstr "Vous n'êtes pas autorisé à supprimer cette entrée"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr ""
+"Le programme externe pour changer votre mot de passe à renvoyé une erreur: "
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "La session ne sera pas cryptée."
+
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "Démarrer une session SSL"
+
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "Nom du groupe d'objets"
+msgid "Smarty"
+msgstr "Sommaire"
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:57
+msgid "Session is not encrypted!"
+msgstr "La session n'est pas cryptée!"
+
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
-"Veuillez vérifier que vous voulez effectuer cette action. Toutes les données "
-"seront perdues étant donné qu'il est impossible pour GOsa de récupérer vos "
-"données."
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Nom du groupe"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "Le fichier de configuration peut être écrit"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Objets membres"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Nom de l'objet"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "Contenu"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Cette objet n'a pas de relation avec d'autres objets."
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "FAX"
+#: html/index.php:282
+#, fuzzy
+msgid "Your ldap setup contains old schema definitions:"
+msgstr ""
+"Votre installation LDAP contient de vieux schémas. Veuillez recommencer "
+"l'installation."
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "Le nom d'utilisateur est incorrect !"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "Veuillez introduire votre mot de passe !"
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "Clients légers"
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Authentification"
+
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
+msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
+msgstr "Compte verouillé. Veuillez contacter votre administrateur système."
+
+#: html/index.php:425
 msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
-"Vous êtes sur la fenêtre principale de GOsa. Vous pouvez sélectionner une "
-"rubrique soit en utilisant le menu de gauche soit en cliquant sur une des "
-"icônes. Tout les changements sont directement appliqués sur les serveurs "
-"LDAP de votre société."
+"Votre navigateur à les cookies désactivées. Veuillez activer les cookies et "
+"recharger cette page avant de vous connecter !"
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
-"Cliquez sur déconnexion, en haut à gauche, pour vous déconnecter, sur "
-"Accueil pour revenir à la page principale."
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "L'équipe de GOsa"
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "Configuration de PHP"
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
-msgstr "Bienvenue %s !"
+#: html/main.php:172
+msgid ""
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
+msgstr ""
+"FATAL: Register globals est activé. GOsa ne permettra pas aux utilisateurs "
+"de se connecter tant que ceci n'est pas corrigé par un administrateur."
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "Le fichier de configuration peut être écrit"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "Le mot de passe expirera le"
+
+#: html/main.php:356
+#, fuzzy
+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"
+
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "dans"
+
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "FATAL: Impossible de trouver une définition pour l'extension '%s' !"
 
 #: html/getxls.php:88
 msgid "Birthday"
@@ -6663,11 +6731,6 @@ msgstr "Liste des utilisateurs de %s sur %s"
 msgid "Computers of %s on %s"
 msgstr "Ordinateurs de %s sur %s"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Permissions"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6685,21 +6748,6 @@ msgstr "Impossible de sélectionner la base de données !"
 msgid "Database query failed!"
 msgstr "Echec des requêtes sur la base de données !"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle."
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Paramètre du kernel"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Paramètre de l'application"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr "Aide"
@@ -6715,173 +6763,71 @@ msgstr ""
 "Le répertoire d'aide '%s' n'est pas accessible, impossible de lire les "
 "fichiers d'aide."
 
-#: html/password.php:58 html/index.php:141
-#, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "Le fichier de configuration %s/%s ne peut être lu. Abandon."
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "Le fichier de configuration peut être écrit"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-"Le répertoire '%s' spécifié comme répertoire de compilation est "
-"inaccessible !"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr "Erreur: Méthode de changement de mot de passe non disponible!"
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe."
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr ""
-"Le programme externe pour changer votre mot de passe à renvoyé une erreur: "
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "La session ne sera pas cryptée."
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "Démarrer une session SSL"
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "Sommaire"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "Configuration de PHP"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-"FATAL: Register globals est activé. GOsa ne permettra pas aux utilisateurs "
-"de se connecter tant que ceci n'est pas corrigé par un administrateur."
-
-#: html/main.php:217
-#, fuzzy
-msgid "Configuration warning"
-msgstr "Le fichier de configuration peut être écrit"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
-
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "Le mot de passe expirera le"
+#~ msgid "User login failed."
+#~ msgstr "Echec de l'authentification. Le serveur LDAP répond '%s'."
 
-#: html/main.php:356
 #, fuzzy
-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"
+#~ msgid "Removing a lock failed."
+#~ msgstr "La suppression de la queue téléphonique à échoué"
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "dans"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "FATAL: Impossible de trouver une définition pour l'extension '%s' !"
-
-#: html/index.php:57
-msgid "Session is not encrypted!"
-msgstr "La session n'est pas cryptée!"
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid "Setting the password failed!"
+#~ msgstr ""
+#~ "La modification a échoué du mot de passe à échoué. Le serveur LDAP répond "
+#~ "'%s'."
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "Le fichier de configuration peut être écrit"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Impossible de se connecter à l'annuaire LDAP. Veuillez contacter "
-"l'administrateur du système."
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Veuillez entrer un numéro de série valide"
 
-#: html/index.php:282
 #, fuzzy
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-"Votre installation LDAP contient de vieux schémas. Veuillez recommencer "
-"l'installation."
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge."
 
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "Le nom d'utilisateur est incorrect !"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "Ce menu permet d'ajouter, modifier ou supprimer le ou les utilisateur(s) "
+#~ "sélectionné(s). Si vous avez un grand nombre d'utilisateurs il est "
+#~ "conseillé d'utiliser les filtres."
 
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "Veuillez introduire votre mot de passe !"
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "Ce menu permet d'ajouter, de modifier ou de supprimer les groupes "
+#~ "sélectionnés. Vous pouvez utiliser les différents filtres lorsque vous "
+#~ "travaillez avec un nombre élevé de groupes."
 
-#: html/index.php:318
-#, fuzzy
-msgid "Authentication error"
-msgstr "Authentification"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr "Ce menu vous permet d'éditer et d'effacer des acl sélectionnées."
 
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "Ce menu vous permet de d'ajouter, supprimer et éditer les départements "
+#~ "sélectionnés. Si vous avez un grand nombre de départements il est "
+#~ "conseillé d'utiliser les filtres."
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr "Compte verouillé. Veuillez contacter votre administrateur système."
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "Ce menu permet d'ajouter, de modifier ou de supprimer les groupes "
+#~ "sélectionnés. Vous pouvez utiliser les différents filtres lorsque vous "
+#~ "travaillez avec un nombre élevé de groupes."
 
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr ""
-"Votre navigateur à les cookies désactivées. Veuillez activer les cookies et "
-"recharger cette page avant de vous connecter !"
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Impossible de se connecter à l'annuaire LDAP. Veuillez contacter "
+#~ "l'administrateur du système."
 
 #~ msgid "Removing of user/generic account with dn '%s' failed."
 #~ msgstr ""
index 1d5172e276b25fdaf02865fd4c12cbb5b39d607f..e7c64483b9ca6975340e27c50ef145757ade9a04 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2005-11-18 15:26+0100\n"
 "Last-Translator: Alessandro Amici <a.amici@bopen.it>\n"
 "Language-Team: Italian\n"
@@ -15,1096 +15,1030 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.9.1\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Rilevato un conflitto di sessione"
 
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Attenzione"
+
+#: ihtml/themes/default/conflict.tpl:6
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:64
-#, fuzzy
-msgid "Checking PHP version"
-msgstr "Controllo della versione di PHP (>=4.1.0)"
+#: ihtml/themes/default/conflict.tpl:10
+msgid ""
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
-msgstr "PHP deve essere la versione 4.1.0 o superiore."
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Termina sessione"
 
-#: setup/class_setupStep_Checks.inc:66
-msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:72
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
 #, fuzzy
-msgid "Checking for LDAP support"
-msgstr "Controllo il supporto per iconv"
+msgid "Old Password"
+msgstr "Password"
 
-#: setup/class_setupStep_Checks.inc:73
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
 #, fuzzy
-msgid "This is the main extension used by GOsa and therefore really required."
-msgstr ""
-"Questo è il modulo più importante usato da GOsa ed è quindi necessario."
+msgid "New Password"
+msgstr "Nuova password"
 
-#: setup/class_setupStep_Checks.inc:74
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+#, fuzzy
+msgid "Verify Password"
+msgstr "Password"
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Controllo il support per gettext"
+#: ihtml/themes/default/accountexpired.tpl:51
+#, fuzzy
+msgid "Change Password"
+msgstr "Cambia la password"
 
-#: setup/class_setupStep_Checks.inc:81
+#: ihtml/themes/default/accountexpired.tpl:52
 #, fuzzy
-msgid "Gettext support is required for internationalization."
-msgstr "Gettext è necessario al supporto per le lingue."
+msgid "Click here to Change your password"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Controllo il supporto per iconv"
+#: ihtml/themes/default/login.tpl:27
+#, fuzzy
+msgid "Login screen"
+msgstr "Utenti di Dominio"
 
-#: setup/class_setupStep_Checks.inc:89
+#: ihtml/themes/default/login.tpl:34
 #, fuzzy
 msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr ""
-"Questo modulo è usato da GOsa per convertire alcune informazioni usate da "
-"samba ed è necessario."
+"Please use your username and your password to log into the site "
+"administration system."
+msgstr "Usa il tuo <i>nome utente</i> e <i>password</i> per connetterti"
 
-#: setup/class_setupStep_Checks.inc:96
-#, fuzzy
-msgid "Checking for mhash support"
-msgstr "Controllo il supporto per iconv"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Nome utente"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr ""
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Password"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Directory"
 
-#: setup/class_setupStep_Checks.inc:104
-#, fuzzy
-msgid "Checking for IMAP support"
-msgstr "Controllo il supporto per iconv"
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Entra"
 
-#: setup/class_setupStep_Checks.inc:105
-#, fuzzy
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
-msgstr "Questo modulo è necessario per comunicare con il server di posta."
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Clicca qui per connetterti"
 
-#: setup/class_setupStep_Checks.inc:106
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr ""
+
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:112
+#: ihtml/themes/default/logout.tpl:10
 #, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Controllo il support per gettext"
-
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+msgid "Sign in again"
+msgstr "Entra"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:120
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
 #, fuzzy
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Controllo il supporto per getacl"
+msgid "New ACL"
+msgstr "Nuovo"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
-msgstr ""
-"Il support per getacl serve a ottenere i permessi di accesso delle cartelle "
-"di posta sul server. GOsa funziona correttamente anche senza."
+msgid "ACL type"
+msgstr "Tipo"
 
-#: setup/class_setupStep_Checks.inc:128
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid "Checking for MySQL support"
-msgstr "Controllo il supporto per iconv"
+msgid "Select an acl type"
+msgstr "Rimuovi"
 
-#: setup/class_setupStep_Checks.inc:129
-#, fuzzy
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr ""
-"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona "
-"correttamente anche senza."
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Applica"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:136
-#, fuzzy
-msgid "Checking for kadm5 support"
-msgstr "Controllo il supporto per iconv"
-
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
 msgstr ""
-"Questo modulo serve ad amministrare gli utenti in un dominio Kerberos. GOsa "
-"funziona correttamente anche senza."
 
-#: setup/class_setupStep_Checks.inc:138
-#, fuzzy
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
 msgstr ""
-"Questo modulo serve ad amministrare gli utenti in un dominio Kerberos. GOsa "
-"funziona correttamente anche senza."
 
-#: setup/class_setupStep_Checks.inc:144
-#, fuzzy
-msgid "Checking for SNMP support"
-msgstr "Controllo il supporto per iconv"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "Membri"
 
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+#, fuzzy
+msgid "List of available ACL categories"
+msgstr "Scegli il tuo numero di telefono personale"
+
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:152
+#: ihtml/themes/default/acl.tpl:69
 #, fuzzy
-msgid "Checking for CUPS support"
-msgstr "Controllo il supporto per iconv"
+msgid "Available roles"
+msgstr "Applicazioni disponibili"
 
-#: setup/class_setupStep_Checks.inc:153
-#, fuzzy
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Questo modulo serve a ottenere le informazioni sulle stampanti di rete. GOsa "
-"funziona correttamente anche senza."
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Annulla"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Controllo il supporto per fping"
+#: ihtml/themes/default/logout-close.tpl:5
+msgid "Your GOsa session has been closed!"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:163
-#, fuzzy
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"Il programma fping è usato solo nel caso di ambienti basati su terminali "
-"'thin client'."
 
-#: setup/class_setupStep_Checks.inc:164
-#, fuzzy
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 msgid ""
-"The fping utility is only used in thin client based terminal environment."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
-"Il programma fping è usato solo nel caso di ambienti basati su terminali "
-"'thin client'."
+"Stai modificando un campo del database. Vuoi abbandonare i cambiamenti?"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
-msgstr ""
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Principale"
 
-#: setup/class_setupStep_Checks.inc:180
-#, fuzzy
-msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
-msgstr ""
-"Un programma in grado di generare password con algoritmo LM/NT è necessario "
-"per poter usare Samba 2 o 3."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Aiuto"
 
-#: setup/class_setupStep_Checks.inc:181
-#, fuzzy
-msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
-msgstr ""
-"Un programma in grado di generare password con algoritmo LM/NT è necessario "
-"per poter usare Samba 2 o 3."
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Termina la sessione"
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
-msgstr ""
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Connesso:"
 
-#: setup/class_setupStep_Checks.inc:192
-#, fuzzy
-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."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
-"register_globals è un meccanismo PHP che può comportare maggiori rischi per "
-"la sicurezza. GOsa funziona in entrambe le modalità"
 
-#: setup/class_setupStep_Checks.inc:193
+#: ihtml/themes/default/snapshotdialog.tpl:3
 #, fuzzy
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Controllo se register_globals e impostato su 'off'"
+msgid "Restoring object snapshots"
+msgstr "Gruppo di oggetti"
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/snapshotdialog.tpl:6
+msgid ""
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:202
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:203
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione session."
-"auto_register su 'off' nel file php.ini"
 
-#: setup/class_setupStep_Checks.inc:211
-#, fuzzy
-msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Oggetto"
+
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
 msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione session."
-"auto_register su 'off' nel file php.ini"
 
-#: setup/class_setupStep_Checks.inc:212
-#, fuzzy
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione session."
-"auto_register su 'off' nel file php.ini"
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:49
 #, fuzzy
+msgid "Creating object snapshots"
+msgstr "Gruppo di oggetti"
+
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione "
-"memory_limit a 16MB o più nel file php.ini"
 
-#: setup/class_setupStep_Checks.inc:220
+#: ihtml/themes/default/snapshotdialog.tpl:55
 msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:227
+#: ihtml/themes/default/snapshotdialog.tpl:70
 #, fuzzy
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr ""
-"Per motivi di performance è consigliato di impostare l'opzione "
-"implicit_flush su 'off' nel file php.ini."
+msgid "Timestamp"
+msgstr "Timeout"
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
-#, fuzzy
-msgid "The Execution time should be at least 30 seconds."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Continua"
+
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
 msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione "
-"max_execution_time a 30 secondi o più nel file php.ini"
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Informazioni"
+
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/pwd_heimdal.tpl:5
 #, fuzzy
-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."
+msgid "Heimdal options"
+msgstr "Opzioni di posta"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
-"Per motivi di sicurezza è consigliato di impostare l'opzione expose_php su "
-"'off' nel file php.ini."
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:250
-#, fuzzy
-msgid "On"
-msgstr "Opzioni"
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
-"Per motivi di sicurezza è consigliato di impostare l'opzione "
-"magic_quotes_gpc su 'on' nel file php.ini."
 
-#: setup/class_setupStep_Checks.inc:252
+#: ihtml/themes/default/pwd_heimdal.tpl:34
 #, fuzzy
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr "Controllo se register_globals e impostato su 'off'"
+msgid "Hour"
+msgstr "ora"
 
-#: setup/class_setupStep_Checks.inc:259
+#: ihtml/themes/default/pwd_heimdal.tpl:36
 #, fuzzy
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr ""
-"Per motivi di sicurezza è consigliato di impostare l'opzione "
-"magic_quotes_gpc su 'on' nel file php.ini."
+msgid "Minute"
+msgstr "Stampante"
 
-#: setup/class_setupStep_Checks.inc:260
+#: ihtml/themes/default/pwd_heimdal.tpl:38
 #, fuzzy
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
-msgstr ""
-"Per non avere problemi con GOsa è necessario impostare l'opzione session."
-"auto_register su 'off' nel file php.ini"
+msgid "Day"
+msgstr "giorno"
 
-#: setup/class_setupStep_Checks.inc:270
+#: ihtml/themes/default/pwd_heimdal.tpl:40
 #, fuzzy
-msgid "Configuration writeable"
-msgstr "File di configurazione"
+msgid "Month"
+msgstr "mese"
 
-#: setup/class_setupStep_Checks.inc:271
+#: ihtml/themes/default/pwd_heimdal.tpl:42
 #, fuzzy
-msgid "The configuration file can't be written"
-msgstr "File di configurazione"
+msgid "Year"
+msgstr "Cerca"
 
-#: setup/class_setupStep_Checks.inc:272
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
+msgstr ""
+
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr ""
+
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+#, fuzzy
+msgid "Password end"
+msgstr "Password"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
 #, php-format
+msgid "Save"
+msgstr "Salva"
+
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: setup/setup_language.tpl:3
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
 #, fuzzy
-msgid "Please select the preferred language"
-msgstr "Lingua preferita"
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+"Quindi - Se sei sicuro - premi <i>Rimuovi</i> per continuare o <i>Annulla</"
+"i> per abortire."
 
-#: setup/setup_language.tpl:5
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Rilevato un conflitto di accesso"
+
+#: ihtml/themes/default/islocked.tpl:9
 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."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Lingua preferita"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Filtri"
 
-#: setup/setup_frame.tpl:12
+#: ihtml/themes/default/password.tpl:6
 #, fuzzy
-msgid "GOsa setup wizard"
-msgstr "Opzioni di posta dell'identità"
+msgid "Change your password"
+msgstr "Cambia la password"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/password.tpl:34
 #, fuzzy
-msgid "Installation"
-msgstr "Amministrazione"
+msgid "Success"
+msgstr "Setup completato"
 
-#: setup/setup_frame.tpl:19
-#, fuzzy
-msgid "Steps"
-msgstr "Sistemi"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
+msgstr ""
 
-#: setup/setup_finish.tpl:3
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
 #, fuzzy
-msgid "Create your configuration file"
-msgstr "File di configurazione"
+msgid "Password change"
+msgstr "Cambia la password"
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "Scarica il file di  configurazione"
+#: ihtml/themes/default/password.tpl:52
+msgid ""
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
+msgstr ""
 
-#: setup/setup_finish.tpl:18
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Password attuale"
+
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Nuova password"
+
+#: ihtml/themes/default/password.tpl:85
 #, fuzzy
-msgid "Status: "
-msgstr "Stato"
+msgid "again"
+msgstr "Principale"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+#: ihtml/themes/default/password.tpl:86
 #, fuzzy
-msgid "LDAP schema check"
-msgstr "Server"
+msgid "New password repeated"
+msgstr "Nuova password"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
-msgstr ""
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+#, fuzzy
+msgid "Password strength"
+msgstr "Algorimo password"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
+#: ihtml/themes/default/password.tpl:100
 #, fuzzy
-msgid "No"
-msgstr "nessuno"
+msgid "Change"
+msgstr "Annulla"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
+#: ihtml/themes/default/password.tpl:101
 #, fuzzy
-msgid "Yes"
-msgstr "Sistemi"
+msgid "Click here to change your password"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
 msgstr ""
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/copyPasteDialog.tpl:7
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Organizzazione"
-
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Cognome"
-
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "Indirizzo principale"
-
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/copyPasteDialog.tpl:10
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Generale"
-
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+#, fuzzy
+msgid "Cancel all"
+msgstr "Annulla"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+#, fuzzy
+msgid "Operation complete"
+msgstr "incompleto"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Esegui"
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
+#: ihtml/themes/default/sizelimit.tpl:3
+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 ""
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
 msgstr ""
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
+#: ihtml/themes/default/sizelimit.tpl:9
+msgid "ignore this error and show all entries the LDAP server returns"
 msgstr ""
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
+#: ihtml/themes/default/sizelimit.tpl:10
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
 msgstr ""
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
-msgstr ""
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
+msgstr "Imposta"
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
 msgstr ""
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
 msgstr ""
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr ""
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Cerca"
 
-#: setup/setup_feedback.tpl:123
+#: plugins/generic/welcome/welcome.tpl:4
 #, fuzzy
-msgid "Features"
-msgstr "Futuro"
-
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
+"Questa è la schermata principale di GOsa. Puoi selezionare le attività "
+"tramite il menù sulla sinitra o cliccando slle icone qui sotto. Tutti i "
+"cambiamenti sono applicati immediatamente al server LDAP."
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-#, fuzzy
-msgid "GOsa settings 3/3"
-msgstr "Opzioni di posta dell'identità"
-
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
 msgstr ""
+"Usa <b>Termina la sessione</b> in alto a sinistra per uscire e "
+"<b>Principale</b> per tornare alla schermata principale."
 
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
-msgstr ""
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "Il team di GOsa"
 
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr ""
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr "Benvenuto %s!"
 
-#: setup/class_setupStep_Feedback.inc:91
-#, fuzzy
-msgid "UNIX accounts/groups"
-msgstr "Account Unix"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Generale"
 
-#: setup/class_setupStep_Feedback.inc:93
-#, fuzzy
-msgid "Samba management"
-msgstr "Dirigenza"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "Unix"
 
-#: setup/class_setupStep_Feedback.inc:95
-#, fuzzy
-msgid "Mailsystem management"
-msgstr "Riferimenti"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Posta"
 
-#: setup/class_setupStep_Feedback.inc:97
-#, fuzzy
-msgid "FAX system administration"
-msgstr "Amministrazione utenti"
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/class_setupStep_Feedback.inc:99
-#, fuzzy
-msgid "Asterisk administration"
-msgstr "Amministrazione utenti"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "FAX"
 
-#: setup/class_setupStep_Feedback.inc:101
-#, fuzzy
-msgid "System inventory"
-msgstr "Elimina contatto"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/class_setupStep_Feedback.inc:103
-#, fuzzy
-msgid "System-/Configmanagement"
-msgstr "Riferimenti"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Rubrica"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Gruppo"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-#, fuzzy
-msgid "Notification and feedback"
-msgstr "Non ci sono certificati installati"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Dipartimento"
 
-#: setup/class_setupStep_Feedback.inc:112
-#, fuzzy
-msgid "Get notifications or send feedback"
-msgstr "Non ci sono certificati installati"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Telefono"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-#, fuzzy
-msgid "Setup error"
-msgstr "Stato"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Applicazione"
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Server"
 
-#: setup/class_setupStep_Feedback.inc:140
-#, php-format
-msgid "Cannot send feedback to '%s': %s"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Gruppo di oggetti"
 
-#: setup/class_setupStep_Feedback.inc:179
-#, fuzzy
-msgid "Please specify a valid email address."
-msgstr "Prego inserire un numero di telefono valido!"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Stampante"
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
-msgstr ""
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Nome dell'oggetto"
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Impostazioni Samba"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Descrizione"
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
-msgstr ""
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "Contenuti"
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-#, fuzzy
-msgid "Samba SID"
-msgstr "Samba"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Questo oggetto non ha relazioni con altri oggetti."
 
-#: setup/setup_config2.tpl:31
+#: plugins/personal/password/class_password.inc:27
 #, fuzzy
-msgid "RID base"
-msgstr "Database"
+msgid "Change user passwords"
+msgstr "Cambia la password"
 
-#: setup/setup_config2.tpl:46
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
 #, fuzzy
-msgid "Workstation container"
-msgstr "Mostra workstation"
+msgid "User password"
+msgstr "Nuova password"
 
-#: setup/setup_config2.tpl:61
-#, fuzzy
-msgid "Samba SID mapping"
-msgstr "Samba"
-
-#: setup/setup_config2.tpl:71
-#, fuzzy
-msgid "Timezone"
-msgstr "Cellulare"
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "Devi specificare la tua 'Password attuale' per procedere."
 
-#: setup/setup_config2.tpl:74
-#, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "Lingua preferita"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr "Le password nuova e ripetuta non corrispondono"
 
-#: setup/setup_config2.tpl:96
-#, fuzzy
-msgid "Additional GOsa settings"
-msgstr "Opzioni applicazione"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "La password immessa come 'Nuova password' è vuota"
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
 msgstr ""
+"La password immessa come 'Nuova password' è troppo simile a quella attuale."
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Elimina foto"
-
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Elimina foto"
-
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "Riferimenti"
-
-#: setup/setup_config2.tpl:148
-#, fuzzy
-msgid "Enable FAI release management"
-msgstr "Riferimenti"
-
-#: setup/setup_config2.tpl:160
-#, fuzzy
-msgid "Enable user netatalk plugin"
-msgstr "Crea estensioni telefoniche"
-
-#: setup/setup_config2.tpl:171
-#, fuzzy
-msgid "Government mode"
-msgstr "nella cartella"
-
-#: setup/setup_config2.tpl:180
-#, fuzzy
-msgid "Mail settings"
-msgstr "Opzioni di posta dell'identità"
-
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "Metodo di amministrazione della posta"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "La 'Nuova password' immessa è troppo corta."
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "disabilitato"
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "Il programma esterno per cambiare la password ha avuto un problema:"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr "La password immessa come 'Password attuale' è errata"
 
-#: setup/setup_config2.tpl:214
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Vacation templates"
-msgstr "Messaggio di di risposta automatica"
-
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr ""
+msgid "You have no permission to change your password."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: setup/setup_config2.tpl:240
-#, fuzzy
-msgid "Snapshots / Undo"
-msgstr "Nome applicazione"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Identità"
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+#: plugins/personal/password/nochange.tpl:2
 #, fuzzy
-msgid "Enable snapshots"
-msgstr "Crea estensioni di posta"
+msgid "Password change not allowed"
+msgstr "Cambia la password"
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+#: plugins/personal/password/nochange.tpl:6
 #, fuzzy
-msgid "Snapshot base"
-msgstr "Nome applicazione"
-
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Server"
+msgid "You are not allowed to change your password at this time"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
+#: plugins/personal/password/changed.tpl:3
+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 cambiare tutto i "
+"programmmi configurati per usarla."
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Password"
-
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-#, fuzzy
-msgid "LDAP inspection"
-msgstr "Ispezione della configurazione PHP"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Indietro"
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
 msgstr ""
+"Per cambiare la tua password usa i campi qui sotto. I cambiamenti avrenno "
+"effetto immediatamente. Memorizza la nuova password perché non sarai in "
+"grado di connetterti senza di essa."
 
-#: setup/class_setupStep_Migrate.inc:113
-#, fuzzy
-msgid "Checking for root object"
-msgstr "Controllo il supporto per iconv"
-
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
 msgstr ""
+"Cambiare la passord influisce sull'autenticazione su posta, proxu Internet, "
+"Samba e Unix."
 
-#: setup/class_setupStep_Migrate.inc:125
-#, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Controllo il supporto per iconv"
-
-#: setup/class_setupStep_Migrate.inc:131
-#, fuzzy
-msgid "Checking for invisible users"
-msgstr "Controllo il supporto per iconv"
-
-#: setup/class_setupStep_Migrate.inc:137
-#, fuzzy
-msgid "Checking for super administrator"
-msgstr "Controllo la presenza di alcuni programmi addizionali"
-
-#: setup/class_setupStep_Migrate.inc:143
-#, fuzzy
-msgid "Checking for users outside the people tree"
-msgstr "Controllo il modulo cups"
-
-#: setup/class_setupStep_Migrate.inc:149
-#, fuzzy
-msgid "Checking for groups outside the groups tree"
-msgstr "Controllo il modulo cups"
-
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
-msgstr ""
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Ripeti la password"
 
-#: setup/class_setupStep_Migrate.inc:161
-#, fuzzy
-msgid "Checking for duplicate uid numbers"
-msgstr "Controllo il supporto per %s"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Cambia password"
 
-#: setup/class_setupStep_Migrate.inc:167
-#, fuzzy
-msgid "Checking for duplicate gid numbers"
-msgstr "Controllo il supporto per %s"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Ripulisci i campi"
 
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
 #, fuzzy
-msgid "LDAP query failed"
-msgstr "La query al database è fallita!"
-
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Attenzione"
-
-#: setup/class_setupStep_Migrate.inc:213
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:262
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Fallito"
-
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
+msgid "Password settings"
+msgstr "Opzioni di posta dell'identità"
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-#, fuzzy
-msgid "Migrate"
-msgstr "Creare"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Certificati"
 
-#: setup/class_setupStep_Migrate.inc:387
-#, fuzzy, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Certificato standard"
 
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-#, fuzzy
-msgid "Move"
-msgstr "Dominio"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Rimuovi"
 
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "Certificato S/MIME"
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "Certificato PKCS12"
 
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Numero seriale del certificato"
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Migration error"
-msgstr "Creare"
+msgid "Edit organizational user settings"
+msgstr "Opzioni applicazione"
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Vai al dipartimento base"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "femmina"
 
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "maschio"
 
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Creare"
+#: plugins/personal/generic/class_user.inc:496
+#, fuzzy
+msgid "Serial number"
+msgstr "Numero di telefono"
 
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Cannot add ACL for user '%s':"
+msgid "Certificate is valid from %s to %s and is currently %s."
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "La password spira il"
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "valido"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr "Le password nuova e ripetuta non corrispondono"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "invalido"
 
-#: setup/class_setupStep_Migrate.inc:975
-#, fuzzy
-msgid "Input error"
-msgstr "Errore PHP"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "Non ci sono certificati installati"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr ""
+msgid "Password method"
+msgstr "Algorimo password"
 
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
+#: plugins/personal/generic/class_user.inc:586
+msgid "The selected password method is no longer available."
 msgstr ""
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1114,5445 +1048,5570 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "Errore LDAP"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "Mostra utenti del dipartimento"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-#, fuzzy
-msgid "to"
-msgstr "Rapporto"
-
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-#, fuzzy
-msgid "Try to create root object"
-msgstr "Gruppo di oggetti"
-
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1916
-#, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr ""
-
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr ""
-
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-msgid "License"
-msgstr ""
-
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr ""
-
-#: setup/class_setupStep_Welcome.inc:38
-#, fuzzy
-msgid "Welcome"
-msgstr "Benvenuto %s!"
-
-#: setup/class_setupStep_Welcome.inc:39
-#, fuzzy
-msgid "The welcome message"
-msgstr "Elimina questo record"
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Nome utente"
 
-#: setup/class_setupStep_Welcome.inc:40
-#, fuzzy
-msgid "Welcome to GOsa setup wizard"
-msgstr "Benvenuto nel setup di GOsa!"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Cognome"
 
-#: setup/setup_config3.tpl:2
-#, fuzzy
-msgid "GOsa core settings"
-msgstr "Opzioni di posta dell'identità"
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Nome"
 
-#: setup/setup_config3.tpl:6
-#, fuzzy
-msgid "Disable primary group filter"
-msgstr "Mostra gruppi di utenti"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Home Page"
 
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Mosra gruppi corrispondenti a"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/setup_config3.tpl:30
-#, fuzzy
-msgid "Honour administrative units"
-msgstr "Amministrazione dei gruppi di utenti"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "Cellulare"
 
-#: setup/setup_config3.tpl:42
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Pager"
+
+#: plugins/personal/generic/class_user.inc:1296
 #, fuzzy
-msgid "Smarty compile directory"
-msgstr "Home directory"
+msgid "Cannot open certificate!"
+msgstr "Impossibile aprite il certificato selezionato!"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Unità"
 
-#: setup/setup_config3.tpl:60
-#, fuzzy
-msgid "Path for PPD storage"
-msgstr "Algorimo password"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Identificativo della casa"
 
-#: setup/setup_config3.tpl:77
-#, fuzzy
-msgid "Path for kiosk profile storage"
-msgstr "Opzioni di posta dell'identità"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr ""
 
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Dipartimento"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Ultimo recapito"
 
-#: setup/setup_config3.tpl:115
-#, fuzzy
-msgid "Mail queue script"
-msgstr "Script path"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Località personale"
 
-#: setup/setup_config3.tpl:134
-#, fuzzy
-msgid "Notification script"
-msgstr "Non ci sono certificati installati"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Descrizoione unità"
 
-#: setup/setup_config3.tpl:153
-msgid "Enable edit locking"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
 msgstr ""
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Funzione"
 
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "Attributo DN delle persone"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Pubblico"
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Strada"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Ruolo"
 
-#: setup/setup_config3.tpl:210
-msgid "Warn if session is not encrypted"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "CAP"
 
-#: setup/setup_config3.tpl:222
+#: plugins/personal/generic/class_user.inc:1443
 #, fuzzy
-msgid "Remember dialog filter settings"
+msgid "Generic user settings"
 msgstr "Impostazioni generali delle code"
 
-#: setup/setup_config3.tpl:234
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Utenti"
+
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Base"
+
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Cognome"
+
+#: plugins/personal/generic/class_user.inc:1456
 #, fuzzy
-msgid "Session lifetime"
-msgstr "Rilevato un conflitto di sessione"
+msgid "User identification"
+msgstr "Amministrazione utenti"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Titolo onorifico"
+
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Titolo di studio"
+
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
 msgstr ""
 
-#: setup/setup_config3.tpl:247
+#: plugins/personal/generic/class_user.inc:1460
 #, fuzzy
-msgid "Show PHP errors"
-msgstr "Errore PHP"
+msgid "Home phone number"
+msgstr "Numero di telefono"
 
-#: setup/setup_config3.tpl:259
-#, fuzzy
-msgid "Maximum LDAP query time"
-msgstr "Inoltra i messaggi a"
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Organizzazione"
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Data di nascita"
 
-#: setup/setup_config3.tpl:289
+#: plugins/personal/generic/class_user.inc:1465
 #, fuzzy
-msgid "Debug level"
-msgstr "Rimuovi"
+msgid "Gender"
+msgstr "Generale"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+#: plugins/personal/generic/class_user.inc:1466
 #, fuzzy
-msgid "Disabled"
-msgstr "disabilitato"
+msgid "Preferred language"
+msgstr "Lingua preferita"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#: plugins/personal/generic/class_user.inc:1467
 #, fuzzy
-msgid "Enabled"
-msgstr "disabilitato"
+msgid "Department number"
+msgstr "Dipartimento"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1468
+#, fuzzy
+msgid "Employee number"
+msgstr "Qualifica"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Cerca"
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Qualifica"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Applica"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Località"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Annulla"
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Stato"
 
-#: setup/setup_ldap.tpl:25
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
 #, fuzzy
-msgid "LDAP connection"
-msgstr "Disconnessione "
-
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Nome locazione"
+msgid "User picture"
+msgstr "Foto personale"
 
-#: setup/setup_ldap.tpl:37
+#: plugins/personal/generic/class_user.inc:1473
 #, fuzzy
-msgid "Connection URL"
-msgstr "Connessione"
+msgid "Room number"
+msgstr "Numero di telefono"
 
-#: setup/setup_ldap.tpl:45
+#: plugins/personal/generic/class_user.inc:1474
 #, fuzzy
-msgid "TLS connection"
-msgstr "Connessione"
+msgid "Telefon number"
+msgstr "Numero di telefono"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Base"
+#: plugins/personal/generic/class_user.inc:1475
+#, fuzzy
+msgid "Mobile number"
+msgstr "Cellulare"
 
-#: setup/setup_ldap.tpl:65
+#: plugins/personal/generic/class_user.inc:1476
 #, fuzzy
-msgid "Reload"
-msgstr "leggere"
+msgid "Pager number"
+msgstr "Numero di telefono"
 
-#: setup/setup_ldap.tpl:69
+#: plugins/personal/generic/class_user.inc:1477
 #, fuzzy
-msgid "Authentication"
-msgstr "Destinazione"
+msgid "User certificates"
+msgstr "Certificato standard"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "DN dell'amministratore"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "CAP"
 
-#: setup/setup_ldap.tpl:78
+#: plugins/personal/generic/class_user.inc:1480
 #, fuzzy
-msgid "Select user"
-msgstr "Rimuovi"
+msgid "Fax number"
+msgstr "Numero di telefono"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Informazioni personali"
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Password dell'amministratore"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Foto personale"
 
-#: setup/setup_ldap.tpl:101
-#, fuzzy
-msgid "Schema based settings"
-msgstr "Impostazioni Samba"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "Lingua preferita"
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Scegli il subtree per l'utente"
 
-#: setup/setup_ldap.tpl:117
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
 #, fuzzy
-msgid "Current status"
-msgstr "Stato"
+msgid "Select a base"
+msgstr "Rimuovi"
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "Informazioni"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Indirizzo"
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Telefono privato"
 
-#: setup/setup_migrate.tpl:33
-#, fuzzy
-msgid "Check again"
-msgstr "Continua"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Algorimo password"
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Modifica certificati"
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Informazioni organizzazione"
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "Dipartimento No."
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "Matricola"
+
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "Stanza No."
+
+#: plugins/personal/generic/paste_generic.tpl:1
 #, fuzzy
-msgid "Select all"
-msgstr "Rimuovi"
+msgid "User settings"
+msgstr "Opzioni di posta dell'identità"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+#, fuzzy
+msgid "Last name"
+msgstr "Scegli il tuo numero di telefono personale"
 
-#: setup/setup_migrate.tpl:72
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
 #, fuzzy
-msgid "Move selected workstations"
-msgstr "Selezione le workstation da aggiungere"
+msgid "First name"
+msgstr "Liste di blocco"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:23
+#, fuzzy
+msgid "Clear password"
+msgstr "Nuova password"
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+#: plugins/personal/generic/paste_generic.tpl:24
 #, fuzzy
-msgid "Close"
-msgstr "Scegli"
+msgid "Set new password"
+msgstr "Cambia password"
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Elimina foto"
 
-#: setup/setup_migrate.tpl:88
+#: plugins/personal/generic/password.tpl:2
 msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
+"Hai modificato il metodo con cui la tua password è immagazzinata nel "
+"database LDAP. Per questo motivo devi inserire nuovamnete la tua password."
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Cambia foto"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#: plugins/personal/generic/generic.tpl:62
 #, fuzzy
-msgid "Hide changes"
-msgstr "Open-Xchange"
+msgid "Template name"
+msgstr "Template"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Sesso"
+
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Configura"
+
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Usa il tab del telefono"
+
+#: plugins/personal/generic/main.inc:104
 #, fuzzy
-msgid "Show changes"
-msgstr "Mostra telefoni"
+msgid "You have no permission to set your password!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Informazioni generali"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Seleziona un gruppo da aggiungere"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Mostra gruppi di dipartimenti"
+
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Scegli il dipartimento di base per la ricerca"
+
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Mosra gruppi corrispondenti a"
 
-#: setup/setup_migrate.tpl:148
-#, fuzzy
-msgid "Move selected users into this people tree"
-msgstr "Nuovo template"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Espressioni regolare per selezionare il nome del gruppo"
 
-#: setup/setup_migrate.tpl:198
-msgid "Next"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Mostra gruppi di utenti"
 
-#: setup/setup_migrate.tpl:199
-msgid "Abort"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Nome dell'utente del quale mostrare i gruppi"
 
-#: setup/setup_migrate.tpl:201
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid "Create a new GOsa administrator account"
-msgstr "Crea estensioni di posta"
-
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+msgid "Search in subtrees"
+msgstr "Seleziona per mostrare le applicazioni"
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_migrate.tpl:233
+#: plugins/personal/posix/class_posixAccount.inc:154
 #, fuzzy
-msgid "Password (again)"
-msgstr "Algorimo password"
+msgid "expired"
+msgstr "Esporta"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
 msgstr ""
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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 ""
+#: plugins/personal/posix/class_posixAccount.inc:159
+#, fuzzy
+msgid "active, password not changable"
+msgstr "Nuova password"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+#: plugins/personal/posix/class_posixAccount.inc:161
 #, fuzzy
-msgid "Current"
-msgstr "Password attuale"
+msgid "active, password expired"
+msgstr "La password spira il"
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#: plugins/personal/posix/class_posixAccount.inc:163
 #, fuzzy
-msgid "After migration"
-msgstr "Amministrazione utenti"
+msgid "active"
+msgstr "Privato"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "non configurata"
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automatico"
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Ambiente"
+
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
 msgstr ""
+"La password non può essere cambiata per %s giorni dall'ultimo cambiamento"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "PHP setup configuration"
-msgstr "Scarica il file di  configurazione"
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "La password deve essere cambiata dopo %s giorni"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "show information"
-msgstr "Informazioni personali"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr ""
+"Disabilita l'account dopo %s giorni di inattività dopo che la password è "
+"spirata"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Esegui"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Avvisa l'utente %s giorni prima che la password spiri"
 
-#: setup/class_setupStep_Finish.inc:38
-#, fuzzy
-msgid "Write configuration file"
-msgstr "File di configurazione"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "disabilitato"
 
-#: setup/class_setupStep_Finish.inc:39
-#, fuzzy
-msgid "Finish - write the configuration file"
-msgstr "File di configurazione"
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "accesso completo"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "accesso limitato ai seguenti host"
 
-#: setup/class_setupStep_Finish.inc:102
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
+msgid "Uid number"
+msgstr "Numero di telefono"
 
-#: setup/class_setupStep_Finish.inc:111
-#, fuzzy, php-format
+#: plugins/personal/posix/class_posixAccount.inc:914
 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. You may want to execute these commands to achieve this "
-"requirement:"
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"Dopo averlo scaricato dentro /etc/gosa/, assicurati che l'utente del "
-"webserver sia in grado di leggerlo mentre tutti gli altri utenti non "
-"possono. In molti casi è sufficiente eseguire i comandi seguenti."
 
-#: setup/class_setupStep_Ldap.inc:53
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Gruppo di utenti"
+
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Home directory"
+
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
+
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
+
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
 #, fuzzy
-msgid "LDAP setup"
-msgstr "Dispositivi"
+msgid "shadowMin"
+msgstr "Mostra terminali"
 
-#: setup/class_setupStep_Ldap.inc:54
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+msgid "shadowMax"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
 #, fuzzy
-msgid "LDAP connection setup"
-msgstr "Disconnessione "
+msgid "shadowWarning"
+msgstr "Mostra workstation"
 
-#: setup/class_setupStep_Ldap.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
 #, fuzzy
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
-msgstr "I campi seguenti permettono una configurazione base di GOsa."
+msgid "shadowInactive"
+msgstr "Mostra stampanti"
 
-#: setup/class_setupStep_Ldap.inc:105
-#, php-format
-msgid "Anonymous bind failed on server '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-#, fuzzy, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Impossibile selezionare il database!"
+#: plugins/personal/posix/class_posixAccount.inc:1496
+#, fuzzy
+msgid "POSIX account"
+msgstr "Estenzioni FTP"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
+
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:113
+#: plugins/personal/posix/class_posixAccount.inc:1509
 #, fuzzy
-msgid "Please specify user and password."
-msgstr "Prego inserire un numero di telefono valido!"
+msgid "Group ID"
+msgstr "Gruppo"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, fuzzy, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "Impossibile selezionare il database!"
+#: plugins/personal/posix/class_posixAccount.inc:1511
+#, fuzzy
+msgid "Force password change on login"
+msgstr "Cambia la password"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+#: plugins/personal/posix/class_posixAccount.inc:1512
 #, fuzzy
-msgid "Language setup"
-msgstr "Lingua"
+msgid "Shadow min"
+msgstr "Mostra terminali"
 
-#: setup/class_setupStep_Language.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:1514
 #, fuzzy
-msgid "This step allows you to select your preferred language."
-msgstr "Lingua preferita"
+msgid "Shadow warning"
+msgstr "Mostra workstation"
 
-#: setup/class_setupStep_Language.inc:47
+#: plugins/personal/posix/class_posixAccount.inc:1515
 #, fuzzy
-msgid "Automatic"
-msgstr "automatico"
+msgid "Shadow inactive"
+msgstr "Mostra stampanti"
 
-#: setup/class_setup.inc:196
+#: plugins/personal/posix/class_posixAccount.inc:1516
 #, fuzzy
-msgid "Completed"
-msgstr "incompleto"
+msgid "Shadow expire"
+msgstr "Mostra persone"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Indietro"
+#: plugins/personal/posix/class_posixAccount.inc:1517
+#, fuzzy
+msgid "System trust model"
+msgstr "Accesso ai sistemi"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Continua"
+#: plugins/personal/posix/paste_generic.tpl:4
+#, fuzzy
+msgid "Posix settings"
+msgstr "Impostazioni Unix"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Forza UID/GID"
 
-#: setup/setup_config1.tpl:6
-#, fuzzy
-msgid "Theme"
-msgstr "Cellulare"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Gruppi di appartenenza"
 
-#: setup/setup_config1.tpl:15
-#, fuzzy
-msgid "Apache"
-msgstr "Annulla"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(Attenzione: L'NFS non supporta più di 16 gruppi!)"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Gruppo primario"
 
-#: setup/setup_config1.tpl:27
-#, fuzzy
-msgid "People and group storage"
-msgstr "Ou delle persone"
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Stato"
 
-#: setup/setup_config1.tpl:30
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
 #, fuzzy
-msgid "People DN attribute"
-msgstr "Attributo DN delle persone"
+msgid "In all groups"
+msgstr "Gruppo primario"
 
-#: setup/setup_config1.tpl:41
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
 #, fuzzy
-msgid "People storage subtree"
-msgstr "Ou delle persone"
+msgid "Not in all groups"
+msgstr "Mostra gruppi di posta"
 
-#: setup/setup_config1.tpl:50
-#, fuzzy
-msgid "Group storage subtree"
-msgstr "Ou dei gruppi"
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Sicurezza"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "Accesso ai sistemi"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
 msgstr ""
 
-#: setup/setup_config1.tpl:81
-#, fuzzy
-msgid "Automatic uids"
-msgstr "automatico"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "L'utente deve cambiare la password alla prima connessione"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr ""
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "La password spira il"
 
-#: setup/setup_config1.tpl:113
+#: plugins/personal/posix/main.inc:131
 #, fuzzy
-msgid "Number base for people/groups"
-msgstr "UID di base per utenti/gruppi"
+msgid "POSIX settings"
+msgstr "Impostazioni Unix"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Seleziona un sistema da aggiungere"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-#, fuzzy
-msgid "Password settings"
-msgstr "Opzioni di posta dell'identità"
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Mostra i sistemi del dipartimento"
 
-#: setup/setup_config1.tpl:140
-#, fuzzy
-msgid "Password encryption algorithm"
-msgstr "Algoritmo di criptaggio"
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Mostra i sistemi che corrispondono a:"
 
-#: setup/setup_config1.tpl:151
-#, fuzzy
-msgid "Password restrictions"
-msgstr "La password spira il"
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Espressione regolare per selezionare l'indirizzo"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+msgid ""
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: setup/setup_config1.tpl:182
-#, fuzzy
-msgid "Password change hook"
-msgstr "Cambia la password"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Lista degli utenti"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:209
-#, fuzzy
-msgid "Use account expiration"
-msgstr "L'account spira dopo"
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Azioni"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa supporta numerosi algoritmi di criptaggio per le password. Imposta "
-"quello di default."
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Seleziona per vedere gli utenti template"
 
-#: setup/setup_config1.tpl:222
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Mostra utenti template"
+
+#: plugins/admin/users/class_divListUsers.inc:85
 #, fuzzy
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa agisce sul DIT tramite l'utente di amministrazione e possiede uno "
-"schema di permessi interno. Questo è un workaround finché non sarà "
-"completato il supportp per le ACL all'interno del DIT in OpenLDAP."
+msgid "Select to see users that have only a GOsa object"
+msgstr "Seleziona per vedere gli utenti funzionali"
+
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Mostra utenti funzionali"
+
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Seleziona per vedere gli utenti Unix"
+
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Mostra utenti Unix"
+
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "Seleziona per vedere gli utenti di posta"
+
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Mostra utenti di posta"
+
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Seleziona per vedere gli utenti Samba"
+
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Mostra utenti Samba"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"Alcuni parametri di LDAP sono selezionabili e influenzano il posto in cui "
-"GOsa salva le identità e i gruppi. Controlla che i valori riportati "
-"corrispondano alle impostaioni del tuo DIT."
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Seleziona per vedere gli utenti proxy"
 
-#: setup/setup_config1.tpl:224
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Mostra utenti proxy"
+
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
-msgstr ""
-"GOsa supporta numerosi metodi per amministrare la posta. Questi metodi "
-"possiedono interfacce per impostare opzioni come ad esempio la quota. Puoi "
-"impostare il metodo 'dummy' per mantenere tutte le impostazioni."
+msgid "Select to search within subtrees"
+msgstr "Seleziona per mostrare le applicazioni"
 
-#: setup/setup_welcome.tpl:4
-msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Mostra utenti che corrispondono a"
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Imposta dipartimento"
+
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
 msgstr ""
 
-#: setup/setup_welcome.tpl:11
-#, fuzzy
-msgid "Create a basic, single site configuration"
-msgstr "Scarica il file di  configurazione"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Creare"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
 msgstr ""
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
 msgstr ""
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Modifica"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "Cambia la password"
 
-#: setup/setup_welcome.tpl:20
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "Find every possible configuration error"
-msgstr "File di configurazione"
-
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr ""
+msgid "Copy"
+msgstr "Azienda"
 
-#: setup/setup_welcome.tpl:25
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
 #, fuzzy
-msgid "To continue..."
-msgstr "Configurazione continua..."
+msgid "Cut"
+msgstr "Esegui"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+#, fuzzy
+msgid "Paste"
+msgstr "Data"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
 msgstr ""
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#: plugins/admin/users/class_divListUsers.inc:267
 #, fuzzy
-msgid "GOsa settings 2/3"
-msgstr "Opzioni di posta dell'identità"
+msgid "Edit generic properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config2.inc:87
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
 #, fuzzy
-msgid "Customize special parameters"
-msgstr "Parametro"
+msgid "Posix"
+msgstr "Proxy"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+#: plugins/admin/users/class_divListUsers.inc:269
 #, fuzzy
-msgid "GOsa settings 1/3"
-msgstr "Opzioni di posta dell'identità"
+msgid "Edit UNIX properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:76
+#: plugins/admin/users/class_divListUsers.inc:271
 #, fuzzy
-msgid "GOsa generic settings"
-msgstr "Impostazioni generali delle code"
+msgid "Edit environment properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:118
-#, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:273
+#, fuzzy
+msgid "Edit mail properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:275
+#, fuzzy
+msgid "Edit phone properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "Ou delle persone"
+#: plugins/admin/users/class_divListUsers.inc:277
+#, fuzzy
+msgid "Edit fax properies"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "Ou dei gruppi"
+#: plugins/admin/users/class_divListUsers.inc:279
+#, fuzzy
+msgid "Edit samba properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:281
+#, fuzzy
+msgid "Edit netatalk properties"
+msgstr "Modifica proprietà"
 
-#: setup/class_setupStep_Config1.inc:137
-msgid "The given password differ value is not numeric."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:282
+#, fuzzy
+msgid "Create user from template"
+msgstr "Nuovo template"
 
-#: setup/setup_schema.tpl:3
+#: plugins/admin/users/class_divListUsers.inc:283
 #, fuzzy
-msgid "Schema specific settings"
-msgstr "Impostazioni Samba"
+msgid "Create user with this template"
+msgstr "Nuovo template"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+#, fuzzy
+msgid "cut"
+msgstr "Esegui"
 
-#: setup/setup_schema.tpl:16
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
 #, fuzzy
-msgid "Check status"
-msgstr "Stato"
+msgid "Cut this entry"
+msgstr "Modifica questo record"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
 msgstr ""
 
-#: setup/setup_schema.tpl:23
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
 #, fuzzy
-msgid "Schema check failed"
-msgstr "Server"
-
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+msgid "Copy this entry"
+msgstr "Modifica questo record"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:318
+#, fuzzy
+msgid "Deactivated"
+msgstr "Privato"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Filtri"
+#: plugins/admin/users/class_divListUsers.inc:321
+#, fuzzy
+msgid "Active"
+msgstr "Privato"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "modifica"
 
-#: ihtml/themes/default/login.tpl:27
+#: plugins/admin/users/class_divListUsers.inc:329
 #, fuzzy
-msgid "Login screen"
-msgstr "Utenti di Dominio"
+msgid "Edit user"
+msgstr "Modifica contatto"
 
-#: ihtml/themes/default/login.tpl:34
+#: plugins/admin/users/class_divListUsers.inc:338
 #, fuzzy
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr "Usa il tuo <i>nome utente</i> e <i>password</i> per connetterti"
+msgid "password"
+msgstr "Password"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Nome utente"
+#: plugins/admin/users/class_divListUsers.inc:342
+#, fuzzy
+msgid "You are not allowed to change the password for this user."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Directory"
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "elimina"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Entra"
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+#, fuzzy
+msgid "Delete user"
+msgstr "Rimuovi"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Clicca qui per connetterti"
+#: plugins/admin/users/class_divListUsers.inc:356
+#, fuzzy
+msgid "You are not allowed to remove this user."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
+#: plugins/admin/users/class_divListUsers.inc:442
+msgid "Number of listed users"
 msgstr ""
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+#, fuzzy
+msgid "Number of listed departments"
+msgstr "Imposta dipartimento"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
+#: plugins/admin/users/class_userManagement.inc:27
 #, fuzzy
-msgid "Heimdal options"
-msgstr "Opzioni di posta"
+msgid "Manage users"
+msgstr "Utenti di Dominio"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, fuzzy
+msgid "Daemon"
+msgstr "Dominio"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:293
+#, fuzzy
+msgid "Password change failed."
+msgstr "Cambia la password"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-#, fuzzy
-msgid "Hour"
-msgstr "ora"
+#: plugins/admin/users/class_userManagement.inc:456
+#, fuzzy, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
-#, fuzzy
-msgid "Minute"
-msgstr "Stampante"
+#: plugins/admin/users/class_userManagement.inc:458
+#, fuzzy, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
+#: plugins/admin/users/class_userManagement.inc:460
 #, fuzzy
-msgid "Day"
-msgstr "giorno"
+msgid "Delete users"
+msgstr "Rimuovi"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
 #, fuzzy
-msgid "Month"
-msgstr "mese"
+msgid "User delete"
+msgstr "elimina"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-#, fuzzy
-msgid "Year"
-msgstr "Cerca"
+#: plugins/admin/users/class_userManagement.inc:488
+#, fuzzy, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User deleted"
+msgstr "elimina"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid "Password end"
-msgstr "Password"
+msgid "User successfully removed."
+msgstr "Setup completato"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
-msgstr "Salva"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr ""
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Rilevato un conflitto di accesso"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "nessuno"
 
-#: ihtml/themes/default/islocked.tpl:9
+#: plugins/admin/users/remove.tpl:6
 msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Crea un nuovo utente usando i template"
+
+#: plugins/admin/users/template.tpl:6
+msgid ""
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-#, fuzzy
-msgid "Old Password"
-msgstr "Password"
+#: plugins/admin/users/password.tpl:4
+msgid ""
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
+msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
+#: plugins/admin/users/password.tpl:21
 #, fuzzy
-msgid "New Password"
-msgstr "Nuova password"
+msgid "Strength"
+msgstr "Strada"
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-#, fuzzy
-msgid "Verify Password"
-msgstr "Password"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Amministrazione utenti"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-#, fuzzy
-msgid "Change Password"
-msgstr "Cambia la password"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Gruppi di oggetti"
 
-#: ihtml/themes/default/accountexpired.tpl:52
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
 #, fuzzy
-msgid "Click here to Change your password"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Manage object groups"
+msgstr "Nome del gruppo"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Rilevato un conflitto di sessione"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, fuzzy, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/conflict.tpl:6
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, fuzzy, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "Permission error"
+msgstr "Permessi"
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Termina sessione"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: ihtml/themes/default/logout-close.tpl:5
-msgid "Your GOsa session has been closed!"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
 msgstr ""
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+msgid "Windows Install"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
 #, fuzzy
-msgid "Restoring object snapshots"
-msgstr "Gruppo di oggetti"
+msgid "Terminal"
+msgstr "Terminali"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Oggetto"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "utenti"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "gruppi"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "applicazioni"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-#, fuzzy
-msgid "Creating object snapshots"
-msgstr "Gruppo di oggetti"
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "dipartimenti"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "server"
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
+#: plugins/admin/ogroups/class_ogroup.inc:315
 #, fuzzy
-msgid "Timestamp"
-msgstr "Timeout"
+msgid "winstations"
+msgstr "Amministrazione"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "telefoni"
+
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "stampanti"
+
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "e"
+
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-#, fuzzy
-msgid "New ACL"
-msgstr "Nuovo"
+#: plugins/admin/ogroups/class_ogroup.inc:629
+msgid "You can combine two different object types at maximum, only!"
+msgstr ""
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+#: plugins/admin/ogroups/class_ogroup.inc:763
 #, fuzzy
-msgid "ACL type"
-msgstr "Tipo"
+msgid "Object group generic"
+msgstr "Gruppo di oggetti"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+#: plugins/admin/ogroups/class_ogroup.inc:774
 #, fuzzy
-msgid "Select an acl type"
-msgstr "Rimuovi"
-
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr ""
+msgid "Member"
+msgstr "Membri"
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "Membri"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Mostra dipartimenti"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-#, fuzzy
-msgid "List of available ACL categories"
-msgstr "Scegli il tuo numero di telefono personale"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Mostra persone"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:69
-#, fuzzy
-msgid "Available roles"
-msgstr "Applicazioni disponibili"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Mostra gruppi"
 
-#: ihtml/themes/default/password.tpl:6
-#, fuzzy
-msgid "Change your password"
-msgstr "Cambia la password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Seleziona per mostrare le applicazioni"
 
-#: ihtml/themes/default/password.tpl:34
-#, fuzzy
-msgid "Success"
-msgstr "Setup completato"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Mostra applicazioni"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-#, fuzzy
-msgid "Password change"
-msgstr "Cambia la password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Mostra server"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "Password attuale"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Mostra workstation"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Nuova password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr ""
 
-#: ihtml/themes/default/password.tpl:85
-#, fuzzy
-msgid "again"
-msgstr "Principale"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Mostra terminali"
 
-#: ihtml/themes/default/password.tpl:86
-#, fuzzy
-msgid "New password repeated"
-msgstr "Nuova password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr ""
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "Algorimo password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Mostra stampanti"
 
-#: ihtml/themes/default/password.tpl:100
-#, fuzzy
-msgid "Change"
-msgstr "Annulla"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr ""
 
-#: ihtml/themes/default/password.tpl:101
-#, fuzzy
-msgid "Click here to change your password"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Mostra telefoni"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
+#: plugins/admin/ogroups/remove.tpl:7
 msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-#, fuzzy
-msgid "Cancel all"
-msgstr "Annulla"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Nome gruppo"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
+#: plugins/admin/ogroups/paste_generic.tpl:7
 #, fuzzy
-msgid "Operation complete"
-msgstr "incompleto"
+msgid "Please enter the new object group name"
+msgstr "Inserisci la URI del server LDAP"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr ""
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Nome del gruppo"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Nome descrittivo del gruppo"
 
-#: ihtml/themes/default/logout.tpl:10
-#, fuzzy
-msgid "Sign in again"
-msgstr "Entra"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Scegli il subtree dove mettere il gruppo"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr ""
-"Stai modificando un campo del database. Vuoi abbandonare i cambiamenti?"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Oggetti membri"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Principale"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+#, fuzzy
+msgid "List of object groups"
+msgstr "Nome del gruppo"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Aiuto"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#, fuzzy
+msgid "Name of object groups"
+msgstr "Nome del gruppo"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Termina la sessione"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Dipartimenti"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Connesso:"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+#, fuzzy
+msgid "Select to see groups containing users"
+msgstr "Mostra gruppi che contengono utenti"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Mostra gruppi che contengono utenti"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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 ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+#, fuzzy
+msgid "Select to see groups containing groups"
+msgstr "Mostra gruppi che contengono gruppi"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Mostra gruppi che contengono gruppi"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+#, fuzzy
+msgid "Select to see groups containing applications"
+msgstr "Mostra gruppi che contengono applicazioni"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Mostra gruppi che contengono applicazioni"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Imposta"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+#, fuzzy
+msgid "Select to see groups containing departments"
+msgstr "Mostra gruppi che contengono dipartimenti"
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Mostra gruppi che contengono dipartimenti"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
 #, fuzzy
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Quindi - Se sei sicuro - premi <i>Rimuovi</i> per continuare o <i>Annulla</"
-"i> per abortire."
+msgid "Select to see groups containing servers"
+msgstr "Mostra gruppi che contengono server"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Rimuovi"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Mostra gruppi che contengono server"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+#, fuzzy
+msgid "Select to see groups containing workstations"
+msgstr "Mostra gruppi che contengono workstation"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Mostra gruppi che contengono workstation"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Select to see groups containing windows workstations"
+msgstr "Mostra gruppi che contengono workstation"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Show groups containing windows workstations"
+msgstr "Mostra gruppi che contengono workstation"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "Errore nella creazione/apertura del file"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#, fuzzy
+msgid "Select to see groups containing terminals"
+msgstr "Mostra gruppi che contengono terminali"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Mostra gruppi che contengono terminali"
 
-#: include/utils/class_msgPool.inc:14
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
 #, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Select to see groups containing printer"
+msgstr "Mostra gruppi che contengono stampanti"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
 #, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Show groups containing printer"
+msgstr "Mostra gruppi che contengono stampanti"
 
-#: include/utils/class_msgPool.inc:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
 #, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Select to see groups containing phones"
+msgstr "Mostra gruppi che contengono stampanti"
 
-#: include/utils/class_msgPool.inc:33
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
 #, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Show groups containing phones"
+msgstr "Mostra gruppi che contengono stampanti"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Modifica questo record"
+
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Elimina questo record"
+
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
 #, fuzzy
-msgid "You have no permission to create the object:"
+msgid "You are not allowed to remove this entry."
 msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/utils/class_msgPool.inc:44
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
 #, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Number of listed object groups"
+msgstr "Nome del gruppo"
 
-#: include/utils/class_msgPool.inc:51
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
 #, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Phone queue"
+msgstr "Numero di telefono"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+#, fuzzy
+msgid "System"
+msgstr "Sistemi"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Dispositivi"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Avvio"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Terminali"
 
-#: include/utils/class_msgPool.inc:62
+#: plugins/admin/departments/class_departmentManagement.inc:27
 #, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Manage Departments"
+msgstr "Dipartimenti"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
+#, fuzzy, php-format
+msgid "You're about to delete the following entry %s"
 msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
+#, fuzzy, php-format
+msgid "You're about to delete the following entries %s"
 msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/departments/tabs_department.inc:55
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+msgid "You are currently moving/renaming this department."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-#, fuzzy
-msgid "Connection information"
-msgstr "Informazioni personali"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Impossibile connettersi al server del database!"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "Impossibile selezionare il database!"
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "Impossibile selezionare il database!"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+#, fuzzy
+msgid "Fatal error"
+msgstr "Terminal Server"
 
-#: include/utils/class_msgPool.inc:146
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+msgid "Cannot find an unused tag for this administrative unit!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:152
+#: plugins/admin/departments/class_departmentGeneric.inc:415
 #, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgid "Tagging '%s'."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Il valore specificato per l'UID è troppo basso."
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:161
+#: plugins/admin/departments/class_departmentGeneric.inc:543
 #, php-format
-msgid "'%s' must be smaller than %d!"
+msgid "FAILED to copy %s, aborting operation"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Il valore specificato per l'UID è troppo basso."
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Paese"
 
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr "PHP deve essere la versione 4.1.0 o superiore."
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Telefono"
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+#, fuzzy
+msgid "Department name"
+msgstr "Dipartimento"
 
-#: include/utils/class_msgPool.inc:184
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Il campo necessario 'Home directory' non è vuoto"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+#, fuzzy
+msgid "Administrative settings"
+msgstr "Amministrazione"
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#: plugins/admin/departments/class_departmentGeneric.inc:651
 #, php-format
-msgid "The Field '%s' contains invalid characters"
+msgid "Adding tag (%s) to object '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:216
+#: plugins/admin/departments/class_departmentGeneric.inc:683
 #, php-format
-msgid "'%s' is not allowed:"
+msgid "Removing tag from object '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "Cambia la password"
+#: plugins/admin/departments/remove.tpl:6
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Elimina foto"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Aggiungi"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Lista dei dipartimenti"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Aggiungi"
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Rimuovi"
+#: plugins/admin/departments/class_divListDepartment.inc:219
+#, fuzzy
+msgid "department"
+msgstr "dipartimenti"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Imposta"
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Modifica"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Modifica contatto"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Questa identità non possiede estensioni GOsa."
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
-msgstr "Questa identià possiede estensioni Unix."
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
 msgstr ""
-"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
-"le estensioni Samba / ambiente."
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
-msgstr "Questa identità non possiede estensioni Unix"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr ""
+
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr ""
+
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr ""
+
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
 msgstr ""
-"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
-"le estensioni Samba / ambiente."
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
 msgstr ""
-"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
-"le estensioni Samba / ambiente."
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Opzioni applicazione"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Impostazioni Unix"
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
 msgstr ""
-"Click sul bottone 'Modifica' qui sotto per cambiare le informazioni in "
-"questo dialogo"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Gennaio"
+#: plugins/admin/acl/class_aclRole.inc:26
+#, fuzzy
+msgid "Access control list templates"
+msgstr "Opzioni di accesso"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Febbraio"
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "ACL"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Marzo"
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+#, fuzzy
+msgid "All categories"
+msgstr "Aggiungi contatto"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "Aprile"
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Maggio"
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+msgid "One level"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Giugno"
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+#, fuzzy
+msgid "Current object"
+msgstr "Password attuale"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Luglio"
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+#, fuzzy
+msgid "Complete subtree"
+msgstr "incompleto"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Agosto"
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "Settembre"
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Ottobre"
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+#, fuzzy
+msgid "Down"
+msgstr "Dominio"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "Novembre"
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+#, fuzzy
+msgid "Edit ACL"
+msgstr "Modifica"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Dicembre"
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+#, fuzzy
+msgid "Delete ACL"
+msgstr "Rimuovi"
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
 #, fuzzy
-msgid "Sunday"
-msgstr "Cognome"
+msgid "No ACL settings for this category"
+msgstr "Nome descrittivo del gruppo"
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
+#, php-format
+msgid "Contains ACLs for these objects: %s"
+msgstr ""
+
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
 #, fuzzy
-msgid "Monday"
-msgstr "mese"
+msgid "Edit categories ACLs"
+msgstr "classe"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Wednesday"
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
+#, php-format
+msgid "Edit ACL for '%s', scope is '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
+#: plugins/admin/acl/class_aclRole.inc:618
+#, fuzzy
+msgid "Object in use"
+msgstr "Nome dell'oggetto"
+
+#: plugins/admin/acl/class_aclRole.inc:618
+#, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+#, fuzzy
+msgid "ACL roles"
+msgstr "ACL"
+
+#: plugins/admin/acl/class_aclRole.inc:700
+#, fuzzy
+msgid "Acl roles"
+msgstr "Riferimenti"
+
+#: plugins/admin/acl/remove.tpl:6
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/tabs_acl_role.inc:28
 #, fuzzy
-msgid "read operation"
-msgstr "Opzioni di posta"
+msgid "ACL Templates"
+msgstr "Template"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/acl/class_divListACL.inc:51
+#, fuzzy
+msgid "List of acl"
+msgstr "Lista dei gruppi"
+
+#: plugins/admin/acl/class_divListACL.inc:52
+#, fuzzy
+msgid "List of acls"
+msgstr "Lista dei gruppi"
+
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/class_divListACL.inc:84
 #, fuzzy
-msgid "modify operation"
-msgstr "Informazioni personali"
+msgid "Display acls matching"
+msgstr "Mosra gruppi corrispondenti a"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/class_divListACL.inc:243
 #, fuzzy
-msgid "delete operation"
-msgstr "Selezione le workstation da aggiungere"
+msgid "Edit acl role"
+msgstr "Modifica contatto"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/class_divListACL.inc:253
 #, fuzzy
-msgid "search operation"
-msgstr "L'account spira dopo"
+msgid "Delete acl role"
+msgstr "Rimuovi"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/class_divListACL.inc:265
 #, fuzzy
-msgid "authentication"
-msgstr "Destinazione"
+msgid "Edit acl"
+msgstr "classe"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "La query al database è fallita!"
+#: plugins/admin/acl/class_divListACL.inc:269
+#, fuzzy
+msgid "Delete acl"
+msgstr "Rimuovi"
 
-#: include/utils/class_msgPool.inc:374
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
 #, fuzzy
-msgid "LDAP operation failed!"
-msgstr "La query al database è fallita!"
+msgid "ACL management"
+msgstr "Riferimenti"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
+#: plugins/admin/acl/class_aclManagement.inc:26
 #, fuzzy
-msgid "Configuration error"
-msgstr "File di configurazione"
+msgid "ACLs"
+msgstr "ACL"
 
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "Opzioni di accesso"
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, fuzzy, php-format
+msgid "You're about to delete the acl %s."
+msgstr "Non hai il permesso di cambiare la tua password."
+
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Lista dei gruppi"
+
+#: plugins/admin/groups/class_divListGroup.inc:79
+#, fuzzy
+msgid "Groupname / Department"
+msgstr "Sali di dipartimento"
+
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr "Selezione per mostrare i gruppi che sono gruppi primari per gli utenti"
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Mostra gruppi principali"
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "ACL"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Seleziona per mostrare i gruppi che sono gruppi samba per gli utenti"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "Riferimenti"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Mostra gruppi samba"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "Rimuovi"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr ""
+"Seleziona per mostrare i gruppi che hanno configurate delle applicazioni"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Rimuovi"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Mostra gruppi di applicazioni"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Rimuovi"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "Seleziona per mostrare i gruppi che hanno configurata la posta"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Mostra gruppi di posta"
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "Seleziona per mostrare i gruppi che hanno solo aspetti funzionali"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Rimuovi"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Mostra gruppi funzionali"
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "Nome del gruppo"
 
-#: include/class_hostActionQueue.inc:277
-#, fuzzy, php-format
-msgid "Entry with id '%s' not found."
-msgstr "Imposta dipartimento"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Selezioni utenti da aggiungere"
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Mostra utenti del dipartimento"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "Gruppi di utenti"
+
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:126
+#: plugins/admin/groups/class_groupManagement.inc:434
 #, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
+msgid "You're about to delete the group '%s'."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
+#: plugins/admin/groups/paste_generic.tpl:1
 #, fuzzy
-msgid "Internal error"
-msgstr "Terminal Server"
+msgid "Group settings"
+msgstr "Impostazioni FAX"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "Nome Unix del gruppo"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
+"Normalmente le ID sono autogenerate, selezionare per specificarelo "
+"manulamente"
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Forza GID"
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "Rimuovi"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "Forza numero ID"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Seleziona per creare un gruppo conforme Samba"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Non hai il permesso di cambiare la tua password."
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "nel dominio"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-#, fuzzy
-msgid "Paste"
-msgstr "Data"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "I membri sono in un gruppo di risposta telefonica"
 
-#: include/class_CopyPasteHandler.inc:485
+#: plugins/admin/groups/generic.tpl:155
 #, fuzzy
-msgid "Can't paste"
-msgstr "Crea estensioni telefoniche"
-
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
-msgstr ""
+msgid "Members are in a nagios group"
+msgstr "I membri sono in un gruppo di risposta telefonica"
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
-msgstr ""
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Membri del gruppo"
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr ""
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Amministrazione dei gruppi di utenti"
 
-#: include/class_plugin.inc:1613
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
 #, fuzzy
-msgid "from"
-msgstr "e"
-
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr ""
-
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr ""
+msgid "Configuration error"
+msgstr "File di configurazione"
 
-#: include/php_setup.inc:96
-msgid "Send bugreport"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+msgid "Cannot find group SID in your configuration!"
 msgstr ""
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
 msgstr ""
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "Errore PHP"
-
-#: include/php_setup.inc:130
-msgid "class"
-msgstr "classe"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Gruppo Samba"
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "funzione"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Amministratori di Dominio"
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "statico"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Utenti di Dominio"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "metodo"
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Ospiti di Dominio"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:355
+#, php-format
+msgid "Special group (%d)"
+msgstr "Gruppo speciale (%d)"
 
-#: include/php_setup.inc:179
-msgid "File"
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Line"
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#, php-format
+msgid "Search returned too many results. Not displaying more than %s entries!"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Tipo"
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, fuzzy, php-format
+msgid "Cannot find any SID for '%s'!"
+msgstr "Rimuovi"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "Argomenti"
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Rimuovi"
 
-#: include/class_acl.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:966
 #, fuzzy
-msgid "Access control"
-msgstr "Opzioni di accesso"
+msgid "Cannot allocate a free ID!"
+msgstr "Troppi utenti non posso allocare un ID libero!"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
+#: plugins/admin/groups/class_groupGeneric.inc:1015
 #, fuzzy
-msgid "Manage access control lists"
-msgstr "Opzioni di accesso"
+msgid "Generic group settings"
+msgstr "Impostazioni generali delle code"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
+#: plugins/admin/groups/class_groupGeneric.inc:1027
 #, fuzzy
-msgid "All categories"
-msgstr "Aggiungi contatto"
-
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
-msgstr ""
-
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-msgid "One level"
-msgstr ""
+msgid "Phone pickup group"
+msgstr "I membri sono in un gruppo di risposta telefonica"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
+#: plugins/admin/groups/class_groupGeneric.inc:1028
 #, fuzzy
-msgid "Current object"
-msgstr "Password attuale"
+msgid "Nagios group"
+msgstr "Contatto"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
+#: plugins/admin/groups/class_groupGeneric.inc:1031
 #, fuzzy
-msgid "Complete subtree"
-msgstr "incompleto"
-
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr ""
-
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr ""
-
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Utenti"
-
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "Gruppi di utenti"
-
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr ""
+msgid "Group member"
+msgstr "Membri del gruppo"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
+#: plugins/admin/groups/class_groupGeneric.inc:1032
 #, fuzzy
-msgid "Down"
-msgstr "Dominio"
+msgid "Samba group type"
+msgstr "Gruppo Samba"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "modifica"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+#, fuzzy
+msgid "Samba domain name"
+msgstr "Home di Samba"
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
 #, fuzzy
-msgid "Edit ACL"
-msgstr "Modifica"
+msgid "Samba SID"
+msgstr "Samba"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "elimina"
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+#, fuzzy
+msgid "Language setup"
+msgstr "Lingua"
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
+#: setup/class_setupStep_Language.inc:42
 #, fuzzy
-msgid "Delete ACL"
-msgstr "Rimuovi"
+msgid "This step allows you to select your preferred language."
+msgstr "Lingua preferita"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
+#: setup/class_setupStep_Language.inc:47
 #, fuzzy
-msgid "No ACL settings for this category"
-msgstr "Nome descrittivo del gruppo"
+msgid "Automatic"
+msgstr "automatico"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
+
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
+#: setup/setup_welcome.tpl:11
 #, fuzzy
-msgid "Edit categories ACLs"
-msgstr "classe"
+msgid "Create a basic, single site configuration"
+msgstr "Scarica il file di  configurazione"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-#, fuzzy
-msgid "Show/Hide Advanced Settings"
-msgstr "Opzioni di posta avanzate"
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: include/class_acl.inc:690
+#: setup/setup_welcome.tpl:20
 #, fuzzy
-msgid "Create objects"
-msgstr "Gruppo di oggetti"
+msgid "Find every possible configuration error"
+msgstr "File di configurazione"
 
-#: include/class_acl.inc:691
-#, fuzzy
-msgid "Move objects"
-msgstr "Oggetti membri"
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: include/class_acl.inc:692
+#: setup/setup_welcome.tpl:25
 #, fuzzy
-msgid "Remove objects"
-msgstr "Oggetti membri"
+msgid "To continue..."
+msgstr "Configurazione continua..."
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_acl.inc:697
-#, fuzzy
-msgid "Move object"
-msgstr "Oggetti membri"
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
+msgstr ""
 
-#: include/class_acl.inc:698
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
 #, fuzzy
-msgid "Remove object"
-msgstr "Oggetti membri"
+msgid "GOsa settings 1/3"
+msgstr "Opzioni di posta dell'identità"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "leggere"
+#: setup/class_setupStep_Config1.inc:76
+#, fuzzy
+msgid "GOsa generic settings"
+msgstr "Impostazioni generali delle code"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "scrivere"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+#, fuzzy
+msgid "No"
+msgstr "nessuno"
 
-#: include/class_acl.inc:710
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
 #, fuzzy
-msgid "Complete object"
-msgstr "Gruppo di oggetti"
+msgid "Yes"
+msgstr "Sistemi"
 
-#: include/class_acl.inc:826
+#: setup/class_setupStep_Config1.inc:118
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgid "The specified value for '%s' must be a numeric value"
 msgstr ""
 
-#: include/class_acl.inc:869
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
+msgstr ""
+
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
 #, php-format
-msgid "Unknown entry '%s'!"
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
-#, fuzzy, php-format
-msgid "Role: %s"
-msgstr "Ruolo"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "Ou delle persone"
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "Ou dei gruppi"
+
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
 msgstr ""
 
-#: include/class_acl.inc:939
-#, fuzzy, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Nome descrittivo del gruppo"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
+msgstr ""
 
-#: include/class_acl.inc:948
-#, fuzzy
-msgid "Members:"
-msgstr "Membri"
+#: setup/class_setupStep_Config1.inc:137
+msgid "The given password differ value is not numeric."
+msgstr ""
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
 msgstr ""
 
-#: include/class_acl.inc:1115
+#: setup/setup_ldap.tpl:25
 #, fuzzy
-msgid "Access control list"
-msgstr "Opzioni di accesso"
+msgid "LDAP connection"
+msgstr "Disconnessione "
+
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Nome locazione"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
+#: setup/setup_ldap.tpl:37
 #, fuzzy
-msgid "ACL roles"
-msgstr "ACL"
+msgid "Connection URL"
+msgstr "Connessione"
 
-#: include/class_acl.inc:1123
+#: setup/setup_ldap.tpl:45
 #, fuzzy
-msgid "Role name"
-msgstr "Cognome"
+msgid "TLS connection"
+msgstr "Connessione"
 
-#: include/class_acl.inc:1124
+#: setup/setup_ldap.tpl:65
 #, fuzzy
-msgid "Role description"
-msgstr "Descrizoione unità"
+msgid "Reload"
+msgstr "leggere"
 
-#: include/class_pluglist.inc:56
+#: setup/setup_ldap.tpl:69
 #, fuzzy
-msgid "All objects in this category"
-msgstr "Nome descrittivo del gruppo"
+msgid "Authentication"
+msgstr "Destinazione"
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
-msgstr ""
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "DN dell'amministratore"
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr ""
+#: setup/setup_ldap.tpl:78
+#, fuzzy
+msgid "Select user"
+msgstr "Rimuovi"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Utenti di Dominio"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Password dell'amministratore"
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
-msgstr ""
+#: setup/setup_ldap.tpl:101
+#, fuzzy
+msgid "Schema based settings"
+msgstr "Impostazioni Samba"
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_log.inc:120
-#, fuzzy, php-format
-msgid "Invalid option '%s' specified."
-msgstr "L'uid contiene dei caratteri invalidi!"
-
-#: include/class_log.inc:124
+#: setup/setup_ldap.tpl:117
 #, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "Il valore specificato per l'UID non è valido."
+msgid "Current status"
+msgstr "Stato"
 
-#: include/class_log.inc:145
+#: setup/setup_migrate.tpl:5
 msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Impossibile connettersi al server del database!"
-
-#: include/class_log.inc:165
-#, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "Impossibile selezionare il database!"
+#: setup/setup_migrate.tpl:33
+#, fuzzy
+msgid "Check again"
+msgstr "Continua"
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
 msgstr ""
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "Impossibile selezionare il database!"
-
-#: include/class_multi_plug.inc:362
-msgid "You are currently editing mutliple entries."
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
 
-#: include/class_multi_plug.inc:391
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
 #, fuzzy
-msgid "Password reset"
-msgstr "La password spira il"
+msgid "Select all"
+msgstr "Rimuovi"
 
-#: include/class_multi_plug.inc:391
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
+msgstr ""
+
+#: setup/setup_migrate.tpl:72
 #, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Move selected workstations"
+msgstr "Selezione le workstation da aggiungere"
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr ""
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+#, fuzzy
+msgid "Close"
+msgstr "Scegli"
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
 msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
 msgstr ""
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr ""
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#, fuzzy
+msgid "Hide changes"
+msgstr "Open-Xchange"
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Vai al dipartimento base"
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+#, fuzzy
+msgid "Show changes"
+msgstr "Mostra telefoni"
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Root"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Sali di dipartimento"
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Vai agli utenti del dipartimento"
+#: setup/setup_migrate.tpl:145
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Home"
+#: setup/setup_migrate.tpl:148
+#, fuzzy
+msgid "Move selected users into this people tree"
+msgstr "Nuovo template"
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
+#: setup/setup_migrate.tpl:198
+msgid "Next"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
+#: setup/setup_migrate.tpl:199
+msgid "Abort"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/setup_migrate.tpl:201
+#, fuzzy
+msgid "Create a new GOsa administrator account"
+msgstr "Crea estensioni di posta"
+
+#: setup/setup_migrate.tpl:204
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
+#: setup/setup_migrate.tpl:233
 #, fuzzy
-msgid "Restore"
-msgstr "Riprova"
+msgid "Password (again)"
+msgstr "Algorimo password"
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
+#: setup/setup_migrate.tpl:258
+msgid ""
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 ""
 
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
 #, fuzzy
-msgid "Create snapshot"
-msgstr "Crea estensioni di posta"
+msgid "Current"
+msgstr "Password attuale"
 
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
 #, fuzzy
-msgid "Create a new snapshot from this object"
-msgstr "Gruppo di oggetti"
-
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr ""
+msgid "After migration"
+msgstr "Amministrazione utenti"
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
 
-#: include/class_config.inc:228
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
 #, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgid "GOsa settings 3/3"
+msgstr "Opzioni di posta dell'identità"
+
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
 msgstr ""
-"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: include/class_config.inc:560
-msgid "SID and/or RIDBASE missing in the configuration!"
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:83
-#, php-format
-msgid "You're about to delete the snapshot '%s'."
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
 #, fuzzy
-msgid "Remove snapshot"
-msgstr "Crea estensioni di posta"
+msgid "LDAP inspection"
+msgstr "Ispezione della configurazione PHP"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Descrizione"
+#: setup/class_setupStep_Migrate.inc:113
+#, fuzzy
+msgid "Checking for root object"
+msgstr "Controllo il supporto per iconv"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Controllo il supporto per iconv"
 
-#: include/functions.inc:318
-#, fuzzy, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'"
+#: setup/class_setupStep_Migrate.inc:131
+#, fuzzy
+msgid "Checking for invisible users"
+msgstr "Controllo il supporto per iconv"
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "Nome applicazione"
+#: setup/class_setupStep_Migrate.inc:137
+#, fuzzy
+msgid "Checking for super administrator"
+msgstr "Controllo la presenza di alcuni programmi addizionali"
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, php-format
-msgid "LDAP server returned: %s"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:143
+#, fuzzy
+msgid "Checking for users outside the people tree"
+msgstr "Controllo il modulo cups"
 
-#: include/functions.inc:380 include/functions.inc:450
+#: setup/class_setupStep_Migrate.inc:149
 #, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
-msgstr ""
-"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
+msgid "Checking for groups outside the groups tree"
+msgstr "Controllo il modulo cups"
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/functions.inc:605
-#, fuzzy, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr ""
-"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
+#: setup/class_setupStep_Migrate.inc:161
+#, fuzzy
+msgid "Checking for duplicate uid numbers"
+msgstr "Controllo il supporto per %s"
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "Imposta dipartimento"
+#: setup/class_setupStep_Migrate.inc:167
+#, fuzzy
+msgid "Checking for duplicate gid numbers"
+msgstr "Controllo il supporto per %s"
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "Elimina estensioni per le applicazioni"
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+#, fuzzy
+msgid "LDAP query failed"
+msgstr "La query al database è fallita!"
 
-#: include/functions.inc:691 include/functions.inc:736
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:213
 #, fuzzy, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr "Rimuovi"
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "Prego inserire un numero di telefono valido!"
 
-#: include/functions.inc:699
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:262
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Prego inserire un numero di telefono valido!"
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Fallito"
 
-#: include/functions.inc:998
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Configura"
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+#, fuzzy
+msgid "Migrate"
+msgstr "Creare"
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "incompleto"
+#: setup/class_setupStep_Migrate.inc:387
+#, fuzzy, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "Errore LDAP"
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#, fuzzy
+msgid "Move"
+msgstr "Dominio"
 
-#: include/functions.inc:1254
-msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+#: setup/class_setupStep_Migrate.inc:462
+#, php-format
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
 
-#: include/functions.inc:1260
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
+#, php-format
 msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
 
-#: include/functions.inc:1325
-#, fuzzy
-msgid "Continue anyway"
-msgstr "Continua"
+#: setup/class_setupStep_Migrate.inc:597
+#, php-format
+msgid "Found %s user(s) that will not be visible in GOsa."
+msgstr ""
 
-#: include/functions.inc:1327
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
 #, fuzzy
-msgid "Edit anyway"
-msgstr "Modifica contatto"
+msgid "Migration error"
+msgstr "Creare"
 
-#: include/functions.inc:1329
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
 #, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Non hai il permesso di cambiare la tua password."
-
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr ""
+msgid "Cannot migrate department '%s':"
+msgstr "Vai al dipartimento base"
 
-#: include/functions.inc:1541
-msgid "Apply filter"
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
 msgstr ""
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "versione di sviluppo di GOsa (Rev %s)"
-
-#: include/functions.inc:1916
+#: setup/class_setupStep_Migrate.inc:945
 #, php-format
-msgid "File '%s' could not be deleted."
+msgid "Cannot add ACL for user '%s':"
 msgstr ""
 
-#: include/functions.inc:1950 include/functions.inc:1970
+#: setup/class_setupStep_Migrate.inc:970
 #, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "Rimuovi"
+msgid "Password error"
+msgstr "La password spira il"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
+msgstr "Le password nuova e ripetuta non corrispondono"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:975
 #, fuzzy
-msgid "LDAP warning"
-msgstr "Amministrazione LDAP"
+msgid "Input error"
+msgstr "Errore PHP"
 
-#: include/functions.inc:2244
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Specify a valid user ID!"
+msgstr "Prego inserire un numero di telefono valido!"
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
+#: setup/class_setupStep_Migrate.inc:1019
+#, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
 msgstr ""
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "Mostra utenti del dipartimento"
+
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
 msgstr ""
 
-#: include/functions.inc:2320
-#, fuzzy, php-format
-msgid "Missing required object class '%s'!"
-msgstr "Lista dei dipartimenti"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+#, fuzzy
+msgid "to"
+msgstr "Rapporto"
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
 msgstr ""
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
 msgstr ""
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
 msgstr ""
 
-#: include/functions.inc:2334
-#, php-format
-msgid "Class(es) available"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
 msgstr ""
 
-#: include/functions.inc:2356
+#: setup/class_setupStep_Migrate.inc:1613
 msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+#, fuzzy
+msgid "Try to create root object"
+msgstr "Gruppo di oggetti"
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+#: setup/class_setupStep_Migrate.inc:1916
+#, php-format
+msgid "Copy '%s' to '%s' failed:"
 msgstr ""
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Tedesco"
+#: setup/setup_frame.tpl:12
+#, fuzzy
+msgid "GOsa setup wizard"
+msgstr "Opzioni di posta dell'identità"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Francese"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Installation"
+msgstr "Amministrazione"
 
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "Italiano"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Steps"
+msgstr "Sistemi"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Spagnolo"
+#: setup/class_setupStep_Feedback.inc:91
+#, fuzzy
+msgid "UNIX accounts/groups"
+msgstr "Account Unix"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Inglese"
+#: setup/class_setupStep_Feedback.inc:93
+#, fuzzy
+msgid "Samba management"
+msgstr "Dirigenza"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Tedesco"
+#: setup/class_setupStep_Feedback.inc:95
+#, fuzzy
+msgid "Mailsystem management"
+msgstr "Riferimenti"
 
-#: include/functions.inc:2391
+#: setup/class_setupStep_Feedback.inc:97
 #, fuzzy
-msgid "Polish"
-msgstr "Inglese"
+msgid "FAX system administration"
+msgstr "Amministrazione utenti"
 
-#: include/functions.inc:2392
-msgid "Swedish"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:99
+#, fuzzy
+msgid "Asterisk administration"
+msgstr "Amministrazione utenti"
 
-#: include/functions.inc:2393
+#: setup/class_setupStep_Feedback.inc:101
 #, fuzzy
-msgid "Chinese"
-msgstr "reset"
+msgid "System inventory"
+msgstr "Elimina contatto"
 
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Russo"
+#: setup/class_setupStep_Feedback.inc:103
+#, fuzzy
+msgid "System-/Configmanagement"
+msgstr "Riferimenti"
 
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "Estenzioni Proxy Internet"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Rubrica"
 
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+#, fuzzy
+msgid "Notification and feedback"
+msgstr "Non ci sono certificati installati"
+
+#: setup/class_setupStep_Feedback.inc:112
+#, fuzzy
+msgid "Get notifications or send feedback"
+msgstr "Non ci sono certificati installati"
+
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+#, fuzzy
+msgid "Setup error"
+msgstr "Stato"
+
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
 msgstr ""
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
 msgstr ""
 
-#: include/class_ldap.inc:579
-#, php-format
+#: setup/class_setupStep_Feedback.inc:179
+#, fuzzy
+msgid "Please specify a valid email address."
+msgstr "Prego inserire un numero di telefono valido!"
+
+#: setup/class_setupStep_Feedback.inc:183
 msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+"You have to select at least one of both options, subscribe or send feedback."
 msgstr ""
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+msgid "License"
 msgstr ""
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
 msgstr ""
 
-#: include/class_ldap.inc:713
-#, fuzzy, php-format
-msgid "while operating on LDAP server %s"
-msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Impostazioni Samba"
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
 msgstr ""
 
-#: include/class_ldap.inc:964
-#, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr ""
+#: setup/setup_config2.tpl:31
+#, fuzzy
+msgid "RID base"
+msgstr "Database"
+
+#: setup/setup_config2.tpl:46
+#, fuzzy
+msgid "Workstation container"
+msgstr "Mostra workstation"
+
+#: setup/setup_config2.tpl:61
+#, fuzzy
+msgid "Samba SID mapping"
+msgstr "Samba"
 
-#: plugins/personal/generic/paste_generic.tpl:1
+#: setup/setup_config2.tpl:71
 #, fuzzy
-msgid "User settings"
-msgstr "Opzioni di posta dell'identità"
+msgid "Timezone"
+msgstr "Cellulare"
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+#: setup/setup_config2.tpl:74
 #, fuzzy
-msgid "Last name"
-msgstr "Scegli il tuo numero di telefono personale"
+msgid "Please choose your preferred timezone here"
+msgstr "Lingua preferita"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+#: setup/setup_config2.tpl:96
 #, fuzzy
-msgid "First name"
-msgstr "Liste di blocco"
+msgid "Additional GOsa settings"
+msgstr "Opzioni applicazione"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Nome utente"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:23
+#: setup/setup_config2.tpl:112
 #, fuzzy
-msgid "Clear password"
-msgstr "Nuova password"
+msgid "Enable DNS extension"
+msgstr "Elimina foto"
 
-#: plugins/personal/generic/paste_generic.tpl:24
+#: setup/setup_config2.tpl:124
 #, fuzzy
-msgid "Set new password"
-msgstr "Cambia password"
+msgid "Enable DHCP extension"
+msgstr "Elimina foto"
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Foto personale"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Riferimenti"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
+#: setup/setup_config2.tpl:148
 #, fuzzy
-msgid "User picture"
-msgstr "Foto personale"
+msgid "Enable FAI release management"
+msgstr "Riferimenti"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Elimina foto"
+#: setup/setup_config2.tpl:160
+#, fuzzy
+msgid "Enable user netatalk plugin"
+msgstr "Crea estensioni telefoniche"
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Certificati"
+#: setup/setup_config2.tpl:171
+#, fuzzy
+msgid "Government mode"
+msgstr "nella cartella"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Certificato standard"
+#: setup/setup_config2.tpl:180
+#, fuzzy
+msgid "Mail settings"
+msgstr "Opzioni di posta dell'identità"
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Rimuovi"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "Metodo di amministrazione della posta"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "Certificato S/MIME"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "Certificato PKCS12"
+#: setup/setup_config2.tpl:214
+#, fuzzy
+msgid "Vacation templates"
+msgstr "Messaggio di di risposta automatica"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Numero seriale del certificato"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/setup_config2.tpl:240
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Opzioni applicazione"
+msgid "Snapshots / Undo"
+msgstr "Nome applicazione"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "femmina"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+#, fuzzy
+msgid "Enable snapshots"
+msgstr "Crea estensioni di posta"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "maschio"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+#, fuzzy
+msgid "Snapshot base"
+msgstr "Nome applicazione"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:492
-#, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Prego inserire un numero di telefono valido!"
-
-#: plugins/personal/generic/class_user.inc:536
+#: setup/setup_feedback.tpl:9
 msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "Indirizzo principale"
+
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "valido"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "invalido"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "Non ci sono certificati installati"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-#, fuzzy
-msgid "Password method"
-msgstr "Algorimo password"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575
-msgid "The selected password method is no longer available."
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Nome"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Home Page"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Telefono"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "Cellulare"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Pager"
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/setup_feedback.tpl:123
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "Impossibile aprite il certificato selezionato!"
+msgid "Features"
+msgstr "Futuro"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Unità"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Identificativo della casa"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Ultimo recapito"
+#: setup/setup_schema.tpl:3
+#, fuzzy
+msgid "Schema specific settings"
+msgstr "Impostazioni Samba"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Località personale"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Descrizoione unità"
+#: setup/setup_schema.tpl:16
+#, fuzzy
+msgid "Check status"
+msgstr "Stato"
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Funzione"
+#: setup/setup_schema.tpl:23
+#, fuzzy
+msgid "Schema check failed"
+msgstr "Server"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Pubblico"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Strada"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Ruolo"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "CAP"
+#: setup/class_setup.inc:196
+#, fuzzy
+msgid "Completed"
+msgstr "incompleto"
 
-#: plugins/personal/generic/class_user.inc:1432
+#: setup/class_setupStep_Ldap.inc:53
 #, fuzzy
-msgid "Generic user settings"
-msgstr "Impostazioni generali delle code"
+msgid "LDAP setup"
+msgstr "Dispositivi"
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Identità"
+#: setup/class_setupStep_Ldap.inc:54
+#, fuzzy
+msgid "LDAP connection setup"
+msgstr "Disconnessione "
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
+#: setup/class_setupStep_Ldap.inc:55
 #, fuzzy
-msgid "User password"
-msgstr "Nuova password"
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
+msgstr "I campi seguenti permettono una configurazione base di GOsa."
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Cognome"
+#: setup/class_setupStep_Ldap.inc:105
+#, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1445
-#, fuzzy
-msgid "User identification"
-msgstr "Amministrazione utenti"
+#: setup/class_setupStep_Ldap.inc:107
+#, fuzzy, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Impossibile selezionare il database!"
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Titolo onorifico"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Titolo di studio"
+#: setup/class_setupStep_Ldap.inc:113
+#, fuzzy
+msgid "Please specify user and password."
+msgstr "Prego inserire un numero di telefono valido!"
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
+#: setup/class_setupStep_Ldap.inc:115
+#, fuzzy, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "Impossibile selezionare il database!"
+
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1449
+#: setup/setup_config1.tpl:6
 #, fuzzy
-msgid "Home phone number"
-msgstr "Numero di telefono"
+msgid "Theme"
+msgstr "Cellulare"
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Dipartimento"
+#: setup/setup_config1.tpl:15
+#, fuzzy
+msgid "Apache"
+msgstr "Annulla"
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Data di nascita"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1454
+#: setup/setup_config1.tpl:27
 #, fuzzy
-msgid "Gender"
-msgstr "Generale"
+msgid "People and group storage"
+msgstr "Ou delle persone"
 
-#: plugins/personal/generic/class_user.inc:1455
+#: setup/setup_config1.tpl:30
 #, fuzzy
-msgid "Preferred language"
-msgstr "Lingua preferita"
+msgid "People DN attribute"
+msgstr "Attributo DN delle persone"
 
-#: plugins/personal/generic/class_user.inc:1456
+#: setup/setup_config1.tpl:41
 #, fuzzy
-msgid "Department number"
-msgstr "Dipartimento"
+msgid "People storage subtree"
+msgstr "Ou delle persone"
 
-#: plugins/personal/generic/class_user.inc:1457
+#: setup/setup_config1.tpl:50
 #, fuzzy
-msgid "Employee number"
-msgstr "Qualifica"
+msgid "Group storage subtree"
+msgstr "Ou dei gruppi"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Qualifica"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Località"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Stato"
+#: setup/setup_config1.tpl:81
+#, fuzzy
+msgid "Automatic uids"
+msgstr "automatico"
 
-#: plugins/personal/generic/class_user.inc:1462
+#: setup/setup_config1.tpl:113
 #, fuzzy
-msgid "Room number"
-msgstr "Numero di telefono"
+msgid "Number base for people/groups"
+msgstr "UID di base per utenti/gruppi"
+
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr ""
+
+#: setup/setup_config1.tpl:140
+#, fuzzy
+msgid "Password encryption algorithm"
+msgstr "Algoritmo di criptaggio"
+
+#: setup/setup_config1.tpl:151
+#, fuzzy
+msgid "Password restrictions"
+msgstr "La password spira il"
+
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1463
-#, fuzzy
-msgid "Telefon number"
-msgstr "Numero di telefono"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
+#: setup/setup_config1.tpl:182
 #, fuzzy
-msgid "Mobile number"
-msgstr "Cellulare"
+msgid "Password change hook"
+msgstr "Cambia la password"
 
-#: plugins/personal/generic/class_user.inc:1465
-#, fuzzy
-msgid "Pager number"
-msgstr "Numero di telefono"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1466
+#: setup/setup_config1.tpl:209
 #, fuzzy
-msgid "User certificates"
-msgstr "Certificato standard"
+msgid "Use account expiration"
+msgstr "L'account spira dopo"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "CAP"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
+msgstr ""
+"GOsa supporta numerosi algoritmi di criptaggio per le password. Imposta "
+"quello di default."
 
-#: plugins/personal/generic/class_user.inc:1469
+#: setup/setup_config1.tpl:222
 #, fuzzy
-msgid "Fax number"
-msgstr "Numero di telefono"
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa agisce sul DIT tramite l'utente di amministrazione e possiede uno "
+"schema di permessi interno. Questo è un workaround finché non sarà "
+"completato il supportp per le ACL all'interno del DIT in OpenLDAP."
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/setup_config1.tpl:223
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
 msgstr ""
-"Hai modificato il metodo con cui la tua password è immagazzinata nel "
-"database LDAP. Per questo motivo devi inserire nuovamnete la tua password."
+"Alcuni parametri di LDAP sono selezionabili e influenzano il posto in cui "
+"GOsa salva le identità e i gruppi. Controlla che i valori riportati "
+"corrispondano alle impostaioni del tuo DIT."
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Ripeti la password"
+#: setup/setup_config1.tpl:224
+#, fuzzy
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa supporta numerosi metodi per amministrare la posta. Questi metodi "
+"possiedono interfacce per impostare opzioni come ad esempio la quota. Puoi "
+"impostare il metodo 'dummy' per mantenere tutte le impostazioni."
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Cambia password"
+#: setup/setup_language.tpl:3
+#, fuzzy
+msgid "Please select the preferred language"
+msgstr "Lingua preferita"
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Informazioni personali"
+#: setup/setup_language.tpl:5
+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/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
 msgstr "Lingua preferita"
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Scegli il subtree per l'utente"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:64
 #, fuzzy
-msgid "Select a base"
-msgstr "Rimuovi"
+msgid "Checking PHP version"
+msgstr "Controllo della versione di PHP (>=4.1.0)"
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Indirizzo"
+#: setup/class_setupStep_Checks.inc:65
+#, fuzzy, php-format
+msgid "PHP must be of version %s or above."
+msgstr "PHP deve essere la versione 4.1.0 o superiore."
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Telefono privato"
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Algorimo password"
+#: setup/class_setupStep_Checks.inc:72
+#, fuzzy
+msgid "Checking for LDAP support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Modifica certificati"
+#: setup/class_setupStep_Checks.inc:73
+#, fuzzy
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr ""
+"Questo è il modulo più importante usato da GOsa ed è quindi necessario."
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Informazioni organizzazione"
+#: setup/class_setupStep_Checks.inc:74
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "Dipartimento No."
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Controllo il support per gettext"
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "Matricola"
+#: setup/class_setupStep_Checks.inc:81
+#, fuzzy
+msgid "Gettext support is required for internationalization."
+msgstr "Gettext è necessario al supporto per le lingue."
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "Stanza No."
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Controllo il supporto per iconv"
+
+#: setup/class_setupStep_Checks.inc:89
+#, fuzzy
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
-msgstr "Le password nuova e ripetuta non corrispondono"
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr ""
+"Questo modulo è usato da GOsa per convertire alcune informazioni usate da "
+"samba ed è necessario."
 
-#: plugins/personal/generic/main.inc:104
+#: setup/class_setupStep_Checks.inc:96
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Checking for mhash support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Modifica"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Informazioni generali"
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Cambia foto"
+#: setup/class_setupStep_Checks.inc:104
+#, fuzzy
+msgid "Checking for IMAP support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/class_setupStep_Checks.inc:105
+#, fuzzy
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
+msgstr "Questo modulo è necessario per comunicare con il server di posta."
+
+#: setup/class_setupStep_Checks.inc:106
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:62
+#: setup/class_setupStep_Checks.inc:112
 #, fuzzy
-msgid "Template name"
-msgstr "Template"
+msgid "Checking for multi byte support"
+msgstr "Controllo il support per gettext"
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Sesso"
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Usa il tab del telefono"
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/password/nochange.tpl:2
+#: setup/class_setupStep_Checks.inc:120
 #, fuzzy
-msgid "Password change not allowed"
-msgstr "Cambia la password"
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Controllo il supporto per getacl"
 
-#: plugins/personal/password/nochange.tpl:6
+#: setup/class_setupStep_Checks.inc:121
 #, fuzzy
-msgid "You are not allowed to change your password at this time"
-msgstr "Non hai il permesso di cambiare la tua password."
-
-#: plugins/personal/password/changed.tpl:3
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
-"Hai cambiato con successo la tua password. Ricorda di cambiare tutto i "
-"programmmi configurati per usarla."
+"Il support per getacl serve a ottenere i permessi di accesso delle cartelle "
+"di posta sul server. GOsa funziona correttamente anche senza."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/class_setupStep_Checks.inc:128
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Cambia la password"
-
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "Devi specificare la tua 'Password attuale' per procedere."
+msgid "Checking for MySQL support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "La password immessa come 'Nuova password' è vuota"
+#: setup/class_setupStep_Checks.inc:129
+#, fuzzy
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr ""
+"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona "
+"correttamente anche senza."
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
 msgstr ""
-"La password immessa come 'Nuova password' è troppo simile a quella attuale."
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "La 'Nuova password' immessa è troppo corta."
+#: setup/class_setupStep_Checks.inc:136
+#, fuzzy
+msgid "Checking for kadm5 support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "Il programma esterno per cambiare la password ha avuto un problema:"
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr ""
+"Questo modulo serve ad amministrare gli utenti in un dominio Kerberos. GOsa "
+"funziona correttamente anche senza."
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:138
+#, fuzzy
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
-msgstr "La password immessa come 'Password attuale' è errata"
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
+msgstr ""
+"Questo modulo serve ad amministrare gli utenti in un dominio Kerberos. GOsa "
+"funziona correttamente anche senza."
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:144
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Checking for SNMP support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:145
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"The simple network management protocol is needed to get status information "
+"from clients."
 msgstr ""
-"Per cambiare la tua password usa i campi qui sotto. I cambiamenti avrenno "
-"effetto immediatamente. Memorizza la nuova password perché non sarai in "
-"grado di connetterti senza di essa."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:146
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"This module is required for client monitoring. Please install php5-snmp."
 msgstr ""
-"Cambiare la passord influisce sull'autenticazione su posta, proxu Internet, "
-"Samba e Unix."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Ripulisci i campi"
+#: setup/class_setupStep_Checks.inc:152
+#, fuzzy
+msgid "Checking for CUPS support"
+msgstr "Controllo il supporto per iconv"
 
-#: plugins/personal/posix/paste_generic.tpl:4
+#: setup/class_setupStep_Checks.inc:153
 #, fuzzy
-msgid "Posix settings"
-msgstr "Impostazioni Unix"
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"Questo modulo serve a ottenere le informazioni sulle stampanti di rete. GOsa "
+"funziona correttamente anche senza."
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Home directory"
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Controllo il supporto per fping"
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "Forza UID/GID"
+#: setup/class_setupStep_Checks.inc:163
+#, fuzzy
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"Il programma fping è usato solo nel caso di ambienti basati su terminali "
+"'thin client'."
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:164
+#, fuzzy
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr ""
+"Il programma fping è usato solo nel caso di ambienti basati su terminali "
+"'thin client'."
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "Gruppi di appartenenza"
+#: setup/class_setupStep_Checks.inc:180
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Un programma in grado di generare password con algoritmo LM/NT è necessario "
+"per poter usare Samba 2 o 3."
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(Attenzione: L'NFS non supporta più di 16 gruppi!)"
+#: setup/class_setupStep_Checks.inc:181
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Un programma in grado di generare password con algoritmo LM/NT è necessario "
+"per poter usare Samba 2 o 3."
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Seleziona un gruppo da aggiungere"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Mostra gruppi di dipartimenti"
+#: setup/class_setupStep_Checks.inc:192
+#, fuzzy
+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 può comportare maggiori rischi per "
+"la sicurezza. GOsa funziona in entrambe le modalità"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Scegli il dipartimento di base per la ricerca"
+#: setup/class_setupStep_Checks.inc:193
+#, fuzzy
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Controllo se register_globals e impostato su 'off'"
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Mosra gruppi corrispondenti a"
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Espressioni regolare per selezionare il nome del gruppo"
+#: setup/class_setupStep_Checks.inc:202
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Mostra gruppi di utenti"
+#: setup/class_setupStep_Checks.inc:203
+#, fuzzy
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione session."
+"auto_register su 'off' nel file php.ini"
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Nome dell'utente del quale mostrare i gruppi"
+#: setup/class_setupStep_Checks.inc:211
+#, fuzzy
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione session."
+"auto_register su 'off' nel file php.ini"
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/class_setupStep_Checks.inc:212
 #, fuzzy
-msgid "Search in subtrees"
-msgstr "Seleziona per mostrare le applicazioni"
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione session."
+"auto_register su 'off' nel file php.ini"
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "L'utente deve cambiare la password alla prima connessione"
+#: setup/class_setupStep_Checks.inc:219
+#, fuzzy
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione "
+"memory_limit a 16MB o più nel file php.ini"
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "La password spira il"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "Unix"
+#: setup/class_setupStep_Checks.inc:227
+#, fuzzy
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
+"Per motivi di performance è consigliato di impostare l'opzione "
+"implicit_flush su 'off' nel file php.ini."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:154
+#: setup/class_setupStep_Checks.inc:235
 #, fuzzy
-msgid "expired"
-msgstr "Esporta"
+msgid "The Execution time should be at least 30 seconds."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione "
+"max_execution_time a 30 secondi o più nel file php.ini"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:159
+#: setup/class_setupStep_Checks.inc:243
 #, fuzzy
-msgid "active, password not changable"
-msgstr "Nuova password"
+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 ""
+"Per motivi di sicurezza è consigliato di impostare l'opzione expose_php su "
+"'off' nel file php.ini."
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-#, fuzzy
-msgid "active, password expired"
-msgstr "La password spira il"
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:163
+#: setup/class_setupStep_Checks.inc:250
 #, fuzzy
-msgid "active"
-msgstr "Privato"
+msgid "On"
+msgstr "Opzioni"
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "non configurata"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
+"Per motivi di sicurezza è consigliato di impostare l'opzione "
+"magic_quotes_gpc su 'on' nel file php.ini."
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automatico"
+#: setup/class_setupStep_Checks.inc:252
+#, fuzzy
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr "Controllo se register_globals e impostato su 'off'"
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:259
+#, fuzzy
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
+"Per motivi di sicurezza è consigliato di impostare l'opzione "
+"magic_quotes_gpc su 'on' nel file php.ini."
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:260
+#, fuzzy
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+msgstr ""
+"Per non avere problemi con GOsa è necessario impostare l'opzione session."
+"auto_register su 'off' nel file php.ini"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Ambiente"
+#: setup/class_setupStep_Checks.inc:270
+#, fuzzy
+msgid "Configuration writeable"
+msgstr "File di configurazione"
 
-#: plugins/personal/posix/class_posixAccount.inc:465
+#: setup/class_setupStep_Checks.inc:271
+#, fuzzy
+msgid "The configuration file can't be written"
+msgstr "File di configurazione"
+
+#: setup/class_setupStep_Checks.inc:272
 #, php-format
-msgid "Password can't be changed up to %s days after last change"
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
-"La password non può essere cambiata per %s giorni dall'ultimo cambiamento"
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "La password deve essere cambiata dopo %s giorni"
+#: setup/setup_config3.tpl:2
+#, fuzzy
+msgid "GOsa core settings"
+msgstr "Opzioni di posta dell'identità"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
-msgstr ""
-"Disabilita l'account dopo %s giorni di inattività dopo che la password è "
-"spirata"
+#: setup/setup_config3.tpl:6
+#, fuzzy
+msgid "Disable primary group filter"
+msgstr "Mostra gruppi di utenti"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Avvisa l'utente %s giorni prima che la password spiri"
+#: setup/setup_config3.tpl:18
+#, fuzzy
+msgid "Display summary in listings"
+msgstr "Mosra gruppi corrispondenti a"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "accesso completo"
+#: setup/setup_config3.tpl:30
+#, fuzzy
+msgid "Honour administrative units"
+msgstr "Amministrazione dei gruppi di utenti"
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "accesso limitato ai seguenti host"
+#: setup/setup_config3.tpl:42
+#, fuzzy
+msgid "Smarty compile directory"
+msgstr "Home directory"
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/setup_config3.tpl:60
 #, fuzzy
-msgid "Uid number"
-msgstr "Numero di telefono"
+msgid "Path for PPD storage"
+msgstr "Algorimo password"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
-msgstr ""
+#: setup/setup_config3.tpl:77
+#, fuzzy
+msgid "Path for kiosk profile storage"
+msgstr "Opzioni di posta dell'identità"
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Gruppo di utenti"
+#: setup/setup_config3.tpl:96
+#, fuzzy
+msgid "Enable system deployment"
+msgstr "Dipartimento"
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
+#: setup/setup_config3.tpl:115
 #, fuzzy
-msgid "shadowMin"
-msgstr "Mostra terminali"
+msgid "Mail queue script"
+msgstr "Script path"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-msgid "shadowMax"
+#: setup/setup_config3.tpl:134
+#, fuzzy
+msgid "Notification script"
+msgstr "Non ci sono certificati installati"
+
+#: setup/setup_config3.tpl:153
+msgid "Enable edit locking"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
-#, fuzzy
-msgid "shadowWarning"
-msgstr "Mostra workstation"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
+#: setup/setup_config3.tpl:175
 #, fuzzy
-msgid "shadowInactive"
-msgstr "Mostra stampanti"
+msgid "Login attribute"
+msgstr "Attributo DN delle persone"
+
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-#, fuzzy
-msgid "POSIX account"
-msgstr "Estenzioni FTP"
+#: setup/setup_config3.tpl:210
+msgid "Warn if session is not encrypted"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:222
+#, fuzzy
+msgid "Remember dialog filter settings"
+msgstr "Impostazioni generali delle code"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
+#: setup/setup_config3.tpl:234
 #, fuzzy
-msgid "Group ID"
-msgstr "Gruppo"
+msgid "Session lifetime"
+msgstr "Rilevato un conflitto di sessione"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr ""
+
+#: setup/setup_config3.tpl:247
 #, fuzzy
-msgid "Force password change on login"
-msgstr "Cambia la password"
+msgid "Show PHP errors"
+msgstr "Errore PHP"
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
+#: setup/setup_config3.tpl:259
 #, fuzzy
-msgid "Shadow min"
-msgstr "Mostra terminali"
+msgid "Maximum LDAP query time"
+msgstr "Inoltra i messaggi a"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
+#: setup/setup_config3.tpl:289
 #, fuzzy
-msgid "Shadow warning"
-msgstr "Mostra workstation"
+msgid "Debug level"
+msgstr "Rimuovi"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
 #, fuzzy
-msgid "Shadow inactive"
-msgstr "Mostra stampanti"
+msgid "Disabled"
+msgstr "disabilitato"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
 #, fuzzy
-msgid "Shadow expire"
-msgstr "Mostra persone"
+msgid "Enabled"
+msgstr "disabilitato"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
+#: setup/class_setupStep_Welcome.inc:38
 #, fuzzy
-msgid "System trust model"
-msgstr "Accesso ai sistemi"
+msgid "Welcome"
+msgstr "Benvenuto %s!"
 
-#: plugins/personal/posix/main.inc:131
+#: setup/class_setupStep_Welcome.inc:39
 #, fuzzy
-msgid "POSIX settings"
-msgstr "Impostazioni Unix"
-
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Gruppo primario"
-
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Stato"
+msgid "The welcome message"
+msgstr "Elimina questo record"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#: setup/class_setupStep_Welcome.inc:40
 #, fuzzy
-msgid "In all groups"
-msgstr "Gruppo primario"
+msgid "Welcome to GOsa setup wizard"
+msgstr "Benvenuto nel setup di GOsa!"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
 #, fuzzy
-msgid "Not in all groups"
-msgstr "Mostra gruppi di posta"
-
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Sicurezza"
-
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "Accesso ai sistemi"
+msgid "LDAP schema check"
+msgstr "Server"
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Seleziona un sistema da aggiungere"
-
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Mostra i sistemi del dipartimento"
-
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Mostra i sistemi che corrispondono a:"
-
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Espressione regolare per selezionare l'indirizzo"
-
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Crea un nuovo utente usando i template"
-
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
 msgstr ""
 
-#: plugins/admin/users/password.tpl:4
-msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
 msgstr ""
 
-#: plugins/admin/users/password.tpl:21
+#: setup/setup_checks.tpl:67
 #, fuzzy
-msgid "Strength"
-msgstr "Strada"
-
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Lista degli utenti"
+msgid "PHP setup configuration"
+msgstr "Scarica il file di  configurazione"
 
-#: plugins/admin/users/class_divListUsers.inc:60
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
-msgstr ""
-"Questo menù permette di creare, modificare e cancellare gli utenti "
-"selezionati. Avendo un gran numero di utenti, puoi usare i selettori di "
-"intervalli in cima alla lista degli utenti."
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "show information"
+msgstr "Informazioni personali"
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr ""
+#: setup/setup_finish.tpl:3
+#, fuzzy
+msgid "Create your configuration file"
+msgstr "File di configurazione"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Azioni"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "Scarica il file di  configurazione"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Seleziona per vedere gli utenti template"
+#: setup/setup_finish.tpl:18
+#, fuzzy
+msgid "Status: "
+msgstr "Stato"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Mostra utenti template"
+#: setup/class_setupStep_Finish.inc:38
+#, fuzzy
+msgid "Write configuration file"
+msgstr "File di configurazione"
 
-#: plugins/admin/users/class_divListUsers.inc:86
+#: setup/class_setupStep_Finish.inc:39
 #, fuzzy
-msgid "Select to see users that have only a GOsa object"
-msgstr "Seleziona per vedere gli utenti funzionali"
+msgid "Finish - write the configuration file"
+msgstr "File di configurazione"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Mostra utenti funzionali"
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Seleziona per vedere gli utenti Unix"
+#: setup/class_setupStep_Finish.inc:102
+#, fuzzy
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Mostra utenti Unix"
+#: setup/class_setupStep_Finish.inc:111
+#, fuzzy, 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. You may want to execute these commands to achieve this "
+"requirement:"
+msgstr ""
+"Dopo averlo scaricato dentro /etc/gosa/, assicurati che l'utente del "
+"webserver sia in grado di leggerlo mentre tutti gli altri utenti non "
+"possono. In molti casi è sufficiente eseguire i comandi seguenti."
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "Seleziona per vedere gli utenti di posta"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#, fuzzy
+msgid "GOsa settings 2/3"
+msgstr "Opzioni di posta dell'identità"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Mostra utenti di posta"
+#: setup/class_setupStep_Config2.inc:87
+#, fuzzy
+msgid "Customize special parameters"
+msgstr "Parametro"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Seleziona per vedere gli utenti Samba"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Mostra utenti Samba"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Seleziona per vedere gli utenti proxy"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Mostra utenti proxy"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-#, fuzzy
-msgid "Select to search within subtrees"
-msgstr "Seleziona per mostrare le applicazioni"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Mostra utenti che corrispondono a"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Imposta dipartimento"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Cambia la password"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "ACL"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "Azienda"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Riferimenti"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "Esegui"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
-#, fuzzy
-msgid "Edit generic properties"
-msgstr "Modifica proprietà"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
+#: include/class_plugin.inc:1613
 #, fuzzy
-msgid "Posix"
-msgstr "Proxy"
+msgid "from"
+msgstr "e"
 
-#: plugins/admin/users/class_divListUsers.inc:270
-#, fuzzy
-msgid "Edit UNIX properties"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Vai al dipartimento base"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-#, fuzzy
-msgid "Edit environment properties"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Root"
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Posta"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Sali di dipartimento"
 
-#: plugins/admin/users/class_divListUsers.inc:274
-#, fuzzy
-msgid "Edit mail properties"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Vai agli utenti del dipartimento"
 
-#: plugins/admin/users/class_divListUsers.inc:276
-#, fuzzy
-msgid "Edit phone properties"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Home"
 
-#: plugins/admin/users/class_divListUsers.inc:278
-#, fuzzy
-msgid "Edit fax properies"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:280
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
+
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
 #, fuzzy
-msgid "Edit samba properties"
-msgstr "Modifica proprietà"
+msgid "Restore"
+msgstr "Riprova"
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:282
-#, fuzzy
-msgid "Edit netatalk properties"
-msgstr "Modifica proprietà"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:283
+#: include/class_MultiSelectWindow.inc:680
 #, fuzzy
-msgid "Create user from template"
-msgstr "Nuovo template"
+msgid "Create snapshot"
+msgstr "Crea estensioni di posta"
 
-#: plugins/admin/users/class_divListUsers.inc:284
+#: include/class_MultiSelectWindow.inc:680
 #, fuzzy
-msgid "Create user with this template"
-msgstr "Nuovo template"
+msgid "Create a new snapshot from this object"
+msgstr "Gruppo di oggetti"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
+#: include/class_pluglist.inc:56
 #, fuzzy
-msgid "cut"
-msgstr "Esegui"
+msgid "All objects in this category"
+msgstr "Nome descrittivo del gruppo"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-#, fuzzy
-msgid "Cut this entry"
-msgstr "Modifica questo record"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-#, fuzzy
-msgid "Copy this entry"
-msgstr "Modifica questo record"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
-#, fuzzy
-msgid "Deactivated"
-msgstr "Privato"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:322
-#, fuzzy
-msgid "Active"
-msgstr "Privato"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:330
-#, fuzzy
-msgid "Edit user"
-msgstr "Modifica contatto"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:339
-#, fuzzy
-msgid "password"
-msgstr "Password"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "Errore nella creazione/apertura del file"
 
-#: plugins/admin/users/class_divListUsers.inc:343
-#, fuzzy
-msgid "You are not allowed to change the password for this user."
-msgstr "Non hai il permesso di cambiare la tua password."
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-#, fuzzy
-msgid "Delete user"
-msgstr "Rimuovi"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
+
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:357
+#: include/class_SnapShotDialog.inc:135
 #, fuzzy
-msgid "You are not allowed to remove this user."
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Remove snapshot"
+msgstr "Crea estensioni di posta"
 
-#: plugins/admin/users/class_divListUsers.inc:443
-msgid "Number of listed users"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-#, fuzzy
-msgid "Number of listed departments"
-msgstr "Imposta dipartimento"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "Utenti di Dominio"
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_config.inc:228
 #, fuzzy
-msgid "Daemon"
-msgstr "Dominio"
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
+"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+#: include/class_config.inc:561
+msgid "SID and/or RIDBASE missing in the configuration!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
 #, fuzzy
-msgid "Password change failed."
-msgstr "Cambia la password"
+msgid "Internal error"
+msgstr "Terminal Server"
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Utenti di Dominio"
+
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:456
-#, fuzzy, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:458
+#: include/class_log.inc:120
 #, fuzzy, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Invalid option '%s' specified."
+msgstr "L'uid contiene dei caratteri invalidi!"
 
-#: plugins/admin/users/class_userManagement.inc:460
+#: include/class_log.inc:124
 #, fuzzy
-msgid "Delete users"
-msgstr "Rimuovi"
+msgid "Specified objectType is empty or invalid"
+msgstr "Il valore specificato per l'UID non è valido."
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-#, fuzzy
-msgid "User delete"
-msgstr "elimina"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
+#: include/class_log.inc:157
 #, fuzzy, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Cannot connect to logging server '%s'."
+msgstr "Impossibile connettersi al server del database!"
 
-#: plugins/admin/users/class_userManagement.inc:576
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "Impossibile selezionare il database!"
+
+#: include/class_log.inc:181
 #, php-format
-msgid "You're about to delete the user %s."
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "elimina"
+#: include/class_log.inc:218
+#, php-format
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User successfully removed."
-msgstr "Setup completato"
+#: include/class_log.inc:241
+#, fuzzy, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "Impossibile selezionare il database!"
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "nessuno"
-
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
 msgstr ""
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Amministrazione utenti"
+#: include/php_setup.inc:96
+msgid "Send bugreport"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:1
-#, fuzzy
-msgid "Group settings"
-msgstr "Impostazioni FAX"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Nome gruppo"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "Errore PHP"
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "Nome Unix del gruppo"
+#: include/php_setup.inc:130
+msgid "class"
+msgstr "classe"
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr ""
-"Normalmente le ID sono autogenerate, selezionare per specificarelo "
-"manulamente"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "funzione"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "Forza GID"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "statico"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Forza numero ID"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "metodo"
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Selezioni utenti da aggiungere"
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
+#: include/php_setup.inc:179
+msgid "File"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
+#: include/php_setup.inc:179
+msgid "Line"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Mostra utenti del dipartimento"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Tipo"
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr ""
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "Argomenti"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-msgid "Cannot find group SID in your configuration!"
-msgstr ""
+#: include/class_acl.inc:26
+#, fuzzy
+msgid "Access control"
+msgstr "Opzioni di accesso"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Gruppo Samba"
-
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Amministratori di Dominio"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+#, fuzzy
+msgid "Show/Hide Advanced Settings"
+msgstr "Opzioni di posta avanzate"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Utenti di Dominio"
+#: include/class_acl.inc:690
+#, fuzzy
+msgid "Create objects"
+msgstr "Gruppo di oggetti"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Ospiti di Dominio"
+#: include/class_acl.inc:691
+#, fuzzy
+msgid "Move objects"
+msgstr "Oggetti membri"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "Gruppo speciale (%d)"
+#: include/class_acl.inc:692
+#, fuzzy
+msgid "Remove objects"
+msgstr "Oggetti membri"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_acl.inc:697
+#, fuzzy
+msgid "Move object"
+msgstr "Oggetti membri"
+
+#: include/class_acl.inc:698
+#, fuzzy
+msgid "Remove object"
+msgstr "Oggetti membri"
+
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "leggere"
+
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "scrivere"
+
+#: include/class_acl.inc:710
+#, fuzzy
+msgid "Complete object"
+msgstr "Gruppo di oggetti"
+
+#: include/class_acl.inc:826
 #, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "Rimuovi"
+#: include/class_acl.inc:869
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
+#: include/class_acl.inc:929 include/class_acl.inc:931
 #, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "Rimuovi"
+msgid "Role: %s"
+msgstr "Ruolo"
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
-#, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "Troppi utenti non posso allocare un ID libero!"
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-#, fuzzy
-msgid "Generic group settings"
-msgstr "Impostazioni generali delle code"
+#: include/class_acl.inc:939
+#, fuzzy, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Nome descrittivo del gruppo"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
+#: include/class_acl.inc:948
 #, fuzzy
-msgid "Phone pickup group"
-msgstr "I membri sono in un gruppo di risposta telefonica"
+msgid "Members:"
+msgstr "Membri"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-#, fuzzy
-msgid "Nagios group"
-msgstr "Contatto"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
+#: include/class_acl.inc:1115
 #, fuzzy
-msgid "Group member"
-msgstr "Membri del gruppo"
+msgid "Access control list"
+msgstr "Opzioni di accesso"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
+#: include/class_acl.inc:1123
 #, fuzzy
-msgid "Samba group type"
-msgstr "Gruppo Samba"
+msgid "Role name"
+msgstr "Cognome"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
+#: include/class_acl.inc:1124
 #, fuzzy
-msgid "Samba domain name"
-msgstr "Home di Samba"
-
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Lista dei gruppi"
+msgid "Role description"
+msgstr "Descrizoione unità"
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
 msgstr ""
-"Questo menù permette di creare, modificare e cancellare i gruppi "
-"selezionati. Avendo un gran numero di gruppi, puoi usare i selettori di "
-"intervalli in cima alla lista dei gruppi."
-
-#: plugins/admin/groups/class_divListGroup.inc:80
-#, fuzzy
-msgid "Groupname / Department"
-msgstr "Sali di dipartimento"
-
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr "Selezione per mostrare i gruppi che sono gruppi primari per gli utenti"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Mostra gruppi principali"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, fuzzy, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "Rimuovi"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Seleziona per mostrare i gruppi che sono gruppi samba per gli utenti"
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "Rimuovi"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Mostra gruppi samba"
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "Rimuovi"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
 msgstr ""
-"Seleziona per mostrare i gruppi che hanno configurate delle applicazioni"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Mostra gruppi di applicazioni"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "Seleziona per mostrare i gruppi che hanno configurata la posta"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Rimuovi"
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Mostra gruppi di posta"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "Seleziona per mostrare i gruppi che hanno solo aspetti funzionali"
+#: include/class_hostActionQueue.inc:277
+#, fuzzy, php-format
+msgid "Entry with id '%s' not found."
+msgstr "Imposta dipartimento"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Mostra gruppi funzionali"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Gruppo"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Applicazione"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Modifica questo record"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Elimina questo record"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-#, fuzzy
-msgid "Number of listed groups"
-msgstr "Nome del gruppo"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
-#, fuzzy, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:318
 #, fuzzy, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: include/functions.inc:380
 #, fuzzy
-msgid "Permission error"
-msgstr "Permessi"
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr ""
+"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: include/functions.inc:450
 #, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr ""
+"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/admin/groups/class_groupManagement.inc:434
-#, php-format
-msgid "You're about to delete the group '%s'."
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:605
+#, fuzzy, php-format
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
+"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Amministrazione dei gruppi di utenti"
-
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Nome descrittivo del gruppo"
-
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Scegli il subtree dove mettere il gruppo"
+#: include/functions.inc:605 include/functions.inc:620
+#, php-format
+msgid "LDAP server returned: %s"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Seleziona per creare un gruppo conforme Samba"
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "Imposta dipartimento"
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "nel dominio"
+#: include/functions.inc:699
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "I membri sono in un gruppo di risposta telefonica"
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:155
-#, fuzzy
-msgid "Members are in a nagios group"
-msgstr "I membri sono in un gruppo di risposta telefonica"
+#: include/functions.inc:998
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Membri del gruppo"
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "incompleto"
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-#, fuzzy
-msgid "ACL Templates"
-msgstr "Template"
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "Errore LDAP"
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-#, fuzzy
-msgid "ACLs"
-msgstr "ACL"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:163
+#: include/functions.inc:1325
 #, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Continue anyway"
+msgstr "Continua"
 
-#: plugins/admin/acl/class_aclManagement.inc:200
+#: include/functions.inc:1327
 #, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Edit anyway"
+msgstr "Modifica contatto"
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:1329
 #, fuzzy, php-format
-msgid "You're about to delete the acl %s."
+msgid "You're going to edit the LDAP entry/entries '%s'"
 msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/acl/class_divListACL.inc:51
-#, fuzzy
-msgid "List of acl"
-msgstr "Lista dei gruppi"
-
-#: plugins/admin/acl/class_divListACL.inc:52
-#, fuzzy
-msgid "List of acls"
-msgstr "Lista dei gruppi"
-
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
+#: include/functions.inc:1513
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
+#: include/functions.inc:1541
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
-#, fuzzy
-msgid "Display acls matching"
-msgstr "Mosra gruppi corrispondenti a"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "versione di sviluppo di GOsa (Rev %s)"
 
-#: plugins/admin/acl/class_divListACL.inc:244
-#, fuzzy
-msgid "Edit acl role"
-msgstr "Modifica contatto"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:254
+#: include/functions.inc:1950 include/functions.inc:1970
 #, fuzzy
-msgid "Delete acl role"
+msgid "Cannot write to revision file!"
 msgstr "Rimuovi"
 
-#: plugins/admin/acl/class_divListACL.inc:266
-#, fuzzy
-msgid "Edit acl"
-msgstr "classe"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:270
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Delete acl"
-msgstr "Rimuovi"
+msgid "LDAP warning"
+msgstr "Amministrazione LDAP"
 
-#: plugins/admin/acl/class_aclRole.inc:26
-#, fuzzy
-msgid "Access control list templates"
-msgstr "Opzioni di accesso"
+#: include/functions.inc:2244
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "ACL"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "Nome dell'oggetto"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2320
+#, fuzzy, php-format
+msgid "Missing required object class '%s'!"
+msgstr "Lista dei dipartimenti"
+
+#: include/functions.inc:2322
 #, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:700
-#, fuzzy
-msgid "Acl roles"
-msgstr "Riferimenti"
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
-msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
+
+#: include/functions.inc:2334
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2356
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
 msgstr ""
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-#, fuzzy
-msgid "ACL management"
-msgstr "Riferimenti"
+#: include/functions.inc:2357
+msgid ""
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Terminal Server"
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Tedesco"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-msgid "Cannot find an unused tag for this administrative unit!"
-msgstr ""
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Francese"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr ""
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "Italiano"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
-msgstr ""
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Spagnolo"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
-#, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr ""
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Inglese"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Dipartimenti"
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Tedesco"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "Paese"
+#: include/functions.inc:2391
+#, fuzzy
+msgid "Polish"
+msgstr "Inglese"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Telefono"
+#: include/functions.inc:2392
+msgid "Swedish"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
+#: include/functions.inc:2393
 #, fuzzy
-msgid "Department name"
-msgstr "Dipartimento"
+msgid "Chinese"
+msgstr "reset"
+
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Russo"
+
+#: include/functions.inc:2562
+#, php-format
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-#, fuzzy
-msgid "Administrative settings"
-msgstr "Amministrazione"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
 #, php-format
-msgid "Object '%s' is already tagged"
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:592
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:640
 #, php-format
-msgid "Removing tag from object '%s'"
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-msgid "You are currently moving/renaming this department."
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
+#: include/class_ldap.inc:726
+#, fuzzy, php-format
+msgid "while operating on LDAP server %s"
+msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'"
+
+#: include/class_ldap.inc:948
+#, php-format
 msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_ldap.inc:977
+#, php-format
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Lista dei dipartimenti"
-
-#: plugins/admin/departments/class_divListDepartment.inc:53
-#, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
-"Questo menù permette di creare, modificare e cancellare gli utenti "
-"selezionati. Avendo un gran numero di utenti, puoi usare i selettori di "
-"intervalli in cima alla lista degli utenti."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-#, fuzzy
-msgid "department"
-msgstr "dipartimenti"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "Rimuovi"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
-#, fuzzy
-msgid "Manage Departments"
-msgstr "Dipartimenti"
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr ""
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
+#: include/class_CopyPasteHandler.inc:485
+#, fuzzy
+msgid "Can't paste"
+msgstr "Crea estensioni telefoniche"
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr ""
+#: include/utils/class_msgPool.inc:14
+#, fuzzy
+msgid "You have no permission to delete this object!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr ""
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#, fuzzy
+msgid "You have no permission to delete the object:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr ""
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr ""
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr ""
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr ""
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr ""
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr ""
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
+#: include/utils/class_msgPool.inc:87
 #, fuzzy
-msgid "Please enter the new object group name"
-msgstr "Inserisci la URI del server LDAP"
+msgid "You have no permission to move this object!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
 #, fuzzy
-msgid "Phone queue"
-msgstr "Numero di telefono"
+msgid "You have no permission to move the object:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
+#: include/utils/class_msgPool.inc:98
 #, fuzzy
-msgid "System"
-msgstr "Sistemi"
+msgid "You have no permission to move these objects:"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Dispositivi"
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+#, fuzzy
+msgid "Connection information"
+msgstr "Informazioni personali"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Avvio"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Impossibile connettersi al server del database!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Terminali"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "Impossibile selezionare il database!"
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "Impossibile selezionare il database!"
+
+#: include/utils/class_msgPool.inc:146
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:152
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr ""
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Il valore specificato per l'UID è troppo basso."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "utenti"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Il valore specificato per l'UID è troppo basso."
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "gruppi"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr "PHP deve essere la versione 4.1.0 o superiore."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "applicazioni"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "dipartimenti"
+#: include/utils/class_msgPool.inc:184
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "server"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Il campo necessario 'Home directory' non è vuoto"
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Amministrazione"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "telefoni"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Cambia la password"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "stampanti"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Elimina foto"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "e"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Aggiungi"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr ""
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Aggiungi"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-msgid "You can combine two different object types at maximum, only!"
-msgstr ""
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Rimuovi"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-#, fuzzy
-msgid "Object group generic"
-msgstr "Gruppo di oggetti"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Rimuovi"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Gruppi di oggetti"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "Imposta"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-#, fuzzy
-msgid "Member"
-msgstr "Membri"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Modifica"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Nome del gruppo"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Modifica contatto"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Back..."
+msgstr "Indietro"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Back %s..."
+msgstr "Modifica contatto"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr ""
+#: include/utils/class_msgPool.inc:298
+#, fuzzy, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Questa identità non possiede estensioni GOsa."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr ""
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr "Questa identià possiede estensioni Unix."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-msgid "Windows Install"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
 msgstr ""
+"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
+"le estensioni Samba / ambiente."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-#, fuzzy
-msgid "Terminal"
-msgstr "Terminali"
-
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Stampante"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr "Questa identità non possiede estensioni Unix"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
+"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
+"le estensioni Samba / ambiente."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
+"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima "
+"le estensioni Samba / ambiente."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Mostra dipartimenti"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Opzioni applicazione"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Impostazioni Unix"
+
+#: include/utils/class_msgPool.inc:353
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
+"Click sul bottone 'Modifica' qui sotto per cambiare le informazioni in "
+"questo dialogo"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Mostra persone"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Gennaio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr ""
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Febbraio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Mostra gruppi"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Marzo"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Seleziona per mostrare le applicazioni"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "Aprile"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Mostra applicazioni"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Maggio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Mostra server"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Giugno"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr ""
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Luglio"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Mostra workstation"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Agosto"
+
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "Settembre"
+
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Ottobre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr ""
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "Novembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Mostra terminali"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Dicembre"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr ""
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Cognome"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Mostra stampanti"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "mese"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Mostra telefoni"
+#: include/utils/class_msgPool.inc:367
+msgid "Wednesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
+#: include/utils/class_msgPool.inc:374
 #, fuzzy
-msgid "List of object groups"
-msgstr "Nome del gruppo"
+msgid "read operation"
+msgstr "Opzioni di posta"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-#, fuzzy
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"Questo menù permette di creare, modificare e cancellare i gruppi "
-"selezionati. Avendo un gran numero di gruppi, puoi usare i selettori di "
-"intervalli in cima alla lista dei gruppi."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: include/utils/class_msgPool.inc:374
 #, fuzzy
-msgid "Name of object groups"
-msgstr "Nome del gruppo"
+msgid "modify operation"
+msgstr "Informazioni personali"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing users"
-msgstr "Mostra gruppi che contengono utenti"
-
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Mostra gruppi che contengono utenti"
+msgid "delete operation"
+msgstr "Selezione le workstation da aggiungere"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing groups"
-msgstr "Mostra gruppi che contengono gruppi"
-
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Mostra gruppi che contengono gruppi"
+msgid "search operation"
+msgstr "L'account spira dopo"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing applications"
-msgstr "Mostra gruppi che contengono applicazioni"
+msgid "authentication"
+msgstr "Destinazione"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Mostra gruppi che contengono applicazioni"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "La query al database è fallita!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
+#: include/utils/class_msgPool.inc:380
 #, fuzzy
-msgid "Select to see groups containing departments"
-msgstr "Mostra gruppi che contengono dipartimenti"
+msgid "LDAP operation failed!"
+msgstr "La query al database è fallita!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Mostra gruppi che contengono dipartimenti"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-#, fuzzy
-msgid "Select to see groups containing servers"
-msgstr "Mostra gruppi che contengono server"
+#: include/class_multi_plug.inc:362
+msgid "You are currently editing mutliple entries."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Mostra gruppi che contengono server"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "La password spira il"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#: include/class_multi_plug.inc:391
 #, fuzzy
-msgid "Select to see groups containing workstations"
-msgstr "Mostra gruppi che contengono workstation"
+msgid "The user password was resetted, please set a new password value!"
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Mostra gruppi che contengono workstation"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Nome applicazione"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82 html/getxls.php:493
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "Mostra gruppi che contengono workstation"
+msgid "Permission denied!"
+msgstr "Permessi"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Mostra gruppi che contengono workstation"
+msgid "You are not allowed to create ldap dumps."
+msgstr "Non hai il permesso di cambiare la tua password."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
+#: html/getldif.php:107
 #, fuzzy
-msgid "Select to see groups containing terminals"
-msgstr "Mostra gruppi che contengono terminali"
+msgid "Error in ivbb parameter!"
+msgstr "Parametro"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Mostra gruppi che contengono terminali"
+#: html/password.php:58 html/index.php:141
+#, fuzzy, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
+#: html/password.php:78
 #, fuzzy
-msgid "Select to see groups containing printer"
-msgstr "Mostra gruppi che contengono stampanti"
+msgid "Accessibility"
+msgstr "File di configurazione"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-#, fuzzy
-msgid "Show groups containing printer"
-msgstr "Mostra gruppi che contengono stampanti"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-#, fuzzy
-msgid "Select to see groups containing phones"
-msgstr "Mostra gruppi che contengono stampanti"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-#, fuzzy
-msgid "Show groups containing phones"
-msgstr "Mostra gruppi che contengono stampanti"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Gruppo di oggetti"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "Non hai il permesso di cambiare la tua password."
+
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "Il programma esterno per cambiare la password ha avuto un problema:"
+
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr ""
+
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "You are not allowed to remove this entry."
-msgstr "Non hai il permesso di cambiare la tua password."
+msgid "Smarty"
+msgstr "Avvio"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/index.php:57
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "Nome del gruppo"
+msgid "Session is not encrypted!"
+msgstr "Rilevato un conflitto di sessione"
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Nome del gruppo"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "File di configurazione"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Oggetti membri"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Nome dell'oggetto"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "Contenuti"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Questo oggetto non ha relazioni con altri oggetti."
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "FAX"
+#: html/index.php:282
+msgid "Your ldap setup contains old schema definitions:"
+msgstr ""
+
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Destinazione"
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/index.php:374
 #, fuzzy
-msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+msgid "Account locked. Please contact your system administrator."
 msgstr ""
-"Questa è la schermata principale di GOsa. Puoi selezionare le attività "
-"tramite il menù sulla sinitra o cliccando slle icone qui sotto. Tutti i "
-"cambiamenti sono applicati immediatamente al server LDAP."
+"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
 
-#: plugins/generic/welcome/welcome.tpl:8
+#: html/index.php:425
 msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
-"Usa <b>Termina la sessione</b> in alto a sinistra per uscire e "
-"<b>Principale</b> per tornare alla schermata principale."
-
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "Il team di GOsa"
 
-#: plugins/generic/welcome/main.inc:26
+#: html/main.php:153
 #, php-format
-msgid "Welcome %s!"
-msgstr "Benvenuto %s!"
-
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "Scarica il file di  configurazione"
+
+#: html/main.php:172
 msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
+msgstr ""
+
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "File di configurazione"
+
+#: html/main.php:217
+msgid "Running out of memory!"
+msgstr ""
+
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "La password spira il"
+
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "Non hai il permesso di cambiare la tua password."
+
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "Ricerca"
+
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
 msgstr ""
 
 #: html/getxls.php:88
@@ -6677,11 +6736,6 @@ msgstr "Lista degli utenti di %s su %s"
 msgid "Computers of %s on %s"
 msgstr "Computer di %s su %s"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Permessi"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6699,21 +6753,6 @@ msgstr "Impossibile selezionare il database!"
 msgid "Database query failed!"
 msgstr "La query al database è fallita!"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "Non hai il permesso di cambiare la tua password."
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Parametro"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Nome applicazione"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr ""
@@ -6727,164 +6766,72 @@ msgstr ""
 msgid "Helpdir '%s' is not accessible, can't read any helpfiles."
 msgstr ""
 
-#: html/password.php:58 html/index.php:141
-#, fuzzy, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile."
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "File di configurazione"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr ""
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "Non hai il permesso di cambiare la tua password."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "Il programma esterno per cambiare la password ha avuto un problema:"
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr ""
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr ""
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "Avvio"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "Scarica il file di  configurazione"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-
-#: html/main.php:217
 #, fuzzy
-msgid "Configuration warning"
-msgstr "File di configurazione"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
+#~ msgid "User login failed."
+#~ msgstr "Nome applicazione"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "La password spira il"
+#~ msgid "Removing a lock failed."
+#~ msgstr "Elimina estensioni per le applicazioni"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "Non hai il permesso di cambiare la tua password."
+#~ msgid "Cannot get locking information from LDAP tree!"
+#~ msgstr "Rimuovi"
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "Ricerca"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr ""
+#~ msgid "Setting the password failed!"
+#~ msgstr "Estenzioni Proxy Internet"
 
-#: html/index.php:57
 #, fuzzy
-msgid "Session is not encrypted!"
-msgstr "Rilevato un conflitto di sessione"
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Prego inserire un numero di telefono valido!"
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "File di configurazione"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
-
-#: html/index.php:282
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "Non hai il permesso di cambiare la tua password."
 
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "Questo menù permette di creare, modificare e cancellare gli utenti "
+#~ "selezionati. Avendo un gran numero di utenti, puoi usare i selettori di "
+#~ "intervalli in cima alla lista degli utenti."
 
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "Questo menù permette di creare, modificare e cancellare i gruppi "
+#~ "selezionati. Avendo un gran numero di gruppi, puoi usare i selettori di "
+#~ "intervalli in cima alla lista dei gruppi."
 
-#: html/index.php:318
 #, fuzzy
-msgid "Authentication error"
-msgstr "Destinazione"
-
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "Questo menù permette di creare, modificare e cancellare gli utenti "
+#~ "selezionati. Avendo un gran numero di utenti, puoi usare i selettori di "
+#~ "intervalli in cima alla lista degli utenti."
 
-#: html/index.php:374
 #, fuzzy
-msgid "Account locked. Please contact your system administrator."
-msgstr ""
-"Errore di connessione al server LDAP. Contatta l'amministratore del sistema."
-
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "Questo menù permette di creare, modificare e cancellare i gruppi "
+#~ "selezionati. Avendo un gran numero di gruppi, puoi usare i selettori di "
+#~ "intervalli in cima alla lista dei gruppi."
+
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Errore di connessione al server LDAP. Contatta l'amministratore del "
+#~ "sistema."
 
 #, fuzzy
 #~ msgid "Removing of user/generic account with dn '%s' failed."
index 41b7f1e32f03c27282d3bd900a910fb76f0233f8..6fadf6030a35881cd27fe420b84c2927fe901b42 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,6013 +16,6068 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:64
-msgid "Checking PHP version"
+#: ihtml/themes/default/conflict.tpl:6
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:65
-#, php-format
-msgid "PHP must be of version %s or above."
+#: ihtml/themes/default/conflict.tpl:10
+msgid ""
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:66
-msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:72
-msgid "Checking for LDAP support"
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:73
-msgid "This is the main extension used by GOsa and therefore really required."
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:74
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:81
-msgid "Gettext support is required for internationalization."
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:89
-msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
+#: ihtml/themes/default/login.tpl:27
+msgid "Login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:96
-msgid "Checking for mhash support"
+#: ihtml/themes/default/login.tpl:34
+msgid ""
+"Please use your username and your password to log into the site "
+"administration system."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:104
-msgid "Checking for IMAP support"
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:105
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:106
-msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:112
-msgid "Checking for multi byte support"
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
+#: ihtml/themes/default/logout.tpl:7
+msgid ""
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:120
-msgid "Checking for getacl in IMAP implementation"
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:121
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+msgid "New ACL"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:128
-msgid "Checking for MySQL support"
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "ACL type"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:129
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "Select an acl type"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:136
-msgid "Checking for kadm5 support"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:144
-msgid "Checking for SNMP support"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+msgid "List of available ACL categories"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:152
-msgid "Checking for CUPS support"
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:153
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
+#: ihtml/themes/default/acl.tpl:69
+msgid "Available roles"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:163
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
+#: ihtml/themes/default/logout-close.tpl:5
+msgid "Your GOsa session has been closed!"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:164
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The fping utility is only used in thin client based terminal environment."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
+msgid ""
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:180
-msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:181
-msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:192
-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."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:193
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:202
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:203
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:211
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:212
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:220
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:227
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
-msgid "The Execution time should be at least 30 seconds."
+#: ihtml/themes/default/snapshotdialog.tpl:49
+msgid "Creating object snapshots"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:236
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/snapshotdialog.tpl:55
 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."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:70
+msgid "Timestamp"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:250
-msgid "On"
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:252
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:259
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:260
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:270
-msgid "Configuration writeable"
+#: ihtml/themes/default/pwd_heimdal.tpl:5
+msgid "Heimdal options"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:271
-msgid "The configuration file can't be written"
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:272
-#, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/setup_language.tpl:3
-msgid "Please select the preferred language"
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
 msgstr ""
 
-#: setup/setup_language.tpl:5
-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."
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
 
-#: setup/setup_language.tpl:9
-msgid "Please select your preferred language here"
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+msgid "Hour"
 msgstr ""
 
-#: setup/setup_frame.tpl:12
-msgid "GOsa setup wizard"
+#: ihtml/themes/default/pwd_heimdal.tpl:36
+msgid "Minute"
 msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Installation"
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+msgid "Day"
 msgstr ""
 
-#: setup/setup_frame.tpl:19
-msgid "Steps"
+#: ihtml/themes/default/pwd_heimdal.tpl:40
+msgid "Month"
 msgstr ""
 
-#: setup/setup_finish.tpl:3
-msgid "Create your configuration file"
+#: ihtml/themes/default/pwd_heimdal.tpl:42
+msgid "Year"
 msgstr ""
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
 msgstr ""
 
-#: setup/setup_finish.tpl:18
-msgid "Status: "
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
-msgid "LDAP schema check"
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+msgid "Password end"
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
+#: ihtml/themes/default/remove.tpl:6
+msgid ""
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
 msgstr ""
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
 msgstr ""
 
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
+#: ihtml/themes/default/password.tpl:6
+msgid "Change your password"
 msgstr ""
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
+#: ihtml/themes/default/password.tpl:34
+msgid "Success"
 msgstr ""
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
 msgstr ""
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "Password change"
+msgstr ""
+
+#: ihtml/themes/default/password.tpl:52
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
 msgstr ""
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
 msgstr ""
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
+#: ihtml/themes/default/password.tpl:85
+msgid "again"
 msgstr ""
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
+#: ihtml/themes/default/password.tpl:86
+msgid "New password repeated"
 msgstr ""
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+msgid "Password strength"
 msgstr ""
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
+#: ihtml/themes/default/password.tpl:100
+msgid "Change"
 msgstr ""
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
+#: ihtml/themes/default/password.tpl:101
+msgid "Click here to change your password"
 msgstr ""
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
 msgstr ""
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:123
-msgid "Features"
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+msgid "Cancel all"
 msgstr ""
 
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
 msgstr ""
 
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
 msgstr ""
 
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
+#: ihtml/themes/default/sizelimit.tpl:3
+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 ""
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-msgid "GOsa settings 3/3"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
 msgstr ""
 
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
+#: ihtml/themes/default/sizelimit.tpl:9
+msgid "ignore this error and show all entries the LDAP server returns"
 msgstr ""
 
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
+#: ihtml/themes/default/sizelimit.tpl:10
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
 msgstr ""
 
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:91
-msgid "UNIX accounts/groups"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:93
-msgid "Samba management"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:95
-msgid "Mailsystem management"
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:97
-msgid "FAX system administration"
+#: plugins/generic/welcome/welcome.tpl:4
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:99
-msgid "Asterisk administration"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:101
-msgid "System inventory"
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:103
-msgid "System-/Configmanagement"
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-msgid "Notification and feedback"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:112
-msgid "Get notifications or send feedback"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-msgid "Setup error"
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:140
-#, php-format
-msgid "Cannot send feedback to '%s': %s"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:179
-msgid "Please specify a valid email address."
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
 msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
 msgstr ""
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
 msgstr ""
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
 msgstr ""
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-msgid "Samba SID"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
 msgstr ""
 
-#: setup/setup_config2.tpl:31
-msgid "RID base"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
 msgstr ""
 
-#: setup/setup_config2.tpl:46
-msgid "Workstation container"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
 msgstr ""
 
-#: setup/setup_config2.tpl:61
-msgid "Samba SID mapping"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
 msgstr ""
 
-#: setup/setup_config2.tpl:71
-msgid "Timezone"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
 msgstr ""
 
-#: setup/setup_config2.tpl:74
-msgid "Please choose your preferred timezone here"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
 msgstr ""
 
-#: setup/setup_config2.tpl:96
-msgid "Additional GOsa settings"
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
 msgstr ""
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
 msgstr ""
 
-#: setup/setup_config2.tpl:112
-msgid "Enable DNS extension"
+#: plugins/personal/password/class_password.inc:27
+msgid "Change user passwords"
 msgstr ""
 
-#: setup/setup_config2.tpl:124
-msgid "Enable DHCP extension"
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+msgid "User password"
 msgstr ""
 
-#: setup/setup_config2.tpl:136
-msgid "Enable mime type management"
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
 msgstr ""
 
-#: setup/setup_config2.tpl:148
-msgid "Enable FAI release management"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
 msgstr ""
 
-#: setup/setup_config2.tpl:160
-msgid "Enable user netatalk plugin"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
 msgstr ""
 
-#: setup/setup_config2.tpl:171
-msgid "Government mode"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
 msgstr ""
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
 msgstr ""
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
+#: plugins/personal/password/class_password.inc:95
+#, php-format
+msgid "External password changer reported a problem: %s."
 msgstr ""
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
 msgstr ""
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
+#: plugins/personal/password/class_password.inc:115
+msgid "You have no permission to change your password."
 msgstr ""
 
-#: setup/setup_config2.tpl:214
-msgid "Vacation templates"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
 msgstr ""
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
 msgstr ""
 
-#: setup/setup_config2.tpl:240
-msgid "Snapshots / Undo"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
 msgstr ""
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-msgid "Enable snapshots"
+#: plugins/personal/password/changed.tpl:3
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-msgid "Snapshot base"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
 msgstr ""
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
 msgstr ""
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
 msgstr ""
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-msgid "LDAP inspection"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:113
-msgid "Checking for root object"
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
+msgid "Password settings"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:125
-msgid "Checking for invisible departments"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:131
-msgid "Checking for invisible users"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:137
-msgid "Checking for super administrator"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:143
-msgid "Checking for users outside the people tree"
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:149
-msgid "Checking for groups outside the groups tree"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
+#: plugins/personal/generic/class_user.inc:38
+msgid "Edit organizational user settings"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:161
-msgid "Checking for duplicate uid numbers"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:167
-msgid "Checking for duplicate gid numbers"
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-msgid "LDAP query failed"
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
+#: plugins/personal/generic/class_user.inc:496
+msgid "Serial number"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:213
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgid "Certificate is valid from %s to %s and is currently %s."
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:262
-#, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
+msgid "Password method"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-msgid "Migrate"
+#: plugins/personal/generic/class_user.inc:586
+msgid "The selected password method is no longer available."
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:387
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
+#: setup/class_setupStep_Migrate.inc:1030
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#: setup/class_setupStep_Migrate.inc:1916
+#: setup/class_setupStep_Migrate.inc:1920 include/class_plugin.inc:1078
+#: include/class_plugin.inc:1127 include/class_plugin.inc:1131
+#: include/class_plugin.inc:1208 include/class_plugin.inc:1266
+#: include/class_plugin.inc:1332 include/class_plugin.inc:1348
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
+#: include/functions.inc:371 include/functions.inc:380
+#: include/functions.inc:409 include/functions.inc:652
+#: include/functions.inc:691 include/functions.inc:736
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
+msgid "LDAP error"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-msgid "Move"
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-msgid "Migration error"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, php-format
-msgid "Cannot migrate department '%s':"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
+#: plugins/personal/generic/class_user.inc:1296
+msgid "Cannot open certificate!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:970
-msgid "Password error"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:970
-msgid "Provided passwords do not match!"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:975
-msgid "Input error"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:975
-msgid "Specify a valid user ID!"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1030
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#: setup/class_setupStep_Migrate.inc:1916
-#: setup/class_setupStep_Migrate.inc:1920 include/class_plugin.inc:1078
-#: include/class_plugin.inc:1127 include/class_plugin.inc:1131
-#: include/class_plugin.inc:1208 include/class_plugin.inc:1266
-#: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
-#: include/functions.inc:371 include/functions.inc:380
-#: include/functions.inc:409 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
-msgid "LDAP error"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-msgid "Cannot move users to the requested department!"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-msgid "to"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
+#: plugins/personal/generic/class_user.inc:1443
+msgid "Generic user settings"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1456
+msgid "User identification"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1460
+msgid "Home phone number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1465
+msgid "Gender"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1466
+msgid "Preferred language"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1467
+msgid "Department number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1468
+msgid "Employee number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1473
+msgid "Room number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1474
+msgid "Telefon number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1475
+msgid "Mobile number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1476
+msgid "Pager number"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1477
+msgid "User certificates"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr ""
+
+#: plugins/personal/generic/class_user.inc:1480
+msgid "Fax number"
+msgstr ""
+
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr ""
+
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr ""
+
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-msgid "Try to create root object"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, php-format
-msgid "Copy '%s' to '%s' failed:"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
 msgstr ""
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
 msgstr ""
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-msgid "License"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
 msgstr ""
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:38
-msgid "Welcome"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:39
-msgid "The welcome message"
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:40
-msgid "Welcome to GOsa setup wizard"
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
 msgstr ""
 
-#: setup/setup_config3.tpl:2
-msgid "GOsa core settings"
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
 msgstr ""
 
-#: setup/setup_config3.tpl:6
-msgid "Disable primary group filter"
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
 msgstr ""
 
-#: setup/setup_config3.tpl:18
-msgid "Display summary in listings"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
 msgstr ""
 
-#: setup/setup_config3.tpl:30
-msgid "Honour administrative units"
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
 msgstr ""
 
-#: setup/setup_config3.tpl:42
-msgid "Smarty compile directory"
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
 msgstr ""
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
 msgstr ""
 
-#: setup/setup_config3.tpl:60
-msgid "Path for PPD storage"
+#: plugins/personal/generic/password.tpl:2
+msgid ""
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
 
-#: setup/setup_config3.tpl:77
-msgid "Path for kiosk profile storage"
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
 msgstr ""
 
-#: setup/setup_config3.tpl:96
-msgid "Enable system deployment"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_config3.tpl:115
-msgid "Mail queue script"
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
 msgstr ""
 
-#: setup/setup_config3.tpl:134
-msgid "Notification script"
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
 msgstr ""
 
-#: setup/setup_config3.tpl:153
-msgid "Enable edit locking"
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
 msgstr ""
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
 msgstr ""
 
-#: setup/setup_config3.tpl:175
-msgid "Login attribute"
+#: plugins/personal/generic/main.inc:104
+msgid "You have no permission to set your password!"
 msgstr ""
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
 msgstr ""
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
 msgstr ""
 
-#: setup/setup_config3.tpl:210
-msgid "Warn if session is not encrypted"
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
 msgstr ""
 
-#: setup/setup_config3.tpl:222
-msgid "Remember dialog filter settings"
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
 msgstr ""
 
-#: setup/setup_config3.tpl:234
-msgid "Session lifetime"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
 msgstr ""
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
 msgstr ""
 
-#: setup/setup_config3.tpl:247
-msgid "Show PHP errors"
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
 msgstr ""
 
-#: setup/setup_config3.tpl:259
-msgid "Maximum LDAP query time"
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
 msgstr ""
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Search in subtrees"
 msgstr ""
 
-#: setup/setup_config3.tpl:289
-msgid "Debug level"
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-msgid "Disabled"
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
 msgstr ""
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-msgid "Enabled"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
 msgstr ""
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
 msgstr ""
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
 msgstr ""
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
 msgstr ""
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
 msgstr ""
 
-#: setup/setup_ldap.tpl:25
-msgid "LDAP connection"
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
 msgstr ""
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_ldap.tpl:37
-msgid "Connection URL"
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
 msgstr ""
 
-#: setup/setup_ldap.tpl:45
-msgid "TLS connection"
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
 msgstr ""
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
 msgstr ""
 
-#: setup/setup_ldap.tpl:65
-msgid "Reload"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
 msgstr ""
 
-#: setup/setup_ldap.tpl:69
-msgid "Authentication"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
 msgstr ""
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
 msgstr ""
 
-#: setup/setup_ldap.tpl:78
-msgid "Select user"
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
 msgstr ""
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
 msgstr ""
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: setup/setup_ldap.tpl:101
-msgid "Schema based settings"
+#: plugins/personal/posix/class_posixAccount.inc:914
+msgid "Uid number"
 msgstr ""
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
+#: plugins/personal/posix/class_posixAccount.inc:914
+msgid ""
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
 
-#: setup/setup_ldap.tpl:117
-msgid "Current status"
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
 msgstr ""
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
 msgstr ""
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
 msgstr ""
 
-#: setup/setup_migrate.tpl:33
-msgid "Check again"
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
 msgstr ""
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
+msgid "shadowMin"
 msgstr ""
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+msgid "shadowMax"
 msgstr ""
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
+msgid "shadowWarning"
 msgstr ""
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-msgid "Select all"
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
+msgid "shadowInactive"
 msgstr ""
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: setup/setup_migrate.tpl:72
-msgid "Move selected workstations"
+#: plugins/personal/posix/class_posixAccount.inc:1496
+msgid "POSIX account"
 msgstr ""
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
 msgstr ""
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
 msgstr ""
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
+#: plugins/personal/posix/class_posixAccount.inc:1509
+msgid "Group ID"
 msgstr ""
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
+#: plugins/personal/posix/class_posixAccount.inc:1511
+msgid "Force password change on login"
 msgstr ""
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
+#: plugins/personal/posix/class_posixAccount.inc:1512
+msgid "Shadow min"
 msgstr ""
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
 msgstr ""
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-msgid "Hide changes"
+#: plugins/personal/posix/class_posixAccount.inc:1514
+msgid "Shadow warning"
 msgstr ""
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-msgid "Show changes"
+#: plugins/personal/posix/class_posixAccount.inc:1515
+msgid "Shadow inactive"
 msgstr ""
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
+#: plugins/personal/posix/class_posixAccount.inc:1516
+msgid "Shadow expire"
 msgstr ""
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
+#: plugins/personal/posix/class_posixAccount.inc:1517
+msgid "System trust model"
 msgstr ""
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
 msgstr ""
 
-#: setup/setup_migrate.tpl:148
-msgid "Move selected users into this people tree"
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
 msgstr ""
 
-#: setup/setup_migrate.tpl:198
-msgid "Next"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
 msgstr ""
 
-#: setup/setup_migrate.tpl:199
-msgid "Abort"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
 msgstr ""
 
-#: setup/setup_migrate.tpl:201
-msgid "Create a new GOsa administrator account"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
 msgstr ""
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
 msgstr ""
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+msgid "In all groups"
 msgstr ""
 
-#: setup/setup_migrate.tpl:233
-msgid "Password (again)"
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+msgid "Not in all groups"
 msgstr ""
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
 msgstr ""
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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/personal/posix/generic.tpl:125
+msgid "System trust"
 msgstr ""
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-msgid "Current"
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
 msgstr ""
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-msgid "After migration"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
 msgstr ""
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
 msgstr ""
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
+#: plugins/personal/posix/main.inc:131
+msgid "POSIX settings"
 msgstr ""
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
 msgstr ""
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
 msgstr ""
 
-#: setup/setup_checks.tpl:67
-msgid "PHP setup configuration"
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
 msgstr ""
 
-#: setup/setup_checks.tpl:67
-msgid "show information"
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:38
-msgid "Write configuration file"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+msgid ""
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:39
-msgid "Finish - write the configuration file"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:100
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:102
-msgid "The configuration is currently not readable or it does not exists."
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
 msgstr ""
 
-#: setup/class_setupStep_Finish.inc:111
-#, 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. You may want to execute these commands to achieve this "
-"requirement:"
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:53
-msgid "LDAP setup"
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:54
-msgid "LDAP connection setup"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:55
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:105
-#, php-format
-msgid "Anonymous bind failed on server '%s'."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:107
-#, php-format
-msgid "Bind as user '%s' failed on server '%s'."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:113
-msgid "Please specify user and password."
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:115
-#, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
-msgid "Language setup"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:42
-msgid "This step allows you to select your preferred language."
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:47
-msgid "Automatic"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
 msgstr ""
 
-#: setup/class_setup.inc:196
-msgid "Completed"
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
 msgstr ""
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
 msgstr ""
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
 msgstr ""
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
 msgstr ""
 
-#: setup/setup_config1.tpl:6
-msgid "Theme"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
 msgstr ""
 
-#: setup/setup_config1.tpl:15
-msgid "Apache"
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
 msgstr ""
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
 msgstr ""
 
-#: setup/setup_config1.tpl:27
-msgid "People and group storage"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
 msgstr ""
 
-#: setup/setup_config1.tpl:30
-msgid "People DN attribute"
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
 msgstr ""
 
-#: setup/setup_config1.tpl:41
-msgid "People storage subtree"
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
+msgid "Copy"
 msgstr ""
 
-#: setup/setup_config1.tpl:50
-msgid "Group storage subtree"
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
+msgid "Cut"
 msgstr ""
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
 msgstr ""
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
 msgstr ""
 
-#: setup/setup_config1.tpl:81
-msgid "Automatic uids"
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
 msgstr ""
 
-#: setup/setup_config1.tpl:113
-msgid "Number base for people/groups"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-msgid "Password settings"
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:140
-msgid "Password encryption algorithm"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:151
-msgid "Password restrictions"
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
 msgstr ""
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
 msgstr ""
 
-#: setup/setup_config1.tpl:182
-msgid "Password change hook"
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
 msgstr ""
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
 msgstr ""
 
-#: setup/setup_config1.tpl:209
-msgid "Use account expiration"
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
 msgstr ""
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
 msgstr ""
 
-#: setup/setup_config1.tpl:222
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
 msgstr ""
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
 msgstr ""
 
-#: setup/setup_config1.tpl:224
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
 msgstr ""
 
-#: setup/setup_welcome.tpl:4
-msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
+#: plugins/admin/users/class_divListUsers.inc:318
+msgid "Deactivated"
 msgstr ""
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
 msgstr ""
 
-#: setup/setup_welcome.tpl:11
-msgid "Create a basic, single site configuration"
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
 msgstr ""
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
 msgstr ""
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
 msgstr ""
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
+#: plugins/admin/users/class_divListUsers.inc:342
+msgid "You are not allowed to change the password for this user."
 msgstr ""
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
 msgstr ""
 
-#: setup/setup_welcome.tpl:20
-msgid "Find every possible configuration error"
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
 msgstr ""
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
+#: plugins/admin/users/class_divListUsers.inc:356
+msgid "You are not allowed to remove this user."
 msgstr ""
 
-#: setup/setup_welcome.tpl:25
-msgid "To continue..."
+#: plugins/admin/users/class_divListUsers.inc:442
+msgid "Number of listed users"
 msgstr ""
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+msgid "Number of listed departments"
 msgstr ""
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
+#: plugins/admin/users/class_userManagement.inc:27
+msgid "Manage users"
 msgstr ""
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-msgid "GOsa settings 2/3"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+msgid "Daemon"
 msgstr ""
 
-#: setup/class_setupStep_Config2.inc:87
-msgid "Customize special parameters"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-msgid "GOsa settings 1/3"
+#: plugins/admin/users/class_userManagement.inc:293
+msgid "Password change failed."
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:76
-msgid "GOsa generic settings"
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:118
+#: plugins/admin/users/class_userManagement.inc:456
 #, php-format
-msgid "The specified value for '%s' must be a numeric value"
+msgid "You're about to delete the following entry: %s"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
+#: plugins/admin/users/class_userManagement.inc:458
 #, php-format
-msgid "Don't add a trailing comma to '%s'."
+msgid "You're about to delete the following entries: %s"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
+#: plugins/admin/users/class_userManagement.inc:460
+msgid "Delete users"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "User delete"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
+#: plugins/admin/users/class_userManagement.inc:488
+#, php-format
+msgid "You are not allowed to delete the user '%s'!"
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
 msgstr ""
 
-#: setup/class_setupStep_Config1.inc:137
-msgid "The given password differ value is not numeric."
+#: plugins/admin/users/class_userManagement.inc:603
+msgid "User deleted"
 msgstr ""
 
-#: setup/setup_schema.tpl:3
-msgid "Schema specific settings"
+#: plugins/admin/users/class_userManagement.inc:603
+msgid "User successfully removed."
 msgstr ""
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
 msgstr ""
 
-#: setup/setup_schema.tpl:16
-msgid "Check status"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
 msgstr ""
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
+#: plugins/admin/users/remove.tpl:6
+msgid ""
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
 
-#: setup/setup_schema.tpl:23
-msgid "Schema check failed"
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
 msgstr ""
 
-#: setup/setup_schema.tpl:31
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
 
-#: setup/setup_schema.tpl:35
+#: plugins/admin/users/password.tpl:4
 msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
 msgstr ""
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
+#: plugins/admin/users/password.tpl:21
+msgid "Strength"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:27
-msgid "Login screen"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:34
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
+msgid "Manage object groups"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, php-format
+msgid "You're about to delete the following object entry %s"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, php-format
+msgid "You're about to delete the following object entries %s"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+msgid "Permission error"
 msgstr ""
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+msgid "You have no permission to delete this entry!"
 msgstr ""
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
 msgstr ""
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+msgid "Windows Install"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
-msgid "Heimdal options"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-msgid "Hour"
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
-msgid "Minute"
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
-msgid "Day"
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
-msgid "Month"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-msgid "Year"
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
+#: plugins/admin/ogroups/class_ogroup.inc:315
+msgid "winstations"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
-msgid "Password end"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
 msgstr ""
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
 msgstr ""
 
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
+#: plugins/admin/ogroups/class_ogroup.inc:629
+msgid "You can combine two different object types at maximum, only!"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
+#: plugins/admin/ogroups/class_ogroup.inc:763
+msgid "Object group generic"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
+#: plugins/admin/ogroups/class_ogroup.inc:774
+msgid "Member"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:6
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr ""
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
 msgstr ""
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
 msgstr ""
 
-#: ihtml/themes/default/logout-close.tpl:5
-msgid "Your GOsa session has been closed!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
 msgstr ""
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-msgid "Creating object snapshots"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
-msgid "Timestamp"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
+#: plugins/admin/ogroups/remove.tpl:7
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-msgid "New ACL"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "ACL type"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+msgid "Please enter the new object group name"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "Select an acl type"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-msgid "List of available ACL categories"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:69
-msgid "Available roles"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:6
-msgid "Change your password"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Success"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "Password change"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:85
-msgid "again"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:86
-msgid "New password repeated"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-msgid "Password strength"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:100
-msgid "Change"
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+msgid "Select to see groups containing windows workstations"
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:101
-msgid "Click here to change your password"
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+msgid "Show groups containing windows workstations"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-msgid "Cancel all"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
 msgstr ""
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
 msgstr ""
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
 msgstr ""
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
 msgstr ""
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+msgid "You are not allowed to remove this entry."
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+msgid "Number of listed object groups"
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr ""
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
 msgstr ""
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/departments/class_departmentManagement.inc:27
+msgid "Manage Departments"
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
+#, php-format
+msgid "You're about to delete the following entry %s"
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:9
-msgid "ignore this error and show all entries the LDAP server returns"
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
+#, php-format
+msgid "You're about to delete the following entries %s"
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:10
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
 msgstr ""
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
+#: plugins/admin/departments/tabs_department.inc:55
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
 msgstr ""
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+msgid "You are currently moving/renaming this department."
 msgstr ""
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
 msgstr ""
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
 msgstr ""
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
 msgstr ""
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+msgid "Fatal error"
 msgstr ""
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+msgid "Cannot find an unused tag for this administrative unit!"
 msgstr ""
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:14
-msgid "You have no permission to delete this object!"
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
-msgid "You have no permission to delete the object:"
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:26
-msgid "You have no permission to delete these objects:"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:33
-msgid "You have no permission to create this object!"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-msgid "You have no permission to create the object:"
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:44
-msgid "You have no permission to create these objects:"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:51
-msgid "You have no permission to modify this object!"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-msgid "You have no permission to modify the object:"
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:62
-msgid "You have no permission to modify these objects:"
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:69
-msgid "You have no permission to view this object!"
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-msgid "You have no permission to view the object:"
+#: plugins/admin/departments/remove.tpl:6
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:80
-msgid "You have no permission to view these objects:"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:87
-msgid "You have no permission to move this object!"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-msgid "You have no permission to move the object:"
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:98
-msgid "You have no permission to move these objects:"
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-msgid "Connection information"
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:110
-#, php-format
-msgid "Cannot connect to %s database!"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:122
-#, php-format
-msgid "Cannot select %s database!"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:140
-#, php-format
-msgid "Cannot query %s database!"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:146
-#, php-format
-msgid "The field '%s' contains a reserved keyword!"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:152
-#, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:159
-#, php-format
-msgid "Value for '%s' is too large!"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:169
-#, php-format
-msgid "Value for '%s' is too small!"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:171
-#, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:184
-#, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:190
-#, php-format
-msgid "The required field '%s' is empty!"
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, php-format
-msgid "The Field '%s' contains invalid characters"
+#: plugins/admin/acl/class_aclRole.inc:26
+msgid "Access control list templates"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
+#: plugins/admin/acl/class_aclRole.inc:27
+msgid "Edit ACL roles"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' are not allowed."
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+msgid "All categories"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:226
-#, php-format
-msgid "Missing %s PHP extension!"
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+msgid "One level"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:256
-#, php-format
-msgid "Add %s"
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+msgid "Current object"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:262
-#, php-format
-msgid "Delete %s"
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+msgid "Complete subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:268
-#, php-format
-msgid "Set %s"
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, php-format
-msgid "Edit..."
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, php-format
-msgid "Edit %s..."
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:292
-#, php-format
-msgid "This account has no valid %s extensions!"
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+msgid "Edit ACL"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:298
-#, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+msgid "Delete ACL"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:317
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
 #, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+msgid "Contains ACLs for these objects: %s"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:320
-#, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+msgid "Edit categories ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:327
-#, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:335
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
 #, php-format
-msgid "Add %s settings"
+msgid "Edit ACL for '%s', scope is '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:341
-#, php-format
-msgid "Remove %s settings"
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/admin/acl/class_aclRole.inc:618
+msgid "Object in use"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
+#: plugins/admin/acl/class_aclRole.inc:618
+#, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+msgid "ACL roles"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
+#: plugins/admin/acl/class_aclRole.inc:700
+msgid "Acl roles"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
+#: plugins/admin/acl/remove.tpl:6
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
+#: plugins/admin/acl/tabs_acl_role.inc:28
+msgid "ACL Templates"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
+#: plugins/admin/acl/class_divListACL.inc:51
+msgid "List of acl"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
+#: plugins/admin/acl/class_divListACL.inc:52
+msgid "List of acls"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
+#: plugins/admin/acl/class_divListACL.inc:84
+msgid "Display acls matching"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
+#: plugins/admin/acl/class_divListACL.inc:243
+msgid "Edit acl role"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
+#: plugins/admin/acl/class_divListACL.inc:253
+msgid "Delete acl role"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
+#: plugins/admin/acl/class_divListACL.inc:265
+msgid "Edit acl"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Sunday"
+#: plugins/admin/acl/class_divListACL.inc:269
+msgid "Delete acl"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Monday"
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+msgid "ACL management"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/acl/class_aclManagement.inc:26
+msgid "ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Wednesday"
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+msgid "Manage access control lists"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
+#: plugins/admin/acl/class_aclManagement.inc:163
+msgid "You have no permission to create a new role!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
+#: plugins/admin/acl/class_aclManagement.inc:200
+msgid "You have no permission to edit this ACL!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, php-format
+msgid "You're about to delete the acl %s."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-msgid "read operation"
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-msgid "modify operation"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-msgid "delete operation"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-msgid "search operation"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-msgid "authentication"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:372
-#, php-format
-msgid "LDAP %s failed!"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:374
-msgid "LDAP operation failed!"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
 msgstr ""
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
-msgid "Configuration error"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
 msgstr ""
 
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
+#: plugins/admin/groups/class_divListGroup.inc:359
+msgid "Number of listed groups"
 msgstr ""
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
 msgstr ""
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
 msgstr ""
 
-#: include/class_tabs.inc:346
-msgid "References"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, php-format
-msgid "Can't locate gotomasses queue file '%s'."
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:73
-#, php-format
-msgid "Can't read gotomasses queue file '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:80
-#, php-format
-msgid "Can't read gotomasses storage file '%s'."
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
+#: plugins/admin/groups/class_groupManagement.inc:434
+#, php-format
+msgid "You're about to delete the group '%s'."
 msgstr ""
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, php-format
-msgid "Can't write gotomasses queue file '%s'."
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:277
-#, php-format
-msgid "Entry with id '%s' not found."
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
-msgid "Internal error"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+msgid "Configuration error"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+msgid "Cannot find group SID in your configuration!"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:268
-#, php-format
-msgid "Cannot load dumped file '%s'!"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:368
-#, php-format
-msgid "You are going to paste the following entries '%s'."
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:391
-#, php-format
-msgid "You are going to paste the following entry '%s'."
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
 msgstr ""
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
+#: plugins/admin/groups/class_groupGeneric.inc:355
+#, php-format
+msgid "Special group (%d)"
 msgstr ""
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr ""
+
+#: plugins/admin/groups/class_groupGeneric.inc:547
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+msgid "Search returned too many results. Not displaying more than %s entries!"
 msgstr ""
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, php-format
+msgid "Cannot find any SID for '%s'!"
 msgstr ""
 
-#: include/class_plugin.inc:1613
-msgid "from"
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
 msgstr ""
 
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/admin/groups/class_groupGeneric.inc:966
+msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+msgid "Generic group settings"
 msgstr ""
 
-#: include/php_setup.inc:96
-msgid "Send bugreport"
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+msgid "Phone pickup group"
 msgstr ""
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+msgid "Nagios group"
 msgstr ""
 
-#: include/php_setup.inc:111
-msgid "PHP error"
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+msgid "Group member"
 msgstr ""
 
-#: include/php_setup.inc:130
-msgid "class"
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+msgid "Samba group type"
 msgstr ""
 
-#: include/php_setup.inc:136
-msgid "function"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+msgid "Samba domain name"
 msgstr ""
 
-#: include/php_setup.inc:141
-msgid "static"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+msgid "Samba SID"
 msgstr ""
 
-#: include/php_setup.inc:145
-msgid "method"
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+msgid "Language setup"
 msgstr ""
 
-#: include/php_setup.inc:178
-msgid "Trace"
+#: setup/class_setupStep_Language.inc:42
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "File"
+#: setup/class_setupStep_Language.inc:47
+msgid "Automatic"
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Line"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: include/php_setup.inc:179
-msgid "Type"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/php_setup.inc:180
-msgid "Arguments"
+#: setup/setup_welcome.tpl:11
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: include/class_acl.inc:26
-msgid "Access control"
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-msgid "Manage access control lists"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-msgid "All categories"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-msgid "One level"
+#: setup/setup_welcome.tpl:20
+msgid "Find every possible configuration error"
 msgstr ""
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-msgid "Current object"
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-msgid "Complete subtree"
+#: setup/setup_welcome.tpl:25
+msgid "To continue..."
 msgstr ""
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
 msgstr ""
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+msgid "GOsa settings 1/3"
 msgstr ""
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
+#: setup/class_setupStep_Config1.inc:76
+msgid "GOsa generic settings"
 msgstr ""
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
 msgstr ""
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
 msgstr ""
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
+#: setup/class_setupStep_Config1.inc:118
+#, php-format
+msgid "The specified value for '%s' must be a numeric value"
 msgstr ""
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
-msgid "Edit ACL"
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
 msgstr ""
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
+#, php-format
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
-msgid "Delete ACL"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
 msgstr ""
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
 msgstr ""
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
 msgstr ""
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
-msgid "Edit categories ACLs"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
 msgstr ""
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
+#: setup/class_setupStep_Config1.inc:137
+msgid "The given password differ value is not numeric."
 msgstr ""
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
 msgstr ""
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
+#: setup/setup_ldap.tpl:25
+msgid "LDAP connection"
 msgstr ""
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-msgid "Show/Hide Advanced Settings"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
 msgstr ""
 
-#: include/class_acl.inc:690
-msgid "Create objects"
+#: setup/setup_ldap.tpl:37
+msgid "Connection URL"
 msgstr ""
 
-#: include/class_acl.inc:691
-msgid "Move objects"
+#: setup/setup_ldap.tpl:45
+msgid "TLS connection"
 msgstr ""
 
-#: include/class_acl.inc:692
-msgid "Remove objects"
+#: setup/setup_ldap.tpl:65
+msgid "Reload"
 msgstr ""
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
+#: setup/setup_ldap.tpl:69
+msgid "Authentication"
 msgstr ""
 
-#: include/class_acl.inc:697
-msgid "Move object"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
 msgstr ""
 
-#: include/class_acl.inc:698
-msgid "Remove object"
+#: setup/setup_ldap.tpl:78
+msgid "Select user"
 msgstr ""
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
 msgstr ""
 
-#: include/class_acl.inc:710
-msgid "Complete object"
+#: setup/setup_ldap.tpl:101
+msgid "Schema based settings"
 msgstr ""
 
-#: include/class_acl.inc:826
-#, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_acl.inc:869
-#, php-format
-msgid "Unknown entry '%s'!"
+#: setup/setup_ldap.tpl:117
+msgid "Current status"
 msgstr ""
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
-#, php-format
-msgid "Role: %s"
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
+#: setup/setup_migrate.tpl:33
+msgid "Check again"
 msgstr ""
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
 msgstr ""
 
-#: include/class_acl.inc:948
-msgid "Members:"
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
 
-#: include/class_acl.inc:1115
-msgid "Access control list"
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
+msgid "Select all"
 msgstr ""
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
-msgid "ACL roles"
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
 msgstr ""
 
-#: include/class_acl.inc:1123
-msgid "Role name"
+#: setup/setup_migrate.tpl:72
+msgid "Move selected workstations"
 msgstr ""
 
-#: include/class_acl.inc:1124
-msgid "Role description"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
 msgstr ""
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
 msgstr ""
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
 
-#: include/class_log.inc:88
-#, php-format
-msgid "Logging failed: %s"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
 msgstr ""
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+msgid "Hide changes"
 msgstr ""
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+msgid "Show changes"
 msgstr ""
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: include/class_log.inc:124
-msgid "Specified objectType is empty or invalid"
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/class_log.inc:145
+#: setup/setup_migrate.tpl:145
 msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
 
-#: include/class_log.inc:157
-#, php-format
-msgid "Cannot connect to logging server '%s'."
+#: setup/setup_migrate.tpl:148
+msgid "Move selected users into this people tree"
 msgstr ""
 
-#: include/class_log.inc:165
-#, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
+#: setup/setup_migrate.tpl:198
+msgid "Next"
 msgstr ""
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/setup_migrate.tpl:199
+msgid "Abort"
 msgstr ""
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+#: setup/setup_migrate.tpl:201
+msgid "Create a new GOsa administrator account"
 msgstr ""
 
-#: include/class_log.inc:241
-#, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
+#: setup/setup_migrate.tpl:204
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: include/class_multi_plug.inc:362
-msgid "You are currently editing mutliple entries."
+#: setup/setup_migrate.tpl:233
+msgid "Password (again)"
 msgstr ""
 
-#: include/class_multi_plug.inc:391
-msgid "Password reset"
+#: setup/setup_migrate.tpl:258
+msgid ""
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
 
-#: include/class_multi_plug.inc:391
-msgid "The user password was resetted, please set a new password value!"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 ""
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+msgid "Current"
 msgstr ""
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+msgid "After migration"
 msgstr ""
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+msgid "GOsa settings 3/3"
 msgstr ""
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
 msgstr ""
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
 msgstr ""
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+msgid "LDAP inspection"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
+#: setup/class_setupStep_Migrate.inc:113
+msgid "Checking for root object"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
+#: setup/class_setupStep_Migrate.inc:125
+msgid "Checking for invisible departments"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
+#: setup/class_setupStep_Migrate.inc:131
+msgid "Checking for invisible users"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
+#: setup/class_setupStep_Migrate.inc:137
+msgid "Checking for super administrator"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/class_setupStep_Migrate.inc:143
+msgid "Checking for users outside the people tree"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
-msgid "Restore"
+#: setup/class_setupStep_Migrate.inc:149
+msgid "Checking for groups outside the groups tree"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/class_setupStep_Migrate.inc:161
+msgid "Checking for duplicate uid numbers"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create snapshot"
+#: setup/class_setupStep_Migrate.inc:167
+msgid "Checking for duplicate gid numbers"
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+msgid "LDAP query failed"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create a new snapshot from this object"
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
 msgstr ""
 
-#: include/class_config.inc:106
+#: setup/class_setupStep_Migrate.inc:213
 #, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr ""
-
-#: include/class_config.inc:109
-msgid "Config file parsing"
+msgid "Found %s duplicate values for attribute 'uidNumber'."
 msgstr ""
 
-#: include/class_config.inc:228
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: setup/class_setupStep_Migrate.inc:262
+#, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
 msgstr ""
 
-#: include/class_config.inc:560
-msgid "SID and/or RIDBASE missing in the configuration!"
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:83
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
-msgid "You're about to delete the snapshot '%s'."
+msgid ""
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
-msgid "Remove snapshot"
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+msgid "Migrate"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/class_setupStep_Migrate.inc:387
+#, php-format
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+msgid "Move"
 msgstr ""
 
-#: include/functions.inc:101
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
 
-#: include/functions.inc:108
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
 
-#: include/functions.inc:318
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgid "Found %s user(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, php-format
-msgid "User login failed."
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+msgid "Migration error"
 msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
 #, php-format
-msgid "LDAP server returned: %s"
+msgid "Cannot migrate department '%s':"
 msgstr ""
 
-#: include/functions.inc:380 include/functions.inc:450
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
 msgstr ""
 
-#: include/functions.inc:605
+#: setup/class_setupStep_Migrate.inc:945
 #, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+msgid "Cannot add ACL for user '%s':"
 msgstr ""
 
-#: include/functions.inc:620
-#, php-format
-msgid "Adding a lock failed."
+#: setup/class_setupStep_Migrate.inc:970
+msgid "Password error"
 msgstr ""
 
-#: include/functions.inc:652
-#, php-format
-msgid "Removing a lock failed."
+#: setup/class_setupStep_Migrate.inc:970
+msgid "Provided passwords do not match!"
 msgstr ""
 
-#: include/functions.inc:691 include/functions.inc:736
-#, php-format
-msgid "Cannot get locking information from LDAP tree!"
+#: setup/class_setupStep_Migrate.inc:975
+msgid "Input error"
 msgstr ""
 
-#: include/functions.inc:699
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+#: setup/class_setupStep_Migrate.inc:975
+msgid "Specify a valid user ID!"
 msgstr ""
 
-#: include/functions.inc:996
+#: setup/class_setupStep_Migrate.inc:1019
 #, php-format
-msgid "The size limit of %d entries is exceed!"
+msgid "Adding an administrative user failed: object '%s' already exists!"
 msgstr ""
 
-#: include/functions.inc:998
-#, php-format
-msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+msgid "Cannot move users to the requested department!"
 msgstr ""
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
 msgstr ""
 
-#: include/functions.inc:1015
-msgid "incomplete"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+msgid "to"
 msgstr ""
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
 msgstr ""
 
-#: include/functions.inc:1254
-msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
 msgstr ""
 
-#: include/functions.inc:1260
-msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
 msgstr ""
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
 msgstr ""
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
 
-#: include/functions.inc:1329
-#, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+msgid "Try to create root object"
 msgstr ""
 
-#: include/functions.inc:1513
-msgid "Entries per page"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
 
-#: include/functions.inc:1541
-msgid "Apply filter"
+#: setup/class_setupStep_Migrate.inc:1916
+#, php-format
+msgid "Copy '%s' to '%s' failed:"
 msgstr ""
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/setup_frame.tpl:12
+msgid "GOsa setup wizard"
 msgstr ""
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
+#: setup/setup_frame.tpl:19
+msgid "Installation"
 msgstr ""
 
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
+#: setup/setup_frame.tpl:19
+msgid "Steps"
 msgstr ""
 
-#: include/functions.inc:1950 include/functions.inc:1970
-msgid "Cannot write to revision file!"
+#: setup/class_setupStep_Feedback.inc:91
+msgid "UNIX accounts/groups"
 msgstr ""
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
+#: setup/class_setupStep_Feedback.inc:93
+msgid "Samba management"
 msgstr ""
 
-#: include/functions.inc:2244
-msgid "LDAP warning"
+#: setup/class_setupStep_Feedback.inc:95
+msgid "Mailsystem management"
 msgstr ""
 
-#: include/functions.inc:2244
-msgid "Cannot get schema information from server. No schema check possible!"
+#: setup/class_setupStep_Feedback.inc:97
+msgid "FAX system administration"
 msgstr ""
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
+#: setup/class_setupStep_Feedback.inc:99
+msgid "Asterisk administration"
 msgstr ""
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Feedback.inc:101
+msgid "System inventory"
 msgstr ""
 
-#: include/functions.inc:2320
-#, php-format
-msgid "Missing required object class '%s'!"
+#: setup/class_setupStep_Feedback.inc:103
+msgid "System-/Configmanagement"
 msgstr ""
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
 msgstr ""
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+msgid "Notification and feedback"
 msgstr ""
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+#: setup/class_setupStep_Feedback.inc:112
+msgid "Get notifications or send feedback"
 msgstr ""
 
-#: include/functions.inc:2334
-#, php-format
-msgid "Class(es) available"
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+msgid "Setup error"
 msgstr ""
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
 msgstr ""
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
 msgstr ""
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
 msgstr ""
 
-#: include/functions.inc:2385
-msgid "German"
+#: setup/class_setupStep_Feedback.inc:179
+msgid "Please specify a valid email address."
 msgstr ""
 
-#: include/functions.inc:2386
-msgid "French"
+#: setup/class_setupStep_Feedback.inc:183
+msgid ""
+"You have to select at least one of both options, subscribe or send feedback."
 msgstr ""
 
-#: include/functions.inc:2387
-msgid "Italian"
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+msgid "License"
 msgstr ""
 
-#: include/functions.inc:2388
-msgid "Spanish"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
 msgstr ""
 
-#: include/functions.inc:2389
-msgid "English"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
 msgstr ""
 
-#: include/functions.inc:2390
-msgid "Dutch"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
 msgstr ""
 
-#: include/functions.inc:2391
-msgid "Polish"
+#: setup/setup_config2.tpl:31
+msgid "RID base"
 msgstr ""
 
-#: include/functions.inc:2392
-msgid "Swedish"
+#: setup/setup_config2.tpl:46
+msgid "Workstation container"
 msgstr ""
 
-#: include/functions.inc:2393
-msgid "Chinese"
+#: setup/setup_config2.tpl:61
+msgid "Samba SID mapping"
 msgstr ""
 
-#: include/functions.inc:2394
-msgid "Russian"
+#: setup/setup_config2.tpl:71
+msgid "Timezone"
 msgstr ""
 
-#: include/functions.inc:2544
-#, php-format
-msgid "Setting the password failed!"
+#: setup/setup_config2.tpl:74
+msgid "Please choose your preferred timezone here"
 msgstr ""
 
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+#: setup/setup_config2.tpl:96
+msgid "Additional GOsa settings"
 msgstr ""
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
+#: setup/setup_config2.tpl:112
+msgid "Enable DNS extension"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: setup/setup_config2.tpl:124
+msgid "Enable DHCP extension"
 msgstr ""
 
-#: include/class_ldap.inc:579
-#, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+#: setup/setup_config2.tpl:136
+msgid "Enable mime type management"
 msgstr ""
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+#: setup/setup_config2.tpl:148
+msgid "Enable FAI release management"
 msgstr ""
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: setup/setup_config2.tpl:160
+msgid "Enable user netatalk plugin"
 msgstr ""
 
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
+#: setup/setup_config2.tpl:171
+msgid "Government mode"
 msgstr ""
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
 msgstr ""
 
-#: include/class_ldap.inc:964
-#, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
+#: setup/setup_config2.tpl:214
+msgid "Vacation templates"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
+#: setup/setup_config2.tpl:240
+msgid "Snapshots / Undo"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+msgid "Enable snapshots"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+msgid "Snapshot base"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
 msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
 msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:38
-msgid "Edit organizational user settings"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:492
-msgid "Please enter a valid serial number!"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:536
-msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
+#: setup/setup_feedback.tpl:123
+msgid "Features"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-msgid "Password method"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575
-msgid "The selected password method is no longer available."
+#: setup/setup_schema.tpl:3
+msgid "Schema specific settings"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:755
-#, php-format
-msgid "You have no permission to move this object to '%s'!"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
+#: setup/setup_schema.tpl:16
+msgid "Check status"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
+#: setup/setup_schema.tpl:23
+msgid "Schema check failed"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1285
-msgid "Cannot open certificate!"
+#: setup/class_setup.inc:196
+msgid "Completed"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
+#: setup/class_setupStep_Ldap.inc:53
+msgid "LDAP setup"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
+#: setup/class_setupStep_Ldap.inc:54
+msgid "LDAP connection setup"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
+#: setup/class_setupStep_Ldap.inc:55
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
+#: setup/class_setupStep_Ldap.inc:105
+#, php-format
+msgid "Anonymous bind failed on server '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
+#: setup/class_setupStep_Ldap.inc:107
+#, php-format
+msgid "Bind as user '%s' failed on server '%s'."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
+#: setup/class_setupStep_Ldap.inc:113
+msgid "Please specify user and password."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
+#: setup/class_setupStep_Ldap.inc:115
+#, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
+#: setup/setup_config1.tpl:6
+msgid "Theme"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
+#: setup/setup_config1.tpl:15
+msgid "Apache"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1432
-msgid "Generic user settings"
+#: setup/setup_config1.tpl:27
+msgid "People and group storage"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
+#: setup/setup_config1.tpl:30
+msgid "People DN attribute"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-msgid "User password"
+#: setup/setup_config1.tpl:41
+msgid "People storage subtree"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
+#: setup/setup_config1.tpl:50
+msgid "Group storage subtree"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1445
-msgid "User identification"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
+#: setup/setup_config1.tpl:81
+msgid "Automatic uids"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
+#: setup/setup_config1.tpl:113
+msgid "Number base for people/groups"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1449
-msgid "Home phone number"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
+#: setup/setup_config1.tpl:140
+msgid "Password encryption algorithm"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
+#: setup/setup_config1.tpl:151
+msgid "Password restrictions"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1454
-msgid "Gender"
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1455
-msgid "Preferred language"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1456
-msgid "Department number"
+#: setup/setup_config1.tpl:182
+msgid "Password change hook"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1457
-msgid "Employee number"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
+#: setup/setup_config1.tpl:209
+msgid "Use account expiration"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
+#: setup/setup_config1.tpl:222
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1462
-msgid "Room number"
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1463
-msgid "Telefon number"
+#: setup/setup_config1.tpl:224
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
-msgid "Mobile number"
+#: setup/setup_language.tpl:3
+msgid "Please select the preferred language"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1465
-msgid "Pager number"
+#: setup/setup_language.tpl:5
+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/personal/generic/class_user.inc:1466
-msgid "User certificates"
+#: setup/setup_language.tpl:9
+msgid "Please select your preferred language here"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1469
-msgid "Fax number"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
 msgstr ""
 
-#: plugins/personal/generic/password.tpl:2
-msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+#: setup/class_setupStep_Checks.inc:64
+msgid "Checking PHP version"
 msgstr ""
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
+#: setup/class_setupStep_Checks.inc:65
+#, php-format
+msgid "PHP must be of version %s or above."
 msgstr ""
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
+#: setup/class_setupStep_Checks.inc:72
+msgid "Checking for LDAP support"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:73
+msgid "This is the main extension used by GOsa and therefore really required."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
+#: setup/class_setupStep_Checks.inc:74
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
+#: setup/class_setupStep_Checks.inc:81
+msgid "Gettext support is required for internationalization."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
+#: setup/class_setupStep_Checks.inc:89
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
+#: setup/class_setupStep_Checks.inc:96
+msgid "Checking for mhash support"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
+#: setup/class_setupStep_Checks.inc:104
+msgid "Checking for IMAP support"
 msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
+#: setup/class_setupStep_Checks.inc:105
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
 msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/class_setupStep_Checks.inc:106
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
 msgstr ""
 
-#: plugins/personal/generic/main.inc:104
-msgid "You have no permission to set your password!"
+#: setup/class_setupStep_Checks.inc:112
+msgid "Checking for multi byte support"
 msgstr ""
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
 msgstr ""
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
+#: setup/class_setupStep_Checks.inc:120
+msgid "Checking for getacl in IMAP implementation"
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/class_setupStep_Checks.inc:121
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
+#: setup/class_setupStep_Checks.inc:128
+msgid "Checking for MySQL support"
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
+#: setup/class_setupStep_Checks.inc:129
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
 msgstr ""
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
+#: setup/class_setupStep_Checks.inc:136
+msgid "Checking for kadm5 support"
 msgstr ""
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
 msgstr ""
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/class_setupStep_Checks.inc:138
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:27
-msgid "Change user passwords"
+#: setup/class_setupStep_Checks.inc:144
+msgid "Checking for SNMP support"
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
+#: setup/class_setupStep_Checks.inc:145
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
+#: setup/class_setupStep_Checks.inc:146
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
+#: setup/class_setupStep_Checks.inc:152
+msgid "Checking for CUPS support"
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
+#: setup/class_setupStep_Checks.inc:153
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:95
-#, php-format
-msgid "External password changer reported a problem: %s."
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:163
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
 msgstr ""
 
-#: plugins/personal/password/class_password.inc:115
-msgid "You have no permission to change your password."
+#: setup/class_setupStep_Checks.inc:164
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
 msgstr ""
 
-#: plugins/personal/password/password.tpl:4
-msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
 msgstr ""
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:180
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
 msgstr ""
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
+#: setup/class_setupStep_Checks.inc:181
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
+#: setup/class_setupStep_Checks.inc:192
+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/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
+#: setup/class_setupStep_Checks.inc:193
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
+#: setup/class_setupStep_Checks.inc:202
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
+#: setup/class_setupStep_Checks.inc:203
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
 msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
+#: setup/class_setupStep_Checks.inc:211
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
+#: setup/class_setupStep_Checks.inc:212
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
+#: setup/class_setupStep_Checks.inc:219
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
+#: setup/class_setupStep_Checks.inc:227
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
+#: setup/class_setupStep_Checks.inc:235
+msgid "The Execution time should be at least 30 seconds."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
 msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Search in subtrees"
+#: setup/class_setupStep_Checks.inc:243
+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/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
+#: setup/class_setupStep_Checks.inc:250
+msgid "On"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:252
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:154
-msgid "expired"
+#: setup/class_setupStep_Checks.inc:259
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
+#: setup/class_setupStep_Checks.inc:260
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
+#: setup/class_setupStep_Checks.inc:270
+msgid "Configuration writeable"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
+#: setup/class_setupStep_Checks.inc:271
+msgid "The configuration file can't be written"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
+#: setup/class_setupStep_Checks.inc:272
+#, php-format
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
+#: setup/setup_config3.tpl:2
+msgid "GOsa core settings"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
+#: setup/setup_config3.tpl:6
+msgid "Disable primary group filter"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/setup_config3.tpl:18
+msgid "Display summary in listings"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
+#: setup/setup_config3.tpl:30
+msgid "Honour administrative units"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
+#: setup/setup_config3.tpl:42
+msgid "Smarty compile directory"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:465
-#, php-format
-msgid "Password can't be changed up to %s days after last change"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
+#: setup/setup_config3.tpl:60
+msgid "Path for PPD storage"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
+#: setup/setup_config3.tpl:77
+msgid "Path for kiosk profile storage"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
+#: setup/setup_config3.tpl:96
+msgid "Enable system deployment"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
+#: setup/setup_config3.tpl:115
+msgid "Mail queue script"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
+#: setup/setup_config3.tpl:134
+msgid "Notification script"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/setup_config3.tpl:153
+msgid "Enable edit locking"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid "Uid number"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+#: setup/setup_config3.tpl:175
+msgid "Login attribute"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
-msgid "shadowMin"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-msgid "shadowMax"
+#: setup/setup_config3.tpl:210
+msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
-msgid "shadowWarning"
+#: setup/setup_config3.tpl:222
+msgid "Remember dialog filter settings"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
-msgid "shadowInactive"
+#: setup/setup_config3.tpl:234
+msgid "Session lifetime"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-msgid "POSIX account"
+#: setup/setup_config3.tpl:247
+msgid "Show PHP errors"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
+#: setup/setup_config3.tpl:259
+msgid "Maximum LDAP query time"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-msgid "Group ID"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-msgid "Force password change on login"
+#: setup/setup_config3.tpl:289
+msgid "Debug level"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
-msgid "Shadow min"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+msgid "Disabled"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+msgid "Enabled"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
-msgid "Shadow warning"
+#: setup/class_setupStep_Welcome.inc:38
+msgid "Welcome"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-msgid "Shadow inactive"
+#: setup/class_setupStep_Welcome.inc:39
+msgid "The welcome message"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
-msgid "Shadow expire"
+#: setup/class_setupStep_Welcome.inc:40
+msgid "Welcome to GOsa setup wizard"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
-msgid "System trust model"
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+msgid "LDAP schema check"
 msgstr ""
 
-#: plugins/personal/posix/main.inc:131
-msgid "POSIX settings"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
-msgid "In all groups"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
-msgid "Not in all groups"
+#: setup/setup_checks.tpl:67
+msgid "PHP setup configuration"
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
+#: setup/setup_checks.tpl:67
+msgid "show information"
 msgstr ""
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
+#: setup/setup_finish.tpl:3
+msgid "Create your configuration file"
 msgstr ""
-
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
+
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
+#: setup/setup_finish.tpl:18
+msgid "Status: "
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
+#: setup/class_setupStep_Finish.inc:38
+msgid "Write configuration file"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
+#: setup/class_setupStep_Finish.inc:39
+msgid "Finish - write the configuration file"
 msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
+#: setup/class_setupStep_Finish.inc:100
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
 msgstr ""
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
+#: setup/class_setupStep_Finish.inc:102
+msgid "The configuration is currently not readable or it does not exists."
 msgstr ""
 
-#: plugins/admin/users/template.tpl:6
+#: setup/class_setupStep_Finish.inc:111
+#, php-format
 msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
+"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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+msgid "GOsa settings 2/3"
 msgstr ""
 
-#: plugins/admin/users/password.tpl:4
-msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+#: setup/class_setupStep_Config2.inc:87
+msgid "Customize special parameters"
 msgstr ""
 
-#: plugins/admin/users/password.tpl:21
-msgid "Strength"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:60
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
+#: include/class_tabs.inc:346
+msgid "References"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
+#: include/class_plugin.inc:1613
+msgid "from"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+msgid "Restore"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-msgid "Copy"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-msgid "Cut"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create snapshot"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create a new snapshot from this object"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
+#: include/class_SnapShotDialog.inc:135
+msgid "Remove snapshot"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
+#: include/class_config.inc:109
+msgid "Config file parsing"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
+#: include/class_config.inc:228
+msgid "Cannot bind to LDAP. Please contact the system administrator."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
-msgid "Deactivated"
+#: include/class_config.inc:561
+msgid "SID and/or RIDBASE missing in the configuration!"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
+msgid "Internal error"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
+#: include/class_log.inc:88
+#, php-format
+msgid "Logging failed: %s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:343
-msgid "You are not allowed to change the password for this user."
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
+#: include/class_log.inc:120
+#, php-format
+msgid "Invalid option '%s' specified."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:357
-msgid "You are not allowed to remove this user."
+#: include/class_log.inc:124
+msgid "Specified objectType is empty or invalid"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:443
-msgid "Number of listed users"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-msgid "Number of listed departments"
+#: include/class_log.inc:157
+#, php-format
+msgid "Cannot connect to logging server '%s'."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:27
-msgid "Manage users"
+#: include/class_log.inc:165
+#, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-msgid "Daemon"
+#: include/class_log.inc:181
+#, php-format
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_log.inc:218
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "Couldn't add your location to the logging database, the error was: %s."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
-msgid "Password change failed."
+#: include/class_log.inc:241
+#, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:456
-#, php-format
-msgid "You're about to delete the following entry: %s"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:458
-#, php-format
-msgid "You're about to delete the following entries: %s"
+#: include/php_setup.inc:96
+msgid "Send bugreport"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:460
-msgid "Delete users"
+#: include/php_setup.inc:101
+msgid "Toggle information"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "User delete"
+#: include/php_setup.inc:111
+msgid "PHP error"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
-#, php-format
-msgid "You are not allowed to delete the user '%s'!"
+#: include/php_setup.inc:130
+msgid "class"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
+#: include/php_setup.inc:136
+msgid "function"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-msgid "User deleted"
+#: include/php_setup.inc:141
+msgid "static"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-msgid "User successfully removed."
+#: include/php_setup.inc:145
+msgid "method"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
+#: include/php_setup.inc:178
+msgid "Trace"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
+#: include/php_setup.inc:179
+msgid "File"
 msgstr ""
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+#: include/php_setup.inc:179
+msgid "Line"
 msgstr ""
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
+#: include/php_setup.inc:179
+msgid "Type"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
+#: include/php_setup.inc:180
+msgid "Arguments"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
+#: include/class_acl.inc:26
+msgid "Access control"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+msgid "Show/Hide Advanced Settings"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
+#: include/class_acl.inc:690
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
+#: include/class_acl.inc:691
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
+#: include/class_acl.inc:692
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
+#: include/class_acl.inc:697
+msgid "Move object"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
+#: include/class_acl.inc:698
+msgid "Remove object"
 msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-msgid "Cannot find group SID in your configuration!"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
+#: include/class_acl.inc:710
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
+#: include/class_acl.inc:826
+#, php-format
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
+#: include/class_acl.inc:869
+#, php-format
+msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, php-format
+msgid "Role: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
+#: include/class_acl.inc:939
 #, php-format
-msgid "Special group (%d)"
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
+#: include/class_acl.inc:948
+msgid "Members:"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
-#, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#, php-format
-msgid "Cannot find any SID for '%s'!"
+#: include/class_acl.inc:1115
+msgid "Access control list"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
+#: include/class_acl.inc:1123
+msgid "Role name"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
-msgid "Cannot allocate a free ID!"
+#: include/class_acl.inc:1124
+msgid "Role description"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-msgid "Generic group settings"
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
-msgid "Phone pickup group"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, php-format
+msgid "Can't locate gotomasses queue file '%s'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-msgid "Nagios group"
+#: include/class_hostActionQueue.inc:73
+#, php-format
+msgid "Can't read gotomasses queue file '%s'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
-msgid "Group member"
+#: include/class_hostActionQueue.inc:80
+#, php-format
+msgid "Can't read gotomasses storage file '%s'."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
-msgid "Samba group type"
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
-msgid "Samba domain name"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, php-format
+msgid "Can't write gotomasses queue file '%s'."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
+#: include/class_hostActionQueue.inc:277
+#, php-format
+msgid "Entry with id '%s' not found."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
+#: include/functions.inc:318
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
+#: include/functions.inc:380
+msgid "Username / UID is not unique inside the LDAP tree!"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
+#: include/functions.inc:450
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
+#: include/functions.inc:605
+#, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
+#: include/functions.inc:605 include/functions.inc:620
+#, php-format
+msgid "LDAP server returned: %s"
 msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-msgid "Number of listed groups"
+#: include/functions.inc:620
+#, php-format
+msgid "Adding a lock failed."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/functions.inc:699
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/functions.inc:996
 #, php-format
-msgid "You're about to delete the following entry %s"
+msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:998
 #, php-format
-msgid "You're about to delete the following entries %s"
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-msgid "Permission error"
+#: include/functions.inc:1015
+msgid "incomplete"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-msgid "You have no permission to delete this entry!"
+#: include/functions.inc:1253
+msgid "LDAP error:"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:434
-#, php-format
-msgid "You're about to delete the group '%s'."
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
 msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:1260
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
 msgstr ""
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
+#: include/functions.inc:1325
+msgid "Continue anyway"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
+#: include/functions.inc:1327
+msgid "Edit anyway"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
+#: include/functions.inc:1329
+#, php-format
+msgid "You're going to edit the LDAP entry/entries '%s'"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
+#: include/functions.inc:1513
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
+#: include/functions.inc:1541
+msgid "Apply filter"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
 msgstr ""
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
 msgstr ""
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-msgid "ACL Templates"
+#: include/functions.inc:1950 include/functions.inc:1970
+msgid "Cannot write to revision file!"
 msgstr ""
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-msgid "ACLs"
+#: include/functions.inc:2244
+msgid "LDAP warning"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:163
-msgid "You have no permission to create a new role!"
+#: include/functions.inc:2244
+msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-msgid "You have no permission to edit this ACL!"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
-#, php-format
-msgid "You're about to delete the acl %s."
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:51
-msgid "List of acl"
+#: include/functions.inc:2320
+#, php-format
+msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:52
-msgid "List of acls"
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
+#: include/functions.inc:2334
+#, php-format
+msgid "Class(es) available"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
-msgid "Display acls matching"
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:244
-msgid "Edit acl role"
+#: include/functions.inc:2357
+msgid ""
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:254
-msgid "Delete acl role"
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:266
-msgid "Edit acl"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:270
-msgid "Delete acl"
+#: include/functions.inc:2385
+msgid "German"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:26
-msgid "Access control list templates"
+#: include/functions.inc:2386
+msgid "French"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
-msgid "Edit ACL roles"
+#: include/functions.inc:2387
+msgid "Italian"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-msgid "Object in use"
+#: include/functions.inc:2388
+msgid "Spanish"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+#: include/functions.inc:2389
+msgid "English"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:700
-msgid "Acl roles"
+#: include/functions.inc:2390
+msgid "Dutch"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
-msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+#: include/functions.inc:2391
+msgid "Polish"
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+#: include/functions.inc:2392
+msgid "Swedish"
 msgstr ""
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-msgid "ACL management"
+#: include/functions.inc:2393
+msgid "Chinese"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
+#: include/functions.inc:2394
+msgid "Russian"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
+#: include/functions.inc:2562
+#, php-format
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-msgid "Fatal error"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-msgid "Cannot find an unused tag for this administrative unit!"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
 #, php-format
-msgid "Tagging '%s'."
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
+#: include/class_ldap.inc:592
 #, php-format
-msgid "Moving '%s' to '%s'"
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
+#: include/class_ldap.inc:640
 #, php-format
-msgid "FAILED to copy %s, aborting operation"
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
+#: include/class_ldap.inc:726
+#, php-format
+msgid "while operating on LDAP server %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
+#: include/class_ldap.inc:948
+#, php-format
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
+#: include/class_ldap.inc:977
+#, php-format
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_CopyPasteHandler.inc:158
 #, php-format
-msgid "Object '%s' is already tagged"
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_CopyPasteHandler.inc:175
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_CopyPasteHandler.inc:183
 #, php-format
-msgid "Removing tag from object '%s'"
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-msgid "You are currently moving/renaming this department."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:268
+#, php-format
+msgid "Cannot load dumped file '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_CopyPasteHandler.inc:368
+#, php-format
+msgid "You are going to paste the following entries '%s'."
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:391
+#, php-format
+msgid "You are going to paste the following entry '%s'."
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
+#: include/utils/class_msgPool.inc:14
+msgid "You have no permission to delete this object!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+msgid "You have no permission to delete the object:"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
+#: include/utils/class_msgPool.inc:26
+msgid "You have no permission to delete these objects:"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
+#: include/utils/class_msgPool.inc:33
+msgid "You have no permission to create this object!"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+msgid "You have no permission to create the object:"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
+#: include/utils/class_msgPool.inc:44
+msgid "You have no permission to create these objects:"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
-msgid "Manage Departments"
+#: include/utils/class_msgPool.inc:51
+msgid "You have no permission to modify this object!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+msgid "You have no permission to modify the object:"
 msgstr ""
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
+#: include/utils/class_msgPool.inc:62
+msgid "You have no permission to modify these objects:"
 msgstr ""
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
+#: include/utils/class_msgPool.inc:69
+msgid "You have no permission to view this object!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+msgid "You have no permission to view the object:"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
+#: include/utils/class_msgPool.inc:80
+msgid "You have no permission to view these objects:"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
+#: include/utils/class_msgPool.inc:87
+msgid "You have no permission to move this object!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+msgid "You have no permission to move the object:"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
+#: include/utils/class_msgPool.inc:98
+msgid "You have no permission to move these objects:"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+msgid "Connection information"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
+#: include/utils/class_msgPool.inc:110
+#, php-format
+msgid "Cannot connect to %s database!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
+#: include/utils/class_msgPool.inc:122
+#, php-format
+msgid "Cannot select %s database!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
+#: include/utils/class_msgPool.inc:140
+#, php-format
+msgid "Cannot query %s database!"
 msgstr ""
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
+#: include/utils/class_msgPool.inc:146
+#, php-format
+msgid "The field '%s' contains a reserved keyword!"
 msgstr ""
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
-msgid "Please enter the new object group name"
+#: include/utils/class_msgPool.inc:152
+#, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
+#: include/utils/class_msgPool.inc:159
+#, php-format
+msgid "Value for '%s' is too large!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
+#: include/utils/class_msgPool.inc:169
+#, php-format
+msgid "Value for '%s' is too small!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
+#: include/utils/class_msgPool.inc:171
+#, php-format
+msgid "'%s' must be %d or above!"
 msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:184
+#, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
+#: include/utils/class_msgPool.inc:190
+#, php-format
+msgid "The required field '%s' is empty!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, php-format
+msgid "The Field '%s' contains invalid characters"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' are not allowed."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
+#: include/utils/class_msgPool.inc:226
+#, php-format
+msgid "Missing %s PHP extension!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add %s"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-msgid "winstations"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete %s"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set %s"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
+#: include/utils/class_msgPool.inc:274
+#, php-format
+msgid "Edit..."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
+#: include/utils/class_msgPool.inc:274
+#, php-format
+msgid "Edit %s..."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
+#: include/utils/class_msgPool.inc:280
+#, php-format
+msgid "Back..."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
+#: include/utils/class_msgPool.inc:280
+#, php-format
+msgid "Back %s..."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-msgid "You can combine two different object types at maximum, only!"
+#: include/utils/class_msgPool.inc:298
+#, php-format
+msgid "This account has no valid %s extensions!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-msgid "Object group generic"
+#: include/utils/class_msgPool.inc:304
+#, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-msgid "Member"
+#: include/utils/class_msgPool.inc:323
+#, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-msgid "Manage object groups"
+#: include/utils/class_msgPool.inc:326
+#, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:333
 #, php-format
-msgid "You're about to delete the following object entry %s"
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:341
 #, php-format
-msgid "You're about to delete the following object entries %s"
+msgid "Add %s settings"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#: include/utils/class_msgPool.inc:347
 #, php-format
-msgid "You're about to delete the object group '%s'."
+msgid "Remove %s settings"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
+#: include/utils/class_msgPool.inc:353
+msgid "Click the 'Edit' button below to change informations in this dialog"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-msgid "Windows Install"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
+#: include/utils/class_msgPool.inc:367
+msgid "Sunday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
+#: include/utils/class_msgPool.inc:367
+msgid "Monday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
+#: include/utils/class_msgPool.inc:367
+msgid "Wednesday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
+#: include/utils/class_msgPool.inc:374
+msgid "read operation"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
+#: include/utils/class_msgPool.inc:374
+msgid "modify operation"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
+#: include/utils/class_msgPool.inc:375
+msgid "delete operation"
 msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
+#: include/utils/class_msgPool.inc:375
+msgid "search operation"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
+#: include/utils/class_msgPool.inc:375
+msgid "authentication"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:378
+#, php-format
+msgid "LDAP %s failed!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:380
+msgid "LDAP operation failed!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
+#: include/utils/class_timezone.inc:51
+#, php-format
 msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
+#: include/class_multi_plug.inc:362
+msgid "You are currently editing mutliple entries."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
+#: include/class_multi_plug.inc:391
+msgid "Password reset"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
+#: include/class_multi_plug.inc:391
+msgid "The user password was resetted, please set a new password value!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
+#: html/getvcard.php:39
+msgid "Missing parameters!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
+#: html/getldif.php:82 html/getxls.php:493
+msgid "Permission denied!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
+#: html/getldif.php:82
+msgid "You are not allowed to create ldap dumps."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
+#: html/getldif.php:107
+msgid "Error in ivbb parameter!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
+#: html/password.php:58 html/index.php:141
+#, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
+#: html/password.php:78
+msgid "Accessibility"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
+#: html/password.php:163
+msgid "Error: Password method not available!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
-msgid "Select to see groups containing windows workstations"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
-msgid "Show groups containing windows workstations"
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
+#: html/setup.php:66 html/index.php:166
+msgid "Smarty"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
+#: html/index.php:57
+msgid "Session is not encrypted!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
+#: html/index.php:64
+msgid ""
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
+#: html/index.php:141
+msgid "Configuration accessibility"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
-msgid "You are not allowed to remove this entry."
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
-msgid "Number of listed object groups"
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
 msgstr ""
 
-#: plugins/admin/ogroups/remove.tpl:7
-msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+#: html/index.php:282
+msgid "Your ldap setup contains old schema definitions:"
 msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
+#: html/index.php:303
+msgid "Please specify a valid username!"
 msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
+#: html/index.php:306
+msgid "Please specify your password!"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
+#: html/index.php:318
+msgid "Authentication error"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
 msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
+#: html/index.php:425
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
+#: html/main.php:171
+msgid "PHP configuration"
 msgstr ""
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
+#: html/main.php:172
+msgid ""
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:4
-msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+#: html/main.php:217
+msgid "Configuration warning"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
+#: html/main.php:356
+msgid "Password reminder"
 msgstr ""
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
+#: html/main.php:356
+msgid "Your password is about to expire, please change your password!"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
+#: html/main.php:365
+msgid "Plugin"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
 msgstr ""
 
 #: html/getxls.php:88
@@ -6147,10 +6202,6 @@ msgstr ""
 msgid "Computers of %s on %s"
 msgstr ""
 
-#: html/getxls.php:493 html/getldif.php:82
-msgid "Permission denied!"
-msgstr ""
-
 #: html/getxls.php:493
 msgid "You are not allowed to perform this action."
 msgstr ""
@@ -6167,18 +6218,6 @@ msgstr ""
 msgid "Database query failed!"
 msgstr ""
 
-#: html/getldif.php:82
-msgid "You are not allowed to create ldap dumps."
-msgstr ""
-
-#: html/getldif.php:107
-msgid "Error in ivbb parameter!"
-msgstr ""
-
-#: html/getvcard.php:39
-msgid "Missing parameters!"
-msgstr ""
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr ""
@@ -6191,149 +6230,3 @@ msgstr ""
 #, php-format
 msgid "Helpdir '%s' is not accessible, can't read any helpfiles."
 msgstr ""
-
-#: html/password.php:58 html/index.php:141
-#, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr ""
-
-#: html/password.php:78
-msgid "Accessibility"
-msgstr ""
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr ""
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr ""
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr ""
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr ""
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr ""
-
-#: html/setup.php:66 html/index.php:166
-msgid "Smarty"
-msgstr ""
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-msgid "PHP configuration"
-msgstr ""
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-
-#: html/main.php:217
-msgid "Configuration warning"
-msgstr ""
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
-
-#: html/main.php:356
-msgid "Password reminder"
-msgstr ""
-
-#: html/main.php:356
-msgid "Your password is about to expire, please change your password!"
-msgstr ""
-
-#: html/main.php:365
-msgid "Plugin"
-msgstr ""
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr ""
-
-#: html/index.php:57
-msgid "Session is not encrypted!"
-msgstr ""
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
-
-#: html/index.php:141
-msgid "Configuration accessibility"
-msgstr ""
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
-
-#: html/index.php:282
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr ""
-
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr ""
-
-#: html/index.php:318
-msgid "Authentication error"
-msgstr ""
-
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
-
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr ""
-
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr ""
index b1b24b40889416b81435ac629532680f5747d4ae..a6d2cc1ebfc1452192da7165c44abda5f1a9d210 100644 (file)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2006-06-02 16:58+0100\n"
 "Last-Translator: Niels Klomp (CareWorks ICT Services) <nk@careworks.nl>\n"
 "Language-Team: CareWorks ICT Services <info@careworks.nl>\n"
@@ -19,6633 +19,6696 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Er is een sessie conflict gedetecteerd"
 
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Waarschuwing"
 
-#: setup/class_setupStep_Checks.inc:64
+#: ihtml/themes/default/conflict.tpl:6
 #, fuzzy
-msgid "Checking PHP version"
-msgstr "Controle op PHP versie (>=4.1.0)"
-
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
-"PHP moet minimaal versienummer 4.1.0 hebben. GOsa gebruikt bepaalde "
-"functionaliteit die in voorgaande versies niet goed of helemaal niet "
-"voorhanden is."
+"Er is vermoedelijk een andere actieve instantiatie van uw sessie. Werken m.b."
+"v. meerdere schermen is technisch onmogelijk en is sterk afhankelijk van de "
+"gebruikte browser. Gelijktijdig gebruik van verschillende browsers "
+"(bijvoorbeeld Internet Explorer en Mozilla) is wel mogelijk. Via de "
+"<b>Uitloggen</b> knop wordt deze sessie afgesloten."
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
+"Het negeren van dit bericht zal de data die u op dit moment aan het bewerken "
+"bent veranderen/vernietigen, dus sluit a.u.b. enige overige vensters en log "
+"opnieuw in."
 
-#: setup/class_setupStep_Checks.inc:72
-#, fuzzy
-msgid "Checking for LDAP support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Uitloggen"
 
-#: setup/class_setupStep_Checks.inc:73
-#, fuzzy
-msgid "This is the main extension used by GOsa and therefore really required."
-msgstr "Dit is hoofd module die GOsa nodig heeft en is daarom noodzakelijk."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. "
 
-#: setup/class_setupStep_Checks.inc:74
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
+msgstr "Oud wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Zoeken naar gettext ondersteuning"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr "Nieuw wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:81
-#, fuzzy
-msgid "Gettext support is required for internationalization."
-msgstr ""
-"Gettext ondersteuning is vereist voor ondersteuning van meerdere talen in "
-"GOsa."
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr "Nogmaals wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr "Wachtwoord veranderen"
+
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr "Klik hier om uw wachtwoord te veranderen."
+
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/login.tpl:27
+#, fuzzy
+msgid "Login screen"
+msgstr "Log DB gebruiker"
 
-#: setup/class_setupStep_Checks.inc:89
+#: ihtml/themes/default/login.tpl:34
 #, fuzzy
 msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr ""
-"Deze module wordt gebruikt door GOsa om samba munged dial informatie "
-"(terminal server) te converteren en is daarom vereist."
+"Please use your username and your password to log into the site "
+"administration system."
+msgstr "Voer uw <i>gebruikersnaam</i> en <i>wachtwoord</i> in"
 
-#: setup/class_setupStep_Checks.inc:96
-#, fuzzy
-msgid "Checking for mhash support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Gebruikersnaam"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr ""
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Directory"
 
-#: setup/class_setupStep_Checks.inc:104
-#, fuzzy
-msgid "Checking for IMAP support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Inloggen"
 
-#: setup/class_setupStep_Checks.inc:105
-#, fuzzy
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
-msgstr ""
-"De IMAP module is benodigd om met de IMAP server te communiceren. Het "
-"ontvangt status informatie, maakt E-mail gebruikers aan en verwijdert E-mail "
-"gebruikers."
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Klik hier om in te loggen"
 
-#: setup/class_setupStep_Checks.inc:106
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr "Uw GOsa sessie is verlopen!"
+
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
+"Uw laatste interactie met de GOsa webinterface is enige tijd geleden. Uit "
+"veiligheidsoverwegingen is de sessie gesloten. Om door te gaan met "
+"administratieve taken, dient u opnieuw in te loggen."
 
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Zoeken naar gettext ondersteuning"
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
+msgstr "Opnieuw inloggen"
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
-msgstr ""
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+#, fuzzy
+msgid "New ACL"
+msgstr "Nieuw"
 
-#: setup/class_setupStep_Checks.inc:120
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Controle op getacl in imap"
+msgid "ACL type"
+msgstr "type"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
+msgid "Select an acl type"
+msgstr "Selecteer een basis"
+
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Toepassen"
+
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
-"De getacl ondersteuning is nodig voor gedeelde map permissies. De standaard "
-"IMAP module is niet in staat om acl's te lezen. U heeft een recente PHP "
-"versie nodig voor deze mogelijkheid."
 
-#: setup/class_setupStep_Checks.inc:128
-#, fuzzy
-msgid "Checking for MySQL support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:129
-#, fuzzy
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
 msgstr ""
-"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit "
-"databases."
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "Groepsleden"
+
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:136
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
 #, fuzzy
-msgid "Checking for kadm5 support"
-msgstr "Zoeken naar iconv ondersteuning"
+msgid "List of available ACL categories"
+msgstr "Lijst met beschikbare pakketten"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
-"Het beheren van gebruikers in kerberos vereist de kadm5 module welke via het "
-"PEAR netwerk te downloaden is."
 
-#: setup/class_setupStep_Checks.inc:138
+#: ihtml/themes/default/acl.tpl:69
 #, fuzzy
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
-msgstr ""
-"Het beheren van gebruikers in kerberos vereist de kadm5 module welke via het "
-"PEAR netwerk te downloaden is."
+msgid "Available roles"
+msgstr "Beschikbare programma's"
 
-#: setup/class_setupStep_Checks.inc:144
-#, fuzzy
-msgid "Checking for SNMP support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Annuleren"
 
-#: setup/class_setupStep_Checks.inc:145
+#: ihtml/themes/default/logout-close.tpl:5
 #, fuzzy
+msgid "Your GOsa session has been closed!"
+msgstr "Uw GOsa sessie is verlopen!"
+
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"Het Simple Network Management Protocol (SNMP) is vereist voor werkstation "
-"monitoring."
 
-#: setup/class_setupStep_Checks.inc:146
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
+"U bent momenteel database gegevens aan het bewerken. Wilt u eventuele "
+"wijzigingen ongedaan maken?"
 
-#: setup/class_setupStep_Checks.inc:152
-#, fuzzy
-msgid "Checking for CUPS support"
-msgstr "Zoeken naar iconv ondersteuning"
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Hoofdmenu"
 
-#: setup/class_setupStep_Checks.inc:153
-#, fuzzy
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"U moet de CUPS module installeren om beschikbare printers via het IPP "
-"protocol te kunnen aflezen i.p.v. via printcap bestanden."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Help"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Zoeken naar het fping programma"
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Uitloggen"
 
-#: setup/class_setupStep_Checks.inc:163
-#, fuzzy
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Aangemeld:"
+
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
-"Het fping programma wordt alleen gebruikt indien u een thin client "
-"gebaseerde terminal omgeving heeft draaien."
 
-#: setup/class_setupStep_Checks.inc:164
+#: ihtml/themes/default/snapshotdialog.tpl:3
 #, fuzzy
-msgid ""
-"The fping utility is only used in thin client based terminal environment."
-msgstr ""
-"Het fping programma wordt alleen gebruikt indien u een thin client "
-"gebaseerde terminal omgeving heeft draaien."
+msgid "Restoring object snapshots"
+msgstr "Nieuwe objectgroep aanmaken"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
+#: ihtml/themes/default/snapshotdialog.tpl:6
+msgid ""
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:180
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
-"Om Samba 2.x/3.x te gebruiken moet u enkele additionele pakketten "
-"installeren om wachtwoord hashes te genereren"
 
-#: setup/class_setupStep_Checks.inc:181
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"Om Samba 2.x/3.x te gebruiken moet u enkele additionele pakketten "
-"installeren om wachtwoord hashes te genereren"
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-#, fuzzy
-msgid "Off"
-msgstr "Offline"
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Object"
 
-#: setup/class_setupStep_Checks.inc:192
+#: ihtml/themes/default/snapshotdialog.tpl:29
 #, fuzzy
-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."
+msgid "There is no snapshot available that could be restored"
 msgstr ""
-"'register_globals' is een PHP mechanisme om alle globale variabelen te "
-"registreren zodat deze toegankelijk zijn voor scripts zonder dat de scope "
-"veranderd hoeft te worden. Dit is een veiligheidsrisico. GOsa zal in beide "
-"modi draaien."
-
-#: setup/class_setupStep_Checks.inc:193
-#, fuzzy
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Controle of 'register_globals' ingesteld staat op 'off'"
+"Er is geen MySQL extensie beschikbaar. Controleer uw PHP installatie a.u.b."
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:202
+#: ihtml/themes/default/snapshotdialog.tpl:49
 #, fuzzy
+msgid "Creating object snapshots"
+msgstr "Nieuwe objectgroep aanmaken"
+
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"PHP gebruikt deze waarde voor de garbage collector om oude sessies op te "
-"ruimen. Door deze waarde op een dag te zetten, voorkomt u dat sessie en "
-"cookie informatie verloren gaan, voordat deze daadwerkelijk ongeldig zijn."
 
-#: setup/class_setupStep_Checks.inc:203
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:55
 msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
-"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
-"in uw php.ini ingesteld zijn op 'Off'."
 
-#: setup/class_setupStep_Checks.inc:211
+#: ihtml/themes/default/snapshotdialog.tpl:70
 #, fuzzy
-msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
+msgid "Timestamp"
+msgstr "Timeout"
+
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
-"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
-"in uw php.ini ingesteld zijn op 'Off'."
 
-#: setup/class_setupStep_Checks.inc:212
-#, fuzzy
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Doorgaan"
+
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
+msgstr "Fout"
+
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Informatie"
+
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
 msgstr ""
-"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
-"in uw php.ini ingesteld zijn op 'Off'."
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/pwd_heimdal.tpl:5
 #, fuzzy
-msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
-msgstr ""
-"GOsa heeft tenminste 16MB geheugen nodig. Minder geheugen kan diverse "
-"onvoorspelbare fouten opleveren!.Verhoog deze waarde nog verder voor zeer "
-"grote omgevingen."
+msgid "Heimdal options"
+msgstr "E-mail opties"
 
-#: setup/class_setupStep_Checks.inc:220
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:227
-#, fuzzy
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
-"Deze Optie definieert Uitvoer afhandeling. Zet deze Optie uit om "
-"snelheiswinst te behalen"
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
-#, fuzzy
-msgid "The Execution time should be at least 30 seconds."
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
-"De uitvoer tijd moet minimaal 30 seconden zijn, omdat sommige acties lang "
-"kunnen duren."
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
-msgstr ""
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+#, fuzzy
+msgid "Hour"
+msgstr "uur"
 
-#: setup/class_setupStep_Checks.inc:243
+#: ihtml/themes/default/pwd_heimdal.tpl:36
 #, fuzzy
-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."
+msgid "Minute"
+msgstr "Printer"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+#, fuzzy
+msgid "Day"
+msgstr "dag"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:40
+#, fuzzy
+msgid "Month"
+msgstr "maand"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:42
+#, fuzzy
+msgid "Year"
+msgstr "Zoeken"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
 msgstr ""
-"Verhoog de server veiligheid door 'expose_php' op 'Off' in te stellen. PHP "
-"zal dan geen enkele informatie over de Server die u gebruikt weergeven."
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:250
+#: ihtml/themes/default/pwd_heimdal.tpl:127
 #, fuzzy
-msgid "On"
-msgstr "Open"
+msgid "Password end"
+msgstr "Wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:251
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "Opslaan"
+
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
-"Verhoog de server veiligheid door 'magic_quotes_gpc op 'On' in te stellen."
-"PHP zal dan alle aanhalingstekens in strings omzetten."
-
-#: setup/class_setupStep_Checks.inc:252
-#, fuzzy
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr "Controle of 'register_globals' ingesteld staat op 'off'"
+"Dit kan gebruikt worden door meerdere groepen. Verzeker uzelf ervan dat dit "
+"is wat u wil, aangezien er geen mogelijkheid voor GOsa is om uw date terug "
+"te halen."
 
-#: setup/class_setupStep_Checks.inc:259
-#, fuzzy
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
 msgstr ""
-"Verhoog de server veiligheid door 'magic_quotes_gpc op 'On' in te stellen."
-"PHP zal dan alle aanhalingstekens in strings omzetten."
+"Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren' "
+"om te annuleren."
 
-#: setup/class_setupStep_Checks.inc:260
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Er is een blokkade conflict gedetecteerd"
+
+#: ihtml/themes/default/islocked.tpl:9
 #, fuzzy
 msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
-"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
-"in uw php.ini ingesteld zijn op 'Off'."
+"Indien deze blokkade detectie foutief is dan heeft de andere persoon de "
+"webbrowser afgesloten tijdens de bewerking. U kunt de blokkade in dit geval "
+"overnemen door de <i>Alsnog bewerken</i> knop te gebruiken."
 
-#: setup/class_setupStep_Checks.inc:270
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Filters"
+
+#: ihtml/themes/default/password.tpl:6
 #, fuzzy
-msgid "Configuration writeable"
-msgstr "Configuratie bestand"
+msgid "Change your password"
+msgstr "Verander wachtwoord"
 
-#: setup/class_setupStep_Checks.inc:271
+#: ihtml/themes/default/password.tpl:34
 #, fuzzy
-msgid "The configuration file can't be written"
-msgstr "Configuratie bestand"
+msgid "Success"
+msgstr "Export was succesvol"
 
-#: setup/class_setupStep_Checks.inc:272
-#, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
 msgstr ""
 
-#: setup/setup_language.tpl:3
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
 #, fuzzy
-msgid "Please select the preferred language"
-msgstr "Voorkeurstaal"
+msgid "Password change"
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: setup/setup_language.tpl:5
+#: ihtml/themes/default/password.tpl:52
 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."
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Voorkeurstaal"
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Huidig wachtwoord"
 
-#: setup/setup_frame.tpl:12
-#, fuzzy
-msgid "GOsa setup wizard"
-msgstr "GOsa help"
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Nieuw wachtwoord"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/password.tpl:85
 #, fuzzy
-msgid "Installation"
-msgstr "Windows werkstation"
+msgid "again"
+msgstr "Hoofdmenu"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/password.tpl:86
 #, fuzzy
-msgid "Steps"
-msgstr "Systemen"
+msgid "New password repeated"
+msgstr "Nieuw wachtwoord"
 
-#: setup/setup_finish.tpl:3
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
 #, fuzzy
-msgid "Create your configuration file"
-msgstr "Configuratie bestand"
+msgid "Password strength"
+msgstr "Wachtwoord encryptie"
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "Systeem configuratie"
+#: ihtml/themes/default/password.tpl:100
+#, fuzzy
+msgid "Change"
+msgstr "Kanaal"
 
-#: setup/setup_finish.tpl:18
+#: ihtml/themes/default/password.tpl:101
 #, fuzzy
-msgid "Status: "
-msgstr "Status"
+msgid "Click here to change your password"
+msgstr "Klik hier om uw wachtwoord te veranderen."
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+#: ihtml/themes/default/copyPasteDialog.tpl:1
 #, fuzzy
-msgid "LDAP schema check"
-msgstr "Ldap server"
+msgid "Copy & paste wizard"
+msgstr "Kopieren &amp; plakken wizard"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
+"Somige waardes moeten uniek zijn binnen de gehele directory, terwijl sommige "
+"combinaties geen zin hebben. GOsa toont de relevante attributen. Bewaar de "
+"waardes hieronder a.u.b. om aan deze vereisten te voldoen."
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "Nee"
-
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "Ja"
-
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/copyPasteDialog.tpl:10
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Organisatie"
-
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Naam"
+#: ihtml/themes/default/copyPasteDialog.tpl:24
+#, fuzzy
+msgid "Cancel all"
+msgstr "Annuleren"
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "E-mail adres"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
+msgstr "Bewerking afgerond"
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Opslaan"
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/sizelimit.tpl:3
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"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."
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Algemeen"
+#: ihtml/themes/default/sizelimit.tpl:6
+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_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr ""
+#: ihtml/themes/default/sizelimit.tpl:9
+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_feedback.tpl:60
-msgid "If not, what problems did you encounter"
+#: ihtml/themes/default/sizelimit.tpl:10
+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_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr ""
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
+msgstr "Stel in"
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr ""
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
+msgstr "GOsa help"
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
-msgstr ""
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
+msgstr "Index"
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
-msgstr ""
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Zoeken"
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
+#: plugins/generic/welcome/welcome.tpl:4
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
+"Dit is het GOsa hoofdmenu. U kunt taken selecteren door het menu aan de "
+"linkerzijde te gebruiken of door een van de pictogrammen hieronder te "
+"selecteren. Alle veranderingen worden direct op de LDAP server van uw "
+"bedrijf doorgevoerd."
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
 msgstr ""
+"Gebruik 'Uitloggen' bovenin om de verbinding te verbreken en 'Hoofdmenu' om "
+"terug te keren naar het onderstaande pictogrammen overzicht."
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
-msgstr ""
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "Het GOsa team"
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
-msgstr ""
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr "Welkom %s!"
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Algemeen"
 
-#: setup/setup_feedback.tpl:123
-#, fuzzy
-msgid "Features"
-msgstr "Toekomstig"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "Unix"
 
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "E-mail"
 
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "Fax"
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-#, fuzzy
-msgid "GOsa settings 3/3"
-msgstr "Gebruikersinstellingen"
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "Ftp"
 
-#: setup/class_setupStep_Config3.inc:193
-#, fuzzy
-msgid "Session lifetime must be a numeric value."
-msgstr "Toekomstige dagen moet een waarde bevatten."
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Groep"
 
-#: setup/class_setupStep_Config3.inc:197
-#, fuzzy
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "Toekomstige dagen moet een waarde bevatten."
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Afdeling"
 
-#: setup/class_setupStep_Feedback.inc:91
-#, fuzzy
-msgid "UNIX accounts/groups"
-msgstr "Account code"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Telefoon"
 
-#: setup/class_setupStep_Feedback.inc:93
-#, fuzzy
-msgid "Samba management"
-msgstr "Systeembeheer"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Programma"
 
-#: setup/class_setupStep_Feedback.inc:95
-#, fuzzy
-msgid "Mailsystem management"
-msgstr "Systeembeheer"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Server"
 
-#: setup/class_setupStep_Feedback.inc:97
-#, fuzzy
-msgid "FAX system administration"
-msgstr "Gebruikersbeheer"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "Thin Client"
 
-#: setup/class_setupStep_Feedback.inc:99
-#, fuzzy
-msgid "Asterisk administration"
-msgstr "Gebruikersbeheer"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "Werkstation"
 
-#: setup/class_setupStep_Feedback.inc:101
-#, fuzzy
-msgid "System inventory"
-msgstr "Inventaris verwijderen"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Objectgroep"
 
-#: setup/class_setupStep_Feedback.inc:103
-#, fuzzy
-msgid "System-/Configmanagement"
-msgstr "Systeembeheer"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Printer"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Adresboek"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Objectnaam"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-#, fuzzy
-msgid "Notification and feedback"
-msgstr "Geen certificaat geinstalleerd"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Omschrijving"
 
-#: setup/class_setupStep_Feedback.inc:112
-#, fuzzy
-msgid "Get notifications or send feedback"
-msgstr "Secties voor deze versie"
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "Inhoud"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-#, fuzzy
-msgid "Setup error"
-msgstr "Systeem status"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Dit object heeft geen relatie met andere objecten."
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr ""
+#: plugins/personal/password/class_password.inc:27
+#, fuzzy
+msgid "Change user passwords"
+msgstr "Verander wachtwoord"
 
-#: setup/class_setupStep_Feedback.inc:140
-#, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+#, fuzzy
+msgid "User password"
+msgstr "Wachtwoord wissen"
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "U moet uw huidige wachtwoord opgeven om door te kunnen gaan."
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
 msgstr ""
+"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar "
+"overeen."
 
-#: setup/class_setupStep_Feedback.inc:179
-#, fuzzy
-msgid "Please specify a valid email address."
-msgstr "Geef a.u.b. een geldige scriptnaam op."
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "Het nieuw ingevoerde wachtwoord is leeg."
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
 msgstr ""
+"Het huidige wachtwoord en het nieuwe wachtwoord lijken te veel op elkaar."
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Samba Instellingen"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "Het nieuw opgegeven wachtwoord is te kort."
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:"
+
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
 msgstr ""
+"Het wachtwoord dat u opgegeven heeft als uw huidige wachtwoord is niet "
+"correct."
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Samba SID"
-msgstr "Samba"
+msgid "You have no permission to change your password."
+msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
 
-#: setup/setup_config2.tpl:31
-#, fuzzy
-msgid "RID base"
-msgstr "Database"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Mijn account"
 
-#: setup/setup_config2.tpl:46
-#, fuzzy
-msgid "Workstation container"
-msgstr "Werkstation naam"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: setup/setup_config2.tpl:61
-#, fuzzy
-msgid "Samba SID mapping"
-msgstr "Samba"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr "U heeft momenteel geen toestemming om uw wachtwoord te veranderen"
 
-#: setup/setup_config2.tpl:71
-#, fuzzy
-msgid "Timezone"
-msgstr "Tijdzone"
+#: plugins/personal/password/changed.tpl:3
+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_config2.tpl:74
-#, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "Voorkeurstaal"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Terug"
 
-#: setup/setup_config2.tpl:96
-#, fuzzy
-msgid "Additional GOsa settings"
-msgstr "Programma instellingen"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
+msgstr ""
+"Gebruik het veld hieronder om uw persoonlijke wachtwoord te veranderen. De "
+"veranderingen worden direct doorgevoerd. Onthoud het nieuwe wachtwoord a.u."
+"b. aangezien u niet in zult kunnen loggen zonder dit wachtwoord."
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
 msgstr ""
+"Het veranderen van het wachtwoord is van invloed op E-mail, proxy, samba en "
+"Unix diensten."
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Verwijder printer mogelijkheden"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Herhaal het nieuwe wachtwoord"
 
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Verwijder printer mogelijkheden"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Wachtwoord instellen"
 
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "Systeembeheer"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Wis velden"
 
-#: setup/setup_config2.tpl:148
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
 #, fuzzy
-msgid "Enable FAI release management"
-msgstr "Blokkeerlijst beheer"
+msgid "Password settings"
+msgstr "Gebruikersinstellingen"
 
-#: setup/setup_config2.tpl:160
-#, fuzzy
-msgid "Enable user netatalk plugin"
-msgstr "Netatalk account beheren"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Certificaten"
 
-#: setup/setup_config2.tpl:171
-#, fuzzy
-msgid "Government mode"
-msgstr "naar map"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Standaard certificaat"
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "E-mail instellingen"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Verwijderen"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "E-mail methode"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "S/MIME certificaat"
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "gedeactiveerd"
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "PKCS12 certificaat"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Certificaat serienummer"
 
-#: setup/setup_config2.tpl:214
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Vacation templates"
-msgstr "Werkstation sjabloon"
+msgid "Edit organizational user settings"
+msgstr "Programma instellingen"
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "vrouw"
+
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "man"
+
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
 
-#: setup/setup_config2.tpl:240
+#: plugins/personal/generic/class_user.inc:496
 #, fuzzy
-msgid "Snapshots / Undo"
-msgstr "Het opslaan van de telefoon is mislukt"
+msgid "Serial number"
+msgstr "Telefoonnummer"
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-#, fuzzy
-msgid "Enable snapshots"
-msgstr "Nagios account aanmaken"
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
+msgstr ""
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-#, fuzzy
-msgid "Snapshot base"
-msgstr "Het opslaan van de telefoon is mislukt"
+#: plugins/personal/generic/class_user.inc:551
+#, php-format
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "Certificaat is geldig van '%s' tot '%s' en de huidige status is '%s'."
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Server"
-
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Gebruiker"
-
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Wachtwoord"
-
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-#, fuzzy
-msgid "LDAP inspection"
-msgstr "PHP configuratie inspectie"
-
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:113
-#, fuzzy
-msgid "Checking for root object"
-msgstr "Zoeken naar iconv ondersteuning"
-
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:125
-#, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Zoeken naar iconv ondersteuning"
-
-#: setup/class_setupStep_Migrate.inc:131
-#, fuzzy
-msgid "Checking for invisible users"
-msgstr "Zoeken naar iconv ondersteuning"
-
-#: setup/class_setupStep_Migrate.inc:137
-#, fuzzy
-msgid "Checking for super administrator"
-msgstr "Zoeken naar enkele additionele programma's"
-
-#: setup/class_setupStep_Migrate.inc:143
-#, fuzzy
-msgid "Checking for users outside the people tree"
-msgstr "Zoeken naar CUPS module"
-
-#: setup/class_setupStep_Migrate.inc:149
-#, fuzzy
-msgid "Checking for groups outside the groups tree"
-msgstr "Zoeken naar CUPS module"
-
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:161
-#, fuzzy
-msgid "Checking for duplicate uid numbers"
-msgstr "Zoeken naar functie %s"
-
-#: setup/class_setupStep_Migrate.inc:167
-#, fuzzy
-msgid "Checking for duplicate gid numbers"
-msgstr "Zoeken naar functie %s"
-
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-#, fuzzy
-msgid "LDAP query failed"
-msgstr "De database zoekopdracht is mislukt"
-
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Waarschuwing"
-
-#: setup/class_setupStep_Migrate.inc:213
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Er is een dubbele waarde gevonden voor record type '%s'."
-
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:262
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Er is een dubbele waarde gevonden voor record type '%s'."
-
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Mislukt"
-
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-#, fuzzy
-msgid "Migrate"
-msgstr "Aanmaken"
-
-#: setup/class_setupStep_Migrate.inc:387
-#, fuzzy, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "U staat op het punt de invoer '%s' te kopieren."
-
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-#, fuzzy
-msgid "Move"
-msgstr "Modus"
-
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-#, fuzzy
-msgid "Migration error"
-msgstr "Aanmaken"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Ga naar basis afdelingen"
-
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Aanmaken"
-
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "geldig"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "Wachtwoord verloopt op"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "ongeldig"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr ""
-"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar "
-"overeen!"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "Geen certificaat geinstalleerd"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Input error"
-msgstr "PHP fout"
+msgid "Password method"
+msgstr "Wachtwoord encryptie"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586
 #, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr "Fout"
-
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
+msgid "The selected password method is no longer available."
+msgstr "Dit programma is niet meer beschikbaar."
 
-#: setup/class_setupStep_Migrate.inc:1030
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#: setup/class_setupStep_Migrate.inc:1916
-#: setup/class_setupStep_Migrate.inc:1920 include/class_plugin.inc:1078
-#: include/class_plugin.inc:1127 include/class_plugin.inc:1131
-#: include/class_plugin.inc:1208 include/class_plugin.inc:1266
-#: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
-#: include/functions.inc:371 include/functions.inc:380
-#: include/functions.inc:409 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
 #: plugins/personal/posix/class_posixAccount.inc:663
 #: plugins/personal/posix/class_posixAccount.inc:929
 #: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
 #: plugins/admin/acl/class_aclRole.inc:585
 #: plugins/admin/acl/class_aclRole.inc:625
 #: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
-#, fuzzy
-msgid "LDAP error"
-msgstr "LDAP fout:"
-
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
+#: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
 #: setup/class_setupStep_Migrate.inc:1152
+#: setup/class_setupStep_Migrate.inc:1916
+#: setup/class_setupStep_Migrate.inc:1920 include/class_plugin.inc:1078
+#: include/class_plugin.inc:1127 include/class_plugin.inc:1131
+#: include/class_plugin.inc:1208 include/class_plugin.inc:1266
+#: include/class_plugin.inc:1332 include/class_plugin.inc:1348
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
+#: include/functions.inc:371 include/functions.inc:380
+#: include/functions.inc:409 include/functions.inc:652
+#: include/functions.inc:691 include/functions.inc:736
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "Ga naar de afdeling van de gebruiker"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-#, fuzzy
-msgid "to"
-msgstr "Stop"
-
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr ""
+msgid "LDAP error"
+msgstr "LDAP fout:"
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Inlognaam"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Naam"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Naam"
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-#, fuzzy
-msgid "Try to create root object"
-msgstr "Nieuw FAI object aanmaken"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Homepage"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Verplaatsen van %s naar %s"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "GSM"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Pieper"
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+#: plugins/personal/generic/class_user.inc:1296
 #, fuzzy
-msgid "License"
-msgstr "Regel"
-
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr ""
+msgid "Cannot open certificate!"
+msgstr "Het opgegeven certificaat kon geopend worden!"
 
-#: setup/class_setupStep_Welcome.inc:38
-#, fuzzy
-msgid "Welcome"
-msgstr "Welkom %s!"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Eenheid"
 
-#: setup/class_setupStep_Welcome.inc:39
-#, fuzzy
-msgid "The welcome message"
-msgstr "Verwijder dit bericht"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Huis identificatie"
 
-#: setup/class_setupStep_Welcome.inc:40
-#, fuzzy
-msgid "Welcome to GOsa setup wizard"
-msgstr "Welkom bij het GOsa installatie programma!"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Beroep"
 
-#: setup/setup_config3.tpl:2
-#, fuzzy
-msgid "GOsa core settings"
-msgstr "E-mail instellingen"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Laatste levering"
 
-#: setup/setup_config3.tpl:6
-#, fuzzy
-msgid "Disable primary group filter"
-msgstr "Toon groepen van gebruiker"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Werkplaats"
 
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Toon overeenkomende macro's"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Eenheid omschrijving"
 
-#: setup/setup_config3.tpl:30
-#, fuzzy
-msgid "Honour administrative units"
-msgstr "Groepen beheer"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Werkgebied"
 
-#: setup/setup_config3.tpl:42
-#, fuzzy
-msgid "Smarty compile directory"
-msgstr "Persoonlijke map"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Functionele titel"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Publiek zichtbaar"
 
-#: setup/setup_config3.tpl:60
-#, fuzzy
-msgid "Path for PPD storage"
-msgstr "Wachtwoord encryptie"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Straat"
 
-#: setup/setup_config3.tpl:77
-#, fuzzy
-msgid "Path for kiosk profile storage"
-msgstr "Kiosk profiel instellingen"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Funktie"
 
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Systeembeheer"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Postcode"
 
-#: setup/setup_config3.tpl:115
+#: plugins/personal/generic/class_user.inc:1443
 #, fuzzy
-msgid "Mail queue script"
-msgstr "Inlogscript"
+msgid "Generic user settings"
+msgstr "Algemene wachtrij instellingen"
 
-#: setup/setup_config3.tpl:134
-#, fuzzy
-msgid "Notification script"
-msgstr "Geen certificaat geinstalleerd"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Gebruikers"
 
-#: setup/setup_config3.tpl:153
-msgid "Enable edit locking"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Basis"
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Achternaam"
 
-#: setup/setup_config3.tpl:175
+#: plugins/personal/generic/class_user.inc:1456
 #, fuzzy
-msgid "Login attribute"
-msgstr "Telefoon attributen "
-
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
+msgid "User identification"
+msgstr "Gebruikersinformatie"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Aanhef"
 
-#: setup/setup_config3.tpl:210
-#, fuzzy
-msgid "Warn if session is not encrypted"
-msgstr "De sessie zal niet versleuteld zijn."
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Academische titel"
 
-#: setup/setup_config3.tpl:222
-#, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "Algemene wachtrij instellingen"
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "Adres thuis"
 
-#: setup/setup_config3.tpl:234
+#: plugins/personal/generic/class_user.inc:1460
 #, fuzzy
-msgid "Session lifetime"
-msgstr "Er is een sessie conflict gedetecteerd"
+msgid "Home phone number"
+msgstr "Telefoonnummer"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Organisatie"
 
-#: setup/setup_config3.tpl:247
-#, fuzzy
-msgid "Show PHP errors"
-msgstr "PHP fout"
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Geboortedatum"
 
-#: setup/setup_config3.tpl:259
+#: plugins/personal/generic/class_user.inc:1465
 #, fuzzy
-msgid "Maximum LDAP query time"
-msgstr "E-mail grootte"
-
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
+msgid "Gender"
+msgstr "Afzender"
 
-#: setup/setup_config3.tpl:289
+#: plugins/personal/generic/class_user.inc:1466
 #, fuzzy
-msgid "Debug level"
-msgstr "Log prioriteit"
+msgid "Preferred language"
+msgstr "Voorkeurstaal"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+#: plugins/personal/generic/class_user.inc:1467
 #, fuzzy
-msgid "Disabled"
-msgstr "gedeactiveerd"
+msgid "Department number"
+msgstr "Afdelingnaam"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#: plugins/personal/generic/class_user.inc:1468
 #, fuzzy
-msgid "Enabled"
-msgstr "gedeactiveerd"
+msgid "Employee number"
+msgstr "Functie"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Functie"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Zoeken"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Plaats"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Toepassen"
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Provincie"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Annuleren"
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "Persoonlijk plaatje"
 
-#: setup/setup_ldap.tpl:25
+#: plugins/personal/generic/class_user.inc:1473
 #, fuzzy
-msgid "LDAP connection"
-msgstr "Max. verbrekingsduur"
-
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Naam van de locatie"
+msgid "Room number"
+msgstr "Telefoonnummer"
 
-#: setup/setup_ldap.tpl:37
+#: plugins/personal/generic/class_user.inc:1474
 #, fuzzy
-msgid "Connection URL"
-msgstr "Verbindingings URL"
+msgid "Telefon number"
+msgstr "Telefoonnummer"
 
-#: setup/setup_ldap.tpl:45
+#: plugins/personal/generic/class_user.inc:1475
 #, fuzzy
-msgid "TLS connection"
-msgstr "Bel..."
-
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Basis"
+msgid "Mobile number"
+msgstr "GSM nummer"
 
-#: setup/setup_ldap.tpl:65
+#: plugins/personal/generic/class_user.inc:1476
 #, fuzzy
-msgid "Reload"
-msgstr "Lezen"
+msgid "Pager number"
+msgstr "Telefoonnummer"
 
-#: setup/setup_ldap.tpl:69
+#: plugins/personal/generic/class_user.inc:1477
 #, fuzzy
-msgid "Authentication"
-msgstr "Nagios authenticatie"
+msgid "User certificates"
+msgstr "Standaard certificaat"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "Beheerders DN"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "Adres thuis"
 
-#: setup/setup_ldap.tpl:78
+#: plugins/personal/generic/class_user.inc:1480
 #, fuzzy
-msgid "Select user"
-msgstr "Verwijder gebruiker"
+msgid "Fax number"
+msgstr "Serienummer"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Persoonlijke informatie"
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Beheerders wachtwoord"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Persoonlijk plaatje"
 
-#: setup/setup_ldap.tpl:101
-#, fuzzy
-msgid "Schema based settings"
-msgstr "Samba Instellingen"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "Voorkeurstaal"
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Kies de subtree waaronder de gebruiker geplaatst wordt"
 
-#: setup/setup_ldap.tpl:117
-#, fuzzy
-msgid "Current status"
-msgstr "Systeem status"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
+msgstr "Selecteer een basis"
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "Informatie"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Adres"
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Telefoon privé"
 
-#: setup/setup_migrate.tpl:33
-#, fuzzy
-msgid "Check again"
-msgstr "Controleer"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Wachtwoord encryptie"
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Bewerk certificaten"
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Organisatie informatie"
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "Afdeling nr."
+
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "Personeel nr."
+
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "Kamer nr."
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-#, fuzzy
-msgid "Select all"
-msgstr "Selecteer"
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
+msgstr "Gebruikersinstellingen"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
+msgstr "Achternaam"
 
-#: setup/setup_migrate.tpl:72
-#, fuzzy
-msgid "Move selected workstations"
-msgstr "Selecteer om werkstations te zien"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
+msgstr "Voornaam"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
+msgstr "Wachtwoord wissen"
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr "Sluiten"
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
+msgstr "Nieuw wachtwoord instellen"
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Plaatje verwijderen"
 
-#: setup/setup_migrate.tpl:88
+#: plugins/personal/generic/password.tpl:2
 msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
+"U heeft de manier waarop uw wachtwoord wordt opgeslagen in de LDAP database "
+"veranderd. Daarom moet u het wachtwoord op dit moment opnieuw invoeren. GOsa "
+"zal dan het wachtwoord versleutelen op de door u geselecteerde methode."
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Verander plaatje"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-#, fuzzy
-msgid "Hide changes"
-msgstr "Open-Xchange"
-
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-#, fuzzy
-msgid "Show changes"
-msgstr "Toon pakketten"
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
+msgstr "Sjabloon naam"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Geslacht"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Instellen"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Gebruik a.u.b. de telefoon tab"
 
-#: setup/setup_migrate.tpl:148
+#: plugins/personal/generic/main.inc:104
 #, fuzzy
-msgid "Move selected users into this people tree"
-msgstr "Maak gebruiker aan met dit sjabloon"
+msgid "You have no permission to set your password!"
+msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
 
-#: setup/setup_migrate.tpl:198
-#, fuzzy
-msgid "Next"
-msgstr "tekst"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Algemene gebruikersinformatie"
 
-#: setup/setup_migrate.tpl:199
-#, fuzzy
-msgid "Abort"
-msgstr "Poort"
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Selecteer de toe te voegen groepen"
 
-#: setup/setup_migrate.tpl:201
-#, fuzzy
-msgid "Create a new GOsa administrator account"
-msgstr "Netatalk account aanmaken"
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Toon groepen van afdeling"
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Selecteer de afdeling waarbinnen gezocht zal worden"
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "Gebruikers ID"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Toon overeenkomende groepen"
 
-#: setup/setup_migrate.tpl:233
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Reguliere expressie voor overeenkomende groepnamen"
+
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Toon groepen van gebruiker"
+
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Gebruikersnaam van wie de groepen getoond worden"
+
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid "Password (again)"
-msgstr "Wachtwoord encryptie"
+msgid "Search in subtrees"
+msgstr "Zoek binnen subtree"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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 ""
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "verlopen"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-#, fuzzy
-msgid "Current"
-msgstr "Nieuw FAI object aanmaken"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "gratie tijd actief"
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-#, fuzzy
-msgid "After migration"
-msgstr "Gebruikersbeheer"
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "actief, wachtwoord onveranderbaar"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "actief, wachtwoord verlopen"
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "actief"
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "niet geconfigureerd"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automatisch"
+
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "PHP setup configuration"
-msgstr "FAX database"
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Omgeving"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "show information"
-msgstr "Persoonlijke informatie"
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
+msgstr ""
+"Het wachtwoord kan pas %s dag(en) na de laatste wijziging gewijzigd worden"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Opslaan"
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "Het wachtwoord moet na %s dag(en) gewijzigd worden"
 
-#: setup/class_setupStep_Finish.inc:38
-#, fuzzy
-msgid "Write configuration file"
-msgstr "Configuratie bestand"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr ""
+"Blokkeer het account na %s dag(en) inactiviteit nadat het wachtwoord "
+"verlopen is"
 
-#: setup/class_setupStep_Finish.inc:39
-#, fuzzy
-msgid "Finish - write the configuration file"
-msgstr "Configuratie bestand"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Waarschuw de gebruiker %s dagen voordat het wachtwoord verloopt"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "gedeactiveerd"
 
-#: setup/class_setupStep_Finish.inc:102
-#, fuzzy
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "volledige toegang"
 
-#: setup/class_setupStep_Finish.inc:111
-#, fuzzy, 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. You may want to execute these commands to achieve this "
-"requirement:"
-msgstr ""
-"Controleer dat de webserver het bestand kan lezen (zonder dat andere "
-"gebruikers dit kunnen) nadat u het bestand in de directory /etc/gosa "
-"geplaatst heeft. U wil misschien de volgende commando's uitvoeren om aan "
-"deze vereiste te voldoen: "
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "sta toegang op deze computers toe"
 
-#: setup/class_setupStep_Ldap.inc:53
-#, fuzzy
-msgid "LDAP setup"
-msgstr "LDAP server"
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:54
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid "LDAP connection setup"
-msgstr "Bel..."
+msgid "Uid number"
+msgstr "Serienummer"
 
-#: setup/class_setupStep_Ldap.inc:55
-#, fuzzy
+#: plugins/personal/posix/class_posixAccount.inc:914
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"De volgende velden definiëren de basis configuratie van GOsa's gedrag en "
-"beïnvloeden diverse eigenschappen in uw hoofd configuratie."
 
-#: setup/class_setupStep_Ldap.inc:105
-#, fuzzy, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Gebruikersgroep"
 
-#: setup/class_setupStep_Ldap.inc:107
-#, fuzzy, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Persoonlijke map"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, fuzzy, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/class_setupStep_Ldap.inc:113
-#, fuzzy
-msgid "Please specify user and password."
-msgstr "Geef a.u.b. uw wachtwoord op!"
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, fuzzy, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
+#, fuzzy
+msgid "shadowMin"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
 #, fuzzy
-msgid "Language setup"
-msgstr "Taal"
+msgid "shadowMax"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/class_setupStep_Language.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
 #, fuzzy
-msgid "This step allows you to select your preferred language."
-msgstr ""
-"Deze dialoog maakt het mogelijk om een apparaat te verbinden aan de computer "
-"die u momenteel aan het bewerken bent."
+msgid "shadowWarning"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/class_setupStep_Language.inc:47
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
 #, fuzzy
-msgid "Automatic"
-msgstr "automatisch"
+msgid "shadowInactive"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/class_setup.inc:196
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
+msgstr ""
+
+#: plugins/personal/posix/class_posixAccount.inc:1496
 #, fuzzy
-msgid "Completed"
-msgstr "onvolledig"
+msgid "POSIX account"
+msgstr "GLPI account"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Terug"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Doorgaan"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "Gebruikers ID"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1509
+#, fuzzy
+msgid "Group ID"
+msgstr "Groep"
 
-#: setup/setup_config1.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:1511
 #, fuzzy
-msgid "Theme"
-msgstr "MIME"
+msgid "Force password change on login"
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: setup/setup_config1.tpl:15
+#: plugins/personal/posix/class_posixAccount.inc:1512
 #, fuzzy
-msgid "Apache"
-msgstr "Cache"
+msgid "Shadow min"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1513
+#, fuzzy
+msgid "Shadow max"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/setup_config1.tpl:27
+#: plugins/personal/posix/class_posixAccount.inc:1514
 #, fuzzy
-msgid "People and group storage"
-msgstr "OU voor gebruikers opslag"
+msgid "Shadow warning"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/setup_config1.tpl:30
+#: plugins/personal/posix/class_posixAccount.inc:1515
 #, fuzzy
-msgid "People DN attribute"
-msgstr "DN atribuut voor gebruikers"
+msgid "Shadow inactive"
+msgstr "Schaduwen van andere sessie"
 
-#: setup/setup_config1.tpl:41
+#: plugins/personal/posix/class_posixAccount.inc:1516
 #, fuzzy
-msgid "People storage subtree"
-msgstr "OU voor gebruikers opslag"
+msgid "Shadow expire"
+msgstr "Toon personen"
 
-#: setup/setup_config1.tpl:50
+#: plugins/personal/posix/class_posixAccount.inc:1517
 #, fuzzy
-msgid "Group storage subtree"
-msgstr "OU voor groepen opslag"
+msgid "System trust model"
+msgstr "Systeem vertrouwen"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
+msgstr "Posix instellingen"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Forceer UID/GID"
 
-#: setup/setup_config1.tpl:81
-#, fuzzy
-msgid "Automatic uids"
-msgstr "Automatische modusregels"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Groep lidmaatschap"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(Waarschuwing: NFS ondersteunt niet meer dan 16 groepen!)"
 
-#: setup/setup_config1.tpl:113
-#, fuzzy
-msgid "Number base for people/groups"
-msgstr "ID basis voor gebruikers/groepen"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Primaire groep"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Status"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
 #, fuzzy
-msgid "Password settings"
-msgstr "Gebruikersinstellingen"
+msgid "In all groups"
+msgstr "Primaire groep"
 
-#: setup/setup_config1.tpl:140
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
 #, fuzzy
-msgid "Password encryption algorithm"
-msgstr "Encryptie algoritme"
+msgid "Not in all groups"
+msgstr "Toon E-mail groepen"
 
-#: setup/setup_config1.tpl:151
-#, fuzzy
-msgid "Password restrictions"
-msgstr "Wachtwoord verloopt op"
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Account"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "Systeem vertrouwen"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
+msgstr "Vertrouwensmodus"
 
-#: setup/setup_config1.tpl:182
-#, fuzzy
-msgid "Password change hook"
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "Het wachtwoord moet bij de eerste aanmelding gewijzigd worden"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr ""
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "Wachtwoord verloopt op"
 
-#: setup/setup_config1.tpl:209
+#: plugins/personal/posix/main.inc:131
 #, fuzzy
-msgid "Use account expiration"
-msgstr "Het account verloopt op"
+msgid "POSIX settings"
+msgstr "Posix instellingen"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa ondersteunt diverse encryptie types voor uw wachtwoorden. Normaliter is "
-"dit aanpasbaar via gebruikerssjablonen. Hier kunt u echter een standaard te "
-"gebruiken methode opgeven."
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Selecteer de toe te voegen systemen"
 
-#: setup/setup_config1.tpl:222
-#, fuzzy
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa werkt altijd als een beheerder en verzorgt het toegangsbeheer intern. "
-"Dit is een tijdelijke oplossing totdat directory ACIs volledig "
-"geïmplementeerd zijn in OpenLDAP. Om dit te kunnen laten werken is een "
-"beheerders DN en het bijbehorende wachtwoord nodig."
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Toon systemen van afdeling"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"Sommige LDAP parameters zijn aan te passen en bepalen de locaties waar GOsa "
-"gebruikers en groepen opslaat, evenals de manier waarop gebruikers "
-"aangemaakt worden. Controleer of de waardes hieronder in uw behoeften "
-"voorzien."
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Toon de overeenkomende systemen"
 
-#: setup/setup_config1.tpl:224
-#, fuzzy
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Reguliere expresie voor overeenkomende adressen"
+
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
-"GOsa heeft modulaire ondersteuning voor diverse E-mail methodes. Deze "
-"methodes leveren toegang tot gebruikers mailboxen en algemene afhandeling "
-"voor quota's. U kunt de dummy module kiezen om alle E-mail instellingen "
-"ongewijzigd te laten."
 
-#: setup/setup_welcome.tpl:4
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
 msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Lijst met gebruikers"
 
-#: setup/setup_welcome.tpl:11
-#, fuzzy
-msgid "Create a basic, single site configuration"
-msgstr "FAX database"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Eigenschappen"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Acties"
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Selecteer om sjabloon pseudo gebruikers te zien"
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Toon sjablonen"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr "Selecteer om gebruikers te zien die alleen een GOsa object hebben"
 
-#: setup/setup_welcome.tpl:20
-#, fuzzy
-msgid "Find every possible configuration error"
-msgstr "Configuratie bestand"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Toon functionele gebruikers"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Selecteer om gebruikers te zien die POSIX instellingen hebben"
 
-#: setup/setup_welcome.tpl:25
-#, fuzzy
-msgid "To continue..."
-msgstr "Installatie vervolg..."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Toon Unix gebruikers"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "Selecteer om gebruikers te zien die E-mail instellingen hebben"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Toon E-mail gebruikers"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-#, fuzzy
-msgid "GOsa settings 2/3"
-msgstr "Gebruikersinstellingen"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Selecteer om gebruikers te zien die Samba instellingen hebben"
 
-#: setup/class_setupStep_Config2.inc:87
-#, fuzzy
-msgid "Customize special parameters"
-msgstr "Controleer parameter"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Toon Samba gebruikers"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-#, fuzzy
-msgid "GOsa settings 1/3"
-msgstr "Gebruikersinstellingen"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Selecteer om gebruikers te zien die Proxy instellingen hebben"
 
-#: setup/class_setupStep_Config1.inc:76
-#, fuzzy
-msgid "GOsa generic settings"
-msgstr "Algemene wachtrij instellingen"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Toon Proxy gebruikers"
 
-#: setup/class_setupStep_Config1.inc:118
-#, fuzzy, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "De sieve poort dient nummeriek te zijn."
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "Selecteer om binnen subonderdelen te zoeken"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Toon overeenkomende gebruikers"
+
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Verwerk afdeling"
+
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "Verwerk"
+
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Aanmaken"
+
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Gebruiker"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "OU voor gebruikers opslag"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Sjabloon"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "OU voor groepen opslag"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Bewerken"
 
-#: setup/class_setupStep_Config1.inc:130
-#, fuzzy
-msgid "Uid base must be numeric"
-msgstr "Timeout dient nummeriek te zijn"
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "Verander wachtwoord"
 
-#: setup/class_setupStep_Config1.inc:134
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "The given password minimum length is not numeric."
-msgstr "De sieve poort dient nummeriek te zijn."
+msgid "Copy"
+msgstr "kopieer"
 
-#: setup/class_setupStep_Config1.inc:137
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
 #, fuzzy
-msgid "The given password differ value is not numeric."
-msgstr "De sieve poort dient nummeriek te zijn."
+msgid "Cut"
+msgstr "knippen"
 
-#: setup/setup_schema.tpl:3
-#, fuzzy
-msgid "Schema specific settings"
-msgstr "Samba Instellingen"
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
+msgstr "Plakken"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: setup/setup_schema.tpl:16
-#, fuzzy
-msgid "Check status"
-msgstr "Systeem status"
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "Bewerk algemene eigenschappen"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
 
-#: setup/setup_schema.tpl:23
-#, fuzzy
-msgid "Schema check failed"
-msgstr "Het opslaan van de telefoon is mislukt"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "Bewerk UNIX eigenschappen"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "Bewerk omgeving eigenschappen"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "Bewerk E-mail eigenschappen"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Filters"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "Bewerk telefoon eigenschappen"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "Bewerk Fax eigenschappen"
 
-#: ihtml/themes/default/login.tpl:27
-#, fuzzy
-msgid "Login screen"
-msgstr "Log DB gebruiker"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "Bewerk Samba eigenschappen"
 
-#: ihtml/themes/default/login.tpl:34
-#, fuzzy
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr "Voer uw <i>gebruikersnaam</i> en <i>wachtwoord</i> in"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr "Netatalk"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Gebruikersnaam"
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "Bewerk Netatalk eigenschappen"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Directory"
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "Maak gebruiker aan vanuit sjabloon"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Inloggen"
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "Maak gebruiker aan met dit sjabloon"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Klik hier om in te loggen"
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "knippen"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr "GOsa help"
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "Deze invoer knippen"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr "Index"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "kopieer"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "Deze invoer kopieren"
+
+#: plugins/admin/users/class_divListUsers.inc:318
 #, fuzzy
-msgid "Heimdal options"
-msgstr "E-mail opties"
+msgid "Deactivated"
+msgstr "Geactiveerd"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
+msgstr "Actief"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "Bewerk"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "Bewerk gebruiker"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "wachtwoord"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
+#: plugins/admin/users/class_divListUsers.inc:342
 #, fuzzy
-msgid "Hour"
-msgstr "uur"
+msgid "You are not allowed to change the password for this user."
+msgstr "U heeft momenteel geen toestemming om uw wachtwoord te veranderen"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
-#, fuzzy
-msgid "Minute"
-msgstr "Printer"
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "Verwijder"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
-#, fuzzy
-msgid "Day"
-msgstr "dag"
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "Verwijder gebruiker"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
+#: plugins/admin/users/class_divListUsers.inc:356
 #, fuzzy
-msgid "Month"
-msgstr "maand"
+msgid "You are not allowed to remove this user."
+msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
+#: plugins/admin/users/class_divListUsers.inc:442
 #, fuzzy
-msgid "Year"
-msgstr "Zoeken"
+msgid "Number of listed users"
+msgstr "Naam van de afdeling"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+#, fuzzy
+msgid "Number of listed departments"
+msgstr "Naam van de afdeling"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:27
+#, fuzzy
+msgid "Manage users"
+msgstr "Windows gebruikers"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, fuzzy
-msgid "Password end"
-msgstr "Wachtwoord"
+msgid "Daemon"
+msgstr "Omlaag"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, php-format
-msgid "Save"
-msgstr "Opslaan"
-
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Er is een blokkade conflict gedetecteerd"
+msgid "Something went wrong while talking to the daemon: %s."
+msgstr ""
 
-#: ihtml/themes/default/islocked.tpl:9
+#: plugins/admin/users/class_userManagement.inc:293
 #, fuzzy
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
-"Indien deze blokkade detectie foutief is dan heeft de andere persoon de "
-"webbrowser afgesloten tijdens de bewerking. U kunt de blokkade in dit geval "
-"overnemen door de <i>Alsnog bewerken</i> knop te gebruiken."
+msgid "Password change failed."
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. "
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr ""
+"U heeft geen toestemming om het wachtwoord van deze gebruiker veranderen!"
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
-msgstr "Oud wachtwoord"
+#: plugins/admin/users/class_userManagement.inc:456
+#, fuzzy, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "U staat op het punt de invoer %s te verwijderen."
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
-msgstr "Nieuw wachtwoord"
+#: plugins/admin/users/class_userManagement.inc:458
+#, fuzzy, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "U staat op het punt de invoer %s te verwijderen."
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
-msgstr "Nogmaals wachtwoord"
+#: plugins/admin/users/class_userManagement.inc:460
+#, fuzzy
+msgid "Delete users"
+msgstr "Verwijder gebruiker"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
-msgstr "Wachtwoord veranderen"
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+#, fuzzy
+msgid "User delete"
+msgstr "Verwijder"
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
-msgstr "Klik hier om uw wachtwoord te veranderen."
+#: plugins/admin/users/class_userManagement.inc:488
+#, fuzzy, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Er is een sessie conflict gedetecteerd"
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "U staat op het punt gebruiker %s te verwijderen."
 
-#: ihtml/themes/default/conflict.tpl:6
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
-msgstr ""
-"Er is vermoedelijk een andere actieve instantiatie van uw sessie. Werken m.b."
-"v. meerdere schermen is technisch onmogelijk en is sterk afhankelijk van de "
-"gebruikte browser. Gelijktijdig gebruik van verschillende browsers "
-"(bijvoorbeeld Internet Explorer en Mozilla) is wel mogelijk. Via de "
-"<b>Uitloggen</b> knop wordt deze sessie afgesloten."
+msgid "User deleted"
+msgstr "Verwijder"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
-"Het negeren van dit bericht zal de data die u op dit moment aan het bewerken "
-"bent veranderen/vernietigen, dus sluit a.u.b. enige overige vensters en log "
-"opnieuw in."
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User successfully removed."
+msgstr "Import was succesvol"
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Uitloggen"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
 
-#: ihtml/themes/default/logout-close.tpl:5
-#, fuzzy
-msgid "Your GOsa session has been closed!"
-msgstr "Uw GOsa sessie is verlopen!"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "geen"
 
-#: ihtml/themes/default/logout-close.tpl:7
+#: plugins/admin/users/remove.tpl:6
 msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
+"Dit omvat alle account gegevens, systeem toegangsregels, imap instellingen "
+"etc. voor deze gebruiker. Verzeker uzelf hiervan, aangezien er geen "
+"mogelijkheid voor GOsa is om deze informatie terug te halen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-#, fuzzy
-msgid "Restoring object snapshots"
-msgstr "Nieuwe objectgroep aanmaken"
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Een nieuwe gebruiker aanmaken m.b.v. een sjabloon"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
+"Het aanmaken van een nieuwe gebruiker kan m.b.v. sjablonen gebeuren. Veel "
+"database records zullen dan automatisch gevuld worden. Kies 'geen' om het "
+"gebruik van sjablonen over te slaan."
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
+#: plugins/admin/users/password.tpl:4
 msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
 msgstr ""
+"Gebruik de velden hieronder om het gebruikers wachtwoord te veranderen. De "
+"veranderingen worden onmiddelijk doorgevoerd. Onthoud het nieuwe wachtwoord "
+"a.u.b. aangezien de gebruiker niet in kan loggen zonder dit wachtwoord."
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
-msgstr ""
+#: plugins/admin/users/password.tpl:21
+#, fuzzy
+msgid "Strength"
+msgstr "Straat"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Object"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Gebruikersbeheer"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Objectgroepen"
+
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
 #, fuzzy
-msgid "There is no snapshot available that could be restored"
-msgstr ""
-"Er is geen MySQL extensie beschikbaar. Controleer uw PHP installatie a.u.b."
+msgid "Manage object groups"
+msgstr "Naam van objectgroepen"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, fuzzy, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "U staat op het punt de invoer %s te verwijderen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, fuzzy, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "U staat op het punt de objectgroep '%s' te verwijderen."
+
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
 #, fuzzy
-msgid "Creating object snapshots"
-msgstr "Nieuwe objectgroep aanmaken"
+msgid "Permission error"
+msgstr "Rechten"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "U staat op het punt de objectgroep '%s' te verwijderen."
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
 #, fuzzy
-msgid "Timestamp"
-msgstr "Timeout"
+msgid "Windows Install"
+msgstr "Windows werkstation"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "Terminal"
+
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "Deze 'dn' is geen objectgroep."
+
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "te veel verschillende object tpyes!"
+
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "gebruikers"
+
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "groepen"
+
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "programma's"
+
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "afdelingen"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-#, fuzzy
-msgid "New ACL"
-msgstr "Nieuw"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "servers"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-#, fuzzy
-msgid "ACL type"
-msgstr "type"
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "werkstations"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+#: plugins/admin/ogroups/class_ogroup.inc:315
 #, fuzzy
-msgid "Select an acl type"
-msgstr "Selecteer een basis"
+msgid "winstations"
+msgstr "Windows werkstation"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "terminals"
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "telefoons"
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "printers"
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "Groepsleden"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "en"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
+msgstr "Niet bestaande dn: "
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+#: plugins/admin/ogroups/class_ogroup.inc:629
 #, fuzzy
-msgid "List of available ACL categories"
-msgstr "Lijst met beschikbare pakketten"
-
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr ""
+msgid "You can combine two different object types at maximum, only!"
+msgstr "U kunt maximaal twee verschillende object types tegelijk combineren!"
 
-#: ihtml/themes/default/acl.tpl:69
+#: plugins/admin/ogroups/class_ogroup.inc:763
 #, fuzzy
-msgid "Available roles"
-msgstr "Beschikbare programma's"
+msgid "Object group generic"
+msgstr "Objectgroep"
 
-#: ihtml/themes/default/password.tpl:6
+#: plugins/admin/ogroups/class_ogroup.inc:774
 #, fuzzy
-msgid "Change your password"
-msgstr "Verander wachtwoord"
+msgid "Member"
+msgstr "Groepsleden"
 
-#: ihtml/themes/default/password.tpl:34
-#, fuzzy
-msgid "Success"
-msgstr "Export was succesvol"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "Selecteer de toe te voegen objecten"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "Selecteer om afdelingen te zien"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-#, fuzzy
-msgid "Password change"
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Toon afdelingen"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "Selecteer om GOsa accounts te zien"
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "Huidig wachtwoord"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Toon personen"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Nieuw wachtwoord"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "Selecteer om GOsa groepen te zien"
 
-#: ihtml/themes/default/password.tpl:85
-#, fuzzy
-msgid "again"
-msgstr "Hoofdmenu"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Toon groepen"
 
-#: ihtml/themes/default/password.tpl:86
-#, fuzzy
-msgid "New password repeated"
-msgstr "Nieuw wachtwoord"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Selecteer om programma's te zien"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "Wachtwoord encryptie"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Toon programma's"
 
-#: ihtml/themes/default/password.tpl:100
-#, fuzzy
-msgid "Change"
-msgstr "Kanaal"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Selecteer om servers te zien"
 
-#: ihtml/themes/default/password.tpl:101
-#, fuzzy
-msgid "Click here to change your password"
-msgstr "Klik hier om uw wachtwoord te veranderen."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Toon servers"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-#, fuzzy
-msgid "Copy & paste wizard"
-msgstr "Kopieren &amp; plakken wizard"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "Selecteer om werkstations te zien"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
-"Somige waardes moeten uniek zijn binnen de gehele directory, terwijl sommige "
-"combinaties geen zin hebben. GOsa toont de relevante attributen. Bewaar de "
-"waardes hieronder a.u.b. om aan deze vereisten te voldoen."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Toon werkstations"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "Selecteer om terminals te zien"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Toon terminals"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-#, fuzzy
-msgid "Cancel all"
-msgstr "Annuleren"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "Selecteer om printers te zien"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr "Bewerking afgerond"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Toon printers"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr "Uw GOsa sessie is verlopen!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "Selecteer om telefoons te zien"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
-"Uw laatste interactie met de GOsa webinterface is enige tijd geleden. Uit "
-"veiligheidsoverwegingen is de sessie gesloten. Om door te gaan met "
-"administratieve taken, dient u opnieuw in te loggen."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Toon telefoons"
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr "Opnieuw inloggen"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "Toon objecten van afdeling"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "Toon overeenkomende objecten"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "Reguliere expressie voor overeenkomende objectnamen"
+
+#: plugins/admin/ogroups/remove.tpl:7
 msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
-"U bent momenteel database gegevens aan het bewerken. Wilt u eventuele "
-"wijzigingen ongedaan maken?"
+"Controleer a.u.b. of u dit daadwerkelijk wil doen, aangezien er geen "
+"mogelijkheid voor GOsa is om uw data terug te krijgen."
+
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Groepnaam"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Hoofdmenu"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+#, fuzzy
+msgid "Please enter the new object group name"
+msgstr "Geef a.u.b. een nieuwe naam op"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Help"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Naam van de groep"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Uitloggen"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Omschrijving voor deze groep"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Aangemeld:"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Selecteer de subtree waaronder deze groep geplaatst wordt"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Lidmaatschap objecten"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr "Lijst met objectgroepen"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "Kies a.u.b. de manier waarop gereageerd moet worden voor deze sessie"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr "Naam van objectgroepen"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-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"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Afdelingen"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-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"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
+msgstr "Selecteer om groepen die gebruikers bevatten te tonen"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Stel in"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Toon groepen die gebruikers bevatten"
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"Dit kan gebruikt worden door meerdere groepen. Verzeker uzelf ervan dat dit "
-"is wat u wil, aangezien er geen mogelijkheid voor GOsa is om uw date terug "
-"te halen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
+msgstr "Selecteer om groepen die groepen bevatten te tonen"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-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."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Toon groepen die groepen bevatten"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Verwijderen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
+msgstr "Selecteer om groepen die programma's bevatten te tonen"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
-"Kan het opgegeven bestand niet openen. Controleer of het bestand bestaat en "
-"toegankelijk is."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Toon groepen die programma's bevatten"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr ""
-"Kan het opgegeven certificaat niet lezen of er is een lege string opgegeven."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
+msgstr "Selecteer om groepen die afdelingen bevatten te tonen"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
-"Kan het certificaat niet laden. Mogelijk is een niet ondersteund formaat "
-"gebruikt (gebruik PEM/DER)."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Toon groepen die afdelingen bevatten"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr "Het formaat moet PEM zijn om certificaat informatie te tonen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
+msgstr "Selecteer om groepen die servers bevatten te tonen"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "Kan bestand niet aanmaken/openen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Toon groepen die servers bevatten"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr "Geen geldig certificaat geladen"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
+msgstr "Selecteer om groepen die werkstations bevatten te tonen"
 
-#: include/utils/class_msgPool.inc:14
-#, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Toon groepen die werkstations bevatten"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+msgid "Select to see groups containing windows workstations"
+msgstr "Selecteer om groepen die werkstations bevatten te tonen"
 
-#: include/utils/class_msgPool.inc:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+msgid "Show groups containing windows workstations"
+msgstr "Toon groepen die werkstations bevatten"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
+msgstr "Selecteer om groepen die terminals bevatten te tonen"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Toon groepen die terminals bevatten"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
+msgstr "Selecteer om groepen die printers bevatten te tonen"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
+msgstr "Toon groepen die printers bevatten"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
+msgstr "Selecteer om groepen die printers bevatten te tonen"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
+msgstr "Toon groepen die telefoons bevatten"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Bewerk deze invoer"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr ""
-"U heeft geen toestemming om een telefoon aan te maken onder deze 'Basis'."
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Verwijder deze invoer"
 
-#: include/utils/class_msgPool.inc:80
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
 #, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+msgid "You are not allowed to remove this entry."
+msgstr "U heeft geen toestemming om deze gegevens te verwijderen!"
 
-#: include/utils/class_msgPool.inc:87
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
 #, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+msgid "Number of listed object groups"
+msgstr "Naam van objectgroepen"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
+msgstr "Telefoonwachtrij"
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr "Systeem"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Apparaten"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Opstarten"
+
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "Samenvatting"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Terminals"
+
+#: plugins/admin/departments/class_departmentManagement.inc:27
 #, fuzzy
-msgid "Connection information"
-msgstr "Persoonlijke informatie"
+msgid "Manage Departments"
+msgstr "Afdelingen"
 
-#: include/utils/class_msgPool.inc:110
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
 #, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Kan niet verbinden met de database server!"
+msgid "You're about to delete the following entry %s"
+msgstr "U staat op het punt de invoer %s te verwijderen."
 
-#: include/utils/class_msgPool.inc:122
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
 #, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "De opgegeven database kon niet geselecteerd worden!"
+msgid "You're about to delete the following entries %s"
+msgstr "U staat op het punt de invoer %s te verwijderen."
 
-#: include/utils/class_msgPool.inc:128
+#: plugins/admin/departments/class_departmentManagement.inc:245
 #, php-format
-msgid "No %s server defined!"
-msgstr ""
-
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "De opgegeven database kon niet geselecteerd worden!"
-
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Het veld 'Fax' bevat een ongeldig Faxnummer."
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr "U staat op het punt de hele LDAP subtree onder '%s' te verwijderen."
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
+#: plugins/admin/departments/tabs_department.inc:55
+#, fuzzy
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
 msgstr ""
-"Het commando '%s' dat gespecificeerd is als CHECK inhaker voor module '%s' "
-"bestaat niet."
+"Het verplaatsen van de tree is mislukt. Bestemmings-tree is een subtree van "
+"de bron-tree."
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "De opgegeven 'UID' waarde is te klein."
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#, fuzzy
+msgid "You are currently moving/renaming this department."
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "De opgegeven 'UID' waarde is te klein."
-
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
 msgstr ""
-"PHP moet minimaal versienummer 4.1.0 hebben. GOsa gebruikt bepaalde "
-"functionaliteit die in voorgaande versies niet goed of helemaal niet "
-"voorhanden is."
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Er bestaat al een account met deze 'Inlog naam' in de database."
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "Vereist veld 'Naam' is leeg."
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Het vereiste veld '(Achter)naam' is leeg."
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "Vereist veld 'Omschrijving' is leeg."
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+#, fuzzy
+msgid "Fatal error"
+msgstr "Terminal server"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+#, fuzzy
+msgid "Cannot find an unused tag for this administrative unit!"
 msgstr ""
+"Fatale fout: Kon geen ongebruikte markering vinden om de administratieve "
+"eenheid te markeren!"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "Het veld 'Naam' bevat ongeldige karakters."
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
+msgstr "Markeren van '%s'."
 
-#: include/utils/class_msgPool.inc:216
+#: plugins/admin/departments/class_departmentGeneric.inc:502
 #, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+msgid "Moving '%s' to '%s'"
+msgstr "Verplaatsen van %s naar %s"
 
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr "Kopieren van %s is mislukt. Bewerking afgebroken."
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Verwijder printer mogelijkheden"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Land"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Toevoegen"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Telefoon"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Toevoegen"
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "Afdelingnaam"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Verwijderen"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Categorie"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Stel in"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "Administratieve instellingen"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Bewerken"
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
+msgstr "Object '%s' is al gemarkeerd"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Bewerk gebruiker"
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
+msgstr "Toevoegen van markering (%s) aan object '%s'"
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Dit account heeft geen geldige GOsa extensies."
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
+msgstr "Verwijderen van markering van object '%s'"
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
+#: plugins/admin/departments/remove.tpl:6
 msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
-"Dit account heeft POSIX mogelijkheden ingeschakeld. U kunt deze uitschakelen "
-"door de knop hieronder te gebruiken."
+"Dit omvat 'alle' accounts, systemen etc. in deze subtree. Verzeker uzelf er "
+"van dat dit is wat u wilt, aangezien er geen mogelijkheid voor GOsa is om "
+"deze gegevens terug te halen."
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
 msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
-"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
-"moet u eerst het samba / omgevings account verwijderen."
+"Het is aan te raden de huidige inhoud van uw LDAP database op te slaan "
+"alvorens u doorgaat. Indien u dat gedaan heeft drukt u op 'Verwijderen' om "
+"door te gaan of op 'Annuleren' om te annuleren."
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
-msgstr ""
-"Dit account heeft POSIX mogelijkheden uitgeschakeld. U kunt deze inschakelen "
-"door de knop hieronder te gebruiken."
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Lijst met afdelingen"
+
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "Reguliere expressie voor overeenkomende afdelingen"
+
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "afdeling"
+
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "Naam van de afdeling"
+
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "Naam van de aan te maken subtree"
+
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "Omschrijving voor de afdeling"
+
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "Categorie voor deze subtree"
+
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr "Selecteer de subtree waaronder deze afdeling geplaatst wordt"
+
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "Provincie waar deze subtree zich bevindt"
+
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "Plaats van deze subtree"
+
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "Post adres van deze subtree"
+
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "Basis telefoonnummer van deze subtree"
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr ""
-"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
-"moet u eerst het samba / omgevings account verwijderen."
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "Basis Fax nummer van deze subtree"
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
-msgstr ""
-"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
-"moet u eerst het samba / omgevings account verwijderen."
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
+msgstr "Markeer de afdeling als een onafhankelijke administratieve eenheid"
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Programma instellingen"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Afdeling beheer"
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Posix instellingen"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr "Bezig met verwerken van de gevraagde opdracht"
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
-"Gebruik de 'Bewerk' knop hieronder om de informatie in deze dialoog te "
-"veranderen"
-
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Januari"
+"Uw browser heeft geen ondersteuning voor frames. Gebruik a.u.b. deze link om "
+"de gewenste opdracht uit te voeren."
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Februari"
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+#, fuzzy
+msgid "Acl"
+msgstr "Alle"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Maart"
+#: plugins/admin/acl/class_aclRole.inc:26
+#, fuzzy
+msgid "Access control list templates"
+msgstr "Toegangsopties"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "April"
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "Rechten"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Mei"
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+#, fuzzy
+msgid "All categories"
+msgstr "Categorie toevoegen"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Juni"
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Juli"
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+#, fuzzy
+msgid "One level"
+msgstr "Log prioriteit"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Augustus"
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+#, fuzzy
+msgid "Current object"
+msgstr "Nieuw FAI object aanmaken"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "September"
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+#, fuzzy
+msgid "Complete subtree"
+msgstr "Subonderdelen negeren"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Oktober"
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "November"
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr "Omhoog"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "December"
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
+msgstr "Omlaag"
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
 #, fuzzy
-msgid "Sunday"
-msgstr "Achternaam"
+msgid "Edit ACL"
+msgstr "Bewerken"
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
 #, fuzzy
-msgid "Monday"
-msgstr "maand"
+msgid "Delete ACL"
+msgstr "Verwijderen"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Wednesday"
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
+#, php-format
+msgid "Contains ACLs for these objects: %s"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+#, fuzzy
+msgid "Edit categories ACLs"
+msgstr "Bewerk klasse"
+
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
+#, php-format
+msgid "Edit ACL for '%s', scope is '%s'"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/class_aclRole.inc:618
 #, fuzzy
-msgid "read operation"
-msgstr "E-mail opties"
+msgid "Object in use"
+msgstr "Objectnaam"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/acl/class_aclRole.inc:618
+#, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
 #, fuzzy
-msgid "modify operation"
-msgstr "Persoonlijke informatie"
+msgid "ACL roles"
+msgstr "Rechten"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/class_aclRole.inc:700
 #, fuzzy
-msgid "delete operation"
-msgstr "Selecteer om werkstations te zien"
+msgid "Acl roles"
+msgstr "Nieuw profiel"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/remove.tpl:6
 #, fuzzy
-msgid "search operation"
-msgstr "Het account verloopt op"
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
+msgstr ""
+"Dit omvat <b>alle</b> systeem en configuratie informatie. Verzeker uzelf "
+"hiervan, aangezien er geen manier is voor GOsa om deze gegevens terug te "
+"halen."
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/tabs_acl_role.inc:28
 #, fuzzy
-msgid "authentication"
-msgstr "Nagios authenticatie"
-
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "De database zoekopdracht is mislukt"
+msgid "ACL Templates"
+msgstr "Sjablonen"
 
-#: include/utils/class_msgPool.inc:374
+#: plugins/admin/acl/class_divListACL.inc:51
 #, fuzzy
-msgid "LDAP operation failed!"
-msgstr "De database zoekopdracht is mislukt"
+msgid "List of acl"
+msgstr "Lijst met macro's"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
+#: plugins/admin/acl/class_divListACL.inc:52
 #, fuzzy
-msgid "Configuration error"
-msgstr "Configuratie bestand"
-
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
-msgstr ""
+msgid "List of acls"
+msgstr "Lijst met macro's"
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "Subonderdelen negeren"
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:84
+#, fuzzy
+msgid "Display acls matching"
+msgstr "Toon overeenkomende macro's"
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:243
+#, fuzzy
+msgid "Edit acl role"
+msgstr "Bewerk share"
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s"
+#: plugins/admin/acl/class_divListACL.inc:253
+#, fuzzy
+msgid "Delete acl role"
+msgstr "Verwijder gebruiker"
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "Rechten"
+#: plugins/admin/acl/class_divListACL.inc:265
+#, fuzzy
+msgid "Edit acl"
+msgstr "Bewerk klasse"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "Referenties"
+#: plugins/admin/acl/class_divListACL.inc:269
+#, fuzzy
+msgid "Delete acl"
+msgstr "Verwijder klasse"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "Kan bestand '%s' niet aanmaken."
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+#, fuzzy
+msgid "ACL management"
+msgstr "Blokkeerlijst beheer"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Kan bestand '%s' niet aanmaken."
+#: plugins/admin/acl/class_aclManagement.inc:26
+#, fuzzy
+msgid "ACLs"
+msgstr "Rechten"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Kan bestand '%s' niet aanmaken."
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "Toegangsopties"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
 #, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Kan bestand '%s' niet aanmaken."
+msgid "You're about to delete the acl %s."
+msgstr "U staat op het punt de macro '%s' te verwijderen."
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Lijst met groepen"
 
-#: include/class_hostActionQueue.inc:277
-#, fuzzy, php-format
-msgid "Entry with id '%s' not found."
-msgstr "Het opslaan van de printer is mislukt"
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "Groepsnaam / Afdeling"
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
 msgstr ""
+"Selecteer om de groepen te zien die primaire groepen van gebruikers zijn"
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Toon primaire groepen"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, fuzzy, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr "Pakketbestand '%s' bestaat niet."
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Selecteer om groepen te zien die Samba groep verbindingen hebben"
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Toon Samba groepen"
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "Selecteer om groepen te zien die programma's geconfigureerd hebben"
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Toon programma groepen"
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
-#, fuzzy
-msgid "Internal error"
-msgstr "Terminal server"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "Selecteer om groepen te zien die E-mail instellingen hebben"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Toon E-mail groepen"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
 msgstr ""
+"Selecteer om normale groepen die alleen functionele aspecten hebben te zien"
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Toon functionele groepen"
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "Kan bestand '%s' niet openen."
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "Naam van de groep"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "U staat op het punt de invoer '%s' te kopieren."
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Selecteer de toe te voegen gebruikers"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "U staat op het punt de invoer '%s' te kopieren."
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr "Zoek binnen subtree"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr "Plakken"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Toon gebruikers van afdeling"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr "Plakken onmogelijk"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "Reguliere expressie voor overeenkomende gebruikersnamen"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "Groepen"
+
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
 msgstr ""
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: plugins/admin/groups/class_groupManagement.inc:434
 #, php-format
+msgid "You're about to delete the group '%s'."
+msgstr "U staat op het punt de groep '%s' te verwijderen."
+
+#: plugins/admin/groups/remove.tpl:6
 msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
+"Dit kan een primaire groep zijn. Verzeker uzelf ervan dat dit is wat u wilt, "
+"aangezien er geen mogelijkheid voor GOsa is om deze gegevens terug te halen."
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
+msgstr "Groep instellingen"
 
-#: include/class_plugin.inc:1613
-#, fuzzy
-msgid "from"
-msgstr "willekeurig"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "POSIX naam van de groep"
 
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
-"Er is minimaal één PHP fout opgetreden bij het genereren van deze pagina!"
+"Normaliter worden IDs automatisch gegenereerd. Selecteer om handmatig te "
+"specificeren"
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Forceer GID"
 
-#: include/php_setup.inc:96
-#, fuzzy
-msgid "Send bugreport"
-msgstr "Afzender"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "Geforceerd ID nummer"
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
-msgstr "Informatie weergeven/verbergen"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Selecteer om een samba conforme groep te maken"
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "PHP fout"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "in domein"
 
-#: include/php_setup.inc:130
-msgid "class"
-msgstr "klasse"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "Leden zitten in een telefoon beantwoordgroep"
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "functie"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr "Leden zitten in een systeeminformatie groep (Nagios)"
+
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Groepsleden"
+
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Groepen beheer"
+
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+#, fuzzy
+msgid "Configuration error"
+msgstr "Configuratie bestand"
+
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#, fuzzy
+msgid "Cannot find group SID in your configuration!"
+msgstr ""
+"Kan de SID van deze groep niet vinden in de LDAP database of in uw "
+"configuratie bestand."
+
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Deze 'dn' is geen groep."
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "statisch"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Samba groep"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "methode"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Windows beheerders"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr "Trace"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Windows gebruikers"
 
-#: include/php_setup.inc:179
-msgid "File"
-msgstr "Bestand"
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Windows gasten"
 
-#: include/php_setup.inc:179
-msgid "Line"
-msgstr "Regel"
+#: plugins/admin/groups/class_groupGeneric.inc:355
+#, php-format
+msgid "Special group (%d)"
+msgstr "Speciale groep (%d)"
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Type"
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "! onbekend id"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "Argumenten"
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#, php-format
+msgid "Search returned too many results. Not displaying more than %s entries!"
+msgstr ""
 
-#: include/class_acl.inc:26
-#, fuzzy
-msgid "Access control"
-msgstr "Toegangsopties"
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, fuzzy, php-format
+msgid "Cannot find any SID for '%s'!"
+msgstr "Kan bestand '%s' niet aanmaken."
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-#, fuzzy
-msgid "Manage access control lists"
-msgstr "Toegangsopties"
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Kan bestand '%s' niet aanmaken."
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
+#: plugins/admin/groups/class_groupGeneric.inc:966
 #, fuzzy
-msgid "All categories"
-msgstr "Categorie toevoegen"
-
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
+msgid "Cannot allocate a free ID!"
 msgstr ""
+"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
+#: plugins/admin/groups/class_groupGeneric.inc:1015
 #, fuzzy
-msgid "One level"
-msgstr "Log prioriteit"
+msgid "Generic group settings"
+msgstr "Algemene wachtrij instellingen"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
+#: plugins/admin/groups/class_groupGeneric.inc:1027
 #, fuzzy
-msgid "Current object"
-msgstr "Nieuw FAI object aanmaken"
+msgid "Phone pickup group"
+msgstr "Leden zitten in een telefoon beantwoordgroep"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
+#: plugins/admin/groups/class_groupGeneric.inc:1028
 #, fuzzy
-msgid "Complete subtree"
-msgstr "Subonderdelen negeren"
-
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr ""
-
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr ""
-
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Gebruikers"
+msgid "Nagios group"
+msgstr "Nagios account"
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "Groepen"
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+#, fuzzy
+msgid "Group member"
+msgstr "Groepsleden"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr "Omhoog"
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+#, fuzzy
+msgid "Samba group type"
+msgstr "Samba groep"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
-msgstr "Omlaag"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+#, fuzzy
+msgid "Samba domain name"
+msgstr "Samba home"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "Bewerk"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+#, fuzzy
+msgid "Samba SID"
+msgstr "Samba"
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
 #, fuzzy
-msgid "Edit ACL"
-msgstr "Bewerken"
+msgid "Language setup"
+msgstr "Taal"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "Verwijder"
+#: setup/class_setupStep_Language.inc:42
+#, fuzzy
+msgid "This step allows you to select your preferred language."
+msgstr ""
+"Deze dialoog maakt het mogelijk om een apparaat te verbinden aan de computer "
+"die u momenteel aan het bewerken bent."
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
+#: setup/class_setupStep_Language.inc:47
 #, fuzzy
-msgid "Delete ACL"
-msgstr "Verwijderen"
+msgid "Automatic"
+msgstr "automatisch"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
+#: setup/setup_welcome.tpl:11
 #, fuzzy
-msgid "Edit categories ACLs"
-msgstr "Bewerk klasse"
+msgid "Create a basic, single site configuration"
+msgstr "FAX database"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-#, fuzzy
-msgid "Show/Hide Advanced Settings"
-msgstr "Geavanceerde telefoon instellingen"
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: include/class_acl.inc:690
+#: setup/setup_welcome.tpl:20
 #, fuzzy
-msgid "Create objects"
-msgstr "Nieuw FAI object aanmaken"
+msgid "Find every possible configuration error"
+msgstr "Configuratie bestand"
 
-#: include/class_acl.inc:691
-#, fuzzy
-msgid "Move objects"
-msgstr "Lidmaatschap objecten"
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
 
-#: include/class_acl.inc:692
+#: setup/setup_welcome.tpl:25
 #, fuzzy
-msgid "Remove objects"
-msgstr "Lidmaatschap objecten"
+msgid "To continue..."
+msgstr "Installatie vervolg..."
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_acl.inc:697
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
+msgstr ""
+
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
 #, fuzzy
-msgid "Move object"
-msgstr "Lidmaatschap objecten"
+msgid "GOsa settings 1/3"
+msgstr "Gebruikersinstellingen"
 
-#: include/class_acl.inc:698
+#: setup/class_setupStep_Config1.inc:76
 #, fuzzy
-msgid "Remove object"
-msgstr "Lidmaatschap objecten"
+msgid "GOsa generic settings"
+msgstr "Algemene wachtrij instellingen"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "alleen lezen"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "Nee"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "afleveren, lezen & schrijven"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "Ja"
 
-#: include/class_acl.inc:710
-#, fuzzy
-msgid "Complete object"
-msgstr "Nieuw FAI object aanmaken"
+#: setup/class_setupStep_Config1.inc:118
+#, fuzzy, php-format
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "De sieve poort dient nummeriek te zijn."
 
-#: include/class_acl.inc:826
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
+msgstr ""
+
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/class_acl.inc:869
-#, fuzzy, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Onbekende FAI status %s"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "OU voor gebruikers opslag"
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
-#, fuzzy, php-format
-msgid "Role: %s"
-msgstr "Funktie"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "OU voor groepen opslag"
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr ""
+#: setup/class_setupStep_Config1.inc:130
+#, fuzzy
+msgid "Uid base must be numeric"
+msgstr "Timeout dient nummeriek te zijn"
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr ""
+#: setup/class_setupStep_Config1.inc:134
+#, fuzzy
+msgid "The given password minimum length is not numeric."
+msgstr "De sieve poort dient nummeriek te zijn."
 
-#: include/class_acl.inc:948
+#: setup/class_setupStep_Config1.inc:137
 #, fuzzy
-msgid "Members:"
-msgstr "Groepsleden"
+msgid "The given password differ value is not numeric."
+msgstr "De sieve poort dient nummeriek te zijn."
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
 msgstr ""
 
-#: include/class_acl.inc:1115
+#: setup/setup_ldap.tpl:25
 #, fuzzy
-msgid "Access control list"
-msgstr "Toegangsopties"
+msgid "LDAP connection"
+msgstr "Max. verbrekingsduur"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Naam van de locatie"
+
+#: setup/setup_ldap.tpl:37
 #, fuzzy
-msgid "ACL roles"
-msgstr "Rechten"
+msgid "Connection URL"
+msgstr "Verbindingings URL"
 
-#: include/class_acl.inc:1123
+#: setup/setup_ldap.tpl:45
 #, fuzzy
-msgid "Role name"
-msgstr "Hernoemen"
+msgid "TLS connection"
+msgstr "Bel..."
 
-#: include/class_acl.inc:1124
+#: setup/setup_ldap.tpl:65
 #, fuzzy
-msgid "Role description"
-msgstr "Eenheid omschrijving"
+msgid "Reload"
+msgstr "Lezen"
 
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
-msgstr ""
+#: setup/setup_ldap.tpl:69
+#, fuzzy
+msgid "Authentication"
+msgstr "Nagios authenticatie"
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
-msgstr ""
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "Beheerders DN"
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr "Onbekend"
+#: setup/setup_ldap.tpl:78
+#, fuzzy
+msgid "Select user"
+msgstr "Verwijder gebruiker"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Log DB gebruiker"
-
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
-msgstr ""
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Beheerders wachtwoord"
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
-msgstr ""
+#: setup/setup_ldap.tpl:101
+#, fuzzy
+msgid "Schema based settings"
+msgstr "Samba Instellingen"
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_log.inc:124
+#: setup/setup_ldap.tpl:117
 #, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "De opgegeven naam is ongeldig."
+msgid "Current status"
+msgstr "Systeem status"
 
-#: include/class_log.inc:145
+#: setup/setup_migrate.tpl:5
 msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Kan niet verbinden met de database server!"
-
-#: include/class_log.inc:165
-#, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "Kan de database %s op %s niet selecteren."
+#: setup/setup_migrate.tpl:33
+#, fuzzy
+msgid "Check again"
+msgstr "Controleer"
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
 msgstr ""
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "Kan de database %s op %s niet selecteren."
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
+msgstr ""
 
-#: include/class_multi_plug.inc:362
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
 #, fuzzy
-msgid "You are currently editing mutliple entries."
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+msgid "Select all"
+msgstr "Selecteer"
 
-#: include/class_multi_plug.inc:391
-#, fuzzy
-msgid "Password reset"
-msgstr "Wachtwoord verloopt op"
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
+msgstr ""
 
-#: include/class_multi_plug.inc:391
+#: setup/setup_migrate.tpl:72
 #, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. "
+msgid "Move selected workstations"
+msgstr "Selecteer om werkstations te zien"
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "XML fout in guide.conf: %s op regel %d"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
+msgstr "Sluiten"
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
-msgstr "Help is (nog) niet beschikbaar voor deze module."
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
+msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
-msgstr "vorige"
+#: setup/setup_migrate.tpl:88
+msgid ""
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
+msgstr ""
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
-msgstr "volgende"
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
-msgstr "%s resultaten voor uw zoekopdracht met sleutelwoord %s"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr ""
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr "%s%% resultaat in bestand %s"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#, fuzzy
+msgid "Hide changes"
+msgstr "Open-Xchange"
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Ga naar basis afdelingen"
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+#, fuzzy
+msgid "Show changes"
+msgstr "Toon pakketten"
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Basis"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Ga een afdeling omhoog"
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Ga naar gebruikers afdeling"
+#: setup/setup_migrate.tpl:145
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
+
+#: setup/setup_migrate.tpl:148
+#, fuzzy
+msgid "Move selected users into this people tree"
+msgstr "Maak gebruiker aan met dit sjabloon"
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Home"
+#: setup/setup_migrate.tpl:198
+#, fuzzy
+msgid "Next"
+msgstr "tekst"
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "Lijst herladen"
+#: setup/setup_migrate.tpl:199
+#, fuzzy
+msgid "Abort"
+msgstr "Poort"
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "Verwerk"
+#: setup/setup_migrate.tpl:201
+#, fuzzy
+msgid "Create a new GOsa administrator account"
+msgstr "Netatalk account aanmaken"
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/setup_migrate.tpl:204
+msgid ""
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
+#: setup/setup_migrate.tpl:233
 #, fuzzy
-msgid "Restore"
-msgstr "Opnieuw proberen"
+msgid "Password (again)"
+msgstr "Wachtwoord encryptie"
 
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
+#: setup/setup_migrate.tpl:258
+msgid ""
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 ""
 
-#: include/class_MultiSelectWindow.inc:680
-#, fuzzy
-msgid "Create snapshot"
-msgstr "Nagios account aanmaken"
-
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
 #, fuzzy
-msgid "Create a new snapshot from this object"
+msgid "Current"
 msgstr "Nieuw FAI object aanmaken"
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "XML fout in gosa.conf: %s op regel %d"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#, fuzzy
+msgid "After migration"
+msgstr "Gebruikersbeheer"
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
 
-#: include/class_config.inc:228
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
 #, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgid "GOsa settings 3/3"
+msgstr "Gebruikersinstellingen"
+
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
 msgstr ""
-"Kan niet verbinden met de LDAP server. Neem a.u.b. contact op met de "
-"systeembeheerder."
 
-#: include/class_config.inc:560
+#: setup/class_setupStep_Config3.inc:193
 #, fuzzy
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "SID en/of RIDBASE ontbreken in uw configuratie!"
+msgid "Session lifetime must be a numeric value."
+msgstr "Toekomstige dagen moet een waarde bevatten."
 
-#: include/class_SnapShotDialog.inc:83
-#, fuzzy, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "U staat op het punt de macro '%s' te verwijderen."
+#: setup/class_setupStep_Config3.inc:197
+#, fuzzy
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "Toekomstige dagen moet een waarde bevatten."
 
-#: include/class_SnapShotDialog.inc:135
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
 #, fuzzy
-msgid "Remove snapshot"
-msgstr "Nagios account aanmaken"
+msgid "LDAP inspection"
+msgstr "PHP configuratie inspectie"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Omschrijving"
+#: setup/class_setupStep_Migrate.inc:113
+#, fuzzy
+msgid "Checking for root object"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
-msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: include/functions.inc:318
-#, 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'."
+#: setup/class_setupStep_Migrate.inc:131
+#, fuzzy
+msgid "Checking for invisible users"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+#: setup/class_setupStep_Migrate.inc:137
+#, fuzzy
+msgid "Checking for super administrator"
+msgstr "Zoeken naar enkele additionele programma's"
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP server"
+#: setup/class_setupStep_Migrate.inc:143
+#, fuzzy
+msgid "Checking for users outside the people tree"
+msgstr "Zoeken naar CUPS module"
 
-#: include/functions.inc:380 include/functions.inc:450
+#: setup/class_setupStep_Migrate.inc:149
 #, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
-msgstr "Gebruikersnaam / UID is niet uniek. Controleer uw LDAP database a.u.b."
+msgid "Checking for groups outside the groups tree"
+msgstr "Zoeken naar CUPS module"
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/functions.inc:605
-#, fuzzy, php-format
-msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr ""
-"Kan de blokkade informatie niet ophalen uit de LDAP database. Controleer a.u."
-"b. de 'config' regel in gosa.conf!"
+#: setup/class_setupStep_Migrate.inc:161
+#, fuzzy
+msgid "Checking for duplicate uid numbers"
+msgstr "Zoeken naar functie %s"
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "Het opslaan van de FAI inhaker is mislukt"
+#: setup/class_setupStep_Migrate.inc:167
+#, fuzzy
+msgid "Checking for duplicate gid numbers"
+msgstr "Zoeken naar functie %s"
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "Het verwijderen van de FAI inhaker is mislukt"
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+#, fuzzy
+msgid "LDAP query failed"
+msgstr "De database zoekopdracht is mislukt"
 
-#: include/functions.inc:691 include/functions.inc:736
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:213
 #, fuzzy, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr "Kan quota informatie niet ophaleven voor '%s'."
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "Er is een dubbele waarde gevonden voor record type '%s'."
 
-#: include/functions.inc:699
-#, fuzzy
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
-"Er zijn meerdere blokkades voor het te blokkeren object gevonden. Dat zou "
-"niet mogelijk moeten zijn. Meervoudige verwijzingen worden opgeschoond."
+#: setup/class_setupStep_Migrate.inc:262
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Er is een dubbele waarde gevonden voor record type '%s'."
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!"
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Mislukt"
 
-#: include/functions.inc:998
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
-"Stel de nieuwe hoeveelheidslimiet in op %s en toon me dit bericht indien de "
-"limiet nog steeds overschreden wordt."
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Instellen"
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+#, fuzzy
+msgid "Migrate"
+msgstr "Aanmaken"
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "onvolledig"
+#: setup/class_setupStep_Migrate.inc:387
+#, fuzzy, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "U staat op het punt de invoer '%s' te kopieren."
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "LDAP fout:"
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#, fuzzy
+msgid "Move"
+msgstr "Modus"
 
-#: include/functions.inc:1254
-msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+#: setup/class_setupStep_Migrate.inc:462
+#, php-format
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
-"Problemen met de LDAP server betekenen meestal dat de laatste wijzigingen "
-"verloren gegaan zijn. Controleer uw LDAP instellingen voor mogelijke fouten "
-"en probeer het opnieuw."
 
-#: include/functions.inc:1260
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
+#, php-format
 msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
-"Controleer uw invoer a.u.b. en verbeter de fout. Druk 'OK' om dit "
-"berichtvenster te sluiten."
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr "Toch doorgaan"
+#: setup/class_setupStep_Migrate.inc:597
+#, php-format
+msgid "Found %s user(s) that will not be visible in GOsa."
+msgstr ""
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr "Alsnog bewerken"
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "Aanmaken"
 
-#: include/functions.inc:1329
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
 #, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "U staat op het punt de invoer '%s' te kopieren."
-
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr "Regels per pagina"
-
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr "Filter toepassen"
-
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgid "Cannot migrate department '%s':"
+msgstr "Ga naar basis afdelingen"
 
-#: include/functions.inc:1837
+#: setup/class_setupStep_Migrate.inc:727
 #, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "GOsa ontwikkelversie (Revisie %s)"
+msgid "Found %s department(s) that will not be visible in GOsa."
+msgstr ""
 
-#: include/functions.inc:1916
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:945
 #, php-format
-msgid "File '%s' could not be deleted."
+msgid "Cannot add ACL for user '%s':"
 msgstr ""
 
-#: include/functions.inc:1950 include/functions.inc:1970
+#: setup/class_setupStep_Migrate.inc:970
 #, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "Kan bestand '%s' niet aanmaken."
+msgid "Password error"
+msgstr "Wachtwoord verloopt op"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
 msgstr ""
+"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar "
+"overeen!"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:975
 #, fuzzy
-msgid "LDAP warning"
-msgstr "LDAP beheer"
+msgid "Input error"
+msgstr "PHP fout"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:975
 #, fuzzy
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr ""
-"Kan de schema informatie niet ophalen van de server. Schema controle is "
-"onmogelijk!"
+msgid "Specify a valid user ID!"
+msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
+#: setup/class_setupStep_Migrate.inc:1019
+#, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
 msgstr ""
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "Ga naar de afdeling van de gebruiker"
+
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
 msgstr ""
 
-#: include/functions.inc:2320
-#, fuzzy, php-format
-msgid "Missing required object class '%s'!"
-msgstr "Toon FAI sjabloon objecten"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+#, fuzzy
+msgid "to"
+msgstr "Stop"
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
 msgstr ""
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
 msgstr ""
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
 msgstr ""
 
-#: include/functions.inc:2334
-#, fuzzy, php-format
-msgid "Class(es) available"
-msgstr "Bestand is beschikbaar"
-
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
 msgstr ""
 
-#: include/functions.inc:2357
+#: setup/class_setupStep_Migrate.inc:1613
 msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+#, fuzzy
+msgid "Try to create root object"
+msgstr "Nieuw FAI object aanmaken"
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Duits"
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Verplaatsen van %s naar %s"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Frans"
+#: setup/setup_frame.tpl:12
+#, fuzzy
+msgid "GOsa setup wizard"
+msgstr "GOsa help"
 
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "Italiaans"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Installation"
+msgstr "Windows werkstation"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Spaans"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Steps"
+msgstr "Systemen"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Engels"
+#: setup/class_setupStep_Feedback.inc:91
+#, fuzzy
+msgid "UNIX accounts/groups"
+msgstr "Account code"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Nederlands"
+#: setup/class_setupStep_Feedback.inc:93
+#, fuzzy
+msgid "Samba management"
+msgstr "Systeembeheer"
 
-#: include/functions.inc:2391
-msgid "Polish"
-msgstr "Pools"
+#: setup/class_setupStep_Feedback.inc:95
+#, fuzzy
+msgid "Mailsystem management"
+msgstr "Systeembeheer"
 
-#: include/functions.inc:2392
-msgid "Swedish"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:97
+#, fuzzy
+msgid "FAX system administration"
+msgstr "Gebruikersbeheer"
 
-#: include/functions.inc:2393
+#: setup/class_setupStep_Feedback.inc:99
 #, fuzzy
-msgid "Chinese"
-msgstr "Chipset"
+msgid "Asterisk administration"
+msgstr "Gebruikersbeheer"
+
+#: setup/class_setupStep_Feedback.inc:101
+#, fuzzy
+msgid "System inventory"
+msgstr "Inventaris verwijderen"
+
+#: setup/class_setupStep_Feedback.inc:103
+#, fuzzy
+msgid "System-/Configmanagement"
+msgstr "Systeembeheer"
+
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Adresboek"
+
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+#, fuzzy
+msgid "Notification and feedback"
+msgstr "Geen certificaat geinstalleerd"
+
+#: setup/class_setupStep_Feedback.inc:112
+#, fuzzy
+msgid "Get notifications or send feedback"
+msgstr "Secties voor deze versie"
 
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Russisch"
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+#, fuzzy
+msgid "Setup error"
+msgstr "Systeem status"
 
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "Instellen van het wachtwoord is mislukt. De LDAP server meldt: '%s'."
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
+msgstr ""
 
-#: include/functions.inc:2562
+#: setup/class_setupStep_Feedback.inc:140
 #, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgid "Cannot send feedback to '%s': %s"
 msgstr ""
-"Het commando '%s' dat gespecificeerd is als POSTMODIFY voor module '%s' "
-"bestaat niet."
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:179
+#, fuzzy
+msgid "Please specify a valid email address."
+msgstr "Geef a.u.b. een geldige scriptnaam op."
 
-#: include/class_ldap.inc:579
-#, php-format
+#: setup/class_setupStep_Feedback.inc:183
 msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+"You have to select at least one of both options, subscribe or send feedback."
 msgstr ""
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
-msgstr ""
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+#, fuzzy
+msgid "License"
+msgstr "Regel"
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "bij het bewerken van '%s' op LDAP server '%s'"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr ""
 
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
-msgstr "bij het bewerken van LDAP server %s"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Samba Instellingen"
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
 msgstr ""
-"Dit is geen geldige DN: '%s'. Een blok dat geïmporteerd wordt, dient te "
-"beginnen met 'dn: ...' op regel %s"
 
-#: include/class_ldap.inc:964
-#, 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!"
+#: setup/setup_config2.tpl:31
+#, fuzzy
+msgid "RID base"
+msgstr "Database"
 
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
-msgstr "Gebruikersinstellingen"
+#: setup/setup_config2.tpl:46
+#, fuzzy
+msgid "Workstation container"
+msgstr "Werkstation naam"
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
-msgstr "Achternaam"
+#: setup/setup_config2.tpl:61
+#, fuzzy
+msgid "Samba SID mapping"
+msgstr "Samba"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr "Voornaam"
+#: setup/setup_config2.tpl:71
+#, fuzzy
+msgid "Timezone"
+msgstr "Tijdzone"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Inlognaam"
+#: setup/setup_config2.tpl:74
+#, fuzzy
+msgid "Please choose your preferred timezone here"
+msgstr "Voorkeurstaal"
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
-msgstr "Wachtwoord wissen"
+#: setup/setup_config2.tpl:96
+#, fuzzy
+msgid "Additional GOsa settings"
+msgstr "Programma instellingen"
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr "Nieuw wachtwoord instellen"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Persoonlijk plaatje"
+#: setup/setup_config2.tpl:112
+#, fuzzy
+msgid "Enable DNS extension"
+msgstr "Verwijder printer mogelijkheden"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "Persoonlijk plaatje"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "Verwijder printer mogelijkheden"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Plaatje verwijderen"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Systeembeheer"
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Certificaten"
+#: setup/setup_config2.tpl:148
+#, fuzzy
+msgid "Enable FAI release management"
+msgstr "Blokkeerlijst beheer"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Standaard certificaat"
+#: setup/setup_config2.tpl:160
+#, fuzzy
+msgid "Enable user netatalk plugin"
+msgstr "Netatalk account beheren"
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Verwijderen"
+#: setup/setup_config2.tpl:171
+#, fuzzy
+msgid "Government mode"
+msgstr "naar map"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "S/MIME certificaat"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "E-mail instellingen"
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "PKCS12 certificaat"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "E-mail methode"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Certificaat serienummer"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/setup_config2.tpl:214
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Programma instellingen"
+msgid "Vacation templates"
+msgstr "Werkstation sjabloon"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "vrouw"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "man"
+#: setup/setup_config2.tpl:240
+#, fuzzy
+msgid "Snapshots / Undo"
+msgstr "Het opslaan van de telefoon is mislukt"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
-msgstr ""
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+#, fuzzy
+msgid "Enable snapshots"
+msgstr "Nagios account aanmaken"
 
-#: plugins/personal/generic/class_user.inc:492
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
 #, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Geef a.u.b. een geldig serienummer op"
+msgid "Snapshot base"
+msgstr "Het opslaan van de telefoon is mislukt"
+
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:536
+#: setup/setup_feedback.tpl:9
 msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "Certificaat is geldig van '%s' tot '%s' en de huidige status is '%s'."
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "E-mail adres"
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "geldig"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "ongeldig"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "Geen certificaat geinstalleerd"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
-#, fuzzy
-msgid "Password method"
-msgstr "Wachtwoord encryptie"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575
-#, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "Dit programma is niet meer beschikbaar."
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Naam"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Homepage"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Telefoon"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "GSM"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Pieper"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/setup_feedback.tpl:123
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "Het opgegeven certificaat kon geopend worden!"
+msgid "Features"
+msgstr "Toekomstig"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Eenheid"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Huis identificatie"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Beroep"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Laatste levering"
+#: setup/setup_schema.tpl:3
+#, fuzzy
+msgid "Schema specific settings"
+msgstr "Samba Instellingen"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Werkplaats"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Eenheid omschrijving"
+#: setup/setup_schema.tpl:16
+#, fuzzy
+msgid "Check status"
+msgstr "Systeem status"
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Werkgebied"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Functionele titel"
+#: setup/setup_schema.tpl:23
+#, fuzzy
+msgid "Schema check failed"
+msgstr "Het opslaan van de telefoon is mislukt"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Publiek zichtbaar"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Straat"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Funktie"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Postcode"
+#: setup/class_setup.inc:196
+#, fuzzy
+msgid "Completed"
+msgstr "onvolledig"
 
-#: plugins/personal/generic/class_user.inc:1432
+#: setup/class_setupStep_Ldap.inc:53
 #, fuzzy
-msgid "Generic user settings"
-msgstr "Algemene wachtrij instellingen"
+msgid "LDAP setup"
+msgstr "LDAP server"
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Mijn account"
+#: setup/class_setupStep_Ldap.inc:54
+#, fuzzy
+msgid "LDAP connection setup"
+msgstr "Bel..."
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
+#: setup/class_setupStep_Ldap.inc:55
 #, fuzzy
-msgid "User password"
-msgstr "Wachtwoord wissen"
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
+msgstr ""
+"De volgende velden definiëren de basis configuratie van GOsa's gedrag en "
+"beïnvloeden diverse eigenschappen in uw hoofd configuratie."
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Achternaam"
+#: setup/class_setupStep_Ldap.inc:105
+#, fuzzy, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+
+#: setup/class_setupStep_Ldap.inc:107
+#, fuzzy, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
+
+#: setup/class_setupStep_Ldap.inc:112
+#, fuzzy, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
 
-#: plugins/personal/generic/class_user.inc:1445
+#: setup/class_setupStep_Ldap.inc:113
 #, fuzzy
-msgid "User identification"
-msgstr "Gebruikersinformatie"
+msgid "Please specify user and password."
+msgstr "Geef a.u.b. uw wachtwoord op!"
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Aanhef"
+#: setup/class_setupStep_Ldap.inc:115
+#, fuzzy, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Academische titel"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "Adres thuis"
+#: setup/setup_config1.tpl:6
+#, fuzzy
+msgid "Theme"
+msgstr "MIME"
 
-#: plugins/personal/generic/class_user.inc:1449
+#: setup/setup_config1.tpl:15
 #, fuzzy
-msgid "Home phone number"
-msgstr "Telefoonnummer"
-
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Afdeling"
+msgid "Apache"
+msgstr "Cache"
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Geboortedatum"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1454
+#: setup/setup_config1.tpl:27
 #, fuzzy
-msgid "Gender"
-msgstr "Afzender"
+msgid "People and group storage"
+msgstr "OU voor gebruikers opslag"
 
-#: plugins/personal/generic/class_user.inc:1455
+#: setup/setup_config1.tpl:30
 #, fuzzy
-msgid "Preferred language"
-msgstr "Voorkeurstaal"
+msgid "People DN attribute"
+msgstr "DN atribuut voor gebruikers"
 
-#: plugins/personal/generic/class_user.inc:1456
+#: setup/setup_config1.tpl:41
 #, fuzzy
-msgid "Department number"
-msgstr "Afdelingnaam"
+msgid "People storage subtree"
+msgstr "OU voor gebruikers opslag"
 
-#: plugins/personal/generic/class_user.inc:1457
+#: setup/setup_config1.tpl:50
 #, fuzzy
-msgid "Employee number"
-msgstr "Functie"
+msgid "Group storage subtree"
+msgstr "OU voor groepen opslag"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Functie"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Plaats"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Provincie"
+#: setup/setup_config1.tpl:81
+#, fuzzy
+msgid "Automatic uids"
+msgstr "Automatische modusregels"
 
-#: plugins/personal/generic/class_user.inc:1462
+#: setup/setup_config1.tpl:113
 #, fuzzy
-msgid "Room number"
-msgstr "Telefoonnummer"
+msgid "Number base for people/groups"
+msgstr "ID basis voor gebruikers/groepen"
 
-#: plugins/personal/generic/class_user.inc:1463
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr ""
+
+#: setup/setup_config1.tpl:140
 #, fuzzy
-msgid "Telefon number"
-msgstr "Telefoonnummer"
+msgid "Password encryption algorithm"
+msgstr "Encryptie algoritme"
 
-#: plugins/personal/generic/class_user.inc:1464
+#: setup/setup_config1.tpl:151
 #, fuzzy
-msgid "Mobile number"
-msgstr "GSM nummer"
+msgid "Password restrictions"
+msgstr "Wachtwoord verloopt op"
 
-#: plugins/personal/generic/class_user.inc:1465
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr ""
+
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr ""
+
+#: setup/setup_config1.tpl:182
 #, fuzzy
-msgid "Pager number"
-msgstr "Telefoonnummer"
+msgid "Password change hook"
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: plugins/personal/generic/class_user.inc:1466
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr ""
+
+#: setup/setup_config1.tpl:209
 #, fuzzy
-msgid "User certificates"
-msgstr "Standaard certificaat"
+msgid "Use account expiration"
+msgstr "Het account verloopt op"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "Adres thuis"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
+msgstr ""
+"GOsa ondersteunt diverse encryptie types voor uw wachtwoorden. Normaliter is "
+"dit aanpasbaar via gebruikerssjablonen. Hier kunt u echter een standaard te "
+"gebruiken methode opgeven."
 
-#: plugins/personal/generic/class_user.inc:1469
+#: setup/setup_config1.tpl:222
 #, fuzzy
-msgid "Fax number"
-msgstr "Serienummer"
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa werkt altijd als een beheerder en verzorgt het toegangsbeheer intern. "
+"Dit is een tijdelijke oplossing totdat directory ACIs volledig "
+"geïmplementeerd zijn in OpenLDAP. Om dit te kunnen laten werken is een "
+"beheerders DN en het bijbehorende wachtwoord nodig."
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/setup_config1.tpl:223
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
 msgstr ""
-"U heeft de manier waarop uw wachtwoord wordt opgeslagen in de LDAP database "
-"veranderd. Daarom moet u het wachtwoord op dit moment opnieuw invoeren. GOsa "
-"zal dan het wachtwoord versleutelen op de door u geselecteerde methode."
+"Sommige LDAP parameters zijn aan te passen en bepalen de locaties waar GOsa "
+"gebruikers en groepen opslaat, evenals de manier waarop gebruikers "
+"aangemaakt worden. Controleer of de waardes hieronder in uw behoeften "
+"voorzien."
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Herhaal het nieuwe wachtwoord"
+#: setup/setup_config1.tpl:224
+#, fuzzy
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa heeft modulaire ondersteuning voor diverse E-mail methodes. Deze "
+"methodes leveren toegang tot gebruikers mailboxen en algemene afhandeling "
+"voor quota's. U kunt de dummy module kiezen om alle E-mail instellingen "
+"ongewijzigd te laten."
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Wachtwoord instellen"
+#: setup/setup_language.tpl:3
+#, fuzzy
+msgid "Please select the preferred language"
+msgstr "Voorkeurstaal"
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Persoonlijke informatie"
+#: setup/setup_language.tpl:5
+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/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
 msgstr "Voorkeurstaal"
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Kies de subtree waaronder de gebruiker geplaatst wordt"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
-msgstr "Selecteer een basis"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Adres"
+#: setup/class_setupStep_Checks.inc:64
+#, fuzzy
+msgid "Checking PHP version"
+msgstr "Controle op PHP versie (>=4.1.0)"
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Telefoon privé"
+#: setup/class_setupStep_Checks.inc:65
+#, fuzzy, php-format
+msgid "PHP must be of version %s or above."
+msgstr ""
+"PHP moet minimaal versienummer 4.1.0 hebben. GOsa gebruikt bepaalde "
+"functionaliteit die in voorgaande versies niet goed of helemaal niet "
+"voorhanden is."
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Wachtwoord encryptie"
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:72
+#, fuzzy
+msgid "Checking for LDAP support"
+msgstr "Zoeken naar iconv ondersteuning"
+
+#: setup/class_setupStep_Checks.inc:73
+#, fuzzy
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr "Dit is hoofd module die GOsa nodig heeft en is daarom noodzakelijk."
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Bewerk certificaten"
+#: setup/class_setupStep_Checks.inc:74
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Organisatie informatie"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Zoeken naar gettext ondersteuning"
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "Afdeling nr."
+#: setup/class_setupStep_Checks.inc:81
+#, fuzzy
+msgid "Gettext support is required for internationalization."
+msgstr ""
+"Gettext ondersteuning is vereist voor ondersteuning van meerdere talen in "
+"GOsa."
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "Personeel nr."
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "Kamer nr."
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/class_setupStep_Checks.inc:89
+#, fuzzy
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
 msgstr ""
-"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar "
-"overeen."
+"Deze module wordt gebruikt door GOsa om samba munged dial informatie "
+"(terminal server) te converteren en is daarom vereist."
 
-#: plugins/personal/generic/main.inc:104
+#: setup/class_setupStep_Checks.inc:96
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
+msgid "Checking for mhash support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Bewerken"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Algemene gebruikersinformatie"
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Verander plaatje"
+#: setup/class_setupStep_Checks.inc:104
+#, fuzzy
+msgid "Checking for IMAP support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/class_setupStep_Checks.inc:105
+#, fuzzy
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
 msgstr ""
+"De IMAP module is benodigd om met de IMAP server te communiceren. Het "
+"ontvangt status informatie, maakt E-mail gebruikers aan en verwijdert E-mail "
+"gebruikers."
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
-msgstr "Sjabloon naam"
+#: setup/class_setupStep_Checks.inc:106
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Geslacht"
+#: setup/class_setupStep_Checks.inc:112
+#, fuzzy
+msgid "Checking for multi byte support"
+msgstr "Zoeken naar gettext ondersteuning"
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Gebruik a.u.b. de telefoon tab"
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
-msgstr "U heeft momenteel geen toestemming om uw wachtwoord te veranderen"
+#: setup/class_setupStep_Checks.inc:120
+#, fuzzy
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Controle op getacl in imap"
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/class_setupStep_Checks.inc:121
+#, fuzzy
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
 msgstr ""
-"U heeft succesvol uw wachtwoord veranderd. Denkt u eraan dat u alle "
-"programma's die dit wachtwoord gebruiken ook aanpast!"
+"De getacl ondersteuning is nodig voor gedeelde map permissies. De standaard "
+"IMAP module is niet in staat om acl's te lezen. U heeft een recente PHP "
+"versie nodig voor deze mogelijkheid."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/class_setupStep_Checks.inc:128
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Verander wachtwoord"
-
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "U moet uw huidige wachtwoord opgeven om door te kunnen gaan."
+msgid "Checking for MySQL support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "Het nieuw ingevoerde wachtwoord is leeg."
+#: setup/class_setupStep_Checks.inc:129
+#, fuzzy
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr ""
+"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit "
+"databases."
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
 msgstr ""
-"Het huidige wachtwoord en het nieuwe wachtwoord lijken te veel op elkaar."
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "Het nieuw opgegeven wachtwoord is te kort."
+#: setup/class_setupStep_Checks.inc:136
+#, fuzzy
+msgid "Checking for kadm5 support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:"
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr ""
+"Het beheren van gebruikers in kerberos vereist de kadm5 module welke via het "
+"PEAR netwerk te downloaden is."
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:138
+#, fuzzy
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
 msgstr ""
-"Het wachtwoord dat u opgegeven heeft als uw huidige wachtwoord is niet "
-"correct."
+"Het beheren van gebruikers in kerberos vereist de kadm5 module welke via het "
+"PEAR netwerk te downloaden is."
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:144
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
+msgid "Checking for SNMP support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:145
+#, fuzzy
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"The simple network management protocol is needed to get status information "
+"from clients."
 msgstr ""
-"Gebruik het veld hieronder om uw persoonlijke wachtwoord te veranderen. De "
-"veranderingen worden direct doorgevoerd. Onthoud het nieuwe wachtwoord a.u."
-"b. aangezien u niet in zult kunnen loggen zonder dit wachtwoord."
+"Het Simple Network Management Protocol (SNMP) is vereist voor werkstation "
+"monitoring."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:146
 msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+"This module is required for client monitoring. Please install php5-snmp."
 msgstr ""
-"Het veranderen van het wachtwoord is van invloed op E-mail, proxy, samba en "
-"Unix diensten."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Wis velden"
-
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
-msgstr "Posix instellingen"
-
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Persoonlijke map"
+#: setup/class_setupStep_Checks.inc:152
+#, fuzzy
+msgid "Checking for CUPS support"
+msgstr "Zoeken naar iconv ondersteuning"
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "Forceer UID/GID"
+#: setup/class_setupStep_Checks.inc:153
+#, fuzzy
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"U moet de CUPS module installeren om beschikbare printers via het IPP "
+"protocol te kunnen aflezen i.p.v. via printcap bestanden."
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Zoeken naar het fping programma"
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:163
+#, fuzzy
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"Het fping programma wordt alleen gebruikt indien u een thin client "
+"gebaseerde terminal omgeving heeft draaien."
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "Groep lidmaatschap"
+#: setup/class_setupStep_Checks.inc:164
+#, fuzzy
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr ""
+"Het fping programma wordt alleen gebruikt indien u een thin client "
+"gebaseerde terminal omgeving heeft draaien."
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(Waarschuwing: NFS ondersteunt niet meer dan 16 groepen!)"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Selecteer de toe te voegen groepen"
+#: setup/class_setupStep_Checks.inc:180
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Om Samba 2.x/3.x te gebruiken moet u enkele additionele pakketten "
+"installeren om wachtwoord hashes te genereren"
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Toon groepen van afdeling"
+#: setup/class_setupStep_Checks.inc:181
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Om Samba 2.x/3.x te gebruiken moet u enkele additionele pakketten "
+"installeren om wachtwoord hashes te genereren"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Selecteer de afdeling waarbinnen gezocht zal worden"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+#, fuzzy
+msgid "Off"
+msgstr "Offline"
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Toon overeenkomende groepen"
+#: setup/class_setupStep_Checks.inc:192
+#, fuzzy
+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 zodat deze toegankelijk zijn voor scripts zonder dat de scope "
+"veranderd hoeft te worden. Dit is een veiligheidsrisico. GOsa zal in beide "
+"modi draaien."
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Reguliere expressie voor overeenkomende groepnamen"
+#: setup/class_setupStep_Checks.inc:193
+#, fuzzy
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Controle of 'register_globals' ingesteld staat op 'off'"
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Toon groepen van gebruiker"
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Gebruikersnaam van wie de groepen getoond worden"
+#: setup/class_setupStep_Checks.inc:202
+#, fuzzy
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
+"PHP gebruikt deze waarde voor de garbage collector om oude sessies op te "
+"ruimen. Door deze waarde op een dag te zetten, voorkomt u dat sessie en "
+"cookie informatie verloren gaan, voordat deze daadwerkelijk ongeldig zijn."
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/class_setupStep_Checks.inc:203
 #, fuzzy
-msgid "Search in subtrees"
-msgstr "Zoek binnen subtree"
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
+"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
+"in uw php.ini ingesteld zijn op 'Off'."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "Het wachtwoord moet bij de eerste aanmelding gewijzigd worden"
+#: setup/class_setupStep_Checks.inc:211
+#, fuzzy
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr ""
+"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
+"in uw php.ini ingesteld zijn op 'Off'."
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "Wachtwoord verloopt op"
+#: setup/class_setupStep_Checks.inc:212
+#, fuzzy
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
+"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
+"in uw php.ini ingesteld zijn op 'Off'."
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "Unix"
+#: setup/class_setupStep_Checks.inc:219
+#, fuzzy
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr ""
+"GOsa heeft tenminste 16MB geheugen nodig. Minder geheugen kan diverse "
+"onvoorspelbare fouten opleveren!.Verhoog deze waarde nog verder voor zeer "
+"grote omgevingen."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "verlopen"
+#: setup/class_setupStep_Checks.inc:227
+#, fuzzy
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
+"Deze Optie definieert Uitvoer afhandeling. Zet deze Optie uit om "
+"snelheiswinst te behalen"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "gratie tijd actief"
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "actief, wachtwoord onveranderbaar"
+#: setup/class_setupStep_Checks.inc:235
+#, fuzzy
+msgid "The Execution time should be at least 30 seconds."
+msgstr ""
+"De uitvoer tijd moet minimaal 30 seconden zijn, omdat sommige acties lang "
+"kunnen duren."
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "actief, wachtwoord verlopen"
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "actief"
+#: setup/class_setupStep_Checks.inc:243
+#, fuzzy
+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 server veiligheid door 'expose_php' op 'Off' in te stellen. PHP "
+"zal dan geen enkele informatie over de Server die u gebruikt weergeven."
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "niet geconfigureerd"
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automatisch"
+#: setup/class_setupStep_Checks.inc:250
+#, fuzzy
+msgid "On"
+msgstr "Open"
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
 msgstr ""
+"Verhoog de server veiligheid door 'magic_quotes_gpc op 'On' in te stellen."
+"PHP zal dan alle aanhalingstekens in strings omzetten."
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:252
+#, fuzzy
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr "Controle of 'register_globals' ingesteld staat op 'off'"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Omgeving"
+#: setup/class_setupStep_Checks.inc:259
+#, fuzzy
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
+"Verhoog de server veiligheid door 'magic_quotes_gpc op 'On' in te stellen."
+"PHP zal dan alle aanhalingstekens in strings omzetten."
 
-#: plugins/personal/posix/class_posixAccount.inc:465
-#, php-format
-msgid "Password can't be changed up to %s days after last change"
+#: setup/class_setupStep_Checks.inc:260
+#, fuzzy
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
 msgstr ""
-"Het wachtwoord kan pas %s dag(en) na de laatste wijziging gewijzigd worden"
+"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie "
+"in uw php.ini ingesteld zijn op 'Off'."
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "Het wachtwoord moet na %s dag(en) gewijzigd worden"
+#: setup/class_setupStep_Checks.inc:270
+#, fuzzy
+msgid "Configuration writeable"
+msgstr "Configuratie bestand"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
+#: setup/class_setupStep_Checks.inc:271
+#, fuzzy
+msgid "The configuration file can't be written"
+msgstr "Configuratie bestand"
+
+#: setup/class_setupStep_Checks.inc:272
 #, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
-"Blokkeer het account na %s dag(en) inactiviteit nadat het wachtwoord "
-"verlopen is"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Waarschuw de gebruiker %s dagen voordat het wachtwoord verloopt"
+#: setup/setup_config3.tpl:2
+#, fuzzy
+msgid "GOsa core settings"
+msgstr "E-mail instellingen"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "volledige toegang"
+#: setup/setup_config3.tpl:6
+#, fuzzy
+msgid "Disable primary group filter"
+msgstr "Toon groepen van gebruiker"
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "sta toegang op deze computers toe"
+#: setup/setup_config3.tpl:18
+#, fuzzy
+msgid "Display summary in listings"
+msgstr "Toon overeenkomende macro's"
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr ""
+#: setup/setup_config3.tpl:30
+#, fuzzy
+msgid "Honour administrative units"
+msgstr "Groepen beheer"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/setup_config3.tpl:42
 #, fuzzy
-msgid "Uid number"
-msgstr "Serienummer"
+msgid "Smarty compile directory"
+msgstr "Persoonlijke map"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
-msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Gebruikersgroep"
+#: setup/setup_config3.tpl:60
+#, fuzzy
+msgid "Path for PPD storage"
+msgstr "Wachtwoord encryptie"
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
+#: setup/setup_config3.tpl:77
 #, fuzzy
-msgid "shadowMin"
-msgstr "Schaduwen van andere sessie"
+msgid "Path for kiosk profile storage"
+msgstr "Kiosk profiel instellingen"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
+#: setup/setup_config3.tpl:96
 #, fuzzy
-msgid "shadowMax"
-msgstr "Schaduwen van andere sessie"
+msgid "Enable system deployment"
+msgstr "Systeembeheer"
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
+#: setup/setup_config3.tpl:115
 #, fuzzy
-msgid "shadowWarning"
-msgstr "Schaduwen van andere sessie"
+msgid "Mail queue script"
+msgstr "Inlogscript"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
+#: setup/setup_config3.tpl:134
 #, fuzzy
-msgid "shadowInactive"
-msgstr "Schaduwen van andere sessie"
+msgid "Notification script"
+msgstr "Geen certificaat geinstalleerd"
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/setup_config3.tpl:153
+msgid "Enable edit locking"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr ""
+
+#: setup/setup_config3.tpl:175
 #, fuzzy
-msgid "POSIX account"
-msgstr "GLPI account"
+msgid "Login attribute"
+msgstr "Telefoon attributen "
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-#, fuzzy
-msgid "Group ID"
-msgstr "Groep"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
+#: setup/setup_config3.tpl:210
 #, fuzzy
-msgid "Force password change on login"
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+msgid "Warn if session is not encrypted"
+msgstr "De sessie zal niet versleuteld zijn."
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
+#: setup/setup_config3.tpl:222
 #, fuzzy
-msgid "Shadow min"
-msgstr "Schaduwen van andere sessie"
+msgid "Remember dialog filter settings"
+msgstr "Algemene wachtrij instellingen"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
+#: setup/setup_config3.tpl:234
 #, fuzzy
-msgid "Shadow max"
-msgstr "Schaduwen van andere sessie"
+msgid "Session lifetime"
+msgstr "Er is een sessie conflict gedetecteerd"
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr ""
+
+#: setup/setup_config3.tpl:247
 #, fuzzy
-msgid "Shadow warning"
-msgstr "Schaduwen van andere sessie"
+msgid "Show PHP errors"
+msgstr "PHP fout"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
+#: setup/setup_config3.tpl:259
 #, fuzzy
-msgid "Shadow inactive"
-msgstr "Schaduwen van andere sessie"
+msgid "Maximum LDAP query time"
+msgstr "E-mail grootte"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr ""
+
+#: setup/setup_config3.tpl:289
 #, fuzzy
-msgid "Shadow expire"
-msgstr "Toon personen"
+msgid "Debug level"
+msgstr "Log prioriteit"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
 #, fuzzy
-msgid "System trust model"
-msgstr "Systeem vertrouwen"
+msgid "Disabled"
+msgstr "gedeactiveerd"
 
-#: plugins/personal/posix/main.inc:131
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
 #, fuzzy
-msgid "POSIX settings"
-msgstr "Posix instellingen"
+msgid "Enabled"
+msgstr "gedeactiveerd"
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Primaire groep"
+#: setup/class_setupStep_Welcome.inc:38
+#, fuzzy
+msgid "Welcome"
+msgstr "Welkom %s!"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Status"
+#: setup/class_setupStep_Welcome.inc:39
+#, fuzzy
+msgid "The welcome message"
+msgstr "Verwijder dit bericht"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#: setup/class_setupStep_Welcome.inc:40
 #, fuzzy
-msgid "In all groups"
-msgstr "Primaire groep"
+msgid "Welcome to GOsa setup wizard"
+msgstr "Welkom bij het GOsa installatie programma!"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
 #, fuzzy
-msgid "Not in all groups"
-msgstr "Toon E-mail groepen"
+msgid "LDAP schema check"
+msgstr "Ldap server"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Account"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr ""
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "Systeem vertrouwen"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
+msgstr ""
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
-msgstr "Vertrouwensmodus"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Selecteer de toe te voegen systemen"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
+msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Toon systemen van afdeling"
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "PHP setup configuration"
+msgstr "FAX database"
+
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "show information"
+msgstr "Persoonlijke informatie"
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Toon de overeenkomende systemen"
+#: setup/setup_finish.tpl:3
+#, fuzzy
+msgid "Create your configuration file"
+msgstr "Configuratie bestand"
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Reguliere expresie voor overeenkomende adressen"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "Systeem configuratie"
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Een nieuwe gebruiker aanmaken m.b.v. een sjabloon"
+#: setup/setup_finish.tpl:18
+#, fuzzy
+msgid "Status: "
+msgstr "Status"
 
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
-msgstr ""
-"Het aanmaken van een nieuwe gebruiker kan m.b.v. sjablonen gebeuren. Veel "
-"database records zullen dan automatisch gevuld worden. Kies 'geen' om het "
-"gebruik van sjablonen over te slaan."
+#: setup/class_setupStep_Finish.inc:38
+#, fuzzy
+msgid "Write configuration file"
+msgstr "Configuratie bestand"
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Sjabloon"
+#: setup/class_setupStep_Finish.inc:39
+#, fuzzy
+msgid "Finish - write the configuration file"
+msgstr "Configuratie bestand"
 
-#: plugins/admin/users/password.tpl:4
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
 msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
-msgstr ""
-"Gebruik de velden hieronder om het gebruikers wachtwoord te veranderen. De "
-"veranderingen worden onmiddelijk doorgevoerd. Onthoud het nieuwe wachtwoord "
-"a.u.b. aangezien de gebruiker niet in kan loggen zonder dit wachtwoord."
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
 
-#: plugins/admin/users/password.tpl:21
+#: setup/class_setupStep_Finish.inc:102
 #, fuzzy
-msgid "Strength"
-msgstr "Straat"
-
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Lijst met gebruikers"
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
 
-#: plugins/admin/users/class_divListUsers.inc:60
+#: setup/class_setupStep_Finish.inc:111
+#, fuzzy, php-format
 msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+"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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
-"Dit menu maakt het mogelijk om geselecteerde gebruikers toe te voegen, "
-"bewerken of verwijderen. Indien u veel gebruikers heeft, dan is het aan te "
-"raden de selectie mogelijkheden te gebruiken."
-
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Eigenschappen"
+"Controleer dat de webserver het bestand kan lezen (zonder dat andere "
+"gebruikers dit kunnen) nadat u het bestand in de directory /etc/gosa "
+"geplaatst heeft. U wil misschien de volgende commando's uitvoeren om aan "
+"deze vereiste te voldoen: "
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Acties"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#, fuzzy
+msgid "GOsa settings 2/3"
+msgstr "Gebruikersinstellingen"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Selecteer om sjabloon pseudo gebruikers te zien"
+#: setup/class_setupStep_Config2.inc:87
+#, fuzzy
+msgid "Customize special parameters"
+msgstr "Controleer parameter"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Toon sjablonen"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "XML fout in guide.conf: %s op regel %d"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr "Selecteer om gebruikers te zien die alleen een GOsa object hebben"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr "Help is (nog) niet beschikbaar voor deze module."
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Toon functionele gebruikers"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr "vorige"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Selecteer om gebruikers te zien die POSIX instellingen hebben"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr "volgende"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Toon Unix gebruikers"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr "%s resultaten voor uw zoekopdracht met sleutelwoord %s"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "Selecteer om gebruikers te zien die E-mail instellingen hebben"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr "%s%% resultaat in bestand %s"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Toon E-mail gebruikers"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Selecteer om gebruikers te zien die Samba instellingen hebben"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "Rechten"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Toon Samba gebruikers"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Referenties"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Selecteer om gebruikers te zien die Proxy instellingen hebben"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Toon Proxy gebruikers"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "Selecteer om binnen subonderdelen te zoeken"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Toon overeenkomende gebruikers"
+#: include/class_plugin.inc:1613
+#, fuzzy
+msgid "from"
+msgstr "willekeurig"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Verwerk afdeling"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Ga naar basis afdelingen"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Verander wachtwoord"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Basis"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "kopieer"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Ga een afdeling omhoog"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "knippen"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Ga naar gebruikers afdeling"
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Home"
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "Bewerk algemene eigenschappen"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "Lijst herladen"
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "Bewerk UNIX eigenschappen"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+#, fuzzy
+msgid "Restore"
+msgstr "Opnieuw proberen"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "Bewerk omgeving eigenschappen"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "E-mail"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "Bewerk E-mail eigenschappen"
+#: include/class_MultiSelectWindow.inc:680
+#, fuzzy
+msgid "Create snapshot"
+msgstr "Nagios account aanmaken"
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "Bewerk telefoon eigenschappen"
+#: include/class_MultiSelectWindow.inc:680
+#, fuzzy
+msgid "Create a new snapshot from this object"
+msgstr "Nieuw FAI object aanmaken"
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "Bewerk Fax eigenschappen"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "Bewerk Samba eigenschappen"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
-msgstr "Netatalk"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr "Onbekend"
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "Bewerk Netatalk eigenschappen"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
+"Kan het opgegeven bestand niet openen. Controleer of het bestand bestaat en "
+"toegankelijk is."
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "Maak gebruiker aan vanuit sjabloon"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr ""
+"Kan het opgegeven certificaat niet lezen of er is een lege string opgegeven."
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "Maak gebruiker aan met dit sjabloon"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr ""
+"Kan het certificaat niet laden. Mogelijk is een niet ondersteund formaat "
+"gebruikt (gebruik PEM/DER)."
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "knippen"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr "Het formaat moet PEM zijn om certificaat informatie te tonen"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "Deze invoer knippen"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "Kan bestand niet aanmaken/openen"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "kopieer"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr "Geen geldig certificaat geladen"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "Deze invoer kopieren"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
+
+#: include/class_SnapShotDialog.inc:83
+#, fuzzy, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "U staat op het punt de macro '%s' te verwijderen."
 
-#: plugins/admin/users/class_divListUsers.inc:319
+#: include/class_SnapShotDialog.inc:135
 #, fuzzy
-msgid "Deactivated"
-msgstr "Geactiveerd"
+msgid "Remove snapshot"
+msgstr "Nagios account aanmaken"
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
-msgstr "Actief"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "Bewerk gebruiker"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "XML fout in gosa.conf: %s op regel %d"
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "wachtwoord"
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:343
+#: include/class_config.inc:228
 #, fuzzy
-msgid "You are not allowed to change the password for this user."
-msgstr "U heeft momenteel geen toestemming om uw wachtwoord te veranderen"
-
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "Verwijder gebruiker"
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
+"Kan niet verbinden met de LDAP server. Neem a.u.b. contact op met de "
+"systeembeheerder."
 
-#: plugins/admin/users/class_divListUsers.inc:357
+#: include/class_config.inc:561
 #, fuzzy
-msgid "You are not allowed to remove this user."
-msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "SID en/of RIDBASE ontbreken in uw configuratie!"
 
-#: plugins/admin/users/class_divListUsers.inc:443
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
 #, fuzzy
-msgid "Number of listed users"
-msgstr "Naam van de afdeling"
+msgid "Internal error"
+msgstr "Terminal server"
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-#, fuzzy
-msgid "Number of listed departments"
-msgstr "Naam van de afdeling"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Log DB gebruiker"
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "Windows gebruikers"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "Omlaag"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_log.inc:120
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "Invalid option '%s' specified."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
+#: include/class_log.inc:124
 #, fuzzy
-msgid "Password change failed."
-msgstr "Het veranderen van het wachtwoord is niet toegestaan"
+msgid "Specified objectType is empty or invalid"
+msgstr "De opgegeven naam is ongeldig."
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
 msgstr ""
-"U heeft geen toestemming om het wachtwoord van deze gebruiker veranderen!"
 
-#: plugins/admin/users/class_userManagement.inc:456
+#: include/class_log.inc:157
 #, fuzzy, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "U staat op het punt de invoer %s te verwijderen."
+msgid "Cannot connect to logging server '%s'."
+msgstr "Kan niet verbinden met de database server!"
 
-#: plugins/admin/users/class_userManagement.inc:458
+#: include/class_log.inc:165
 #, fuzzy, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "U staat op het punt de invoer %s te verwijderen."
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "Kan de database %s op %s niet selecteren."
 
-#: plugins/admin/users/class_userManagement.inc:460
-#, fuzzy
-msgid "Delete users"
-msgstr "Verwijder gebruiker"
+#: include/class_log.inc:181
+#, php-format
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
-#, fuzzy
-msgid "User delete"
-msgstr "Verwijder"
+#: include/class_log.inc:218
+#, php-format
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:488
+#: include/class_log.inc:241
 #, fuzzy, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "Kan de database %s op %s niet selecteren."
 
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "U staat op het punt gebruiker %s te verwijderen."
+#: include/php_setup.inc:91
+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/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "Verwijder"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
+#: include/php_setup.inc:96
 #, fuzzy
-msgid "User successfully removed."
-msgstr "Import was succesvol"
+msgid "Send bugreport"
+msgstr "Afzender"
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "U heeft geen toestemming om deze gebruiker te verwijderen!"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr "Informatie weergeven/verbergen"
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "geen"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "PHP fout"
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
-msgstr ""
-"Dit omvat alle account gegevens, systeem toegangsregels, imap instellingen "
-"etc. voor deze gebruiker. Verzeker uzelf hiervan, aangezien er geen "
-"mogelijkheid voor GOsa is om deze informatie terug te halen."
+#: include/php_setup.inc:130
+msgid "class"
+msgstr "klasse"
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Gebruikersbeheer"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "functie"
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
-msgstr "Groep instellingen"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "statisch"
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Groepnaam"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "methode"
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "POSIX naam van de groep"
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr "Trace"
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr ""
-"Normaliter worden IDs automatisch gegenereerd. Selecteer om handmatig te "
-"specificeren"
+#: include/php_setup.inc:179
+msgid "File"
+msgstr "Bestand"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "Forceer GID"
+#: include/php_setup.inc:179
+msgid "Line"
+msgstr "Regel"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Geforceerd ID nummer"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Type"
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Selecteer de toe te voegen gebruikers"
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "Argumenten"
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Selecteer om servers te zien"
+#: include/class_acl.inc:26
+#, fuzzy
+msgid "Access control"
+msgstr "Toegangsopties"
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
-msgstr "Zoek binnen subtree"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
+msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Toon gebruikers van afdeling"
+#: include/class_acl.inc:665 include/class_acl.inc:672
+#, fuzzy
+msgid "Show/Hide Advanced Settings"
+msgstr "Geavanceerde telefoon instellingen"
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "Reguliere expressie voor overeenkomende gebruikersnamen"
+#: include/class_acl.inc:690
+#, fuzzy
+msgid "Create objects"
+msgstr "Nieuw FAI object aanmaken"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
+#: include/class_acl.inc:691
 #, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr ""
-"Kan de SID van deze groep niet vinden in de LDAP database of in uw "
-"configuratie bestand."
+msgid "Move objects"
+msgstr "Lidmaatschap objecten"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Deze 'dn' is geen groep."
+#: include/class_acl.inc:692
+#, fuzzy
+msgid "Remove objects"
+msgstr "Lidmaatschap objecten"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Samba groep"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Windows beheerders"
+#: include/class_acl.inc:697
+#, fuzzy
+msgid "Move object"
+msgstr "Lidmaatschap objecten"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Windows gebruikers"
+#: include/class_acl.inc:698
+#, fuzzy
+msgid "Remove object"
+msgstr "Lidmaatschap objecten"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Windows gasten"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "alleen lezen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "Speciale groep (%d)"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "afleveren, lezen & schrijven"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "! onbekend id"
+#: include/class_acl.inc:710
+#, fuzzy
+msgid "Complete object"
+msgstr "Nieuw FAI object aanmaken"
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_acl.inc:826
 #, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
+#: include/class_acl.inc:869
 #, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "Kan bestand '%s' niet aanmaken."
+msgid "Unknown entry '%s'!"
+msgstr "Onbekende FAI status %s"
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
+#: include/class_acl.inc:929 include/class_acl.inc:931
 #, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "Kan bestand '%s' niet aanmaken."
+msgid "Role: %s"
+msgstr "Funktie"
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
-#, fuzzy
-msgid "Cannot allocate a free ID!"
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
 msgstr ""
-"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-#, fuzzy
-msgid "Generic group settings"
-msgstr "Algemene wachtrij instellingen"
+#: include/class_acl.inc:939
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
+#: include/class_acl.inc:948
 #, fuzzy
-msgid "Phone pickup group"
-msgstr "Leden zitten in een telefoon beantwoordgroep"
+msgid "Members:"
+msgstr "Groepsleden"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-#, fuzzy
-msgid "Nagios group"
-msgstr "Nagios account"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
+#: include/class_acl.inc:1115
 #, fuzzy
-msgid "Group member"
-msgstr "Groepsleden"
+msgid "Access control list"
+msgstr "Toegangsopties"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
+#: include/class_acl.inc:1123
 #, fuzzy
-msgid "Samba group type"
-msgstr "Samba groep"
+msgid "Role name"
+msgstr "Hernoemen"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
+#: include/class_acl.inc:1124
 #, fuzzy
-msgid "Samba domain name"
-msgstr "Samba home"
-
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Lijst met groepen"
+msgid "Role description"
+msgstr "Eenheid omschrijving"
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
 msgstr ""
-"Dit menu maakt het mogelijk om geselecteerde groepen toe te voegen, bewerken "
-"of verwijderen. Indien u veel groepen heeft, dan is het aan te raden de "
-"selectie mogelijkheden te gebruiken."
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "Groepsnaam / Afdeling"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, fuzzy, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "Kan bestand '%s' niet aanmaken."
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "Kan bestand '%s' niet aanmaken."
+
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "Kan bestand '%s' niet aanmaken."
+
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
 msgstr ""
-"Selecteer om de groepen te zien die primaire groepen van gebruikers zijn"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Toon primaire groepen"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Selecteer om groepen te zien die Samba groep verbindingen hebben"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Kan bestand '%s' niet aanmaken."
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Toon Samba groepen"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "Selecteer om groepen te zien die programma's geconfigureerd hebben"
+#: include/class_hostActionQueue.inc:277
+#, fuzzy, php-format
+msgid "Entry with id '%s' not found."
+msgstr "Het opslaan van de printer is mislukt"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Toon programma groepen"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
+
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "Selecteer om groepen te zien die E-mail instellingen hebben"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, fuzzy, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr "Pakketbestand '%s' bestaat niet."
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Toon E-mail groepen"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
 msgstr ""
-"Selecteer om normale groepen die alleen functionele aspecten hebben te zien"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Toon functionele groepen"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Groep"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Programma"
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Bewerk deze invoer"
+#: include/functions.inc:318
+#, 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/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Verwijder deze invoer"
+#: include/functions.inc:380
+#, fuzzy
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr "Gebruikersnaam / UID is niet uniek. Controleer uw LDAP database a.u.b."
 
-#: plugins/admin/groups/class_divListGroup.inc:360
+#: include/functions.inc:450
 #, fuzzy
-msgid "Number of listed groups"
-msgstr "Naam van de groep"
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr "Gebruikersnaam / UID is niet uniek. Controleer uw LDAP database a.u.b."
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/functions.inc:605
 #, fuzzy, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "U staat op het punt de invoer %s te verwijderen."
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr ""
+"Kan de blokkade informatie niet ophalen uit de LDAP database. Controleer a.u."
+"b. de 'config' regel in gosa.conf!"
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/functions.inc:605 include/functions.inc:620
 #, fuzzy, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "U staat op het punt de invoer %s te verwijderen."
+msgid "LDAP server returned: %s"
+msgstr "LDAP server"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "Rechten"
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "Het opslaan van de FAI inhaker is mislukt"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: include/functions.inc:699
 #, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
+"Er zijn meerdere blokkades voor het te blokkeren object gevonden. Dat zou "
+"niet mogelijk moeten zijn. Meervoudige verwijzingen worden opgeschoond."
 
-#: plugins/admin/groups/class_groupManagement.inc:434
+#: include/functions.inc:996
 #, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "U staat op het punt de groep '%s' te verwijderen."
+msgid "The size limit of %d entries is exceed!"
+msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!"
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:998
+#, php-format
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
 msgstr ""
-"Dit kan een primaire groep zijn. Verzeker uzelf ervan dat dit is wat u wilt, "
-"aangezien er geen mogelijkheid voor GOsa is om deze gegevens terug te halen."
-
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Groepen beheer"
-
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Omschrijving voor deze groep"
-
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Selecteer de subtree waaronder deze groep geplaatst wordt"
-
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Selecteer om een samba conforme groep te maken"
-
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "in domein"
-
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "Leden zitten in een telefoon beantwoordgroep"
-
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
-msgstr "Leden zitten in een systeeminformatie groep (Nagios)"
+"Stel de nieuwe hoeveelheidslimiet in op %s en toon me dit bericht indien de "
+"limiet nog steeds overschreden wordt."
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Groepsleden"
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "onvolledig"
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-#, fuzzy
-msgid "ACL Templates"
-msgstr "Sjablonen"
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "LDAP fout:"
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-#, fuzzy
-msgid "Acl"
-msgstr "Alle"
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+"Problemen met de LDAP server betekenen meestal dat de laatste wijzigingen "
+"verloren gegaan zijn. Controleer uw LDAP instellingen voor mogelijke fouten "
+"en probeer het opnieuw."
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-#, fuzzy
-msgid "ACLs"
-msgstr "Rechten"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr ""
+"Controleer uw invoer a.u.b. en verbeter de fout. Druk 'OK' om dit "
+"berichtvenster te sluiten."
 
-#: plugins/admin/acl/class_aclManagement.inc:163
-#, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: include/functions.inc:1325
+msgid "Continue anyway"
+msgstr "Toch doorgaan"
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-#, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: include/functions.inc:1327
+msgid "Edit anyway"
+msgstr "Alsnog bewerken"
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:1329
 #, fuzzy, php-format
-msgid "You're about to delete the acl %s."
-msgstr "U staat op het punt de macro '%s' te verwijderen."
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "U staat op het punt de invoer '%s' te kopieren."
 
-#: plugins/admin/acl/class_divListACL.inc:51
-#, fuzzy
-msgid "List of acl"
-msgstr "Lijst met macro's"
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr "Regels per pagina"
 
-#: plugins/admin/acl/class_divListACL.inc:52
-#, fuzzy
-msgid "List of acls"
-msgstr "Lijst met macro's"
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr "Filter toepassen"
 
-#: plugins/admin/acl/class_divListACL.inc:56
-#, fuzzy
-msgid "This menu allows you to edit and delete selected acls."
-msgstr ""
-"Dit menu maakt het mogelijk om FAI klassen aan te maken, bewerken en "
-"verwijderen."
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "Samenvatting"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "GOsa ontwikkelversie (Revisie %s)"
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "Subonderdelen negeren"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
+#: include/functions.inc:1950 include/functions.inc:1970
 #, fuzzy
-msgid "Display acls matching"
-msgstr "Toon overeenkomende macro's"
+msgid "Cannot write to revision file!"
+msgstr "Kan bestand '%s' niet aanmaken."
 
-#: plugins/admin/acl/class_divListACL.inc:244
-#, fuzzy
-msgid "Edit acl role"
-msgstr "Bewerk share"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:254
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Delete acl role"
-msgstr "Verwijder gebruiker"
+msgid "LDAP warning"
+msgstr "LDAP beheer"
 
-#: plugins/admin/acl/class_divListACL.inc:266
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Edit acl"
-msgstr "Bewerk klasse"
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr ""
+"Kan de schema informatie niet ophalen van de server. Schema controle is "
+"onmogelijk!"
 
-#: plugins/admin/acl/class_divListACL.inc:270
-#, fuzzy
-msgid "Delete acl"
-msgstr "Verwijder klasse"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:26
-#, fuzzy
-msgid "Access control list templates"
-msgstr "Toegangsopties"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "Rechten"
+#: include/functions.inc:2320
+#, fuzzy, php-format
+msgid "Missing required object class '%s'!"
+msgstr "Toon FAI sjabloon objecten"
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "Objectnaam"
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2328
 #, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+msgid "Version mismatch for required object class '%s' (!=%s)!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:700
-#, fuzzy
-msgid "Acl roles"
-msgstr "Nieuw profiel"
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
-#, fuzzy
+#: include/functions.inc:2334
+#, fuzzy, php-format
+msgid "Class(es) available"
+msgstr "Bestand is beschikbaar"
+
+#: include/functions.inc:2356
 msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
 msgstr ""
-"Dit omvat <b>alle</b> systeem en configuratie informatie. Verzeker uzelf "
-"hiervan, aangezien er geen manier is voor GOsa om deze gegevens terug te "
-"halen."
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2357
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
-"Het is aan te raden de huidige inhoud van uw LDAP database op te slaan "
-"alvorens u doorgaat. Indien u dat gedaan heeft drukt u op 'Verwijderen' om "
-"door te gaan of op 'Annuleren' om te annuleren."
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-#, fuzzy
-msgid "ACL management"
-msgstr "Blokkeerlijst beheer"
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "Vereist veld 'Naam' is leeg."
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "Vereist veld 'Omschrijving' is leeg."
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Duits"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Terminal server"
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Frans"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-#, fuzzy
-msgid "Cannot find an unused tag for this administrative unit!"
-msgstr ""
-"Fatale fout: Kon geen ongebruikte markering vinden om de administratieve "
-"eenheid te markeren!"
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "Italiaans"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr "Markeren van '%s'."
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Spaans"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "Verplaatsen van %s naar %s"
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Engels"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
-#, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "Kopieren van %s is mislukt. Bewerking afgebroken."
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Nederlands"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Afdelingen"
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr "Pools"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "Land"
+#: include/functions.inc:2392
+msgid "Swedish"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Telefoon"
+#: include/functions.inc:2393
+#, fuzzy
+msgid "Chinese"
+msgstr "Chipset"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "Afdelingnaam"
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Russisch"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Categorie"
+#: include/functions.inc:2562
+#, php-format
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr ""
+"Het commando '%s' dat gespecificeerd is als POSTMODIFY voor module '%s' "
+"bestaat niet."
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "Administratieve instellingen"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
+
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
 #, php-format
-msgid "Object '%s' is already tagged"
-msgstr "Object '%s' is al gemarkeerd"
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:592
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
-msgstr "Toevoegen van markering (%s) aan object '%s'"
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:640
 #, php-format
-msgid "Removing tag from object '%s'"
-msgstr "Verwijderen van markering van object '%s'"
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#, fuzzy
-msgid "You are currently moving/renaming this department."
-msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "bij het bewerken van '%s' op LDAP server '%s'"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
+#: include/class_ldap.inc:726
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "bij het bewerken van LDAP server %s"
+
+#: include/class_ldap.inc:948
+#, php-format
 msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
 msgstr ""
+"Dit is geen geldige DN: '%s'. Een blok dat geïmporteerd wordt, dient te "
+"beginnen met 'dn: ...' op regel %s"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_ldap.inc:977
+#, 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!"
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-#, fuzzy
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
-"Het verplaatsen van de tree is mislukt. Bestemmings-tree is een subtree van "
-"de bron-tree."
-
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
-msgstr "Bezig met verwerken van de gevraagde opdracht"
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+msgstr ""
+
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
-"Uw browser heeft geen ondersteuning voor frames. Gebruik a.u.b. deze link om "
-"de gewenste opdracht uit te voeren."
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Lijst met afdelingen"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-#, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
-"Dit menu maakt het mogelijk om geselecteerde afdelingen toe te voegen, "
-"bewerken of verwijderen. Indien u veel afdelingen heeft is het aan te raden "
-"de selectie mogelijkheden te gebruiken."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Reguliere expressie voor overeenkomende afdelingen"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "Kan bestand '%s' niet openen."
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "afdeling"
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "U staat op het punt de invoer '%s' te kopieren."
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "U staat op het punt de invoer '%s' te kopieren."
+
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
+msgstr "Plakken onmogelijk"
+
+#: include/utils/class_msgPool.inc:14
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Afdelingen"
+msgid "You have no permission to delete this object!"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr "U staat op het punt de hele LDAP subtree onder '%s' te verwijderen."
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#, fuzzy
+msgid "You have no permission to delete the object:"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"Dit omvat 'alle' accounts, systemen etc. in deze subtree. Verzeker uzelf er "
-"van dat dit is wat u wilt, aangezien er geen mogelijkheid voor GOsa is om "
-"deze gegevens terug te halen."
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Afdeling beheer"
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "Naam van de afdeling"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "Naam van de aan te maken subtree"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "Omschrijving voor de afdeling"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "Categorie voor deze subtree"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr "Selecteer de subtree waaronder deze afdeling geplaatst wordt"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "Provincie waar deze subtree zich bevindt"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "Plaats van deze subtree"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr ""
+"U heeft geen toestemming om een telefoon aan te maken onder deze 'Basis'."
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "Post adres van deze subtree"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "Basis telefoonnummer van deze subtree"
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "Basis Fax nummer van deze subtree"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr "Markeer de afdeling als een onafhankelijke administratieve eenheid"
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
 #, fuzzy
-msgid "Please enter the new object group name"
-msgstr "Geef a.u.b. een nieuwe naam op"
+msgid "Connection information"
+msgstr "Persoonlijke informatie"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
-msgstr "Telefoonwachtrij"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Kan niet verbinden met de database server!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
-msgstr "Systeem"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "De opgegeven database kon niet geselecteerd worden!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Apparaten"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Opstarten"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "De opgegeven database kon niet geselecteerd worden!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Terminals"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Het veld 'Fax' bevat een ongeldig Faxnummer."
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
+"Het commando '%s' dat gespecificeerd is als CHECK inhaker voor module '%s' "
+"bestaat niet."
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "Deze 'dn' is geen objectgroep."
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "De opgegeven 'UID' waarde is te klein."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "te veel verschillende object tpyes!"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "gebruikers"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "De opgegeven 'UID' waarde is te klein."
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "groepen"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr ""
+"PHP moet minimaal versienummer 4.1.0 hebben. GOsa gebruikt bepaalde "
+"functionaliteit die in voorgaande versies niet goed of helemaal niet "
+"voorhanden is."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "programma's"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "afdelingen"
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Er bestaat al een account met deze 'Inlog naam' in de database."
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "servers"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Het vereiste veld '(Achter)naam' is leeg."
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "werkstations"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Windows werkstation"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "Het veld 'Naam' bevat ongeldige karakters."
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "terminals"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "telefoons"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Het veranderen van het wachtwoord is niet toegestaan"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "printers"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Verwijder printer mogelijkheden"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "en"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Toevoegen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr "Niet bestaande dn: "
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Toevoegen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr "U kunt maximaal twee verschillende object types tegelijk combineren!"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Verwijderen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-#, fuzzy
-msgid "Object group generic"
-msgstr "Objectgroep"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Verwijderen"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Objectgroepen"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "Stel in"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-#, fuzzy
-msgid "Member"
-msgstr "Groepsleden"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Bewerken"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Naam van objectgroepen"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Bewerk gebruiker"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "U staat op het punt de invoer %s te verwijderen."
+msgid "Back..."
+msgstr "Terug"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "U staat op het punt de objectgroep '%s' te verwijderen."
+msgid "Back %s..."
+msgstr "Bewerk gebruiker"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "U staat op het punt de objectgroep '%s' te verwijderen."
+#: include/utils/class_msgPool.inc:298
+#, fuzzy, php-format
+msgid "This account has no valid %s extensions!"
+msgstr "Dit account heeft geen geldige GOsa extensies."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Werkstation"
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr ""
+"Dit account heeft POSIX mogelijkheden ingeschakeld. U kunt deze uitschakelen "
+"door de knop hieronder te gebruiken."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Windows werkstation"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
+msgstr ""
+"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
+"moet u eerst het samba / omgevings account verwijderen."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "Terminal"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr ""
+"Dit account heeft POSIX mogelijkheden uitgeschakeld. U kunt deze inschakelen "
+"door de knop hieronder te gebruiken."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Printer"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
+"moet u eerst het samba / omgevings account verwijderen."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "Selecteer de toe te voegen objecten"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen "
+"moet u eerst het samba / omgevings account verwijderen."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "Selecteer om afdelingen te zien"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Programma instellingen"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Toon afdelingen"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Posix instellingen"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "Selecteer om GOsa accounts te zien"
+#: include/utils/class_msgPool.inc:353
+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/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Toon personen"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Januari"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "Selecteer om GOsa groepen te zien"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Februari"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Toon groepen"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Maart"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Selecteer om programma's te zien"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "April"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Toon programma's"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Mei"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Toon servers"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Juni"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "Selecteer om werkstations te zien"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Juli"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Toon werkstations"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Augustus"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "Selecteer om terminals te zien"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "September"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Toon terminals"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Oktober"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "Selecteer om printers te zien"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "November"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Toon printers"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "December"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "Selecteer om telefoons te zien"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Achternaam"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Toon telefoons"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "maand"
+
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "Toon objecten van afdeling"
+#: include/utils/class_msgPool.inc:367
+msgid "Wednesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "Toon overeenkomende objecten"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "Reguliere expressie voor overeenkomende objectnamen"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
-msgstr "Lijst met objectgroepen"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "E-mail opties"
+
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"Dit menu maakt het mogelijk om geselecteerde groepen toe te voegen, bewerken "
-"of verwijderen. Indien u veel groepen heeft is het aan te raden de selectie "
-"mogelijkheden te gebruiken."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr "Naam van objectgroepen"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "modify operation"
+msgstr "Persoonlijke informatie"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
-msgstr "Selecteer om groepen die gebruikers bevatten te tonen"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "delete operation"
+msgstr "Selecteer om werkstations te zien"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Toon groepen die gebruikers bevatten"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "search operation"
+msgstr "Het account verloopt op"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
-msgstr "Selecteer om groepen die groepen bevatten te tonen"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Nagios authenticatie"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Toon groepen die groepen bevatten"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "De database zoekopdracht is mislukt"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr "Selecteer om groepen die programma's bevatten te tonen"
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "De database zoekopdracht is mislukt"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Toon groepen die programma's bevatten"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr "Selecteer om groepen die afdelingen bevatten te tonen"
+#: include/class_multi_plug.inc:362
+#, fuzzy
+msgid "You are currently editing mutliple entries."
+msgstr "U heeft geen toestemming om deze afdeling te verwijderen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Toon groepen die afdelingen bevatten"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "Wachtwoord verloopt op"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
-msgstr "Selecteer om groepen die servers bevatten te tonen"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "The user password was resetted, please set a new password value!"
+msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. "
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Toon groepen die servers bevatten"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Programmanaam"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
-msgstr "Selecteer om groepen die werkstations bevatten te tonen"
+#: html/getldif.php:82 html/getxls.php:493
+#, fuzzy
+msgid "Permission denied!"
+msgstr "Rechten"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Toon groepen die werkstations bevatten"
+#: html/getldif.php:82
+#, fuzzy
+msgid "You are not allowed to create ldap dumps."
+msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:107
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "Selecteer om groepen die werkstations bevatten te tonen"
+msgid "Error in ivbb parameter!"
+msgstr "Controleer parameter"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/password.php:58 html/index.php:141
+#, fuzzy, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
+
+#: html/password.php:78
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Toon groepen die werkstations bevatten"
+msgid "Accessibility"
+msgstr "Configuratie bestand"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr "Selecteer om groepen die terminals bevatten te tonen"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, 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/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Toon groepen die terminals bevatten"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr "Selecteer om groepen die printers bevatten te tonen"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
-msgstr "Toon groepen die printers bevatten"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
-msgstr "Selecteer om groepen die printers bevatten te tonen"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
-msgstr "Toon groepen die telefoons bevatten"
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "De sessie zal niet versleuteld zijn."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Objectgroep"
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "Gebruik een SSL sessie"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "You are not allowed to remove this entry."
-msgstr "U heeft geen toestemming om deze gegevens te verwijderen!"
+msgid "Smarty"
+msgstr "Samenvatting"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/index.php:57
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "Naam van objectgroepen"
+msgid "Session is not encrypted!"
+msgstr "De sessie zal niet versleuteld zijn."
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
-"Controleer a.u.b. of u dit daadwerkelijk wil doen, aangezien er geen "
-"mogelijkheid voor GOsa is om uw data terug te krijgen."
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Naam van de groep"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "Configuratie bestand"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Lidmaatschap objecten"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Objectnaam"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "Inhoud"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Dit object heeft geen relatie met andere objecten."
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "Fax"
+#: html/index.php:282
+#, fuzzy
+msgid "Your ldap setup contains old schema definitions:"
+msgstr ""
+"Uw LDAP installatie bevat oude schema definities. Draai het installatie "
+"programma a.u.b. opnieuw."
+
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
+
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "Geef a.u.b. uw wachtwoord op!"
+
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Nagios authenticatie"
+
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
+msgstr ""
+
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
+msgstr ""
+"Account is geblokkeerd. Neem a.u.b. contact op met de systeembeheerder."
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:425
+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!"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "Ftp"
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "Thin Client"
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "FAX database"
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/main.php:172
 msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
-"Dit is het GOsa hoofdmenu. U kunt taken selecteren door het menu aan de "
-"linkerzijde te gebruiken of door een van de pictogrammen hieronder te "
-"selecteren. Alle veranderingen worden direct op de LDAP server van uw "
-"bedrijf doorgevoerd."
+"FATAAL: 'Register globals' is geactiveerd in PHP. GOsa zal niemand laten "
+"inloggen totdat dit opgelost is door een systeembeheerder."
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "Configuratie bestand"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
-"Gebruik 'Uitloggen' bovenin om de verbinding te verbreken en 'Hoofdmenu' om "
-"terug te keren naar het onderstaande pictogrammen overzicht."
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "Het GOsa team"
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "Wachtwoord verloopt op"
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
-msgstr "Welkom %s!"
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "Uw wachtwoord zal spoedig verlopen! Kies a.u.b. een nieuw wachtwoord."
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
-msgstr ""
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "in"
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
-msgstr ""
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "FATAAL: Kan geen enkele module defenities vinden voor module '%s'!"
 
 #: html/getxls.php:88
 msgid "Birthday"
@@ -6769,11 +6832,6 @@ msgstr "Gebruikerslijst van %s in %s"
 msgid "Computers of %s on %s"
 msgstr "Computers van %s in %s"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Rechten"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6791,21 +6849,6 @@ msgstr "De opgegeven database kon niet geselecteerd worden!"
 msgid "Database query failed!"
 msgstr "De database zoekopdracht is mislukt"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!"
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Controleer parameter"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Programmanaam"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr "Help verkenner"
@@ -6821,172 +6864,78 @@ msgstr ""
 "Help directory '%s' is niet toegankelijk. Er kunnen geen helpbestanden "
 "gelezen worden."
 
-#: html/password.php:58 html/index.php:141
-#, fuzzy, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd."
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "Configuratie bestand"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr ""
-"Directory '%s' die opgegeven is als compileer directory is niet toegankelijk!"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie."
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "U heeft geen toestemming om uw wachtwoord te veranderen."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:"
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "De sessie zal niet versleuteld zijn."
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "Gebruik een SSL sessie"
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "Samenvatting"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "FAX database"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-"FATAAL: 'Register globals' is geactiveerd in PHP. GOsa zal niemand laten "
-"inloggen totdat dit opgelost is door een systeembeheerder."
-
-#: html/main.php:217
 #, fuzzy
-msgid "Configuration warning"
-msgstr "Configuratie bestand"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
+#~ msgid "User login failed."
+#~ msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'."
 
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "Wachtwoord verloopt op"
+#~ msgid "Removing a lock failed."
+#~ msgstr "Het verwijderen van de FAI inhaker is mislukt"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "Uw wachtwoord zal spoedig verlopen! Kies a.u.b. een nieuw wachtwoord."
+#~ msgid "Cannot get locking information from LDAP tree!"
+#~ msgstr "Kan quota informatie niet ophaleven voor '%s'."
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "in"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "FATAAL: Kan geen enkele module defenities vinden voor module '%s'!"
+#~ msgid "Setting the password failed!"
+#~ msgstr ""
+#~ "Instellen van het wachtwoord is mislukt. De LDAP server meldt: '%s'."
 
-#: html/index.php:57
 #, fuzzy
-msgid "Session is not encrypted!"
-msgstr "De sessie zal niet versleuteld zijn."
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Geef a.u.b. een geldig serienummer op"
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "Configuratie bestand"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen."
 
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Kan niet verbinden met de LDAP server. Neem a.u.b. contact op met de "
-"systeembeheerder."
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "Dit menu maakt het mogelijk om geselecteerde gebruikers toe te voegen, "
+#~ "bewerken of verwijderen. Indien u veel gebruikers heeft, dan is het aan "
+#~ "te raden de selectie mogelijkheden te gebruiken."
 
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "Dit menu maakt het mogelijk om geselecteerde groepen toe te voegen, "
+#~ "bewerken of verwijderen. Indien u veel groepen heeft, dan is het aan te "
+#~ "raden de selectie mogelijkheden te gebruiken."
 
-#: html/index.php:282
 #, fuzzy
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-"Uw LDAP installatie bevat oude schema definities. Draai het installatie "
-"programma a.u.b. opnieuw."
-
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
-
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "Geef a.u.b. uw wachtwoord op!"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr ""
+#~ "Dit menu maakt het mogelijk om FAI klassen aan te maken, bewerken en "
+#~ "verwijderen."
 
-#: html/index.php:318
 #, fuzzy
-msgid "Authentication error"
-msgstr "Nagios authenticatie"
-
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "Dit menu maakt het mogelijk om geselecteerde afdelingen toe te voegen, "
+#~ "bewerken of verwijderen. Indien u veel afdelingen heeft is het aan te "
+#~ "raden de selectie mogelijkheden te gebruiken."
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr ""
-"Account is geblokkeerd. Neem a.u.b. contact op met de systeembeheerder."
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "Dit menu maakt het mogelijk om geselecteerde groepen toe te voegen, "
+#~ "bewerken of verwijderen. Indien u veel groepen heeft is het aan te raden "
+#~ "de selectie mogelijkheden te gebruiken."
 
-#: html/index.php:425
-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!"
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Kan niet verbinden met de LDAP server. Neem a.u.b. contact op met de "
+#~ "systeembeheerder."
 
 #, fuzzy
 #~ msgid "Removing of user/generic account with dn '%s' failed."
index 02f07963ea3493716380939cde92a1f063a520c3..01eab4ef7cbcd5e5c5c30c1bd8aa8d63962cb338 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: polski\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2007-07-14 21:45+0100\n"
 "Last-Translator: Piotr Rybicki <meritus@innervision.pl>\n"
 "Language-Team: Piotr Rybicki <meritus@innervision.pl>\n"
@@ -14,1104 +14,1039 @@ msgstr ""
 "X-Poedit-SourceCharset: iso-8859-2\n"
 "X-Poedit-Basepath: tedst\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:64
-#, fuzzy
-msgid "Checking PHP version"
-msgstr "Sprawdzam wersję PHP (>=4.1.0)"
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Wykryto konflikt sesji"
 
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
-msgstr ""
-"PHP musi być w wersji 4.1.0 lub wyższej z powodu używanych funkcji i błędów "
-"w języku PHP."
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Ostrzeżenie"
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:6
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:72
-#, fuzzy
-msgid "Checking for LDAP support"
-msgstr "Sprawdzam wsparcie dla iconv"
-
-#: setup/class_setupStep_Checks.inc:73
-#, fuzzy
-msgid "This is the main extension used by GOsa and therefore really required."
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
-"To jest główny moduł używany przez GOsa i dlatego jest szczególnie wymagany."
+"Prawdopodobnie istnieje inna aktywna instacja sesji. Operowanie na kilku "
+"oknach nie jest technicznie możliwe i mocno zależy od używanej przeglądarki. "
+"Użycie różnych przeglądarek (np. IE i Mozilla) jest możliwe. Naciśnięcie "
+"przycisku Wyloguj zamknie tą sesję."
 
-#: setup/class_setupStep_Checks.inc:74
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
+"Ignorując ten komunikat zmienisz/usuniesz dane które obecnie edytujesz. "
+"Proszę zamknąć wiele okien i zalogować się ponownie."
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Sprawdzam wsparcie dla gettext"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Wyloguj"
 
-#: setup/class_setupStep_Checks.inc:81
-#, fuzzy
-msgid "Gettext support is required for internationalization."
-msgstr "Wsparcie dla gettext jest wymagane dla innych wersji językowych GOsa."
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło"
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
+msgstr "Stare hasło"
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr "Nowe hasło"
 
-#: setup/class_setupStep_Checks.inc:89
-#, fuzzy
-msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr ""
-"Ten moduł jest używany przez GOsa do konwersji _MUNGED_DIAL_INFORMATIONS? i "
-"dlatego jest wymagany."
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr "Hasło ponownie"
 
-#: setup/class_setupStep_Checks.inc:96
-#, fuzzy
-msgid "Checking for mhash support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr "Zmień hasło"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr "Brak uprawnień do zmiany własnego hasła"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:104
+#: ihtml/themes/default/login.tpl:27
 #, fuzzy
-msgid "Checking for IMAP support"
-msgstr "Sprawdzam wsparcie dla iconv"
+msgid "Login screen"
+msgstr "Usługa Logowania"
 
-#: setup/class_setupStep_Checks.inc:105
+#: ihtml/themes/default/login.tpl:34
 #, fuzzy
 msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
-msgstr ""
-"Moduł IMAP jest potrzebny do komunikacji z serwerem IMAP. Pozwala uzyskiwać "
-"informacje, oraz tworzyć/usuwać konta pocztowe."
-
-#: setup/class_setupStep_Checks.inc:106
-msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
-msgstr ""
-
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Sprawdzam wsparcie dla gettext"
+"Please use your username and your password to log into the site "
+"administration system."
+msgstr "Proszę użyć swojego loginu i hasła aby się zalogować"
 
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Nazwa użytkownika"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
-msgstr ""
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Hasło"
 
-#: setup/class_setupStep_Checks.inc:120
-#, fuzzy
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Sprawdzam getacl w imap"
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Katalog"
 
-#: setup/class_setupStep_Checks.inc:121
-#, fuzzy
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
-msgstr ""
-"Wsparcie dla getacl jest wymagane dla uprawnień do foldera współdzielonego. "
-"Standardowy moduł IMAP nie potrafi czytać acl'i. Potrzeba nowszej wersji PHP "
-"ze wsparciem getacl."
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Zaloguj"
 
-#: setup/class_setupStep_Checks.inc:128
-#, fuzzy
-msgid "Checking for MySQL support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Kliknij tutaj aby się zalogować"
 
-#: setup/class_setupStep_Checks.inc:129
-#, fuzzy
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr ""
-"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych."
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr "Twoja sesja w GOsa wygasła!"
 
-#: setup/class_setupStep_Checks.inc:130
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
+"Ostatnia interakcja z interfejsem GOsa była już jakiś czas temu. Z powodów "
+"bezpieczeństwa sesja została zamknięta. Aby kontynuować proszę zalogować się "
+"ponownie."
 
-#: setup/class_setupStep_Checks.inc:136
-#, fuzzy
-msgid "Checking for kadm5 support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
+msgstr "Zaloguj się ponownie"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
-msgstr ""
-"Zarządzanie użytkownikami w kerberos wymaga modułu kadm5, który można "
-"ściągnąć z sieci PEAR."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
+msgstr "Przypisane ACL'e dla obecnego wpisu"
 
-#: setup/class_setupStep_Checks.inc:138
-#, fuzzy
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
-msgstr ""
-"Zarządzanie użytkownikami w kerberos wymaga modułu kadm5, który można "
-"ściągnąć z sieci PEAR."
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+msgid "New ACL"
+msgstr "Nowy ACL"
 
-#: setup/class_setupStep_Checks.inc:144
-#, fuzzy
-msgid "Checking for SNMP support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "ACL type"
+msgstr "typ ACL"
 
-#: setup/class_setupStep_Checks.inc:145
-#, fuzzy
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
-msgstr "SNMP jest wymagane do monitorowani klientow."
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+msgid "Select an acl type"
+msgstr "Wybierz typ ACL"
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
-msgstr ""
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Zastosuj"
 
-#: setup/class_setupStep_Checks.inc:152
-#, fuzzy
-msgid "Checking for CUPS support"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
+msgstr "Użyj członków z"
 
-#: setup/class_setupStep_Checks.inc:153
-#, fuzzy
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Aby zobaczyć dostępne drukarki za pomocą protokołu IPP zamiast plików "
-"printcap, należy zainstalować moduł cups."
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr "Dostępni członkowie"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Sprawdzam program fping"
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
+msgstr "Wyświetl możliwe cele wiadomości"
 
-#: setup/class_setupStep_Checks.inc:163
-#, fuzzy
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
-msgstr ""
-"Program fping jest używany tylko jeśli mamy środowisko cienkich klientów."
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "Członkowie"
 
-#: setup/class_setupStep_Checks.inc:164
-#, fuzzy
-msgid ""
-"The fping utility is only used in thin client based terminal environment."
-msgstr ""
-"Program fping jest używany tylko jeśli mamy środowisko cienkich klientów."
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
+msgstr "Wyświetl odbiorców wiadomości"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
-msgstr ""
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+msgid "List of available ACL categories"
+msgstr "Lista dostępnych kategorii ACL"
 
-#: setup/class_setupStep_Checks.inc:180
-#, fuzzy
-msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
-msgstr ""
-"Aby używać SAMBA 2/3, należy zainstalować dodatkowe programy aby móc "
-"generować hasła."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
+msgstr "ACLe dla tego obiektu"
 
-#: setup/class_setupStep_Checks.inc:181
+#: ihtml/themes/default/acl.tpl:69
 #, fuzzy
-msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
-msgstr ""
-"Aby używać SAMBA 2/3, należy zainstalować dodatkowe programy aby móc "
-"generować hasła."
+msgid "Available roles"
+msgstr "Dostępni członkowie"
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-#, fuzzy
-msgid "Off"
-msgstr "Offline"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Anuluj"
 
-#: setup/class_setupStep_Checks.inc:192
+#: ihtml/themes/default/logout-close.tpl:5
 #, fuzzy
+msgid "Your GOsa session has been closed!"
+msgstr "Twoja sesja w GOsa wygasła!"
+
+#: ihtml/themes/default/logout-close.tpl:7
 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."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"register_globals jest mechanizmem PHP umożliwiającym takie ustawienie "
-"zmiennych globalnych, że możliwy jest do nich dostęp bez zmiany zakresu. To "
-"może powodować zagrożenie bezpieczeństwa. Gosa może działać w obu trybach."
 
-#: setup/class_setupStep_Checks.inc:193
-#, fuzzy
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'"
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
+msgid ""
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
+msgstr "Obecnie edytujesz bazę danych. Czy chcesz porzucić zmiany?"
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
-msgstr ""
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Główne"
 
-#: setup/class_setupStep_Checks.inc:202
-#, fuzzy
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
-msgstr ""
-"PHP używa tej wartości dla garbage collector'a do usuwania starych sesji. "
-"Ustawienie tej wartości na jeden dzień zapobiegnie ustraceniu sesji oraz "
-"cookie zanim faktycznie wygasną."
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Pomoc"
 
-#: setup/class_setupStep_Checks.inc:203
-#, fuzzy
-msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr ""
-"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
-"musi być ustawiona na 'off'."
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Wyloguj"
 
-#: setup/class_setupStep_Checks.inc:211
-#, fuzzy
-msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
-msgstr ""
-"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
-"musi być ustawiona na 'off'."
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Zalogowano:"
 
-#: setup/class_setupStep_Checks.inc:212
-#, fuzzy
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
-"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
-"musi być ustawiona na 'off'."
 
-#: setup/class_setupStep_Checks.inc:219
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
+msgstr "Odtwarzanie obiektu snapshotów"
+
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"GOsa potrzebuje conajmniej 16MB pamięci. Mniej może prowadzić do "
-"nieprzewidywalnych błędów. Dla większych instalacji, należy zwiększyć ten "
-"parametr."
+"Ta procedura przywróci snapshot wybranego obiektu. Obecny obiekt zostanie "
+"zamieniony po naciśnięciu przycisku przywróć."
 
-#: setup/class_setupStep_Checks.inc:220
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:227
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"Ta opcja wpływa na obsługę output. Aby zwiększyć wydajność, należy ustawić "
-"na 'off'."
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
-msgstr ""
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Obiekt"
 
-#: setup/class_setupStep_Checks.inc:235
-#, fuzzy
-msgid "The Execution time should be at least 30 seconds."
-msgstr ""
-"Ten parametr powinien byc ustawniony na co najmniej 30 sekund. Niektóre "
-"funkcje mogą zabierać dużo czasu."
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
+msgstr "Brak snapshot'u który mógłby zostać odtworzony"
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
-msgstr ""
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
+msgstr "Wybierz snapshot i klinij w obrazek folderu, aby odtwodzyć snapshot."
 
-#: setup/class_setupStep_Checks.inc:243
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:49
+msgid "Creating object snapshots"
+msgstr "Tworzenie obiektu snapshoty"
+
+#: ihtml/themes/default/snapshotdialog.tpl:52
 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."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
-"Aby zwiększyć bezpieczeństwo, należy ustawić expose_php na 'off'. PHP nie "
-"będzie wysyłać żadnych informacji na temat serwera na którym działa."
+"Ta procedura utworzy snapshot wybranego obiektu. Kopia obiektu zostanie "
+"zachowana w specjalnej gałęzi i będzie mogła zostać przywrócona później."
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: ihtml/themes/default/snapshotdialog.tpl:55
+msgid ""
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:250
-#, fuzzy
-msgid "On"
-msgstr "Otwórz"
+#: ihtml/themes/default/snapshotdialog.tpl:70
+msgid "Timestamp"
+msgstr "Czas"
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
-msgstr ""
-"Ustawienie macig_quotes_gpc na 'on' zwiększy bezpieczeństwo serwera. PHP "
-"będzie zabezpieczać cudzysłowa w stringach."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
+msgstr "Przyczyna utworzenia tego snapshot'u"
 
-#: setup/class_setupStep_Checks.inc:252
-#, fuzzy
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'"
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Kontynuuj"
 
-#: setup/class_setupStep_Checks.inc:259
-#, fuzzy
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr ""
-"Ustawienie macig_quotes_gpc na 'on' zwiększy bezpieczeństwo serwera. PHP "
-"będzie zabezpieczać cudzysłowa w stringach."
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
+msgstr "Błąd"
 
-#: setup/class_setupStep_Checks.inc:260
-#, fuzzy
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
-msgstr ""
-"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
-"musi być ustawiona na 'off'."
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Informacja"
 
-#: setup/class_setupStep_Checks.inc:270
-#, fuzzy
-msgid "Configuration writeable"
-msgstr "Plik konfiguracyjny"
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
+msgstr "Ok"
 
-#: setup/class_setupStep_Checks.inc:271
+#: ihtml/themes/default/pwd_heimdal.tpl:5
 #, fuzzy
-msgid "The configuration file can't be written"
-msgstr "Plik konfiguracyjny"
+msgid "Heimdal options"
+msgstr "Opcje poczty"
 
-#: setup/class_setupStep_Checks.inc:272
-#, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
 
-#: setup/setup_language.tpl:3
-#, fuzzy
-msgid "Please select the preferred language"
-msgstr "Preferowany język"
-
-#: setup/setup_language.tpl:5
-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."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Preferowany język"
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
+msgstr ""
 
-#: setup/setup_frame.tpl:12
-#, fuzzy
-msgid "GOsa setup wizard"
-msgstr "Podgląd pomocy GOsa"
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
+msgstr ""
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/pwd_heimdal.tpl:34
 #, fuzzy
-msgid "Installation"
-msgstr "Stacja Windows"
+msgid "Hour"
+msgstr "godzina"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/pwd_heimdal.tpl:36
 #, fuzzy
-msgid "Steps"
-msgstr "Systemy"
+msgid "Minute"
+msgstr "Drukarka"
 
-#: setup/setup_finish.tpl:3
+#: ihtml/themes/default/pwd_heimdal.tpl:38
 #, fuzzy
-msgid "Create your configuration file"
-msgstr "Plik konfiguracyjny"
-
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "Konfiguracja pobierania"
+msgid "Day"
+msgstr "dzień"
 
-#: setup/setup_finish.tpl:18
+#: ihtml/themes/default/pwd_heimdal.tpl:40
 #, fuzzy
-msgid "Status: "
-msgstr "Status"
+msgid "Month"
+msgstr "miesiąc"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+#: ihtml/themes/default/pwd_heimdal.tpl:42
 #, fuzzy
-msgid "LDAP schema check"
-msgstr "Usługa Ldap"
+msgid "Year"
+msgstr "Szukaj"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
 msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "Nie"
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr ""
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "Tak"
+#: ihtml/themes/default/pwd_heimdal.tpl:127
+#, fuzzy
+msgid "Password end"
+msgstr "Hasło"
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
-msgstr ""
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "Zapisz"
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"To może być używane przez kilka grup. Proszę upewnić się czy kontynuować, "
+"gdyż nie ma operacji powrotu."
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Organizacja"
-
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Imię"
-
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "Adres email"
-
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+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ć."
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Wykryto konflikt blokady"
+
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
+"Jeśli to wykrycie blokady jest błędne, inna osoba prawdopodobnie zamknęła "
+"okno przeglądarki podczas operacji edycji. Można przejąć blokadę naciskając "
+"Edytuj."
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Ogólne"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Filtry"
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:6
+#, fuzzy
+msgid "Change your password"
+msgstr "Zmień hasło"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
-msgstr ""
+#: ihtml/themes/default/password.tpl:34
+#, fuzzy
+msgid "Success"
+msgstr "Eksport zakończony powodzeniem"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
 msgstr ""
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr ""
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+#, fuzzy
+msgid "Password change"
+msgstr "Brak uprawnień do zmiay hasła"
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
+#: ihtml/themes/default/password.tpl:52
+msgid ""
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Obecne hasło"
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
-msgstr ""
-
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Nowe hasło"
 
-#: setup/setup_feedback.tpl:123
+#: ihtml/themes/default/password.tpl:85
 #, fuzzy
-msgid "Features"
-msgstr "Przyszłość"
-
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr ""
+msgid "again"
+msgstr "Główne"
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+#: ihtml/themes/default/password.tpl:86
 #, fuzzy
-msgid "GOsa settings 3/3"
-msgstr "Ustawienia użytkownika"
-
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr ""
+msgid "New password repeated"
+msgstr "Nowe hasło"
 
-#: setup/class_setupStep_Config3.inc:193
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
 #, fuzzy
-msgid "Session lifetime must be a numeric value."
-msgstr "Przyszłe dni muszą być liczbą."
+msgid "Password strength"
+msgstr "Przechowywanie hasła"
 
-#: setup/class_setupStep_Config3.inc:197
+#: ihtml/themes/default/password.tpl:100
 #, fuzzy
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "Przyszłe dni muszą być liczbą."
+msgid "Change"
+msgstr "Kanał"
 
-#: setup/class_setupStep_Feedback.inc:91
+#: ihtml/themes/default/password.tpl:101
 #, fuzzy
-msgid "UNIX accounts/groups"
-msgstr "Konta Unix"
+msgid "Click here to change your password"
+msgstr "Brak uprawnień do zmiany własnego hasła"
 
-#: setup/class_setupStep_Feedback.inc:93
+#: ihtml/themes/default/copyPasteDialog.tpl:1
 #, fuzzy
-msgid "Samba management"
-msgstr "Zarządzanie systemem"
+msgid "Copy & paste wizard"
+msgstr "Kreator Copy &amp; paste"
 
-#: setup/class_setupStep_Feedback.inc:95
-#, fuzzy
-msgid "Mailsystem management"
-msgstr "Zarządzanie systemem"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
+msgstr ""
+"Niektóre wartości muszą być unikalne w całym katalogu, podczas gdy niektóre "
+"kombinacje nie mają sensu. GOsa pokazuje dotyczące atrybuty. Proszę poprawić "
+"wartości poniżej aby utrzymać zgodność z regułami."
 
-#: setup/class_setupStep_Feedback.inc:97
-#, fuzzy
-msgid "FAX system administration"
-msgstr "Administracja użytkownikami"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:99
-#, fuzzy
-msgid "Asterisk administration"
-msgstr "Administracja użytkownikami"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
+msgstr ""
 
-#: setup/class_setupStep_Feedback.inc:101
+#: ihtml/themes/default/copyPasteDialog.tpl:24
 #, fuzzy
-msgid "System inventory"
-msgstr "Usuń inwentarz"
+msgid "Cancel all"
+msgstr "Anuluj"
 
-#: setup/class_setupStep_Feedback.inc:103
-#, fuzzy
-msgid "System-/Configmanagement"
-msgstr "Zarządzanie systemem"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
+msgstr "Operacja zakończona"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Książka adresowa"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Zakończ"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-#, fuzzy
-msgid "Notification and feedback"
-msgstr "Powiadomienie wysłane!"
+#: ihtml/themes/default/sizelimit.tpl:3
+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/class_setupStep_Feedback.inc:112
-#, fuzzy
-msgid "Get notifications or send feedback"
-msgstr "Ograniczenia dla nadawcy"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
+msgstr "Proszę wybrać sposób reakcji dla tej sesji"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-#, fuzzy
-msgid "Setup error"
-msgstr "Ustaw status"
+#: ihtml/themes/default/sizelimit.tpl:9
+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/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
+#: ihtml/themes/default/sizelimit.tpl:10
+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/class_setupStep_Feedback.inc:140
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
 #, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+msgid "Set"
+msgstr "Ustaw"
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
+msgstr "Podgląd pomocy GOsa"
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr ""
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
+msgstr "Indeks"
 
-#: setup/class_setupStep_Feedback.inc:179
-#, fuzzy
-msgid "Please specify a valid email address."
-msgstr "Proszę podać prawidłową nazwę skryptu."
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Szukaj"
 
-#: setup/class_setupStep_Feedback.inc:183
+#: plugins/generic/welcome/welcome.tpl:4
 msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
+"To jest główny ekran GOsa. Można wybrać zadania z menu po lewej stronie, lub "
+"wybierając jeden z piktogramów poniżej. Wszelkie zmiany wchodzą bezpośrednio "
+"do serwera LDAP."
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Ustawienia Samba"
-
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
 msgstr ""
+"Użyj 'Wyloguj' na górze ekranu aby zamknąć połączenie oraz 'Główne' aby "
+"wrócić do głównego ekranu z widokiem piktogramów."
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-msgid "Samba SID"
-msgstr "Samba SID"
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "Zespół GOsa"
 
-#: setup/setup_config2.tpl:31
-#, fuzzy
-msgid "RID base"
-msgstr "Baza"
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr "Witaj %s!"
 
-#: setup/setup_config2.tpl:46
-#, fuzzy
-msgid "Workstation container"
-msgstr "Nazwa stacji roboczej"
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Ogólne"
 
-#: setup/setup_config2.tpl:61
-#, fuzzy
-msgid "Samba SID mapping"
-msgstr "Samba SID"
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "UNIX"
 
-#: setup/setup_config2.tpl:71
-#, fuzzy
-msgid "Timezone"
-msgstr "Strefa czasowa użytkownika"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Poczta"
 
-#: setup/setup_config2.tpl:74
-#, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "Preferowany język"
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/setup_config2.tpl:96
-#, fuzzy
-msgid "Additional GOsa settings"
-msgstr "Ustawienia Aplikacji"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "FAX"
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Proxy"
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Rozszerzenie inwentarza"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Rozszerzenie inwentarza"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Grupa"
 
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "Zarządzanie typami mime"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Departament"
 
-#: setup/setup_config2.tpl:148
-#, fuzzy
-msgid "Enable FAI release management"
-msgstr "Zarządzanie FAI"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Telefon"
 
-#: setup/setup_config2.tpl:160
-#, fuzzy
-msgid "Enable user netatalk plugin"
-msgstr "Zarządzaj kontem Netatalk"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Aplikacja"
 
-#: setup/setup_config2.tpl:171
-#, fuzzy
-msgid "Government mode"
-msgstr "do folferu"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Serwer"
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "Ustawienia pocztowe"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "Cienki klient"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "Typ pocztowy"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "Stacja robocza"
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "wyłączone"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Grupa obiektu"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Drukarka"
 
-#: setup/setup_config2.tpl:214
-#, fuzzy
-msgid "Vacation templates"
-msgstr "Szablon stacji roboczej"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Nazwa obiektu"
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr ""
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Opis"
 
-#: setup/setup_config2.tpl:240
-#, fuzzy
-msgid "Snapshots / Undo"
-msgstr "Tworzenie snapshot'u nieudane"
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "Zawartość"
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-#, fuzzy
-msgid "Enable snapshots"
-msgstr "Utwórz spanshot"
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Ten obiekt nie posiada powiązań z innymi obiektami."
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+#: plugins/personal/password/class_password.inc:27
 #, fuzzy
-msgid "Snapshot base"
-msgstr "Tworzenie snapshot'u nieudane"
+msgid "Change user passwords"
+msgstr "Zmień hasło"
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Serwer"
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
+msgid "User password"
+msgstr "Hasło użytkownika"
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Użytkownik"
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "Proszę podać obecne hasło aby kontynuować."
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Hasło"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr "Podane hasła 'Nowe hasło' oraz 'Powtórz nowe hasło' nie są itentyczne."
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
-#, fuzzy
-msgid "LDAP inspection"
-msgstr "Inspekcja instalacji PHP"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "Hasło które podano jako 'Nowe hasło' jest puste."
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr ""
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr "Hasło podane jako nowe jest zbyt podobne do obecnego."
 
-#: setup/class_setupStep_Migrate.inc:113
-#, fuzzy
-msgid "Checking for root object"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "Hasło podane jako nowe jest za krótkie."
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr ""
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "Zewnętrzny program do zmiany hasła zgłosił następujący problem:"
 
-#: setup/class_setupStep_Migrate.inc:125
-#, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Sprawdzam wsparcie dla iconv"
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr "Hasło które podano jako obecne nie zgadza się z prawdziwym hasłem."
 
-#: setup/class_setupStep_Migrate.inc:131
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Checking for invisible users"
-msgstr "Sprawdzam wsparcie dla iconv"
+msgid "You have no permission to change your password."
+msgstr "Brak uprawnień do zmiany własnego hasła"
 
-#: setup/class_setupStep_Migrate.inc:137
-#, fuzzy
-msgid "Checking for super administrator"
-msgstr "Sprawedzam dodatkowe programy"
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Moje konto "
 
-#: setup/class_setupStep_Migrate.inc:143
-#, fuzzy
-msgid "Checking for users outside the people tree"
-msgstr "Sprawdzam moduł cups"
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
+msgstr "Brak uprawnień do zmiay hasła"
 
-#: setup/class_setupStep_Migrate.inc:149
-#, fuzzy
-msgid "Checking for groups outside the groups tree"
-msgstr "Sprawdzam moduł cups"
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr "Brak uprawnień do zmiany własnego hasła w tym momencie"
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
+#: plugins/personal/password/changed.tpl:3
+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/class_setupStep_Migrate.inc:161
-#, fuzzy
-msgid "Checking for duplicate uid numbers"
-msgstr "Sprawdzam funkcję %s"
-
-#: setup/class_setupStep_Migrate.inc:167
-#, fuzzy
-msgid "Checking for duplicate gid numbers"
-msgstr "Sprawdzam funkcję %s"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Wróć"
 
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-#, fuzzy
-msgid "LDAP query failed"
-msgstr "Zapytanie do bazy danych nieudane"
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
+msgstr ""
+"Aby zmienić własne hasło, proszę użyć formularza poniżej. Zmiany są "
+"wprowadzane do systemu natychmiast. Proszę zapamiętać nowe hasło, gdyż bez "
+"niego logowanie będzie niemożliwe."
 
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
 msgstr ""
+"Zmiana hasła jest powiązana z autentykacją do usług poczty, proxy, samba, "
+"oraz unix."
 
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Ostrzeżenie"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Powtórz nowe hasło"
 
-#: setup/class_setupStep_Migrate.inc:213
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'."
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Ustaw hasło"
 
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr "Ok"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Wyczyść pola"
 
-#: setup/class_setupStep_Migrate.inc:262
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'."
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
+#, fuzzy
+msgid "Password settings"
+msgstr "Ustawienia użytkownika"
 
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Niepowodzenie"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Certyfikaty"
 
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Standardowy certyfikat"
 
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-#, fuzzy
-msgid "Migrate"
-msgstr "Utwórz"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Usuń"
 
-#: setup/class_setupStep_Migrate.inc:387
-#, fuzzy, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Zamierzasz skopiować wpis '%s'."
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "certyfikat S/MIME"
 
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "certyfikat PKCS12"
+
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "Nmer seryjny certyfikatu"
+
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Move"
-msgstr "Tryb"
+msgid "Edit organizational user settings"
+msgstr "Ustawienia Aplikacji"
 
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "kobieta"
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "mężczyzna"
 
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:496
 #, fuzzy
-msgid "Migration error"
-msgstr "Utwórz"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Utwórz nowy departament"
-
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr ""
+msgid "Serial number"
+msgstr "Numer pagera"
 
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Utwórz"
-
-#: setup/class_setupStep_Migrate.inc:945
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "Certyfikat jest ważny od %s do %s i jest obecnie %s."
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "Hasło wygasa"
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "prawidłowy"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr "Hasła podane jako nowe i powtórzone nie zgadzają się!"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "nieprawidłowy"
 
-#: setup/class_setupStep_Migrate.inc:975
-#, fuzzy
-msgid "Input error"
-msgstr "błąd PHP:"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "Brak zainstalowanych certyfikatów"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Proszę podać prawidłową nazwę użytkownika!"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr "Błąd"
+msgid "Password method"
+msgstr "Przechowywanie hasła"
 
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:586
+#, fuzzy
+msgid "The selected password method is no longer available."
+msgstr "Ta aplikacja nie jest już dostępna."
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1121,5403 +1056,5533 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "błąd LDAP:"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "Przejdź do domowego departamentu użytkowników"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Login"
 
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-#, fuzzy
-msgid "to"
-msgstr "Zatrzymaj"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Imię"
 
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Imię"
 
-#: setup/class_setupStep_Migrate.inc:1115
-#, fuzzy
-msgid "Group will be moved from"
-msgstr "Będzie możliwość odtworzenia z"
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Strona domowa"
 
-#: setup/class_setupStep_Migrate.inc:1162
-#, fuzzy
-msgid "User will be moved from"
-msgstr "Użyj członków z"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Fax"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "Komórka"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Pager"
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
+#: plugins/personal/generic/class_user.inc:1296
 #, fuzzy
-msgid "Try to create root object"
-msgstr "Utwórz obiekty"
+msgid "Cannot open certificate!"
+msgstr "Nie można otworzyć wybranego certyfikatu!"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Jednostka"
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Przenoszenie '%s' do '%s'"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Identyfikator budynku"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Wywołanie"
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-#, fuzzy
-msgid "License"
-msgstr "Linia"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Ostatnia dostawa"
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Lokalizacja osoby"
 
-#: setup/class_setupStep_Welcome.inc:38
-#, fuzzy
-msgid "Welcome"
-msgstr "Witaj %s!"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Opis jednostki"
 
-#: setup/class_setupStep_Welcome.inc:39
-#, fuzzy
-msgid "The welcome message"
-msgstr "Usuń tą wiadomosc"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Sektor"
 
-#: setup/class_setupStep_Welcome.inc:40
-#, fuzzy
-msgid "Welcome to GOsa setup wizard"
-msgstr "Witaj w instalacji GOsa!"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Tytuł funkcjonalny"
 
-#: setup/setup_config3.tpl:2
-#, fuzzy
-msgid "GOsa core settings"
-msgstr "Ustawienia pocztowe"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Publicznie widoczne"
 
-#: setup/setup_config3.tpl:6
-#, fuzzy
-msgid "Disable primary group filter"
-msgstr "Wyświetl grupy użytkownika"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Ulica"
 
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Wyświetl makra pasujące"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Pełniona funkcja"
 
-#: setup/setup_config3.tpl:30
-#, fuzzy
-msgid "Honour administrative units"
-msgstr "Administracja Grupą"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Kod pocztowy"
 
-#: setup/setup_config3.tpl:42
-#, fuzzy
-msgid "Smarty compile directory"
-msgstr "Katalog domowy"
+#: plugins/personal/generic/class_user.inc:1443
+msgid "Generic user settings"
+msgstr "Ogólne ustawienia użytkownika"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Użytkownicy"
 
-#: setup/setup_config3.tpl:60
-#, fuzzy
-msgid "Path for PPD storage"
-msgstr "Przechowywanie hasła"
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "Kontener"
 
-#: setup/setup_config3.tpl:77
-#, fuzzy
-msgid "Path for kiosk profile storage"
-msgstr "Ustawienia profilu Kiosk"
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr "Nazwisko"
 
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Zarządzanie systemem"
+#: plugins/personal/generic/class_user.inc:1456
+msgid "User identification"
+msgstr "Identyfikacja użytkownika"
 
-#: setup/setup_config3.tpl:115
-#, fuzzy
-msgid "Mail queue script"
-msgstr "Ogólna ścieżka do skryptu"
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Osobisty tytuł"
 
-#: setup/setup_config3.tpl:134
-#, fuzzy
-msgid "Notification script"
-msgstr "Cel powiadomienia"
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Tytuł naukowy"
 
-#: setup/setup_config3.tpl:153
-#, fuzzy
-msgid "Enable edit locking"
-msgstr "Włącz skanowanie antyfirusowe"
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "Adres domowy"
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1460
+msgid "Home phone number"
+msgstr "Numer telefonu domowego"
 
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "Atrybuty telefonu"
-
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Organizacja"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Data urodzenia"
 
-#: setup/setup_config3.tpl:210
-#, fuzzy
-msgid "Warn if session is not encrypted"
-msgstr "Sesja nie będzie szyfrowana."
+#: plugins/personal/generic/class_user.inc:1465
+msgid "Gender"
+msgstr "Płeć"
 
-#: setup/setup_config3.tpl:222
-#, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "Ogólne ustawienia użytkownika"
+#: plugins/personal/generic/class_user.inc:1466
+msgid "Preferred language"
+msgstr "Preferowany język"
 
-#: setup/setup_config3.tpl:234
-#, fuzzy
-msgid "Session lifetime"
-msgstr "Wykryto konflikt sesji"
+#: plugins/personal/generic/class_user.inc:1467
+msgid "Department number"
+msgstr "Numer departamentu"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1468
+msgid "Employee number"
+msgstr "Numer pracownika"
 
-#: setup/setup_config3.tpl:247
-#, fuzzy
-msgid "Show PHP errors"
-msgstr "błąd PHP:"
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Typ pracownika"
 
-#: setup/setup_config3.tpl:259
-#, fuzzy
-msgid "Maximum LDAP query time"
-msgstr "Max rozmiar nagłówków poczty"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Lokalizacja"
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Stan"
 
-#: setup/setup_config3.tpl:289
-#, fuzzy
-msgid "Debug level"
-msgstr "Jeden poziom"
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "Zdjęcie użytkownika"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-#, fuzzy
-msgid "Disabled"
-msgstr "wyłączone"
+#: plugins/personal/generic/class_user.inc:1473
+msgid "Room number"
+msgstr "Numer pokoju"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-#, fuzzy
-msgid "Enabled"
-msgstr "włączone"
+#: plugins/personal/generic/class_user.inc:1474
+msgid "Telefon number"
+msgstr "Numer telefonu"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1475
+msgid "Mobile number"
+msgstr "Telefon komórkowy"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Szukaj"
+#: plugins/personal/generic/class_user.inc:1476
+msgid "Pager number"
+msgstr "Numer pagera"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Zastosuj"
+#: plugins/personal/generic/class_user.inc:1477
+msgid "User certificates"
+msgstr "Certyfikaty użytkownika"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Anuluj"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "Adres pocztowy"
 
-#: setup/setup_ldap.tpl:25
-#, fuzzy
-msgid "LDAP connection"
-msgstr "Rozłączenie"
+#: plugins/personal/generic/class_user.inc:1480
+msgid "Fax number"
+msgstr "Numer fax"
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Nazwa lokalizacji"
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Informacje osobiste"
 
-#: setup/setup_ldap.tpl:37
-#, fuzzy
-msgid "Connection URL"
-msgstr "Połączeniowy URL"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Osobiste zdjęcie"
 
-#: setup/setup_ldap.tpl:45
-#, fuzzy
-msgid "TLS connection"
-msgstr "Połączenie dzwonienia..."
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "Preferowany język"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "Kontener"
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Wybierz poddrzewo do umieszczenia konta."
 
-#: setup/setup_ldap.tpl:65
-#, fuzzy
-msgid "Reload"
-msgstr "Odczyt"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
+msgstr "Wybierz bazę"
 
-#: setup/setup_ldap.tpl:69
-#, fuzzy
-msgid "Authentication"
-msgstr "Autentykacja Nagios"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Adres"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "DN Administratora"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Telefon prywatny"
 
-#: setup/setup_ldap.tpl:78
-#, fuzzy
-msgid "Select user"
-msgstr "Usuń użytkownika"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Przechowywanie hasła"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Edytuj certyfikaty"
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Hasło Administratora"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Informacje organizacyjne"
 
-#: setup/setup_ldap.tpl:101
-#, fuzzy
-msgid "Schema based settings"
-msgstr "Ustawienia Samba"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "Numer departamentu"
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "Numer pracownika"
 
-#: setup/setup_ldap.tpl:117
-#, fuzzy
-msgid "Current status"
-msgstr "Ustaw status"
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "Numer pokoju"
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "Informacja"
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
+msgstr "Ustawienia użytkownika"
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
+msgstr "Nazwisko"
 
-#: setup/setup_migrate.tpl:33
-#, fuzzy
-msgid "Check again"
-msgstr "Sprawdź"
-
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
+msgstr "Imię"
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
+msgstr "Wyczyść hasło"
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
+msgstr "Ustaw nowe hasło"
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-#, fuzzy
-msgid "Select all"
-msgstr "Wybierz"
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Usuń obrazek"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
+#: plugins/personal/generic/password.tpl:2
+msgid ""
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
+"Zmieniono metodę kodowania hasła w bazie ldap. Z tego powodu należy teraz "
+"podać ponownie swoje hasło. GOsa zakoduje to hasło używając wybranej metody."
 
-#: setup/setup_migrate.tpl:72
-#, fuzzy
-msgid "Move selected workstations"
-msgstr "Wybierz aby zobaczyc stacje robocze"
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Zmień zdjęcie"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr "Zamknij"
-
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
+msgstr "Nazwa Szablonu"
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Płeć"
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Konfiguruj"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr ""
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Proszę użyć zakładki telefony"
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#: plugins/personal/generic/main.inc:104
 #, fuzzy
-msgid "Hide changes"
-msgstr "Open xchange"
+msgid "You have no permission to set your password!"
+msgstr "Brak uprawnień do zmiany własnego hasła"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-#, fuzzy
-msgid "Show changes"
-msgstr "Pokaż pakiety"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Ogólne informacje o użytkowniku"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Wybierz grupy do dodania"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Wyświetl grupy departamentu"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Wybierz departament na którym wyszukiwanie będzie bazować"
 
-#: setup/setup_migrate.tpl:148
-#, fuzzy
-msgid "Move selected users into this people tree"
-msgstr "Utwórz użytkownika z tego szablonu"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Wyświetl grupy pasujące"
 
-#: setup/setup_migrate.tpl:198
-#, fuzzy
-msgid "Next"
-msgstr "tekst"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Wyrażenie regularne dla dopasowania nazw grup"
 
-#: setup/setup_migrate.tpl:199
-#, fuzzy
-msgid "Abort"
-msgstr "Port"
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Wyświetl grupy użytkownika"
 
-#: setup/setup_migrate.tpl:201
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Nazwa użytkownika którego grupy są pokazane"
+
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid "Create a new GOsa administrator account"
-msgstr "Utwórz konto Netatalk"
+msgid "Search in subtrees"
+msgstr "Szukaj wewnątrz tego poddrzewa"
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "Identyfikator użytkownika"
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "wygasło"
 
-#: setup/setup_migrate.tpl:233
-#, fuzzy
-msgid "Password (again)"
-msgstr "Przechowywanie hasła"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "Czas prolongaty aktywny"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "aktywne, hasło niezmienialne"
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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 ""
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "aktywne, hasło wygasło"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-#, fuzzy
-msgid "Current"
-msgstr "Obecny obiekt"
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "Aktywne"
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-#, fuzzy
-msgid "After migration"
-msgstr "Administracja użytkownikami"
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "nieskonfigurowane"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "automatyczne"
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Środowisko"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
+msgstr "Hasło nie może być zmienione do %s dni po ostatniej zmianie"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "PHP setup configuration"
-msgstr "Konfiguracja bazy FAX"
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "Hasło musi zostać zmienione po %s dniach"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "show information"
-msgstr "Informacje osobiste"
-
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Zakończ"
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr "Wyłącz konto po %s dniach nieaktywności po wygaśnięciu hasła"
 
-#: setup/class_setupStep_Finish.inc:38
-#, fuzzy
-msgid "Write configuration file"
-msgstr "Plik konfiguracyjny"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "Ostrzeż użytkownika na %s dni przed wygaśnięciem hasła"
 
-#: setup/class_setupStep_Finish.inc:39
-#, fuzzy
-msgid "Finish - write the configuration file"
-msgstr "Plik konfiguracyjny"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "wyłączone"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "pełen dostęp"
 
-#: setup/class_setupStep_Finish.inc:102
-#, fuzzy
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "zezwól na dostęp do tych hostów"
 
-#: setup/class_setupStep_Finish.inc:111
-#, fuzzy, 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. You may want to execute these commands to achieve this "
-"requirement:"
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
-"Po umieszczeniu pliku w /etc/gosa upewnij się, że serwer www ma uprawnienia "
-"do jego odczytu, podczas gdy inni użytkownicy nie mają. Aby uzyskać takie "
-"uprawnienia, można wykonać te polecenia:"
-
-#: setup/class_setupStep_Ldap.inc:53
-#, fuzzy
-msgid "LDAP setup"
-msgstr "Serwer LDAP"
 
-#: setup/class_setupStep_Ldap.inc:54
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid "LDAP connection setup"
-msgstr "Połączenie dzwonienia..."
+msgid "Uid number"
+msgstr "Numer fax"
 
-#: setup/class_setupStep_Ldap.inc:55
-#, fuzzy
+#: plugins/personal/posix/class_posixAccount.inc:914
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"Poniższe pola pozwalają na podstawową konfigurację zachowania GOsa i "
-"wpływają na różne właściwości w głównej konfiguracji."
-
-#: setup/class_setupStep_Ldap.inc:105
-#, fuzzy, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: setup/class_setupStep_Ldap.inc:107
-#, fuzzy, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Grupa użytkownika"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, fuzzy, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Katalog domowy"
 
-#: setup/class_setupStep_Ldap.inc:113
-#, fuzzy
-msgid "Please specify user and password."
-msgstr "Proszę podać prawidłowe hasło!"
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, fuzzy, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
 #, fuzzy
-msgid "Language setup"
-msgstr "Język"
+msgid "shadowMin"
+msgstr "Shadow min"
 
-#: setup/class_setupStep_Language.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
 #, fuzzy
-msgid "This step allows you to select your preferred language."
-msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych grup."
+msgid "shadowMax"
+msgstr "Shadow max"
 
-#: setup/class_setupStep_Language.inc:47
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
 #, fuzzy
-msgid "Automatic"
-msgstr "automatyczne"
+msgid "shadowWarning"
+msgstr "Shadow ostrzeżenie"
 
-#: setup/class_setup.inc:196
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
 #, fuzzy
-msgid "Completed"
-msgstr "niepełne"
-
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Wróć"
-
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Kontynuuj"
+msgid "shadowInactive"
+msgstr "Shadow nieaktywne"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: setup/setup_config1.tpl:6
-#, fuzzy
-msgid "Theme"
-msgstr "Mime"
+#: plugins/personal/posix/class_posixAccount.inc:1496
+msgid "POSIX account"
+msgstr "Konto POSIX"
 
-#: setup/setup_config1.tpl:15
-#, fuzzy
-msgid "Apache"
-msgstr "Cache"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "Identyfikator użytkownika"
 
-#: setup/setup_config1.tpl:27
-#, fuzzy
-msgid "People and group storage"
-msgstr "Prosze wyszczególnić długość pamięci."
+#: plugins/personal/posix/class_posixAccount.inc:1509
+msgid "Group ID"
+msgstr "ID grupy"
 
-#: setup/setup_config1.tpl:30
-#, fuzzy
-msgid "People DN attribute"
-msgstr "Ten 'dn' nie jest aplikacją."
+#: plugins/personal/posix/class_posixAccount.inc:1511
+msgid "Force password change on login"
+msgstr "Wymuś zmianę hasła podczas logowania"
 
-#: setup/setup_config1.tpl:41
-#, fuzzy
-msgid "People storage subtree"
-msgstr "Prosze wyszczególnić długość pamięci."
+#: plugins/personal/posix/class_posixAccount.inc:1512
+msgid "Shadow min"
+msgstr "Shadow min"
 
-#: setup/setup_config1.tpl:50
-#, fuzzy
-msgid "Group storage subtree"
-msgstr "Proszę wybrać grupę obiektów"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
+msgstr "Shadow max"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1514
+msgid "Shadow warning"
+msgstr "Shadow ostrzeżenie"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1515
+msgid "Shadow inactive"
+msgstr "Shadow nieaktywne"
 
-#: setup/setup_config1.tpl:81
-#, fuzzy
-msgid "Automatic uids"
-msgstr "Automatyczne tryby"
+#: plugins/personal/posix/class_posixAccount.inc:1516
+msgid "Shadow expire"
+msgstr "Shadow wygasa"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1517
+msgid "System trust model"
+msgstr "Zaufanie do systemów"
 
-#: setup/setup_config1.tpl:113
-#, fuzzy
-msgid "Number base for people/groups"
-msgstr "Podstawowe ID dla użytkowników/grup"
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
+msgstr "Ustawienia Posix"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Wymuś UID/GID"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-#, fuzzy
-msgid "Password settings"
-msgstr "Ustawienia użytkownika"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Przynależność do grup"
 
-#: setup/setup_config1.tpl:140
-#, fuzzy
-msgid "Password encryption algorithm"
-msgstr "Algorytm szyfrowania"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(Uwaga: NFS nie wspiera więcej niż 16 grup!)"
 
-#: setup/setup_config1.tpl:151
-#, fuzzy
-msgid "Password restrictions"
-msgstr "Hasło wygasa"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Grupa podstawowa"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Status"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#, fuzzy
+msgid "In all groups"
+msgstr "Grupa pocztowa"
 
-#: setup/setup_config1.tpl:182
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
 #, fuzzy
-msgid "Password change hook"
-msgstr "Brak uprawnień do zmiay hasła"
+msgid "Not in all groups"
+msgstr "Pokaż grupy pocztowe"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Konto"
 
-#: setup/setup_config1.tpl:209
-#, fuzzy
-msgid "Use account expiration"
-msgstr "Konto wygasa po"
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "Zaufanie systemowe"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa wspiera kilka typów szyfrowania hasła. Typy można ustawić przez "
-"szablony użytkownika, oraz można też ustawić typ domyślny tutaj."
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
+msgstr "Tryb zaufania"
 
-#: setup/setup_config1.tpl:222
-#, fuzzy
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa zawsze zachowuje się jak admin i zarządza uprawnieniami wewnętrznie. "
-"Jest to obejście dopóki ACL w katalogu OpenLDAP zostaną w pełni "
-"zaimplementowane. Trzeba podać administracyjne DN i odpowiednie hasło."
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "Użytkownik musi zmienić hasło przy pierwszym logowaniu"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"Pewne podstawowe parametry LDAP są zmienialne i wpływają na lokalizacje "
-"gdzie GOsa zapisuje użytkowników i grupy razem ze sposobem w jaki konta są "
-"tworzone. Sprawdź wartości poniżej i dostosuj do wymagań."
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "Hasło wygasa"
 
-#: setup/setup_config1.tpl:224
+#: plugins/personal/posix/main.inc:131
 #, fuzzy
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
-msgstr ""
-"GOsa posiada modularne wsparcie dla kilku metod pocztowych. Te metody "
-"zapewniają interfejsy dla kont użytkowników oraz quota. Można wybrać "
-"sztuczny dodatek, aby pozostawić ustawienia poczty nietknięte."
+msgid "POSIX settings"
+msgstr "Ustawienia Posix"
 
-#: setup/setup_welcome.tpl:4
-msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Wybierz systemy do dodania"
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Wyświetl systemy departamentu"
 
-#: setup/setup_welcome.tpl:11
-#, fuzzy
-msgid "Create a basic, single site configuration"
-msgstr "Konfiguracja bazy FAX"
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Wyświetl systemy pasujące"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Wyrażenie regularne dla dopasowania adresów"
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+msgid ""
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "Lista użytkowników"
 
-#: setup/setup_welcome.tpl:20
-#, fuzzy
-msgid "Find every possible configuration error"
-msgstr "Plik konfiguracyjny"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Właściwości"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Akcje"
 
-#: setup/setup_welcome.tpl:25
-#, fuzzy
-msgid "To continue..."
-msgstr "Ustawienia trwają..."
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Wybierz aby zobaczyć szablony"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Pokaż szablony"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają tylko obiekt GOsa"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-#, fuzzy
-msgid "GOsa settings 2/3"
-msgstr "Ustawienia użytkownika"
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Pokaż użytkowników funkcjonalnych"
 
-#: setup/class_setupStep_Config2.inc:87
-#, fuzzy
-msgid "Customize special parameters"
-msgstr "Sprawdź parametr"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia posix"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-#, fuzzy
-msgid "GOsa settings 1/3"
-msgstr "Ustawienia użytkownika"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Pokaż użytkowników Unix"
 
-#: setup/class_setupStep_Config1.inc:76
-#, fuzzy
-msgid "GOsa generic settings"
-msgstr "Ogólne ustawienia użytkownika"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia poczty"
 
-#: setup/class_setupStep_Config1.inc:118
-#, fuzzy, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "Port sieve musi być liczbą."
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Pokaż użytkowników Poczty"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia samba"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "Prosze wyszczególnić długość pamięci."
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Pokaż użytkowników Samby"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "Proszę wybrać grupę obiektów"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia proxy"
 
-#: setup/class_setupStep_Config1.inc:130
-#, fuzzy
-msgid "Uid base must be numeric"
-msgstr "Limit czasu musi być liczbą"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Pokaż użytkowników proxy"
 
-#: setup/class_setupStep_Config1.inc:134
-#, fuzzy
-msgid "The given password minimum length is not numeric."
-msgstr "Port sieve musi być liczbą."
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "Zaznacz aby wyszukiwać wewnątrz poddrzew"
 
-#: setup/class_setupStep_Config1.inc:137
-#, fuzzy
-msgid "The given password differ value is not numeric."
-msgstr "Port sieve musi być liczbą."
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Wyświetl użytkowników pasujących"
 
-#: setup/setup_schema.tpl:3
-#, fuzzy
-msgid "Schema specific settings"
-msgstr "Ustawienia Samba"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "Zatwierdź departament"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "Wyślij"
 
-#: setup/setup_schema.tpl:16
-#, fuzzy
-msgid "Check status"
-msgstr "Ustaw status"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Utwórz"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Użytkownik"
 
-#: setup/setup_schema.tpl:23
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Szablon"
+
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Edytuj"
+
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "Zmień hasło"
+
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "Schema check failed"
-msgstr "Zapisywanie telefonu nieudane"
+msgid "Copy"
+msgstr "kopiuj"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
+#, fuzzy
+msgid "Cut"
+msgstr "wytnij"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
+msgstr "Wklej"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Filtry"
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "Edytuj ogólne właściwości"
 
-#: ihtml/themes/default/login.tpl:27
-#, fuzzy
-msgid "Login screen"
-msgstr "Usługa Logowania"
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
 
-#: ihtml/themes/default/login.tpl:34
-#, fuzzy
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr "Proszę użyć swojego loginu i hasła aby się zalogować"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "Edytuj właściwości UNIX"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Nazwa użytkownika"
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "Edytuj właściwości Środowiska"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Katalog"
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "Edytuj właściwości Poczty"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Zaloguj"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "Edytuj właściwości Telefonu"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Kliknij tutaj aby się zalogować"
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "Edytuj właściwości Fax"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr "Podgląd pomocy GOsa"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "Edytuj właściwości Samba"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr "Indeks"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr "Netatalk"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "Edytuj właściwości Netatalk"
+
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "Utwórz użytkownika z szablonu"
+
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "Utwórz użytkownika z tego szablonu"
+
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "wytnij"
+
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "Wytnij ten obiekt"
+
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "kopiuj"
+
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "Kopiuj ten obiekt"
+
+#: plugins/admin/users/class_divListUsers.inc:318
 #, fuzzy
-msgid "Heimdal options"
-msgstr "Opcje poczty"
+msgid "Deactivated"
+msgstr "Aktywne"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
+msgstr "Aktywne"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "edytuj"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "Edytuj użytkownika"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "hasło"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
+#: plugins/admin/users/class_divListUsers.inc:342
 #, fuzzy
-msgid "Hour"
-msgstr "godzina"
+msgid "You are not allowed to change the password for this user."
+msgstr "Brak uprawnień do zmiany własnego hasła w tym momencie"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "Usuń"
+
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "Usuń użytkownika"
+
+#: plugins/admin/users/class_divListUsers.inc:356
 #, fuzzy
-msgid "Minute"
-msgstr "Drukarka"
+msgid "You are not allowed to remove this user."
+msgstr "Brak uprawnień do usunięcia tego użytkownika!"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
+#: plugins/admin/users/class_divListUsers.inc:442
 #, fuzzy
-msgid "Day"
-msgstr "dzień"
+msgid "Number of listed users"
+msgstr "Nazwa departamentu"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
 #, fuzzy
-msgid "Month"
-msgstr "miesiąc"
+msgid "Number of listed departments"
+msgstr "Nazwa departamentu"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
+#: plugins/admin/users/class_userManagement.inc:27
 #, fuzzy
-msgid "Year"
-msgstr "Szukaj"
+msgid "Manage users"
+msgstr "Użytkownicy domeny"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, fuzzy
+msgid "Daemon"
+msgstr "W dół"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
 msgstr ""
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
+#: plugins/admin/users/class_userManagement.inc:293
 #, fuzzy
-msgid "Password end"
-msgstr "Hasło"
+msgid "Password change failed."
+msgstr "Brak uprawnień do zmiay hasła"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
-msgstr "Zapisz"
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr "Brak uprawnień do zmiany hasła tym użytkownikom!"
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Wykryto konflikt blokady"
-
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
-"Jeśli to wykrycie blokady jest błędne, inna osoba prawdopodobnie zamknęła "
-"okno przeglądarki podczas operacji edycji. Można przejąć blokadę naciskając "
-"Edytuj."
-
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło"
-
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
-msgstr "Stare hasło"
+#: plugins/admin/users/class_userManagement.inc:456
+#, fuzzy, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "Zamierzasz usunąć element %s."
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
-msgstr "Nowe hasło"
+#: plugins/admin/users/class_userManagement.inc:458
+#, fuzzy, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "Zamierzasz usunąć element %s."
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
-msgstr "Hasło ponownie"
+#: plugins/admin/users/class_userManagement.inc:460
+#, fuzzy
+msgid "Delete users"
+msgstr "Usuń użytkownika"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
-msgstr "Zmień hasło"
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+#, fuzzy
+msgid "User delete"
+msgstr "Usuń"
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
-msgstr "Brak uprawnień do zmiany własnego hasła"
+#: plugins/admin/users/class_userManagement.inc:488
+#, fuzzy, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "Brak uprawnień do usunięcia tego użytkownika!"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Wykryto konflikt sesji"
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "Zamierzasz usunąć użytkownika %s."
 
-#: ihtml/themes/default/conflict.tpl:6
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
-msgstr ""
-"Prawdopodobnie istnieje inna aktywna instacja sesji. Operowanie na kilku "
-"oknach nie jest technicznie możliwe i mocno zależy od używanej przeglądarki. "
-"Użycie różnych przeglądarek (np. IE i Mozilla) jest możliwe. Naciśnięcie "
-"przycisku Wyloguj zamknie tą sesję."
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User deleted"
+msgstr "Usuń"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
-"Ignorując ten komunikat zmienisz/usuniesz dane które obecnie edytujesz. "
-"Proszę zamknąć wiele okien i zalogować się ponownie."
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User successfully removed."
+msgstr "Import powiódł się"
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Wyloguj"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "Brak uprawnień do usunięcia tego użytkownika!"
 
-#: ihtml/themes/default/logout-close.tpl:5
-#, fuzzy
-msgid "Your GOsa session has been closed!"
-msgstr "Twoja sesja w GOsa wygasła!"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "żaden"
 
-#: ihtml/themes/default/logout-close.tpl:7
+#: plugins/admin/users/remove.tpl:6
 msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
+"Operacja odnosi się do wszystkich danych dotyczących konta, dostępu, "
+"ustawień imap, etc dla tego użytkownika. Proszę upewnić się czy na pewno "
+"kontynuować, gdyż nie ma możliwości powrotu."
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
-msgstr "Odtwarzanie obiektu snapshotów"
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Utwórz nowego użytkownika używając szablonów"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
-"Ta procedura przywróci snapshot wybranego obiektu. Obecny obiekt zostanie "
-"zamieniony po naciśnięciu przycisku przywróć."
+"Tworzenie nowego użytkownika może być wspomagane przez szablony. Wiele "
+"rekordów bazy będzie automatycznie wypełnionych. Wybierz 'brak' aby pominąć "
+"użycie szablonów."
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
+#: plugins/admin/users/password.tpl:4
 msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
 msgstr ""
+"Aby zmienić hasło użytkownika, proszę użyć formularza poniżej. Zmiany są "
+"wprowadzane natychmiastowo. Proszę zapamiętać nowe hasło, gdyż bez niego "
+"zalogowanie będzie niemożliwe."
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
-msgstr ""
+#: plugins/admin/users/password.tpl:21
+#, fuzzy
+msgid "Strength"
+msgstr "Ulica"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Obiekt"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Administracja użytkownikami"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
-msgstr "Brak snapshot'u który mógłby zostać odtworzony"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Grupy obiektów"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr "Wybierz snapshot i klinij w obrazek folderu, aby odtwodzyć snapshot."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
+#, fuzzy
+msgid "Manage object groups"
+msgstr "Nazwa grupy obiektów"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
-msgid "Creating object snapshots"
-msgstr "Tworzenie obiektu snapshoty"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, fuzzy, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "Zamierzasz usunąć element %s."
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
-"Ta procedura utworzy snapshot wybranego obiektu. Kopia obiektu zostanie "
-"zachowana w specjalnej gałęzi i będzie mogła zostać przywrócona później."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, fuzzy, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "Zamierzasz usunąć grupę obiektową '%s'."
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "Permission error"
+msgstr "Uprawnienia"
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
-msgid "Timestamp"
-msgstr "Czas"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
-msgstr "Przyczyna utworzenia tego snapshot'u"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "Zamierzasz usunąć grupę obiektową '%s'."
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr "Przypisane ACL'e dla obecnego wpisu"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+#, fuzzy
+msgid "Windows Install"
+msgstr "Stacja robocza Windows"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-msgid "New ACL"
-msgstr "Nowy ACL"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "Terminal"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "ACL type"
-msgstr "typ ACL"
-
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-msgid "Select an acl type"
-msgstr "Wybierz typ ACL"
-
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr "Użyj członków z"
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
+msgstr ""
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr "Dostępni członkowie"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "Ten 'dn' nie jest grupą obiektową."
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr "Wyświetl możliwe cele wiadomości"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "za dużo różnych obiektów!"
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "Członkowie"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "użytkownicy"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr "Wyświetl odbiorców wiadomości"
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "grupy"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
-msgid "List of available ACL categories"
-msgstr "Lista dostępnych kategorii ACL"
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "aplikacje"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr "ACLe dla tego obiektu"
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "departamenty"
 
-#: ihtml/themes/default/acl.tpl:69
-#, fuzzy
-msgid "Available roles"
-msgstr "Dostępni członkowie"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "serwery"
 
-#: ihtml/themes/default/password.tpl:6
-#, fuzzy
-msgid "Change your password"
-msgstr "Zmień hasło"
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "stacje robocze"
 
-#: ihtml/themes/default/password.tpl:34
+#: plugins/admin/ogroups/class_ogroup.inc:315
 #, fuzzy
-msgid "Success"
-msgstr "Eksport zakończony powodzeniem"
+msgid "winstations"
+msgstr "Stacja Windows"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "terminale"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
-#, fuzzy
-msgid "Password change"
-msgstr "Brak uprawnień do zmiay hasła"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "telefony"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "drukarki"
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "Obecne hasło"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "i"
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Nowe hasło"
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
+msgstr "Nieistniejące dn:"
 
-#: ihtml/themes/default/password.tpl:85
+#: plugins/admin/ogroups/class_ogroup.inc:629
 #, fuzzy
-msgid "again"
-msgstr "Główne"
+msgid "You can combine two different object types at maximum, only!"
+msgstr "Można połączyć maksymalnie tylko 2 różne typy obiektów!"
 
-#: ihtml/themes/default/password.tpl:86
-#, fuzzy
-msgid "New password repeated"
-msgstr "Nowe hasło"
+#: plugins/admin/ogroups/class_ogroup.inc:763
+msgid "Object group generic"
+msgstr "Podstawowa grupa obiektu"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "Przechowywanie hasła"
+#: plugins/admin/ogroups/class_ogroup.inc:774
+msgid "Member"
+msgstr "Członek"
 
-#: ihtml/themes/default/password.tpl:100
-#, fuzzy
-msgid "Change"
-msgstr "Kanał"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "Wybierz obiekty do dodania"
 
-#: ihtml/themes/default/password.tpl:101
-#, fuzzy
-msgid "Click here to change your password"
-msgstr "Brak uprawnień do zmiany własnego hasła"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "Wybierz aby zobaczyć departamenty"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-#, fuzzy
-msgid "Copy & paste wizard"
-msgstr "Kreator Copy &amp; paste"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Pokaż departamenty"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
-"Niektóre wartości muszą być unikalne w całym katalogu, podczas gdy niektóre "
-"kombinacje nie mają sensu. GOsa pokazuje dotyczące atrybuty. Proszę poprawić "
-"wartości poniżej aby utrzymać zgodność z regułami."
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "Wybierz aby zobaczyć konta GOsa"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Pokaż ludzi"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "Wybierz aby zobaczyć grupy GOsa"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-#, fuzzy
-msgid "Cancel all"
-msgstr "Anuluj"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Pokaż grupy"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr "Operacja zakończona"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Wybież aby zobaczyć aplikacje"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr "Twoja sesja w GOsa wygasła!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Pokaż aplikacje"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
-"Ostatnia interakcja z interfejsem GOsa była już jakiś czas temu. Z powodów "
-"bezpieczeństwa sesja została zamknięta. Aby kontynuować proszę zalogować się "
-"ponownie."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Proszę aby zobaczyć serwery"
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr "Zaloguj się ponownie"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Pokaż serwery"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr "Obecnie edytujesz bazę danych. Czy chcesz porzucić zmiany?"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "Wybierz aby zobaczyc stacje robocze"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Główne"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Pokaż stacje robocze"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Pomoc"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "Wybierz aby zobaczyć terminale"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Wyloguj"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Pokaż terminale"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Zalogowano:"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "Wybierz aby zobaczyć drukarki"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Pokaż drukarki"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "Wybież aby zobaczyć telefony"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "Proszę wybrać sposób reakcji dla tej sesji"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Pokaż telefony"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-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"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "Wyświetl obiekty departamentu"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-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"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "Wyświetl obiekty pasujące"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Ustaw"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "Wyrażenie regularne dla dopasowania nazw obiektów"
 
-#: ihtml/themes/default/remove.tpl:6
+#: plugins/admin/ogroups/remove.tpl:7
 msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"To może być używane przez kilka grup. Proszę upewnić się czy kontynuować, "
-"gdyż nie ma operacji powrotu."
-
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-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ć."
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
+msgstr "Proszę upewnić się czy kontynuować, gdyż nie ma możliwości powrotu."
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Usuń"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Nazwa grupy"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr "Nie można otworzyć podanego pliku. Sprawdź istnienie i uprawnienia"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+#, fuzzy
+msgid "Please enter the new object group name"
+msgstr "Proszę podać nową nazwę."
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr "Nie można czytać certyfkatu / lub podano pusty ciąg znaków"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Nazwa grupy"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
-"Nie można załadować certyfikatu, prawdopodobnie niewspierany format (użyj "
-"PEM/DER)"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Tekst opisowy dla tej grupy"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr "Format musi być PEM, aby wyświetlić informacje certyfikatu"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Wybierz poddrzewo do umieszczenia grupy"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "Nie można utworzyć/otworzyć Pliku"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Dodaj członka"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr "Nie załadowano prawidłowego certyfikatu"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr "Lista grupy obiektów"
 
-#: include/utils/class_msgPool.inc:14
-#, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr "Nazwa grupy obiektów"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
-#, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Departamenty"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
+msgstr "Zaznacz aby zobaczyć grupy zawierające użytkowników"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Pokaż grupy zawierające użytkowników"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
+msgstr "Zaznacz aby zobaczyć grupy zawierające grupy"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Pokaż grupy zawierające grupy"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
+msgstr "Zaznacz aby zobaczyć grupy zawierające aplikacje"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Pokaż grupy zawierające aplikacje"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
+msgstr "Zaznacz aby zobaczyć grupy zawierające departamenty"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Pokaż grupy zawierające departamenty"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "Brak uprawnień do tworzenia telefonu w tym elemencie."
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
+msgstr "Zaznacz aby zobaczyć grupy zawierające serwery"
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Pokaż grupy zawierające serwery"
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
+msgstr "Zaznacz aby zobaczyć grupy zawierające stacje robocze"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Pokaż grupy zawierające stacje robocze"
 
-#: include/utils/class_msgPool.inc:98
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+msgid "Select to see groups containing windows workstations"
+msgstr "Zaznacz aby zobaczyć grupy zawierające stacje robocze"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "Connection information"
-msgstr "Informacje osobiste"
+msgid "Show groups containing windows workstations"
+msgstr "Pokaż grupy zawierające stacje robocze"
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Nie można połączyć się z serwerem baz danych!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
+msgstr "Zaznacz aby zobaczyć grupy zawierające terminale"
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "Nie można wybrać bazy danych!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Pokaż grupy zawierające terminale"
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
+msgstr "Zaznacz aby zobaczyć grupy zawierające drukarki"
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "Nie można wybrać bazy danych!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
+msgstr "Pokaż grupy zawierające drukarki"
 
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Pole 'Fax' zawiera nieprawidłowy numer telefonu."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
+msgstr "Zaznacz aby zobaczyć grupy zawierające telefony"
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "Polecenie '%s' podane jako CHECK dla dodatku '%s' nie istnieje."
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
+msgstr "Pokaż grupy zawierające telefony"
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Wartość podana jako 'UID' jest za mała."
-
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
-msgstr ""
-
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Wartość podana jako 'UID' jest za mała."
-
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr ""
-"PHP musi być w wersji 4.1.0 lub wyższej z powodu używanych funkcji i błędów "
-"w języku PHP."
-
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
-
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "Już istnieje osoba z takim samym loginem w bazie."
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "Edytuj ten obiekt"
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Wymagane pole 'Nazwa' jest puste."
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "Usuń ten obiekt"
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+#, fuzzy
+msgid "You are not allowed to remove this entry."
+msgstr "Brak uprawnień do usunięcia tego elementu!"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "Pole 'Nazwa' zawiera niedozwolone znaki."
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+#, fuzzy
+msgid "Number of listed object groups"
+msgstr "Nazwa grupy obiektów"
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
+msgstr "Kolejka telefoniczna"
 
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "Brak uprawnień do zmiay hasła"
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr "System"
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Rozszerzenie inwentarza"
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Urządzenia"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Dodaj"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Startup"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Dodaj"
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "Podsumowanie"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "Usuń"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Terminale"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Ustaw"
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "Departamenty"
 
-#: include/utils/class_msgPool.inc:274
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
 #, fuzzy, php-format
-msgid "Edit..."
-msgstr "Edytuj"
+msgid "You're about to delete the following entry %s"
+msgstr "Zamierzasz usunąć element %s."
 
-#: include/utils/class_msgPool.inc:274
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
 #, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Edytuj użytkownika"
+msgid "You're about to delete the following entries %s"
+msgstr "Zamierzasz usunąć element %s."
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "To konto nie posiada poprawnych rozszerzeń GOsa."
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr "Zamierzasz usunąć całe poddrzewo LDAP umieszczone pod '%s'."
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
+#: plugins/admin/departments/tabs_department.inc:55
+#, fuzzy
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
 msgstr ""
-"To konto posiada rozszerzenia posix. Można je wyłączyć klikająć poniżej."
+"Próba przeniesienia drzewa nieudana. Docelowe drzewo jest poddrzewem w "
+"drzewie źródłowym."
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
-msgstr ""
-"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
-"konto Samba/Środowisko."
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#, fuzzy
+msgid "You are currently moving/renaming this department."
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
+#: plugins/admin/departments/dep_move_confirm.tpl:5
 msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
-"To konto nie posiada rozszerzenia posix. Można je włączyć klikająć poniżej."
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
 msgstr ""
-"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
-"konto Samba/Środowisko."
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
+#: plugins/admin/departments/dep_move_confirm.tpl:11
 msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
-"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
-"konto Samba/Środowisko."
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Ustawienia Aplikacji"
-
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Ustawienia Posix"
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "Wymagane pole 'Nazwa' jest puste."
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-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/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "Wymagane pole 'Opis' nie jest wypełnione."
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Styczeń"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+#, fuzzy
+msgid "Fatal error"
+msgstr "Terminal Server"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "Luty"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+#, fuzzy
+msgid "Cannot find an unused tag for this administrative unit!"
+msgstr ""
+"Błąd krytyczny: Nie można znaleźć nieużywnego znacznika dla jednostki "
+"administracyjnej!"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Marzec"
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
+msgstr "Zaznaczanie '%s'."
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "Kwiecień"
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr "Przenoszenie '%s' do '%s'"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Maj"
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr "BŁĄD kopiowania %s, anulowanie operacji"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Czerwiec"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Kraj"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Lipiec"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Telefon"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Sierpień"
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "Nazwa departamentu"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "Wrzesień"
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Kategoria"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Październik"
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "Ustawienia administracyjne"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "Listopad"
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
+msgstr "Obiekt '%s' jest już zaznaczony"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Grudzień"
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
+msgstr "Dodawanie znacznika (%s) do obiektu '%s'"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "Nazwisko"
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
+msgstr "Usuwanie znacznika z obiektu '%s'"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Monday"
-msgstr "miesiąc"
+#: plugins/admin/departments/remove.tpl:6
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
+msgstr ""
+"Operacja odnosi sie do 'wszystkich' kont, systemów, etc w tym poddrzewie. "
+"Proszę upewnić się czy kontynuować, gdyż nie ma operacji powrotu."
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
+"Przed wykonaniem tej operacji zaleca się wykonanie kopii bezpieczeństwa "
+"drzewa LDAP. Naciśnij 'Usuń' aby kontynuować, lub 'Anuluj' aby przerwać."
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Wednesday"
-msgstr "Środa"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "Lista departamentów"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
-msgstr ""
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "Wyrażenie regularne dla dopasowania nazw departamentów"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
-msgstr ""
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "departament"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
-msgstr ""
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "Nazwa departamentu"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "read operation"
-msgstr "Opcje poczty"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "Nazwa tworzonego poddrzewa"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
-msgstr ""
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "Tekst opisujący departament"
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "modify operation"
-msgstr "Informacje osobiste"
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "Kategoria dla tego poddrzewa"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "delete operation"
-msgstr "Wybierz aby zobaczyc stacje robocze"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr "Wybierz poddrzewo do umieszczenia departamentu"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "search operation"
-msgstr "Konto wygasa po"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "Stan w którym jest umieszczone to poddrzewo"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Autentykacja Nagios"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "Lokalizacja tego poddrzewa"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "Zapytanie do bazy danych nieudane"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "Kod pocztowy tego poddrzewa"
 
-#: include/utils/class_msgPool.inc:374
-#, fuzzy
-msgid "LDAP operation failed!"
-msgstr "Zapytanie do bazy danych nieudane"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "Bazowy numer telefonu tego poddrzewa"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
-#, fuzzy
-msgid "Configuration error"
-msgstr "Plik konfiguracyjny"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "Bazowy numer faxu tego poddrzewa"
 
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
-msgstr ""
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
+msgstr "Zaznacz departament jako niezależną jednostkę administracyjną"
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
-msgstr ""
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Zarządzanie departamentem"
 
-#: include/class_gosaSupportDaemon.inc:745
-#, php-format
-msgid "Cannot send abort event for entry: %s"
-msgstr ""
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr "Przetwarzam zadaną operację"
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
+"Twoja przeglądarka nie obsługuje iframes, proszę użyć tego linku aby wykonać "
+"żądaną operację."
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "Proces usuwania został anulowany przez dodatek '%s': %s"
-
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+msgid "Acl"
 msgstr "ACL"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "Zależności"
+#: plugins/admin/acl/class_aclRole.inc:26
+#, fuzzy
+msgid "Access control list templates"
+msgstr "Kontrola dostępu"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "Nie można stworzyć pliku '%s'."
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "ACLe"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Nie można stworzyć pliku '%s'."
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+msgid "All categories"
+msgstr "Wszystkie kategorie"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Nie można stworzyć pliku '%s'."
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
+msgstr "Resetuj ACL'e"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
+msgid "One level"
+msgstr "Jeden poziom"
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+msgid "Current object"
+msgstr "Obecny obiekt"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Nie można stworzyć pliku '%s'."
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+msgid "Complete subtree"
+msgstr "Pełne poddrzewo"
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr "Pełne poddrzewo (trwałe)"
 
-#: include/class_hostActionQueue.inc:277
-#, fuzzy, php-format
-msgid "Entry with id '%s' not found."
-msgstr "Import LDAP z dn '%s' nieudany."
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr "Góra"
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
+msgstr "W dół"
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+msgid "Edit ACL"
+msgstr "Edytuj ACL"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, fuzzy, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr "Plik pakietu '%s' nie istnieje."
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+msgid "Delete ACL"
+msgstr "Usuń ACL"
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
+msgstr "Brak ustawień ACL w tej kategorii"
 
-#: include/class_CopyPasteHandler.inc:126
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
 #, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
+msgid "Contains ACLs for these objects: %s"
+msgstr "Zawiera ACL'e w tych kategoriach: %s"
 
-#: include/class_CopyPasteHandler.inc:158
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+msgid "Edit categories ACLs"
+msgstr "Edytuj kategorie ACL'i"
+
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
+msgstr "Wyczyść ACL'e kategorii"
+
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
 #, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
-msgstr ""
+msgid "Edit ACL for '%s', scope is '%s'"
+msgstr "Edytuj ACL dla '%s', zakres to '%s'"
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
+msgstr "Wszystkie obiekty w obecnym poddrzewie"
+
+#: plugins/admin/acl/class_aclRole.inc:618
 #, fuzzy
-msgid "Internal error"
-msgstr "Terminal Server"
+msgid "Object in use"
+msgstr "Nazwa obiektu"
 
-#: include/class_CopyPasteHandler.inc:175
+#: plugins/admin/acl/class_aclRole.inc:618
 #, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+#, fuzzy
+msgid "ACL roles"
+msgstr "ACLe"
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
+#: plugins/admin/acl/class_aclRole.inc:700
+#, fuzzy
+msgid "Acl roles"
+msgstr "Profil FAI"
+
+#: plugins/admin/acl/remove.tpl:6
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"To zawiera cały system i informacje instalacyjne. Proszę upewnić się, że "
+"faktycznie chcesz wykonać tą operację. Nie ma możliwości odwrócenia tego "
+"procesu."
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "Nie można otworzyć pliku '%s'."
+#: plugins/admin/acl/tabs_acl_role.inc:28
+#, fuzzy
+msgid "ACL Templates"
+msgstr "Szablony"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Zamierzasz skopiować wpis '%s'."
+#: plugins/admin/acl/class_divListACL.inc:51
+msgid "List of acl"
+msgstr "Lista ACL"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Zamierzasz skopiować wpis '%s'."
+#: plugins/admin/acl/class_divListACL.inc:52
+msgid "List of acls"
+msgstr "Lista ACLi"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr "Wklej"
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "Ignoruj poddrzewa"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr "Nie można wkleić"
+#: plugins/admin/acl/class_divListACL.inc:84
+msgid "Display acls matching"
+msgstr "Wyświetl ACL pasujące"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:243
+#, fuzzy
+msgid "Edit acl role"
+msgstr "Edytuj makro"
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
-#, fuzzy, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
-msgstr ""
-"Funkcjonalność snapshot jest włączona, lecz wymagana zmienna '%s' nie jest "
-"skonfigurowana w gosa.conf."
+#: plugins/admin/acl/class_divListACL.inc:253
+#, fuzzy
+msgid "Delete acl role"
+msgstr "Usuń makro"
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:265
+#, fuzzy
+msgid "Edit acl"
+msgstr "Edytuj klasę"
 
-#: include/class_plugin.inc:1613
+#: plugins/admin/acl/class_divListACL.inc:269
 #, fuzzy
-msgid "from"
-msgstr "losowy"
+msgid "Delete acl"
+msgstr "Usuń klasę"
 
-#: include/php_setup.inc:91
-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/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+msgid "ACL management"
+msgstr "Zarządzanie ACL"
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:26
+msgid "ACLs"
+msgstr "ACLe"
 
-#: include/php_setup.inc:96
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
 #, fuzzy
-msgid "Send bugreport"
-msgstr "Nadawca"
-
-#: include/php_setup.inc:101
-msgid "Toggle information"
-msgstr "Przełącz informacje"
+msgid "Manage access control lists"
+msgstr "Kontrola dostępu"
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "błąd PHP:"
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: include/php_setup.inc:130
-msgid "class"
-msgstr "klasa"
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "funkcja"
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, php-format
+msgid "You're about to delete the acl %s."
+msgstr "Zamierzasz usunąć ACL '%s'."
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "statyczna"
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Lista grup"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "metoda"
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "Nazwa grupy / Departament"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr "Śledzenie"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr "Zaznacz aby zobaczyć grupy które są podstawowymi grupami użytkowników"
 
-#: include/php_setup.inc:179
-msgid "File"
-msgstr "Plik"
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Pokaż podstawowe grupy"
 
-#: include/php_setup.inc:179
-msgid "Line"
-msgstr "Linia"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Zaznacz aby zobaczyć grupy które posiadają mapowania grup samba"
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Typ"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Pokaż grupy samba"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "Argumenty"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "Zaznacz aby zobaczyć grupy które posiadają skonfigurowane aplikacje"
 
-#: include/class_acl.inc:26
-msgid "Access control"
-msgstr "Kontrola dostępu"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Pokaż grupy aplikacji"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-#, fuzzy
-msgid "Manage access control lists"
-msgstr "Kontrola dostępu"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "Zaznacz aby zobaczyć grupy które zawierają ustawienia poczty"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-msgid "All categories"
-msgstr "Wszystkie kategorie"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Pokaż grupy pocztowe"
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
-msgstr "Resetuj ACL'e"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "Zaznacz aby zobaczyć grupy, które posiadają tylko aspekty funkcjonalne"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-msgid "One level"
-msgstr "Jeden poziom"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Pokaż grupy funkcjonalne"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-msgid "Current object"
-msgstr "Obecny obiekt"
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "Nazwa grupy"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-msgid "Complete subtree"
-msgstr "Pełne poddrzewo"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Wybierz użytkowników do dodania"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr "Pełne poddrzewo (trwałe)"
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr "Szukaj wewnątrz tego poddrzewa"
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr "Użyj ACL zdefiniowanego w tej roli"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Wyświetl użytkowników departamentu"
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Użytkownicy"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "Wyrażenie regularne do dopasowania nazw użytkowników"
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
 msgid "Groups"
 msgstr "Grupy"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr "Góra"
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
+msgstr ""
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
-msgstr "W dół"
+#: plugins/admin/groups/class_groupManagement.inc:434
+#, php-format
+msgid "You're about to delete the group '%s'."
+msgstr "Właśnie zamierzasz usunąć grupę '%s'."
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "edytuj"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
+msgstr ""
+"To może być podstawowa grupa użytkownika. Proszę upewnić się czy aby na "
+"pewno kontynuować, gdyż tej operacji nie można cofnąć."
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
-msgid "Edit ACL"
-msgstr "Edytuj ACL"
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
+msgstr "Ustawienia grupy"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "Usuń"
-
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
-msgid "Delete ACL"
-msgstr "Usuń ACL"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "Posixowa nazwa grupy"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
-msgstr "Brak ustawień ACL w tej kategorii"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
+msgstr "Zwyczajowo ID są generowane automatycznie, wybierz aby podać ręcznie"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
-msgstr "Zawiera ACL'e w tych kategoriach: %s"
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Wymuś GID"
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
-msgid "Edit categories ACLs"
-msgstr "Edytuj kategorie ACL'i"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "Wymuś numer ID"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
-msgstr "Wyczyść ACL'e kategorii"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Wybierz aby utworzyć grupę samba"
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
-msgstr "Edytuj ACL dla '%s', zakres to '%s'"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "w domenie"
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
-msgstr "Wszystkie obiekty w obecnym poddrzewie"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "Członkowie są w grupie odbioru telefonu"
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-#, fuzzy
-msgid "Show/Hide Advanced Settings"
-msgstr "Zaawansowane ustawienia telefonu"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr "Członkowie są w grupie nagios."
 
-#: include/class_acl.inc:690
-msgid "Create objects"
-msgstr "Utwórz obiekty"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Członkowie grupy"
 
-#: include/class_acl.inc:691
-msgid "Move objects"
-msgstr "Przenieś obiekty"
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Administracja Grupą"
 
-#: include/class_acl.inc:692
-msgid "Remove objects"
-msgstr "Usuń obiekty"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+#, fuzzy
+msgid "Configuration error"
+msgstr "Plik konfiguracyjny"
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
-msgstr "Modyfikowalne przez właściciela"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#, fuzzy
+msgid "Cannot find group SID in your configuration!"
+msgstr ""
+"Nie można znaleźć SID tych grup ani w  LDAP, ani w pliku konfiguracyjnym!"
 
-#: include/class_acl.inc:697
-msgid "Move object"
-msgstr "Przenieś obiekt"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Podane 'dn' nie jest grupą."
 
-#: include/class_acl.inc:698
-msgid "Remove object"
-msgstr "Usuń obiekt"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Grupa Samba"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "czytanie"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Administratorzy domeny"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "zapisywanie"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Użytkownicy domeny"
 
-#: include/class_acl.inc:710
-#, fuzzy
-msgid "Complete object"
-msgstr "Utwórz obiekty"
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Goście domeny"
 
-#: include/class_acl.inc:826
+#: plugins/admin/groups/class_groupGeneric.inc:355
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
-msgstr "Nieznany typ ACL '%s', Nie wiem co z tym zrobic."
+msgid "Special group (%d)"
+msgstr "Specjalna grupa (%d)"
 
-#: include/class_acl.inc:869
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "! nieznane id"
+
+#: plugins/admin/groups/class_groupGeneric.inc:547
 #, php-format
-msgid "Unknown entry '%s'!"
-msgstr "Nieznany wpis  '%s'!"
+msgid "Search returned too many results. Not displaying more than %s entries!"
+msgstr ""
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
+#: plugins/admin/groups/class_groupGeneric.inc:728
 #, fuzzy, php-format
-msgid "Role: %s"
-msgstr "Pełniona funkcja"
+msgid "Cannot find any SID for '%s'!"
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Zawiera ustawienia dla tych obiektów: %s"
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#, fuzzy
+msgid "Cannot allocate a free ID!"
+msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID"
 
-#: include/class_acl.inc:948
-msgid "Members:"
-msgstr "Członkowie:"
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+msgid "Generic group settings"
+msgstr "Ogólne ustawienia grupy"
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
-msgstr "ACL jest prawidłowy dla wszystkich użytkowników"
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+msgid "Phone pickup group"
+msgstr "Grupie odbioru telefonu"
 
-#: include/class_acl.inc:1115
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+msgid "Nagios group"
+msgstr "Grupa nagios"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1031
+msgid "Group member"
+msgstr "Członek grupy"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+msgid "Samba group type"
+msgstr "Typ grupy Samba"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1033
 #, fuzzy
-msgid "Access control list"
-msgstr "Kontrola dostępu"
+msgid "Samba domain name"
+msgstr "Katalog domowy Samba"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+msgid "Samba SID"
+msgstr "Samba SID"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
 #, fuzzy
-msgid "ACL roles"
-msgstr "ACLe"
+msgid "Language setup"
+msgstr "Język"
 
-#: include/class_acl.inc:1123
+#: setup/class_setupStep_Language.inc:42
 #, fuzzy
-msgid "Role name"
-msgstr "Zmień nazwę"
+msgid "This step allows you to select your preferred language."
+msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych grup."
 
-#: include/class_acl.inc:1124
+#: setup/class_setupStep_Language.inc:47
 #, fuzzy
-msgid "Role description"
-msgstr "Opis jednostki"
+msgid "Automatic"
+msgstr "automatyczne"
 
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
-msgstr "Wszystkie obiekty w tej kategorii"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
+msgstr ""
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr "Nieznane"
+#: setup/setup_welcome.tpl:11
+#, fuzzy
+msgid "Create a basic, single site configuration"
+msgstr "Konfiguracja bazy FAX"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Użytkownik bazy logowania"
-
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: include/class_log.inc:124
+#: setup/setup_welcome.tpl:20
 #, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "Podana nazwa jest nieprawidłowa"
+msgid "Find every possible configuration error"
+msgstr "Plik konfiguracyjny"
 
-#: include/class_log.inc:145
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
+msgstr ""
+
+#: setup/setup_welcome.tpl:25
+#, fuzzy
+msgid "To continue..."
+msgstr "Ustawienia trwają..."
+
+#: setup/setup_welcome.tpl:28
 msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Nie można połączyć się z serwerem baz danych!"
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
+msgstr ""
 
-#: include/class_log.inc:165
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+#, fuzzy
+msgid "GOsa settings 1/3"
+msgstr "Ustawienia użytkownika"
+
+#: setup/class_setupStep_Config1.inc:76
+#, fuzzy
+msgid "GOsa generic settings"
+msgstr "Ogólne ustawienia użytkownika"
+
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "Nie"
+
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "Tak"
+
+#: setup/class_setupStep_Config1.inc:118
 #, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "Nie można wybrać bazy %s na %s."
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "Port sieve musi być liczbą."
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
 msgstr ""
 
-#: include/class_log.inc:218
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
 #, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "Nie można wybrać bazy %s na %s."
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "Prosze wyszczególnić długość pamięci."
 
-#: include/class_multi_plug.inc:362
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "Proszę wybrać grupę obiektów"
+
+#: setup/class_setupStep_Config1.inc:130
 #, fuzzy
-msgid "You are currently editing mutliple entries."
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+msgid "Uid base must be numeric"
+msgstr "Limit czasu musi być liczbą"
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:134
 #, fuzzy
-msgid "Password reset"
-msgstr "Hasło wygasa"
+msgid "The given password minimum length is not numeric."
+msgstr "Port sieve musi być liczbą."
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:137
 #, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło"
+msgid "The given password differ value is not numeric."
+msgstr "Port sieve musi być liczbą."
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
 msgstr ""
 
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "Błąd XML w guide.xml: %s w linii %d"
-
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
-msgstr "Pomoc nie jest dostępna dla tego dodatku."
-
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
-msgstr "poprzednie"
+#: setup/setup_ldap.tpl:25
+#, fuzzy
+msgid "LDAP connection"
+msgstr "Rozłączenie"
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
-msgstr "następne"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Nazwa lokalizacji"
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
-msgstr "%s wyników zapytania ze słowem %s"
+#: setup/setup_ldap.tpl:37
+#, fuzzy
+msgid "Connection URL"
+msgstr "Połączeniowy URL"
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr "%s%% trafień w pliku %s"
+#: setup/setup_ldap.tpl:45
+#, fuzzy
+msgid "TLS connection"
+msgstr "Połączenie dzwonienia..."
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "Idź do głównego departamentu"
+#: setup/setup_ldap.tpl:65
+#, fuzzy
+msgid "Reload"
+msgstr "Odczyt"
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr "Główny"
+#: setup/setup_ldap.tpl:69
+#, fuzzy
+msgid "Authentication"
+msgstr "Autentykacja Nagios"
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "Idź jeden departament wyżej"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "DN Administratora"
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "Przejdź do departamentu użytkowników"
+#: setup/setup_ldap.tpl:78
+#, fuzzy
+msgid "Select user"
+msgstr "Usuń użytkownika"
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
-msgstr "Katalog domowy"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "Przeładuj listę"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Hasło Administratora"
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "Wyślij"
+#: setup/setup_ldap.tpl:101
+#, fuzzy
+msgid "Schema based settings"
+msgstr "Ustawienia Samba"
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
-msgid "Restore"
-msgstr "Odtwórz"
-
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
-msgstr "Otwórz snapshoty usuniętych obiektów"
+#: setup/setup_ldap.tpl:117
+#, fuzzy
+msgid "Current status"
+msgstr "Ustaw status"
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
-msgstr "Odtwórz snapshot"
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
+msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create snapshot"
-msgstr "Utwórz spanshot"
+#: setup/setup_migrate.tpl:33
+#, fuzzy
+msgid "Check again"
+msgstr "Sprawdź"
 
-#: include/class_MultiSelectWindow.inc:680
-msgid "Create a new snapshot from this object"
-msgstr "Utwórz nowy snapshot z tego obiektu"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
+msgstr ""
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "Błąd XML w pliku gosa.conf: %s w linii %d"
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
+msgstr ""
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
 
-#: include/class_config.inc:228
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
 #, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgid "Select all"
+msgstr "Wybierz"
+
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
 msgstr ""
-"Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem."
 
-#: include/class_config.inc:560
+#: setup/setup_migrate.tpl:72
 #, fuzzy
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "Brak parametru SID lub/i RIDBASE w konfiguracji!"
+msgid "Move selected workstations"
+msgstr "Wybierz aby zobaczyc stacje robocze"
 
-#: include/class_SnapShotDialog.inc:83
-#, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "Zamierzasz usunąć snapshot '%s'."
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
+msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
-msgid "Remove snapshot"
-msgstr "Usuń snapshot"
-
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
-msgstr "Y-m-d, H:i:s"
-
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Opis"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
+msgstr "Zamknij"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
+#: setup/setup_migrate.tpl:88
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:318
-#, 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'."
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "LDAP server returned: %s"
-msgstr "Serwer LDAP"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#, fuzzy
+msgid "Hide changes"
+msgstr "Open xchange"
 
-#: include/functions.inc:380 include/functions.inc:450
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
 #, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
-msgstr "Użytkownik /UID nie są unikalne. Proszę sprawdzić bazę LDAP."
+msgid "Show changes"
+msgstr "Pokaż pakiety"
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: include/functions.inc:605
-#, fuzzy, php-format
+#: setup/setup_migrate.tpl:142
 msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
-"Nie można pobrać informacji o blokadach w bazie LDAP. Proszę sprawdzić wpis "
-"'config' w gosa.conf!"
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "Zapisywanie zaczepu FAI nieudane"
+#: setup/setup_migrate.tpl:145
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "Usuwanie zaczepu FAI nieudane"
+#: setup/setup_migrate.tpl:148
+#, fuzzy
+msgid "Move selected users into this people tree"
+msgstr "Utwórz użytkownika z tego szablonu"
 
-#: include/functions.inc:691 include/functions.inc:736
-#, fuzzy, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr "Nie można pobrać informacji o quota dla '%s'."
+#: setup/setup_migrate.tpl:198
+#, fuzzy
+msgid "Next"
+msgstr "tekst"
 
-#: include/functions.inc:699
+#: setup/setup_migrate.tpl:199
 #, fuzzy
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr ""
-"Znaleziono wiele blokad dla obiektu do zablokowania. Taka sytuacja nie "
-"powinna się wydażyć - czyszczę wiele odwołań."
+msgid "Abort"
+msgstr "Port"
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Limit wielkości %d elementów został przekroczony!"
+#: setup/setup_migrate.tpl:201
+#, fuzzy
+msgid "Create a new GOsa administrator account"
+msgstr "Utwórz konto Netatalk"
 
-#: include/functions.inc:998
-#, php-format
+#: setup/setup_migrate.tpl:204
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
-"Ustaw nowy limit rozmiaru na %s i pokaż ten komunikat jeśli limit wciąż jest "
-"przekroczony"
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Konfiguruj"
-
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "niepełne"
-
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "błąd LDAP:"
+#: setup/setup_migrate.tpl:233
+#, fuzzy
+msgid "Password (again)"
+msgstr "Przechowywanie hasła"
 
-#: include/functions.inc:1254
+#: setup/setup_migrate.tpl:258
 msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
-"Problemy z serwerem LDAP oznaczają, że prawdopodobnie utracono ostatnie "
-"zmiany. Proszę sprawdzić konfiguracje LDAP w poszukiwaniu możliwych błędów i "
-"spróbować ponownie."
 
-#: include/functions.inc:1260
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
 msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
-"Proszę sprawdzić wprowadzane dane i poprawić błąd. Naciśnij 'OK' aby zamknąć "
-"to okno."
-
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr "Kontynuuj mimo wszystko"
-
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr "Edytuj mimo wszystko"
 
-#: include/functions.inc:1329
-#, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Zamierzasz skopiować wpis '%s'."
-
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr "Wpisów na stronie"
-
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr "Zastosuj filtr"
-
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+#, fuzzy
+msgid "Current"
+msgstr "Obecny obiekt"
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "Wersja deweloperska GOsa (Rev %s)"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#, fuzzy
+msgid "After migration"
+msgstr "Administracja użytkownikami"
 
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
+#: setup/setup_migrate.tpl:313
+msgid ""
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
 msgstr ""
 
-#: include/functions.inc:1950 include/functions.inc:1970
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
 #, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "Nie można stworzyć pliku '%s'."
+msgid "GOsa settings 3/3"
+msgstr "Ustawienia użytkownika"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
 msgstr ""
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Config3.inc:193
 #, fuzzy
-msgid "LDAP warning"
-msgstr "Menedżer LDAP"
+msgid "Session lifetime must be a numeric value."
+msgstr "Przyszłe dni muszą być liczbą."
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Config3.inc:197
 #, fuzzy
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr ""
-"Nie można pobrać informacji o schematach z serwera. Sprawdzenie schematów "
-"niemożliwe!"
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "Przyszłe dni muszą być liczbą."
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+#, fuzzy
+msgid "LDAP inspection"
+msgstr "Inspekcja instalacji PHP"
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
 msgstr ""
 
-#: include/functions.inc:2320
-#, fuzzy, php-format
-msgid "Missing required object class '%s'!"
-msgstr "Wyświetl szablony FAI"
+#: setup/class_setupStep_Migrate.inc:113
+#, fuzzy
+msgid "Checking for root object"
+msgstr "Sprawdzam wsparcie dla iconv"
 
-#: include/functions.inc:2322
-#, php-format
-msgid "Missing optional object class '%s'!"
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/functions.inc:2328
-#, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Sprawdzam wsparcie dla iconv"
 
-#: include/functions.inc:2330
-#, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
-msgstr ""
-
-#: include/functions.inc:2334
-#, fuzzy, php-format
-msgid "Class(es) available"
-msgstr "Plik jest dostępny"
+#: setup/class_setupStep_Migrate.inc:131
+#, fuzzy
+msgid "Checking for invisible users"
+msgstr "Sprawdzam wsparcie dla iconv"
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:137
+#, fuzzy
+msgid "Checking for super administrator"
+msgstr "Sprawedzam dodatkowe programy"
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:143
+#, fuzzy
+msgid "Checking for users outside the people tree"
+msgstr "Sprawdzam moduł cups"
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:149
+#, fuzzy
+msgid "Checking for groups outside the groups tree"
+msgstr "Sprawdzam moduł cups"
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Niemiecki"
+#: setup/class_setupStep_Migrate.inc:161
+#, fuzzy
+msgid "Checking for duplicate uid numbers"
+msgstr "Sprawdzam funkcję %s"
 
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Francuski"
+#: setup/class_setupStep_Migrate.inc:167
+#, fuzzy
+msgid "Checking for duplicate gid numbers"
+msgstr "Sprawdzam funkcję %s"
 
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "Włoski"
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+#, fuzzy
+msgid "LDAP query failed"
+msgstr "Zapytanie do bazy danych nieudane"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Hiszpański"
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr ""
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Angielski"
+#: setup/class_setupStep_Migrate.inc:213
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'."
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Holenderski"
+#: setup/class_setupStep_Migrate.inc:262
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'."
 
-#: include/functions.inc:2391
-msgid "Polish"
-msgstr "Polski"
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Niepowodzenie"
 
-#: include/functions.inc:2392
-msgid "Swedish"
+#: setup/class_setupStep_Migrate.inc:319
+#, php-format
+msgid ""
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
 
-#: include/functions.inc:2393
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
 #, fuzzy
-msgid "Chinese"
-msgstr "Chipset"
-
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Rosyjski"
+msgid "Migrate"
+msgstr "Utwórz"
 
-#: include/functions.inc:2544
+#: setup/class_setupStep_Migrate.inc:387
 #, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "Ustawianie hasła nieudane, Odpowiedź serwera LDAP '%s'."
-
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
-msgstr "Polecenie '%s', podane jako POSTMODIFY dla dodatku '%s' nie istnieje."
-
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
-msgstr ""
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Zamierzasz skopiować wpis '%s'."
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#, fuzzy
+msgid "Move"
+msgstr "Tryb"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
 
-#: include/class_ldap.inc:579
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
 msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
 
-#: include/class_ldap.inc:627
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgid "Found %s user(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "podczas działania na '%s' używając serwera LDAP '%s'"
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "Utwórz"
 
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
-msgstr "podczas połączenia z serwerem LDAP '%s'"
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#, fuzzy, php-format
+msgid "Cannot migrate department '%s':"
+msgstr "Utwórz nowy departament"
 
-#: include/class_ldap.inc:935
+#: setup/class_setupStep_Migrate.inc:727
 #, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+msgid "Found %s department(s) that will not be visible in GOsa."
 msgstr ""
-"To nie jest poprawne DN: '%s'. Blok dla importu powinien zaczynać się "
-"'dn: ...' w linii %s"
 
-#: include/class_ldap.inc:964
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:945
 #, 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 "Cannot add ACL for user '%s':"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
-msgstr "Ustawienia użytkownika"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Password error"
+msgstr "Hasło wygasa"
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
-msgstr "Nazwisko"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
+msgstr "Hasła podane jako nowe i powtórzone nie zgadzają się!"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr "Imię"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Input error"
+msgstr "błąd PHP:"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Login"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Specify a valid user ID!"
+msgstr "Proszę podać prawidłową nazwę użytkownika!"
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
-msgstr "Wyczyść hasło"
+#: setup/class_setupStep_Migrate.inc:1019
+#, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr "Ustaw nowe hasło"
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "Przejdź do domowego departamentu użytkowników"
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Osobiste zdjęcie"
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "Zdjęcie użytkownika"
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+#, fuzzy
+msgid "to"
+msgstr "Zatrzymaj"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Usuń obrazek"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
+msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Certyfikaty"
+#: setup/class_setupStep_Migrate.inc:1115
+#, fuzzy
+msgid "Group will be moved from"
+msgstr "Będzie możliwość odtworzenia z"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Standardowy certyfikat"
+#: setup/class_setupStep_Migrate.inc:1162
+#, fuzzy
+msgid "User will be moved from"
+msgstr "Użyj członków z"
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Usuń"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
+msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "certyfikat S/MIME"
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
+msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "certyfikat PKCS12"
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+#, fuzzy
+msgid "Try to create root object"
+msgstr "Utwórz obiekty"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "Nmer seryjny certyfikatu"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Przenoszenie '%s' do '%s'"
+
+#: setup/setup_frame.tpl:12
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Ustawienia Aplikacji"
+msgid "GOsa setup wizard"
+msgstr "Podgląd pomocy GOsa"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "kobieta"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Installation"
+msgstr "Stacja Windows"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "mężczyzna"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Steps"
+msgstr "Systemy"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:91
+#, fuzzy
+msgid "UNIX accounts/groups"
+msgstr "Konta Unix"
 
-#: plugins/personal/generic/class_user.inc:492
+#: setup/class_setupStep_Feedback.inc:93
 #, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Proszę podać poprawny numer seryjny"
+msgid "Samba management"
+msgstr "Zarządzanie systemem"
 
-#: plugins/personal/generic/class_user.inc:536
-msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:95
+#, fuzzy
+msgid "Mailsystem management"
+msgstr "Zarządzanie systemem"
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "Certyfikat jest ważny od %s do %s i jest obecnie %s."
+#: setup/class_setupStep_Feedback.inc:97
+#, fuzzy
+msgid "FAX system administration"
+msgstr "Administracja użytkownikami"
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "prawidłowy"
+#: setup/class_setupStep_Feedback.inc:99
+#, fuzzy
+msgid "Asterisk administration"
+msgstr "Administracja użytkownikami"
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "nieprawidłowy"
+#: setup/class_setupStep_Feedback.inc:101
+#, fuzzy
+msgid "System inventory"
+msgstr "Usuń inwentarz"
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "Brak zainstalowanych certyfikatów"
+#: setup/class_setupStep_Feedback.inc:103
+#, fuzzy
+msgid "System-/Configmanagement"
+msgstr "Zarządzanie systemem"
+
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Książka adresowa"
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
 #, fuzzy
-msgid "Password method"
-msgstr "Przechowywanie hasła"
+msgid "Notification and feedback"
+msgstr "Powiadomienie wysłane!"
 
-#: plugins/personal/generic/class_user.inc:575
+#: setup/class_setupStep_Feedback.inc:112
 #, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "Ta aplikacja nie jest już dostępna."
+msgid "Get notifications or send feedback"
+msgstr "Ograniczenia dla nadawcy"
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "Brak uprawnień do usunięcia grupy obiektowej."
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+#, fuzzy
+msgid "Setup error"
+msgstr "Ustaw status"
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Imię"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Strona domowa"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Telefon"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Fax"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "Komórka"
+#: setup/class_setupStep_Feedback.inc:179
+#, fuzzy
+msgid "Please specify a valid email address."
+msgstr "Proszę podać prawidłową nazwę skryptu."
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Pager"
+#: setup/class_setupStep_Feedback.inc:183
+msgid ""
+"You have to select at least one of both options, subscribe or send feedback."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "Nie można otworzyć wybranego certyfikatu!"
+msgid "License"
+msgstr "Linia"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Jednostka"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Identyfikator budynku"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Ustawienia Samba"
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Wywołanie"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Ostatnia dostawa"
+#: setup/setup_config2.tpl:31
+#, fuzzy
+msgid "RID base"
+msgstr "Baza"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Lokalizacja osoby"
+#: setup/setup_config2.tpl:46
+#, fuzzy
+msgid "Workstation container"
+msgstr "Nazwa stacji roboczej"
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Opis jednostki"
+#: setup/setup_config2.tpl:61
+#, fuzzy
+msgid "Samba SID mapping"
+msgstr "Samba SID"
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Sektor"
+#: setup/setup_config2.tpl:71
+#, fuzzy
+msgid "Timezone"
+msgstr "Strefa czasowa użytkownika"
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Tytuł funkcjonalny"
+#: setup/setup_config2.tpl:74
+#, fuzzy
+msgid "Please choose your preferred timezone here"
+msgstr "Preferowany język"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Publicznie widoczne"
+#: setup/setup_config2.tpl:96
+#, fuzzy
+msgid "Additional GOsa settings"
+msgstr "Ustawienia Aplikacji"
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Ulica"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Pełniona funkcja"
+#: setup/setup_config2.tpl:112
+#, fuzzy
+msgid "Enable DNS extension"
+msgstr "Rozszerzenie inwentarza"
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Kod pocztowy"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "Rozszerzenie inwentarza"
 
-#: plugins/personal/generic/class_user.inc:1432
-msgid "Generic user settings"
-msgstr "Ogólne ustawienia użytkownika"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Zarządzanie typami mime"
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Moje konto "
+#: setup/setup_config2.tpl:148
+#, fuzzy
+msgid "Enable FAI release management"
+msgstr "Zarządzanie FAI"
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-msgid "User password"
-msgstr "Hasło użytkownika"
+#: setup/setup_config2.tpl:160
+#, fuzzy
+msgid "Enable user netatalk plugin"
+msgstr "Zarządzaj kontem Netatalk"
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr "Nazwisko"
+#: setup/setup_config2.tpl:171
+#, fuzzy
+msgid "Government mode"
+msgstr "do folferu"
 
-#: plugins/personal/generic/class_user.inc:1445
-msgid "User identification"
-msgstr "Identyfikacja użytkownika"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "Ustawienia pocztowe"
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Osobisty tytuł"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "Typ pocztowy"
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Tytuł naukowy"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "Adres domowy"
+#: setup/setup_config2.tpl:214
+#, fuzzy
+msgid "Vacation templates"
+msgstr "Szablon stacji roboczej"
 
-#: plugins/personal/generic/class_user.inc:1449
-msgid "Home phone number"
-msgstr "Numer telefonu domowego"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Departament"
+#: setup/setup_config2.tpl:240
+#, fuzzy
+msgid "Snapshots / Undo"
+msgstr "Tworzenie snapshot'u nieudane"
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Data urodzenia"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+#, fuzzy
+msgid "Enable snapshots"
+msgstr "Utwórz spanshot"
 
-#: plugins/personal/generic/class_user.inc:1454
-msgid "Gender"
-msgstr "Płeć"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+#, fuzzy
+msgid "Snapshot base"
+msgstr "Tworzenie snapshot'u nieudane"
 
-#: plugins/personal/generic/class_user.inc:1455
-msgid "Preferred language"
-msgstr "Preferowany język"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1456
-msgid "Department number"
-msgstr "Numer departamentu"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1457
-msgid "Employee number"
-msgstr "Numer pracownika"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "Adres email"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Typ pracownika"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Lokalizacja"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Stan"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1462
-msgid "Room number"
-msgstr "Numer pokoju"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1463
-msgid "Telefon number"
-msgstr "Numer telefonu"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
-msgid "Mobile number"
-msgstr "Telefon komórkowy"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1465
-msgid "Pager number"
-msgstr "Numer pagera"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1466
-msgid "User certificates"
-msgstr "Certyfikaty użytkownika"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "Adres pocztowy"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1469
-msgid "Fax number"
-msgstr "Numer fax"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
 
-#: plugins/personal/generic/password.tpl:2
-msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
 msgstr ""
-"Zmieniono metodę kodowania hasła w bazie ldap. Z tego powodu należy teraz "
-"podać ponownie swoje hasło. GOsa zakoduje to hasło używając wybranej metody."
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Powtórz nowe hasło"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Ustaw hasło"
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Informacje osobiste"
-
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
-msgstr "Preferowany język"
-
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Wybierz poddrzewo do umieszczenia konta."
+#: setup/setup_feedback.tpl:123
+#, fuzzy
+msgid "Features"
+msgstr "Przyszłość"
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
-msgstr "Wybierz bazę"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Adres"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Telefon prywatny"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Przechowywanie hasła"
+#: setup/setup_schema.tpl:3
+#, fuzzy
+msgid "Schema specific settings"
+msgstr "Ustawienia Samba"
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Edytuj certyfikaty"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Informacje organizacyjne"
+#: setup/setup_schema.tpl:16
+#, fuzzy
+msgid "Check status"
+msgstr "Ustaw status"
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "Numer departamentu"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "Numer pracownika"
+#: setup/setup_schema.tpl:23
+#, fuzzy
+msgid "Schema check failed"
+msgstr "Zapisywanie telefonu nieudane"
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "Numer pokoju"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+#: setup/setup_schema.tpl:35
 msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
-msgstr "Podane hasła 'Nowe hasło' oraz 'Powtórz nowe hasło' nie są itentyczne."
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:104
-#, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "Brak uprawnień do zmiany własnego hasła"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Edytuj"
+#: setup/class_setup.inc:196
+#, fuzzy
+msgid "Completed"
+msgstr "niepełne"
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Ogólne informacje o użytkowniku"
+#: setup/class_setupStep_Ldap.inc:53
+#, fuzzy
+msgid "LDAP setup"
+msgstr "Serwer LDAP"
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Zmień zdjęcie"
+#: setup/class_setupStep_Ldap.inc:54
+#, fuzzy
+msgid "LDAP connection setup"
+msgstr "Połączenie dzwonienia..."
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/class_setupStep_Ldap.inc:55
+#, fuzzy
+msgid ""
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
 msgstr ""
+"Poniższe pola pozwalają na podstawową konfigurację zachowania GOsa i "
+"wpływają na różne właściwości w głównej konfiguracji."
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
-msgstr "Nazwa Szablonu"
+#: setup/class_setupStep_Ldap.inc:105
+#, fuzzy, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Płeć"
+#: setup/class_setupStep_Ldap.inc:107
+#, fuzzy, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Proszę użyć zakładki telefony"
+#: setup/class_setupStep_Ldap.inc:112
+#, fuzzy, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
-msgstr "Brak uprawnień do zmiay hasła"
+#: setup/class_setupStep_Ldap.inc:113
+#, fuzzy
+msgid "Please specify user and password."
+msgstr "Proszę podać prawidłowe hasło!"
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
-msgstr "Brak uprawnień do zmiany własnego hasła w tym momencie"
+#: setup/class_setupStep_Ldap.inc:115
+#, fuzzy, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: plugins/personal/password/changed.tpl:3
-msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
 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/password/class_password.inc:27
+#: setup/setup_config1.tpl:6
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Zmień hasło"
-
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "Proszę podać obecne hasło aby kontynuować."
+msgid "Theme"
+msgstr "Mime"
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "Hasło które podano jako 'Nowe hasło' jest puste."
+#: setup/setup_config1.tpl:15
+#, fuzzy
+msgid "Apache"
+msgstr "Cache"
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
-msgstr "Hasło podane jako nowe jest zbyt podobne do obecnego."
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "Hasło podane jako nowe jest za krótkie."
+#: setup/setup_config1.tpl:27
+#, fuzzy
+msgid "People and group storage"
+msgstr "Prosze wyszczególnić długość pamięci."
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "Zewnętrzny program do zmiany hasła zgłosił następujący problem:"
+#: setup/setup_config1.tpl:30
+#, fuzzy
+msgid "People DN attribute"
+msgstr "Ten 'dn' nie jest aplikacją."
 
-#: plugins/personal/password/class_password.inc:109
-msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
-msgstr "Hasło które podano jako obecne nie zgadza się z prawdziwym hasłem."
+#: setup/setup_config1.tpl:41
+#, fuzzy
+msgid "People storage subtree"
+msgstr "Prosze wyszczególnić długość pamięci."
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/setup_config1.tpl:50
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "Brak uprawnień do zmiany własnego hasła"
+msgid "Group storage subtree"
+msgstr "Proszę wybrać grupę obiektów"
 
-#: plugins/personal/password/password.tpl:4
-msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
 msgstr ""
-"Aby zmienić własne hasło, proszę użyć formularza poniżej. Zmiany są "
-"wprowadzane do systemu natychmiast. Proszę zapamiętać nowe hasło, gdyż bez "
-"niego logowanie będzie niemożliwe."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
-msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
 msgstr ""
-"Zmiana hasła jest powiązana z autentykacją do usług poczty, proxy, samba, "
-"oraz unix."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Wyczyść pola"
-
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
-msgstr "Ustawienia Posix"
-
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Katalog domowy"
+#: setup/setup_config1.tpl:81
+#, fuzzy
+msgid "Automatic uids"
+msgstr "Automatyczne tryby"
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "Wymuś UID/GID"
+#: setup/setup_config1.tpl:113
+#, fuzzy
+msgid "Number base for people/groups"
+msgstr "Podstawowe ID dla użytkowników/grup"
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/setup_config1.tpl:140
+#, fuzzy
+msgid "Password encryption algorithm"
+msgstr "Algorytm szyfrowania"
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "Przynależność do grup"
+#: setup/setup_config1.tpl:151
+#, fuzzy
+msgid "Password restrictions"
+msgstr "Hasło wygasa"
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(Uwaga: NFS nie wspiera więcej niż 16 grup!)"
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Wybierz grupy do dodania"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Wyświetl grupy departamentu"
+#: setup/setup_config1.tpl:182
+#, fuzzy
+msgid "Password change hook"
+msgstr "Brak uprawnień do zmiay hasła"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Wybierz departament na którym wyszukiwanie będzie bazować"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Wyświetl grupy pasujące"
+#: setup/setup_config1.tpl:209
+#, fuzzy
+msgid "Use account expiration"
+msgstr "Konto wygasa po"
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Wyrażenie regularne dla dopasowania nazw grup"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
+msgstr ""
+"GOsa wspiera kilka typów szyfrowania hasła. Typy można ustawić przez "
+"szablony użytkownika, oraz można też ustawić typ domyślny tutaj."
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Wyświetl grupy użytkownika"
+#: setup/setup_config1.tpl:222
+#, fuzzy
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa zawsze zachowuje się jak admin i zarządza uprawnieniami wewnętrznie. "
+"Jest to obejście dopóki ACL w katalogu OpenLDAP zostaną w pełni "
+"zaimplementowane. Trzeba podać administracyjne DN i odpowiednie hasło."
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Nazwa użytkownika którego grupy są pokazane"
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
+msgstr ""
+"Pewne podstawowe parametry LDAP są zmienialne i wpływają na lokalizacje "
+"gdzie GOsa zapisuje użytkowników i grupy razem ze sposobem w jaki konta są "
+"tworzone. Sprawdź wartości poniżej i dostosuj do wymagań."
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/setup_config1.tpl:224
 #, fuzzy
-msgid "Search in subtrees"
-msgstr "Szukaj wewnątrz tego poddrzewa"
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa posiada modularne wsparcie dla kilku metod pocztowych. Te metody "
+"zapewniają interfejsy dla kont użytkowników oraz quota. Można wybrać "
+"sztuczny dodatek, aby pozostawić ustawienia poczty nietknięte."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "Użytkownik musi zmienić hasło przy pierwszym logowaniu"
+#: setup/setup_language.tpl:3
+#, fuzzy
+msgid "Please select the preferred language"
+msgstr "Preferowany język"
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "Hasło wygasa"
+#: setup/setup_language.tpl:5
+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/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "UNIX"
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
+msgstr "Preferowany język"
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "wygasło"
-
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "Czas prolongaty aktywny"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "aktywne, hasło niezmienialne"
+#: setup/class_setupStep_Checks.inc:64
+#, fuzzy
+msgid "Checking PHP version"
+msgstr "Sprawdzam wersję PHP (>=4.1.0)"
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "aktywne, hasło wygasło"
+#: setup/class_setupStep_Checks.inc:65
+#, fuzzy, php-format
+msgid "PHP must be of version %s or above."
+msgstr ""
+"PHP musi być w wersji 4.1.0 lub wyższej z powodu używanych funkcji i błędów "
+"w języku PHP."
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "Aktywne"
+#: setup/class_setupStep_Checks.inc:66
+msgid ""
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "nieskonfigurowane"
+#: setup/class_setupStep_Checks.inc:72
+#, fuzzy
+msgid "Checking for LDAP support"
+msgstr "Sprawdzam wsparcie dla iconv"
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "automatyczne"
+#: setup/class_setupStep_Checks.inc:73
+#, fuzzy
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr ""
+"To jest główny moduł używany przez GOsa i dlatego jest szczególnie wymagany."
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:74
+msgid ""
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Sprawdzam wsparcie dla gettext"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Środowisko"
+#: setup/class_setupStep_Checks.inc:81
+#, fuzzy
+msgid "Gettext support is required for internationalization."
+msgstr "Wsparcie dla gettext jest wymagane dla innych wersji językowych GOsa."
 
-#: plugins/personal/posix/class_posixAccount.inc:465
-#, php-format
-msgid "Password can't be changed up to %s days after last change"
-msgstr "Hasło nie może być zmienione do %s dni po ostatniej zmianie"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "Hasło musi zostać zmienione po %s dniach"
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:89
+#, fuzzy
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr ""
+"Ten moduł jest używany przez GOsa do konwersji _MUNGED_DIAL_INFORMATIONS? i "
+"dlatego jest wymagany."
+
+#: setup/class_setupStep_Checks.inc:96
+#, fuzzy
+msgid "Checking for mhash support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:104
+#, fuzzy
+msgid "Checking for IMAP support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:105
+#, fuzzy
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
+msgstr ""
+"Moduł IMAP jest potrzebny do komunikacji z serwerem IMAP. Pozwala uzyskiwać "
+"informacje, oraz tworzyć/usuwać konta pocztowe."
+
+#: setup/class_setupStep_Checks.inc:106
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:112
+#, fuzzy
+msgid "Checking for multi byte support"
+msgstr "Sprawdzam wsparcie dla gettext"
+
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:120
+#, fuzzy
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Sprawdzam getacl w imap"
+
+#: setup/class_setupStep_Checks.inc:121
+#, fuzzy
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
+msgstr ""
+"Wsparcie dla getacl jest wymagane dla uprawnień do foldera współdzielonego. "
+"Standardowy moduł IMAP nie potrafi czytać acl'i. Potrzeba nowszej wersji PHP "
+"ze wsparciem getacl."
+
+#: setup/class_setupStep_Checks.inc:128
+#, fuzzy
+msgid "Checking for MySQL support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:129
+#, fuzzy
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr ""
+"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych."
+
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:136
+#, fuzzy
+msgid "Checking for kadm5 support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr ""
+"Zarządzanie użytkownikami w kerberos wymaga modułu kadm5, który można "
+"ściągnąć z sieci PEAR."
+
+#: setup/class_setupStep_Checks.inc:138
+#, fuzzy
+msgid ""
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
+msgstr ""
+"Zarządzanie użytkownikami w kerberos wymaga modułu kadm5, który można "
+"ściągnąć z sieci PEAR."
+
+#: setup/class_setupStep_Checks.inc:144
+#, fuzzy
+msgid "Checking for SNMP support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:145
+#, fuzzy
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
+msgstr "SNMP jest wymagane do monitorowani klientow."
+
+#: setup/class_setupStep_Checks.inc:146
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:152
+#, fuzzy
+msgid "Checking for CUPS support"
+msgstr "Sprawdzam wsparcie dla iconv"
+
+#: setup/class_setupStep_Checks.inc:153
+#, fuzzy
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"Aby zobaczyć dostępne drukarki za pomocą protokołu IPP zamiast plików "
+"printcap, należy zainstalować moduł cups."
+
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Sprawdzam program fping"
+
+#: setup/class_setupStep_Checks.inc:163
+#, fuzzy
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"Program fping jest używany tylko jeśli mamy środowisko cienkich klientów."
+
+#: setup/class_setupStep_Checks.inc:164
+#, fuzzy
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr ""
+"Program fping jest używany tylko jeśli mamy środowisko cienkich klientów."
+
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:180
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Aby używać SAMBA 2/3, należy zainstalować dodatkowe programy aby móc "
+"generować hasła."
+
+#: setup/class_setupStep_Checks.inc:181
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Aby używać SAMBA 2/3, należy zainstalować dodatkowe programy aby móc "
+"generować hasła."
+
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+#, fuzzy
+msgid "Off"
+msgstr "Offline"
+
+#: setup/class_setupStep_Checks.inc:192
+#, fuzzy
+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 jest mechanizmem PHP umożliwiającym takie ustawienie "
+"zmiennych globalnych, że możliwy jest do nich dostęp bez zmiany zakresu. To "
+"może powodować zagrożenie bezpieczeństwa. Gosa może działać w obu trybach."
+
+#: setup/class_setupStep_Checks.inc:193
+#, fuzzy
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'"
+
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:202
+#, fuzzy
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
+"PHP używa tej wartości dla garbage collector'a do usuwania starych sesji. "
+"Ustawienie tej wartości na jeden dzień zapobiegnie ustraceniu sesji oraz "
+"cookie zanim faktycznie wygasną."
+
+#: setup/class_setupStep_Checks.inc:203
+#, fuzzy
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
+"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
+"musi być ustawiona na 'off'."
+
+#: setup/class_setupStep_Checks.inc:211
+#, fuzzy
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr ""
+"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
+"musi być ustawiona na 'off'."
+
+#: setup/class_setupStep_Checks.inc:212
+#, fuzzy
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
+"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
+"musi być ustawiona na 'off'."
+
+#: setup/class_setupStep_Checks.inc:219
+#, fuzzy
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr ""
+"GOsa potrzebuje conajmniej 16MB pamięci. Mniej może prowadzić do "
+"nieprzewidywalnych błędów. Dla większych instalacji, należy zwiększyć ten "
+"parametr."
+
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:227
+#, fuzzy
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
+"Ta opcja wpływa na obsługę output. Aby zwiększyć wydajność, należy ustawić "
+"na 'off'."
+
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:235
+#, fuzzy
+msgid "The Execution time should be at least 30 seconds."
+msgstr ""
+"Ten parametr powinien byc ustawniony na co najmniej 30 sekund. Niektóre "
+"funkcje mogą zabierać dużo czasu."
+
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:243
+#, fuzzy
+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 ""
+"Aby zwiększyć bezpieczeństwo, należy ustawić expose_php na 'off'. PHP nie "
+"będzie wysyłać żadnych informacji na temat serwera na którym działa."
+
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
-msgstr "Wyłącz konto po %s dniach nieaktywności po wygaśnięciu hasła"
+#: setup/class_setupStep_Checks.inc:250
+#, fuzzy
+msgid "On"
+msgstr "Otwórz"
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "Ostrzeż użytkownika na %s dni przed wygaśnięciem hasła"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
+"Ustawienie macig_quotes_gpc na 'on' zwiększy bezpieczeństwo serwera. PHP "
+"będzie zabezpieczać cudzysłowa w stringach."
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "pełen dostęp"
+#: setup/class_setupStep_Checks.inc:252
+#, fuzzy
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'"
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "zezwól na dostęp do tych hostów"
+#: setup/class_setupStep_Checks.inc:259
+#, fuzzy
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
+"Ustawienie macig_quotes_gpc na 'on' zwiększy bezpieczeństwo serwera. PHP "
+"będzie zabezpieczać cudzysłowa w stringach."
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:260
+#, fuzzy
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
 msgstr ""
+"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini "
+"musi być ustawiona na 'off'."
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:270
 #, fuzzy
-msgid "Uid number"
-msgstr "Numer fax"
+msgid "Configuration writeable"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:271
+#, fuzzy
+msgid "The configuration file can't be written"
+msgstr "Plik konfiguracyjny"
+
+#: setup/class_setupStep_Checks.inc:272
+#, php-format
 msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Grupa użytkownika"
+#: setup/setup_config3.tpl:2
+#, fuzzy
+msgid "GOsa core settings"
+msgstr "Ustawienia pocztowe"
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
+#: setup/setup_config3.tpl:6
 #, fuzzy
-msgid "shadowMin"
-msgstr "Shadow min"
+msgid "Disable primary group filter"
+msgstr "Wyświetl grupy użytkownika"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
+#: setup/setup_config3.tpl:18
 #, fuzzy
-msgid "shadowMax"
-msgstr "Shadow max"
+msgid "Display summary in listings"
+msgstr "Wyświetl makra pasujące"
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
+#: setup/setup_config3.tpl:30
 #, fuzzy
-msgid "shadowWarning"
-msgstr "Shadow ostrzeżenie"
+msgid "Honour administrative units"
+msgstr "Administracja Grupą"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
+#: setup/setup_config3.tpl:42
 #, fuzzy
-msgid "shadowInactive"
-msgstr "Shadow nieaktywne"
+msgid "Smarty compile directory"
+msgstr "Katalog domowy"
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
-msgid "POSIX account"
-msgstr "Konto POSIX"
+#: setup/setup_config3.tpl:60
+#, fuzzy
+msgid "Path for PPD storage"
+msgstr "Przechowywanie hasła"
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:77
+#, fuzzy
+msgid "Path for kiosk profile storage"
+msgstr "Ustawienia profilu Kiosk"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
-msgid "Group ID"
-msgstr "ID grupy"
+#: setup/setup_config3.tpl:96
+#, fuzzy
+msgid "Enable system deployment"
+msgstr "Zarządzanie systemem"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-msgid "Force password change on login"
-msgstr "Wymuś zmianę hasła podczas logowania"
+#: setup/setup_config3.tpl:115
+#, fuzzy
+msgid "Mail queue script"
+msgstr "Ogólna ścieżka do skryptu"
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
-msgid "Shadow min"
-msgstr "Shadow min"
+#: setup/setup_config3.tpl:134
+#, fuzzy
+msgid "Notification script"
+msgstr "Cel powiadomienia"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
-msgstr "Shadow max"
+#: setup/setup_config3.tpl:153
+#, fuzzy
+msgid "Enable edit locking"
+msgstr "Włącz skanowanie antyfirusowe"
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
-msgid "Shadow warning"
-msgstr "Shadow ostrzeżenie"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-msgid "Shadow inactive"
-msgstr "Shadow nieaktywne"
+#: setup/setup_config3.tpl:175
+#, fuzzy
+msgid "Login attribute"
+msgstr "Atrybuty telefonu"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
-msgid "Shadow expire"
-msgstr "Shadow wygasa"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
-msgid "System trust model"
-msgstr "Zaufanie do systemów"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
+msgstr ""
 
-#: plugins/personal/posix/main.inc:131
+#: setup/setup_config3.tpl:210
 #, fuzzy
-msgid "POSIX settings"
-msgstr "Ustawienia Posix"
+msgid "Warn if session is not encrypted"
+msgstr "Sesja nie będzie szyfrowana."
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Grupa podstawowa"
+#: setup/setup_config3.tpl:222
+#, fuzzy
+msgid "Remember dialog filter settings"
+msgstr "Ogólne ustawienia użytkownika"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Status"
+#: setup/setup_config3.tpl:234
+#, fuzzy
+msgid "Session lifetime"
+msgstr "Wykryto konflikt sesji"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
+msgstr ""
+
+#: setup/setup_config3.tpl:247
 #, fuzzy
-msgid "In all groups"
-msgstr "Grupa pocztowa"
+msgid "Show PHP errors"
+msgstr "błąd PHP:"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#: setup/setup_config3.tpl:259
 #, fuzzy
-msgid "Not in all groups"
-msgstr "Pokaż grupy pocztowe"
+msgid "Maximum LDAP query time"
+msgstr "Max rozmiar nagłówków poczty"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Konto"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr ""
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "Zaufanie systemowe"
+#: setup/setup_config3.tpl:289
+#, fuzzy
+msgid "Debug level"
+msgstr "Jeden poziom"
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
-msgstr "Tryb zaufania"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+#, fuzzy
+msgid "Disabled"
+msgstr "wyłączone"
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Wybierz systemy do dodania"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#, fuzzy
+msgid "Enabled"
+msgstr "włączone"
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Wyświetl systemy departamentu"
+#: setup/class_setupStep_Welcome.inc:38
+#, fuzzy
+msgid "Welcome"
+msgstr "Witaj %s!"
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Wyświetl systemy pasujące"
+#: setup/class_setupStep_Welcome.inc:39
+#, fuzzy
+msgid "The welcome message"
+msgstr "Usuń tą wiadomosc"
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Wyrażenie regularne dla dopasowania adresów"
+#: setup/class_setupStep_Welcome.inc:40
+#, fuzzy
+msgid "Welcome to GOsa setup wizard"
+msgstr "Witaj w instalacji GOsa!"
+
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+#, fuzzy
+msgid "LDAP schema check"
+msgstr "Usługa Ldap"
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Utwórz nowego użytkownika używając szablonów"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr ""
 
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
 msgstr ""
-"Tworzenie nowego użytkownika może być wspomagane przez szablony. Wiele "
-"rekordów bazy będzie automatycznie wypełnionych. Wybierz 'brak' aby pominąć "
-"użycie szablonów."
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Szablon"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr ""
 
-#: plugins/admin/users/password.tpl:4
-msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
 msgstr ""
-"Aby zmienić hasło użytkownika, proszę użyć formularza poniżej. Zmiany są "
-"wprowadzane natychmiastowo. Proszę zapamiętać nowe hasło, gdyż bez niego "
-"zalogowanie będzie niemożliwe."
 
-#: plugins/admin/users/password.tpl:21
+#: setup/setup_checks.tpl:67
 #, fuzzy
-msgid "Strength"
-msgstr "Ulica"
-
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Lista użytkowników"
-
-#: plugins/admin/users/class_divListUsers.inc:60
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
-msgstr ""
-"To menu umożliwia tworzenie, edycję oraz usuwanie wybranych użytkowników. "
-"Posiadając dużą liczbę użytkowników wygodniej jest używać selektorów zakresu "
-"na górze listy użytkowników."
+msgid "PHP setup configuration"
+msgstr "Konfiguracja bazy FAX"
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Właściwości"
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "show information"
+msgstr "Informacje osobiste"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Akcje"
+#: setup/setup_finish.tpl:3
+#, fuzzy
+msgid "Create your configuration file"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Wybierz aby zobaczyć szablony"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "Konfiguracja pobierania"
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Pokaż szablony"
+#: setup/setup_finish.tpl:18
+#, fuzzy
+msgid "Status: "
+msgstr "Status"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają tylko obiekt GOsa"
+#: setup/class_setupStep_Finish.inc:38
+#, fuzzy
+msgid "Write configuration file"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Pokaż użytkowników funkcjonalnych"
+#: setup/class_setupStep_Finish.inc:39
+#, fuzzy
+msgid "Finish - write the configuration file"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia posix"
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Pokaż użytkowników Unix"
+#: setup/class_setupStep_Finish.inc:102
+#, fuzzy
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia poczty"
+#: setup/class_setupStep_Finish.inc:111
+#, fuzzy, 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. You may want to execute these commands to achieve this "
+"requirement:"
+msgstr ""
+"Po umieszczeniu pliku w /etc/gosa upewnij się, że serwer www ma uprawnienia "
+"do jego odczytu, podczas gdy inni użytkownicy nie mają. Aby uzyskać takie "
+"uprawnienia, można wykonać te polecenia:"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Pokaż użytkowników Poczty"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#, fuzzy
+msgid "GOsa settings 2/3"
+msgstr "Ustawienia użytkownika"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia samba"
+#: setup/class_setupStep_Config2.inc:87
+#, fuzzy
+msgid "Customize special parameters"
+msgstr "Sprawdź parametr"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Pokaż użytkowników Samby"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "Błąd XML w guide.xml: %s w linii %d"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Zaznacz aby zobaczyć użytkowników którzy posiadają ustawienia proxy"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr "Pomoc nie jest dostępna dla tego dodatku."
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Pokaż użytkowników proxy"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr "poprzednie"
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "Zaznacz aby wyszukiwać wewnątrz poddrzew"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr "następne"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "Wyświetl użytkowników pasujących"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr "%s wyników zapytania ze słowem %s"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "Zatwierdź departament"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr "%s%% trafień w pliku %s"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Zmień hasło"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "Proces usuwania został anulowany przez dodatek '%s': %s"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "kopiuj"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "ACL"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "wytnij"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Zależności"
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "Edytuj ogólne właściwości"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, fuzzy, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
+"Funkcjonalność snapshot jest włączona, lecz wymagana zmienna '%s' nie jest "
+"skonfigurowana w gosa.conf."
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "Edytuj właściwości UNIX"
+#: include/class_plugin.inc:1613
+#, fuzzy
+msgid "from"
+msgstr "losowy"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "Edytuj właściwości Środowiska"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "Idź do głównego departamentu"
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Poczta"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "Główny"
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "Edytuj właściwości Poczty"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "Idź jeden departament wyżej"
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "Edytuj właściwości Telefonu"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "Przejdź do departamentu użytkowników"
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "Edytuj właściwości Fax"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr "Katalog domowy"
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "Edytuj właściwości Samba"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "Przeładuj listę"
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
-msgstr "Netatalk"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "Edytuj właściwości Netatalk"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+msgid "Restore"
+msgstr "Odtwórz"
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "Utwórz użytkownika z szablonu"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr "Otwórz snapshoty usuniętych obiektów"
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "Utwórz użytkownika z tego szablonu"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr "Odtwórz snapshot"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "wytnij"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create snapshot"
+msgstr "Utwórz spanshot"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "Wytnij ten obiekt"
+#: include/class_MultiSelectWindow.inc:680
+msgid "Create a new snapshot from this object"
+msgstr "Utwórz nowy snapshot z tego obiektu"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "kopiuj"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr "Wszystkie obiekty w tej kategorii"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "Kopiuj ten obiekt"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
-#, fuzzy
-msgid "Deactivated"
-msgstr "Aktywne"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr "Nieznane"
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
-msgstr "Aktywne"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr "Nie można otworzyć podanego pliku. Sprawdź istnienie i uprawnienia"
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "Edytuj użytkownika"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr "Nie można czytać certyfkatu / lub podano pusty ciąg znaków"
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "hasło"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr ""
+"Nie można załadować certyfikatu, prawdopodobnie niewspierany format (użyj "
+"PEM/DER)"
 
-#: plugins/admin/users/class_divListUsers.inc:343
-#, fuzzy
-msgid "You are not allowed to change the password for this user."
-msgstr "Brak uprawnień do zmiany własnego hasła w tym momencie"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr "Format musi być PEM, aby wyświetlić informacje certyfikatu"
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "Usuń użytkownika"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "Nie można utworzyć/otworzyć Pliku"
 
-#: plugins/admin/users/class_divListUsers.inc:357
-#, fuzzy
-msgid "You are not allowed to remove this user."
-msgstr "Brak uprawnień do usunięcia tego użytkownika!"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr "Nie załadowano prawidłowego certyfikatu"
 
-#: plugins/admin/users/class_divListUsers.inc:443
-#, fuzzy
-msgid "Number of listed users"
-msgstr "Nazwa departamentu"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-#, fuzzy
-msgid "Number of listed departments"
-msgstr "Nazwa departamentu"
+#: include/class_SnapShotDialog.inc:83
+#, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "Zamierzasz usunąć snapshot '%s'."
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "Użytkownicy domeny"
+#: include/class_SnapShotDialog.inc:135
+msgid "Remove snapshot"
+msgstr "Usuń snapshot"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "W dół"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr "Y-m-d, H:i:s"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_config.inc:106
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "Błąd XML w pliku gosa.conf: %s w linii %d"
+
+#: include/class_config.inc:109
+msgid "Config file parsing"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
+#: include/class_config.inc:228
 #, fuzzy
-msgid "Password change failed."
-msgstr "Brak uprawnień do zmiay hasła"
-
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
-msgstr "Brak uprawnień do zmiany hasła tym użytkownikom!"
-
-#: plugins/admin/users/class_userManagement.inc:456
-#, fuzzy, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Zamierzasz usunąć element %s."
-
-#: plugins/admin/users/class_userManagement.inc:458
-#, fuzzy, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Zamierzasz usunąć element %s."
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
+"Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem."
 
-#: plugins/admin/users/class_userManagement.inc:460
+#: include/class_config.inc:561
 #, fuzzy
-msgid "Delete users"
-msgstr "Usuń użytkownika"
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "Brak parametru SID lub/i RIDBASE w konfiguracji!"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
 #, fuzzy
-msgid "User delete"
-msgstr "Usuń"
+msgid "Internal error"
+msgstr "Terminal Server"
 
-#: plugins/admin/users/class_userManagement.inc:488
+#: include/class_log.inc:88
 #, fuzzy, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "Brak uprawnień do usunięcia tego użytkownika!"
-
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "Zamierzasz usunąć użytkownika %s."
+msgid "Logging failed: %s"
+msgstr "Użytkownik bazy logowania"
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "Usuń"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User successfully removed."
-msgstr "Import powiódł się"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "Brak uprawnień do usunięcia tego użytkownika!"
+#: include/class_log.inc:120
+#, php-format
+msgid "Invalid option '%s' specified."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "żaden"
+#: include/class_log.inc:124
+#, fuzzy
+msgid "Specified objectType is empty or invalid"
+msgstr "Podana nazwa jest nieprawidłowa"
 
-#: plugins/admin/users/remove.tpl:6
+#: include/class_log.inc:145
 msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
 msgstr ""
-"Operacja odnosi się do wszystkich danych dotyczących konta, dostępu, "
-"ustawień imap, etc dla tego użytkownika. Proszę upewnić się czy na pewno "
-"kontynuować, gdyż nie ma możliwości powrotu."
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Administracja użytkownikami"
+#: include/class_log.inc:157
+#, fuzzy, php-format
+msgid "Cannot connect to logging server '%s'."
+msgstr "Nie można połączyć się z serwerem baz danych!"
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
-msgstr "Ustawienia grupy"
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "Nie można wybrać bazy %s na %s."
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Nazwa grupy"
+#: include/class_log.inc:181
+#, php-format
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
+
+#: include/class_log.inc:218
+#, php-format
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "Posixowa nazwa grupy"
+#: include/class_log.inc:241
+#, fuzzy, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "Nie można wybrać bazy %s na %s."
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr "Zwyczajowo ID są generowane automatycznie, wybierz aby podać ręcznie"
+#: include/php_setup.inc:91
+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/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "Wymuś GID"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Wymuś numer ID"
+#: include/php_setup.inc:96
+#, fuzzy
+msgid "Send bugreport"
+msgstr "Nadawca"
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Wybierz użytkowników do dodania"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr "Przełącz informacje"
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Proszę aby zobaczyć serwery"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "błąd PHP:"
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
-msgstr "Szukaj wewnątrz tego poddrzewa"
+#: include/php_setup.inc:130
+msgid "class"
+msgstr "klasa"
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Wyświetl użytkowników departamentu"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "funkcja"
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "Wyrażenie regularne do dopasowania nazw użytkowników"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "statyczna"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr ""
-"Nie można znaleźć SID tych grup ani w  LDAP, ani w pliku konfiguracyjnym!"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "metoda"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Podane 'dn' nie jest grupą."
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr "Śledzenie"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Grupa Samba"
+#: include/php_setup.inc:179
+msgid "File"
+msgstr "Plik"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Administratorzy domeny"
+#: include/php_setup.inc:179
+msgid "Line"
+msgstr "Linia"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Użytkownicy domeny"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Typ"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Goście domeny"
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "Argumenty"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "Specjalna grupa (%d)"
+#: include/class_acl.inc:26
+msgid "Access control"
+msgstr "Kontrola dostępu"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "! nieznane id"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
+msgstr "Użyj ACL zdefiniowanego w tej roli"
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
-#, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
-msgstr ""
+#: include/class_acl.inc:665 include/class_acl.inc:672
+#, fuzzy
+msgid "Show/Hide Advanced Settings"
+msgstr "Zaawansowane ustawienia telefonu"
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "Nie można stworzyć pliku '%s'."
+#: include/class_acl.inc:690
+msgid "Create objects"
+msgstr "Utwórz obiekty"
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "Nie można stworzyć pliku '%s'."
+#: include/class_acl.inc:691
+msgid "Move objects"
+msgstr "Przenieś obiekty"
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
-#, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID"
+#: include/class_acl.inc:692
+msgid "Remove objects"
+msgstr "Usuń obiekty"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
-msgid "Generic group settings"
-msgstr "Ogólne ustawienia grupy"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr "Modyfikowalne przez właściciela"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
-msgid "Phone pickup group"
-msgstr "Grupie odbioru telefonu"
+#: include/class_acl.inc:697
+msgid "Move object"
+msgstr "Przenieś obiekt"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
-msgid "Nagios group"
-msgstr "Grupa nagios"
+#: include/class_acl.inc:698
+msgid "Remove object"
+msgstr "Usuń obiekt"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
-msgid "Group member"
-msgstr "Członek grupy"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "czytanie"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
-msgid "Samba group type"
-msgstr "Typ grupy Samba"
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "zapisywanie"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
+#: include/class_acl.inc:710
 #, fuzzy
-msgid "Samba domain name"
-msgstr "Katalog domowy Samba"
+msgid "Complete object"
+msgstr "Utwórz obiekty"
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Lista grup"
+#: include/class_acl.inc:826
+#, php-format
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgstr "Nieznany typ ACL '%s', Nie wiem co z tym zrobic."
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_acl.inc:869
+#, php-format
+msgid "Unknown entry '%s'!"
+msgstr "Nieznany wpis  '%s'!"
+
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, fuzzy, php-format
+msgid "Role: %s"
+msgstr "Pełniona funkcja"
+
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
 msgstr ""
-"To menu umożliwia tworzenie, edycję oraz usuwanie wybranych grup. Posiadając "
-"dużą liczbę użytkowników wygodniej jest używać selektorów zakresu na górze "
-"listy grup."
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "Nazwa grupy / Departament"
+#: include/class_acl.inc:939
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Zawiera ustawienia dla tych obiektów: %s"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr "Zaznacz aby zobaczyć grupy które są podstawowymi grupami użytkowników"
+#: include/class_acl.inc:948
+msgid "Members:"
+msgstr "Członkowie:"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Pokaż podstawowe grupy"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr "ACL jest prawidłowy dla wszystkich użytkowników"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Zaznacz aby zobaczyć grupy które posiadają mapowania grup samba"
+#: include/class_acl.inc:1115
+#, fuzzy
+msgid "Access control list"
+msgstr "Kontrola dostępu"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Pokaż grupy samba"
+#: include/class_acl.inc:1123
+#, fuzzy
+msgid "Role name"
+msgstr "Zmień nazwę"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "Zaznacz aby zobaczyć grupy które posiadają skonfigurowane aplikacje"
+#: include/class_acl.inc:1124
+#, fuzzy
+msgid "Role description"
+msgstr "Opis jednostki"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Pokaż grupy aplikacji"
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "Zaznacz aby zobaczyć grupy które zawierają ustawienia poczty"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, fuzzy, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Pokaż grupy pocztowe"
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "Zaznacz aby zobaczyć grupy, które posiadają tylko aspekty funkcjonalne"
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Pokaż grupy funkcjonalne"
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Grupa"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Aplikacja"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "Edytuj ten obiekt"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "Usuń ten obiekt"
+#: include/class_hostActionQueue.inc:277
+#, fuzzy, php-format
+msgid "Entry with id '%s' not found."
+msgstr "Import LDAP z dn '%s' nieudany."
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-#, fuzzy
-msgid "Number of listed groups"
-msgstr "Nazwa grupy"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
 #, fuzzy, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Zamierzasz usunąć element %s."
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr "Plik pakietu '%s' nie istnieje."
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
-#, fuzzy, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Zamierzasz usunąć element %s."
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "Uprawnienia"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:434
+#: include/functions.inc:101
 #, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "Właśnie zamierzasz usunąć grupę '%s'."
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:108
+#, php-format
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
-"To może być podstawowa grupa użytkownika. Proszę upewnić się czy aby na "
-"pewno kontynuować, gdyż tej operacji nie można cofnąć."
-
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Administracja Grupą"
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Tekst opisowy dla tej grupy"
+#: include/functions.inc:318
+#, 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/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Wybierz poddrzewo do umieszczenia grupy"
+#: include/functions.inc:380
+#, fuzzy
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr "Użytkownik /UID nie są unikalne. Proszę sprawdzić bazę LDAP."
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Wybierz aby utworzyć grupę samba"
+#: include/functions.inc:450
+#, fuzzy
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr "Użytkownik /UID nie są unikalne. Proszę sprawdzić bazę LDAP."
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "w domenie"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "Członkowie są w grupie odbioru telefonu"
+#: include/functions.inc:605
+#, fuzzy, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr ""
+"Nie można pobrać informacji o blokadach w bazie LDAP. Proszę sprawdzić wpis "
+"'config' w gosa.conf!"
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
-msgstr "Członkowie są w grupie nagios."
+#: include/functions.inc:605 include/functions.inc:620
+#, fuzzy, php-format
+msgid "LDAP server returned: %s"
+msgstr "Serwer LDAP"
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Członkowie grupy"
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "Zapisywanie zaczepu FAI nieudane"
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
+#: include/functions.inc:699
 #, fuzzy
-msgid "ACL Templates"
-msgstr "Szablony"
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
+"Znaleziono wiele blokad dla obiektu do zablokowania. Taka sytuacja nie "
+"powinna się wydażyć - czyszczę wiele odwołań."
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-msgid "Acl"
-msgstr "ACL"
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Limit wielkości %d elementów został przekroczony!"
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-msgid "ACLs"
-msgstr "ACLe"
+#: include/functions.inc:998
+#, 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/admin/acl/class_aclManagement.inc:163
-#, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "niepełne"
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-#, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "błąd LDAP:"
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
-#, php-format
-msgid "You're about to delete the acl %s."
-msgstr "Zamierzasz usunąć ACL '%s'."
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+"Problemy z serwerem LDAP oznaczają, że prawdopodobnie utracono ostatnie "
+"zmiany. Proszę sprawdzić konfiguracje LDAP w poszukiwaniu możliwych błędów i "
+"spróbować ponownie."
 
-#: plugins/admin/acl/class_divListACL.inc:51
-msgid "List of acl"
-msgstr "Lista ACL"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr ""
+"Proszę sprawdzić wprowadzane dane i poprawić błąd. Naciśnij 'OK' aby zamknąć "
+"to okno."
 
-#: plugins/admin/acl/class_divListACL.inc:52
-msgid "List of acls"
-msgstr "Lista ACLi"
+#: include/functions.inc:1325
+msgid "Continue anyway"
+msgstr "Kontynuuj mimo wszystko"
+
+#: include/functions.inc:1327
+msgid "Edit anyway"
+msgstr "Edytuj mimo wszystko"
+
+#: include/functions.inc:1329
+#, fuzzy, php-format
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "Zamierzasz skopiować wpis '%s'."
 
-#: plugins/admin/acl/class_divListACL.inc:56
-msgid "This menu allows you to edit and delete selected acls."
-msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych ACL."
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr "Wpisów na stronie"
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "Podsumowanie"
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr "Zastosuj filtr"
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "Ignoruj poddrzewa"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/admin/acl/class_divListACL.inc:85
-msgid "Display acls matching"
-msgstr "Wyświetl ACL pasujące"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "Wersja deweloperska GOsa (Rev %s)"
 
-#: plugins/admin/acl/class_divListACL.inc:244
-#, fuzzy
-msgid "Edit acl role"
-msgstr "Edytuj makro"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:254
+#: include/functions.inc:1950 include/functions.inc:1970
 #, fuzzy
-msgid "Delete acl role"
-msgstr "Usuń makro"
+msgid "Cannot write to revision file!"
+msgstr "Nie można stworzyć pliku '%s'."
 
-#: plugins/admin/acl/class_divListACL.inc:266
-#, fuzzy
-msgid "Edit acl"
-msgstr "Edytuj klasę"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:270
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Delete acl"
-msgstr "Usuń klasę"
+msgid "LDAP warning"
+msgstr "Menedżer LDAP"
 
-#: plugins/admin/acl/class_aclRole.inc:26
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Access control list templates"
-msgstr "Kontrola dostępu"
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr ""
+"Nie można pobrać informacji o schematach z serwera. Sprawdzenie schematów "
+"niemożliwe!"
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "ACLe"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "Nazwa obiektu"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2320
+#, fuzzy, php-format
+msgid "Missing required object class '%s'!"
+msgstr "Wyświetl szablony FAI"
+
+#: include/functions.inc:2322
 #, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:700
-#, fuzzy
-msgid "Acl roles"
-msgstr "Profil FAI"
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
+
+#: include/functions.inc:2334
+#, fuzzy, php-format
+msgid "Class(es) available"
+msgstr "Plik jest dostępny"
+
+#: include/functions.inc:2356
 msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
 msgstr ""
-"To zawiera cały system i informacje instalacyjne. Proszę upewnić się, że "
-"faktycznie chcesz wykonać tą operację. Nie ma możliwości odwrócenia tego "
-"procesu."
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2357
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
-"Przed wykonaniem tej operacji zaleca się wykonanie kopii bezpieczeństwa "
-"drzewa LDAP. Naciśnij 'Usuń' aby kontynuować, lub 'Anuluj' aby przerwać."
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-msgid "ACL management"
-msgstr "Zarządzanie ACL"
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "Wymagane pole 'Nazwa' jest puste."
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "Wymagane pole 'Opis' nie jest wypełnione."
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Niemiecki"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Terminal Server"
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Francuski"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-#, fuzzy
-msgid "Cannot find an unused tag for this administrative unit!"
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "Włoski"
+
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Hiszpański"
+
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Angielski"
+
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Holenderski"
+
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr "Polski"
+
+#: include/functions.inc:2392
+msgid "Swedish"
 msgstr ""
-"Błąd krytyczny: Nie można znaleźć nieużywnego znacznika dla jednostki "
-"administracyjnej!"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr "Zaznaczanie '%s'."
+#: include/functions.inc:2393
+#, fuzzy
+msgid "Chinese"
+msgstr "Chipset"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "Przenoszenie '%s' do '%s'"
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Rosyjski"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
+#: include/functions.inc:2562
 #, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "BŁĄD kopiowania %s, anulowanie operacji"
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr "Polecenie '%s', podane jako POSTMODIFY dla dodatku '%s' nie istnieje."
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Departamenty"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "Kraj"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "Telefon"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "Nazwa departamentu"
+#: include/class_ldap.inc:592
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Kategoria"
+#: include/class_ldap.inc:640
+#, php-format
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "Ustawienia administracyjne"
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "podczas działania na '%s' używając serwera LDAP '%s'"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:726
 #, php-format
-msgid "Object '%s' is already tagged"
-msgstr "Obiekt '%s' jest już zaznaczony"
+msgid "while operating on LDAP server %s"
+msgstr "podczas połączenia z serwerem LDAP '%s'"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:948
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
-msgstr "Dodawanie znacznika (%s) do obiektu '%s'"
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
+msgstr ""
+"To nie jest poprawne DN: '%s'. Blok dla importu powinien zaczynać się "
+"'dn: ...' w linii %s"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:977
 #, php-format
-msgid "Removing tag from object '%s'"
-msgstr "Usuwanie znacznika z obiektu '%s'"
+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/admin/departments/dep_move_confirm.tpl:2
-#, fuzzy
-msgid "You are currently moving/renaming this department."
-msgstr "Brak uprawnień do usunięcia tego departamentu."
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-#, fuzzy
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
-"Próba przeniesienia drzewa nieudana. Docelowe drzewo jest poddrzewem w "
-"drzewie źródłowym."
-
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
-msgstr "Przetwarzam zadaną operację"
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
-"Twoja przeglądarka nie obsługuje iframes, proszę użyć tego linku aby wykonać "
-"żądaną operację."
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "Lista departamentów"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "Nie można otworzyć pliku '%s'."
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
-msgstr ""
-"To menu umożliwia tworzenie, usuwanie oraz edycję wybranych departamentów. "
-"Posiadając dużą liczbę departamentów, może okazać się wygodniejsze "
-"korzystanie z selektorów zakresu na górze."
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Zamierzasz skopiować wpis '%s'."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Wyrażenie regularne dla dopasowania nazw departamentów"
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Zamierzasz skopiować wpis '%s'."
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "departament"
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
+msgstr "Nie można wkleić"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:14
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Departamenty"
+msgid "You have no permission to delete this object!"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr "Zamierzasz usunąć całe poddrzewo LDAP umieszczone pod '%s'."
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#, fuzzy
+msgid "You have no permission to delete the object:"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"Operacja odnosi sie do 'wszystkich' kont, systemów, etc w tym poddrzewie. "
-"Proszę upewnić się czy kontynuować, gdyż nie ma operacji powrotu."
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Zarządzanie departamentem"
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "Nazwa departamentu"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "Nazwa tworzonego poddrzewa"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "Tekst opisujący departament"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "Kategoria dla tego poddrzewa"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr "Wybierz poddrzewo do umieszczenia departamentu"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "Stan w którym jest umieszczone to poddrzewo"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "Lokalizacja tego poddrzewa"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "Brak uprawnień do tworzenia telefonu w tym elemencie."
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "Kod pocztowy tego poddrzewa"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "Bazowy numer telefonu tego poddrzewa"
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "Bazowy numer faxu tego poddrzewa"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr "Zaznacz departament jako niezależną jednostkę administracyjną"
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
 #, fuzzy
-msgid "Please enter the new object group name"
-msgstr "Proszę podać nową nazwę."
+msgid "Connection information"
+msgstr "Informacje osobiste"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
-msgstr "Kolejka telefoniczna"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Nie można połączyć się z serwerem baz danych!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
-msgstr "System"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "Nie można wybrać bazy danych!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Urządzenia"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Startup"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "Nie można wybrać bazy danych!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Terminale"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Pole 'Fax' zawiera nieprawidłowy numer telefonu."
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
-msgstr ""
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "Polecenie '%s' podane jako CHECK dla dodatku '%s' nie istnieje."
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "Ten 'dn' nie jest grupą obiektową."
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Wartość podana jako 'UID' jest za mała."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "za dużo różnych obiektów!"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "użytkownicy"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Wartość podana jako 'UID' jest za mała."
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "grupy"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr ""
+"PHP musi być w wersji 4.1.0 lub wyższej z powodu używanych funkcji i błędów "
+"w języku PHP."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "aplikacje"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "Już istnieje osoba z takim samym loginem w bazie."
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "departamenty"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Wymagane pole 'Nazwa' jest puste."
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "serwery"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "stacje robocze"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "Pole 'Nazwa' zawiera niedozwolone znaki."
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Stacja Windows"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "terminale"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Brak uprawnień do zmiay hasła"
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "telefony"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Rozszerzenie inwentarza"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "drukarki"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Dodaj"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "i"
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Dodaj"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr "Nieistniejące dn:"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "Usuń"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr "Można połączyć maksymalnie tylko 2 różne typy obiektów!"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Usuń"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-msgid "Object group generic"
-msgstr "Podstawowa grupa obiektu"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "Ustaw"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Grupy obiektów"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Edytuj"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-msgid "Member"
-msgstr "Członek"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Edytuj użytkownika"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Nazwa grupy obiektów"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "Wróć"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "Zamierzasz usunąć element %s."
+msgid "Back %s..."
+msgstr "Edytuj użytkownika"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:298
 #, fuzzy, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "Zamierzasz usunąć grupę obiektową '%s'."
+msgid "This account has no valid %s extensions!"
+msgstr "To konto nie posiada poprawnych rozszerzeń GOsa."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "Zamierzasz usunąć grupę obiektową '%s'."
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr ""
+"To konto posiada rozszerzenia posix. Można je wyłączyć klikająć poniżej."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Stacja robocza"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
+msgstr ""
+"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
+"konto Samba/Środowisko."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Stacja robocza Windows"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr ""
+"To konto nie posiada rozszerzenia posix. Można je włączyć klikająć poniżej."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "Terminal"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
+"konto Samba/Środowisko."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Drukarka"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć "
+"konto Samba/Środowisko."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "Wybierz obiekty do dodania"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Ustawienia Aplikacji"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "Wybierz aby zobaczyć departamenty"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Ustawienia Posix"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Pokaż departamenty"
+#: include/utils/class_msgPool.inc:353
+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/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "Wybierz aby zobaczyć konta GOsa"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "Styczeń"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Pokaż ludzi"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "Luty"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "Wybierz aby zobaczyć grupy GOsa"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Marzec"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Pokaż grupy"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "Kwiecień"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Wybież aby zobaczyć aplikacje"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Maj"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Pokaż aplikacje"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Czerwiec"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Pokaż serwery"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Lipiec"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "Wybierz aby zobaczyc stacje robocze"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Sierpień"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Pokaż stacje robocze"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "Wrzesień"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "Wybierz aby zobaczyć terminale"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Październik"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Pokaż terminale"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "Listopad"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "Wybierz aby zobaczyć drukarki"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Grudzień"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Pokaż drukarki"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Nazwisko"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "Wybież aby zobaczyć telefony"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "miesiąc"
+
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Pokaż telefony"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Wednesday"
+msgstr "Środa"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "Wyświetl obiekty departamentu"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "Wyświetl obiekty pasujące"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "Wyrażenie regularne dla dopasowania nazw obiektów"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
-msgstr "Lista grupy obiektów"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "Opcje poczty"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"To menu umożliwia tworzenie, edycję oraz usuwanie wybranych grup. Posiadając "
-"dużą liczbę grup wygodniej jest używać selektorów zakresu na górze listy "
-"grup."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr "Nazwa grupy obiektów"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "modify operation"
+msgstr "Informacje osobiste"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
-msgstr "Zaznacz aby zobaczyć grupy zawierające użytkowników"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "delete operation"
+msgstr "Wybierz aby zobaczyc stacje robocze"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Pokaż grupy zawierające użytkowników"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "search operation"
+msgstr "Konto wygasa po"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
-msgstr "Zaznacz aby zobaczyć grupy zawierające grupy"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Autentykacja Nagios"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Pokaż grupy zawierające grupy"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "Zapytanie do bazy danych nieudane"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr "Zaznacz aby zobaczyć grupy zawierające aplikacje"
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "Zapytanie do bazy danych nieudane"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Pokaż grupy zawierające aplikacje"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr "Zaznacz aby zobaczyć grupy zawierające departamenty"
+#: include/class_multi_plug.inc:362
+#, fuzzy
+msgid "You are currently editing mutliple entries."
+msgstr "Brak uprawnień do usunięcia tego departamentu."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Pokaż grupy zawierające departamenty"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "Hasło wygasa"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
-msgstr "Zaznacz aby zobaczyć grupy zawierające serwery"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "The user password was resetted, please set a new password value!"
+msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Pokaż grupy zawierające serwery"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Parametr aplikacji"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
-msgstr "Zaznacz aby zobaczyć grupy zawierające stacje robocze"
+#: html/getldif.php:82 html/getxls.php:493
+#, fuzzy
+msgid "Permission denied!"
+msgstr "Uprawnienia"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Pokaż grupy zawierające stacje robocze"
+#: html/getldif.php:82
+#, fuzzy
+msgid "You are not allowed to create ldap dumps."
+msgstr "Brak uprawnień do zmiany przekazywania poczty"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:107
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "Zaznacz aby zobaczyć grupy zawierające stacje robocze"
+msgid "Error in ivbb parameter!"
+msgstr "Parametr kernela"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/password.php:58 html/index.php:141
+#, fuzzy, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
+
+#: html/password.php:78
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Pokaż grupy zawierające stacje robocze"
+msgid "Accessibility"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr "Zaznacz aby zobaczyć grupy zawierające terminale"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Pokaż grupy zawierające terminale"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr "Zaznacz aby zobaczyć grupy zawierające drukarki"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "Proszę sprawdzić kombinację login/hasło."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
-msgstr "Pokaż grupy zawierające drukarki"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "Brak uprawnień do zmiany własnego hasła"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
-msgstr "Zaznacz aby zobaczyć grupy zawierające telefony"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "Zewnętrzny program do zmiany hasła zgłosił następujący problem:"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
-msgstr "Pokaż grupy zawierające telefony"
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "Sesja nie będzie szyfrowana."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Grupa obiektu"
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "Sprowadź sesję SSL"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "You are not allowed to remove this entry."
-msgstr "Brak uprawnień do usunięcia tego elementu!"
+msgid "Smarty"
+msgstr "Podsumowanie"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/index.php:57
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "Nazwa grupy obiektów"
+msgid "Session is not encrypted!"
+msgstr "Sesja nie będzie szyfrowana."
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr "Proszę upewnić się czy kontynuować, gdyż nie ma możliwości powrotu."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
+msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Nazwa grupy"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "Plik konfiguracyjny"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Dodaj członka"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Nazwa obiektu"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "Zawartość"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Ten obiekt nie posiada powiązań z innymi obiektami."
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "FAX"
+#: html/index.php:282
+#, fuzzy
+msgid "Your ldap setup contains old schema definitions:"
+msgstr ""
+"Ustawienia serwera LDAP zawierają stare definicje schema. Proszę uruchomić "
+"setup."
+
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "Proszę podać prawidłową nazwę użytkownika!"
+
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "Proszę podać prawidłowe hasło!"
+
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Autentykacja Nagios"
+
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
+msgstr ""
+
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
+msgstr "Konto zablokowane. Proszę skontaktować się z administratorem systemu."
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Proxy"
+#: html/index.php:425
+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!"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "Cienki klient"
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "Konfiguracja bazy FAX"
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/main.php:172
 msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
-"To jest główny ekran GOsa. Można wybrać zadania z menu po lewej stronie, lub "
-"wybierając jeden z piktogramów poniżej. Wszelkie zmiany wchodzą bezpośrednio "
-"do serwera LDAP."
+"BŁĄD: Register globals jest włączone. GOsa odmówi logowania do momentu "
+"poprawienia tego parametru przez administratora."
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "Plik konfiguracyjny"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
-"Użyj 'Wyloguj' na górze ekranu aby zamknąć połączenie oraz 'Główne' aby "
-"wrócić do głównego ekranu z widokiem piktogramów."
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "Zespół GOsa"
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "Hasło wygasa"
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
-msgstr "Witaj %s!"
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "Twoje hasło zaraz wygaśnie, proszę zmienić hasło"
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
-msgstr ""
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "w"
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
-msgstr ""
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "BŁĄD: Nie można znaleźć żadnych definicji dla pluginu '%s'!"
 
 #: html/getxls.php:88
 msgid "Birthday"
@@ -6641,11 +6706,6 @@ msgstr "Lista użytkowników %s na %s"
 msgid "Computers of %s on %s"
 msgstr "Komputery %s na %s"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Uprawnienia"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6663,21 +6723,6 @@ msgstr "Nie można wybrać bazy danych!"
 msgid "Database query failed!"
 msgstr "Zapytanie do bazy danych nieudane"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "Brak uprawnień do zmiany przekazywania poczty"
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Parametr kernela"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Parametr aplikacji"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr "Wyszukiwarka pomocy"
@@ -6693,169 +6738,72 @@ msgstr ""
 "Katalog pomocy '%s' nie jest osiągalny, nie można czytać żadnych plików "
 "pomocy."
 
-#: html/password.php:58 html/index.php:141
-#, fuzzy, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę."
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "Plik konfiguracyjny"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "Proszę sprawdzić kombinację login/hasło."
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "Brak uprawnień do zmiany własnego hasła"
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "Zewnętrzny program do zmiany hasła zgłosił następujący problem:"
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "Sesja nie będzie szyfrowana."
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "Sprowadź sesję SSL"
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "Podsumowanie"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "Konfiguracja bazy FAX"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-"BŁĄD: Register globals jest włączone. GOsa odmówi logowania do momentu "
-"poprawienia tego parametru przez administratora."
-
-#: html/main.php:217
-#, fuzzy
-msgid "Configuration warning"
-msgstr "Plik konfiguracyjny"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
-
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "Hasło wygasa"
+#~ msgid "User login failed."
+#~ msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'."
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "Twoje hasło zaraz wygaśnie, proszę zmienić hasło"
+#~ msgid "Removing a lock failed."
+#~ msgstr "Usuwanie zaczepu FAI nieudane"
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "w"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "BŁĄD: Nie można znaleźć żadnych definicji dla pluginu '%s'!"
+#~ msgid "Cannot get locking information from LDAP tree!"
+#~ msgstr "Nie można pobrać informacji o quota dla '%s'."
 
-#: html/index.php:57
 #, fuzzy
-msgid "Session is not encrypted!"
-msgstr "Sesja nie będzie szyfrowana."
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid "Setting the password failed!"
+#~ msgstr "Ustawianie hasła nieudane, Odpowiedź serwera LDAP '%s'."
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "Plik konfiguracyjny"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem."
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Proszę podać poprawny numer seryjny"
 
-#: html/index.php:282
 #, fuzzy
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-"Ustawienia serwera LDAP zawierają stare definicje schema. Proszę uruchomić "
-"setup."
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "Brak uprawnień do usunięcia grupy obiektowej."
 
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "Proszę podać prawidłową nazwę użytkownika!"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "To menu umożliwia tworzenie, edycję oraz usuwanie wybranych użytkowników. "
+#~ "Posiadając dużą liczbę użytkowników wygodniej jest używać selektorów "
+#~ "zakresu na górze listy użytkowników."
 
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "Proszę podać prawidłowe hasło!"
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "To menu umożliwia tworzenie, edycję oraz usuwanie wybranych grup. "
+#~ "Posiadając dużą liczbę użytkowników wygodniej jest używać selektorów "
+#~ "zakresu na górze listy grup."
 
-#: html/index.php:318
-#, fuzzy
-msgid "Authentication error"
-msgstr "Autentykacja Nagios"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych ACL."
 
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "To menu umożliwia tworzenie, usuwanie oraz edycję wybranych "
+#~ "departamentów. Posiadając dużą liczbę departamentów, może okazać się "
+#~ "wygodniejsze korzystanie z selektorów zakresu na górze."
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr "Konto zablokowane. Proszę skontaktować się z administratorem systemu."
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "To menu umożliwia tworzenie, edycję oraz usuwanie wybranych grup. "
+#~ "Posiadając dużą liczbę grup wygodniej jest używać selektorów zakresu na "
+#~ "górze listy grup."
 
-#: html/index.php:425
-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!"
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem."
 
 #, fuzzy
 #~ msgid "Removing of user/generic account with dn '%s' failed."
index 92d29db8742a68873499e0ab2bb8b086c9a8ce03..329f3af9a73cb21a58d74db137a0346078363403 100644 (file)
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2005-04-18 14:35+0300\n"
 "Last-Translator: Igor Muratov <migor@altlinux.org>\n"
 "Language-Team: ALT Linux Team\n"
@@ -14,1078 +14,1062 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: poEdit 1.3.1\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "Конфликт сеансов"
 
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "Предупреждение"
 
-#: setup/class_setupStep_Checks.inc:64
+#: ihtml/themes/default/conflict.tpl:6
 #, fuzzy
-msgid "Checking PHP version"
-msgstr "Проверка версии PHP (>=4.1.0)"
-
-#: setup/class_setupStep_Checks.inc:65
-#, fuzzy, php-format
-msgid "PHP must be of version %s or above."
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
-"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней "
-"реализованы некоторые новые функции и исправлены некоторые ошибки."
+"Возможно, есть еще один экземпляр вашего сеанса. Работа с несколькими окнами "
+"одновременно технически невозможна и в значительной мере зависит от "
+"используемого браузера. Использование разных браузеров одновременно "
+"(например, IE и Mozilla) возможно. Нажав на кнопку <b>Выход</b>, вы "
+"завершите текущий сеанс."
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
+"Если вы ничего не предпримете, редактируемые вами данные не будут сохранены, "
+"поэтому закройте все окна, кроме одного, и начните сеанс заново."
 
-#: setup/class_setupStep_Checks.inc:72
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "Выход"
+
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr ""
+
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
 #, fuzzy
-msgid "Checking for LDAP support"
-msgstr "Проверка поддержки gettext"
+msgid "Old Password"
+msgstr "Пароль"
 
-#: setup/class_setupStep_Checks.inc:73
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
 #, fuzzy
-msgid "This is the main extension used by GOsa and therefore really required."
-msgstr "Ð\9eÑ\81новной Ð¼Ð¾Ð´Ñ\83лÑ\8c, Ð¸Ñ\81полÑ\8cзÑ\83емÑ\8bй GOsa, Ð¸ Ð¿Ð¾Ñ\8dÑ\82омÑ\83 Ð¾Ð±Ñ\8fзаÑ\82елÑ\8cнÑ\8bй."
+msgid "New Password"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/class_setupStep_Checks.inc:74
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+#, fuzzy
+msgid "Verify Password"
+msgstr "Пароль"
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "Проверка поддержки gettext"
+#: ihtml/themes/default/accountexpired.tpl:51
+#, fuzzy
+msgid "Change Password"
+msgstr "Сменить пароль"
 
-#: setup/class_setupStep_Checks.inc:81
+#: ihtml/themes/default/accountexpired.tpl:52
 #, fuzzy
-msgid "Gettext support is required for internationalization."
-msgstr "Ð\9dеобÑ\85одима Ð´Ð»Ñ\8f Ð»Ð¾ÐºÐ°Ð»Ð¸Ð·Ð¾Ð²Ð°Ð½Ð½Ñ\8bÑ\85 Ð²ÐµÑ\80Ñ\81ий GOsa."
+msgid "Click here to Change your password"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
+#: ihtml/themes/default/login.tpl:27
 #, fuzzy
-msgid "Checking for iconv support"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
+msgid "Login screen"
+msgstr "СлÑ\83жба Ð¿ÐµÑ\87аÑ\82и"
 
-#: setup/class_setupStep_Checks.inc:89
+#: ihtml/themes/default/login.tpl:34
+#, fuzzy
 msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
+"Please use your username and your password to log into the site "
+"administration system."
 msgstr ""
+"Чтобы войти в систему<br> введите свои <i>имя пользователя</i> и <i>пароль</"
+"i>."
 
-#: setup/class_setupStep_Checks.inc:96
-#, fuzzy
-msgid "Checking for mhash support"
-msgstr "Проверка поддержки gettext"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "Имя пользователя"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr ""
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "Пароль"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "Каталог"
 
-#: setup/class_setupStep_Checks.inc:104
-#, fuzzy
-msgid "Checking for IMAP support"
-msgstr "Проверка поддержки gettext"
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "Войти"
 
-#: setup/class_setupStep_Checks.inc:105
-#, fuzzy
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "Нажмите на эту кнопку, чтобы войти в систему"
+
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
 msgstr ""
-"Этот модуль нужен для работы с сервером IMAP. С его помощью можно получать "
-"информацию о состоянии учетной записи, создавать и удалять пользователей."
 
-#: setup/class_setupStep_Checks.inc:106
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:112
+#: ihtml/themes/default/logout.tpl:10
 #, fuzzy
-msgid "Checking for multi byte support"
-msgstr "Проверка поддержки gettext"
-
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+msgid "Sign in again"
+msgstr "Войти"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:120
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
 #, fuzzy
-msgid "Checking for getacl in IMAP implementation"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¸Ñ\81полÑ\8cзованиÑ\8f getacl Ð² IMAP"
+msgid "New ACL"
+msgstr "СоздаÑ\82Ñ\8c"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
-msgstr ""
-"Поддержка getacl в IMAP нужна для выставления прав на общие папки. "
-"Стандартный модуль IMAP не может обрабатывать acl. Для использования этой "
-"функции вам нужна последняя версия PHP."
+msgid "ACL type"
+msgstr "Тип"
 
-#: setup/class_setupStep_Checks.inc:128
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid "Checking for MySQL support"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
+msgid "Select an acl type"
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е, Ñ\87Ñ\82обÑ\8b Ð¿Ñ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\81еÑ\80веÑ\80Ñ\8b"
 
-#: setup/class_setupStep_Checks.inc:129
-#, fuzzy
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr ""
-"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы "
-"данных."
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "Применить"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:136
+#: ihtml/themes/default/acl.tpl:29
 #, fuzzy
-msgid "Checking for kadm5 support"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
+msgid "Available members"
+msgstr "Ð\94оÑ\81Ñ\82Ñ\83пнÑ\8bе Ð¿Ñ\80иложениÑ\8f"
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
 msgstr ""
-"Чтобы управлять пользователями с помощью Kerberos, необходим модуль kadm5, "
-"который можно загрузить из сети PEAR."
 
-#: setup/class_setupStep_Checks.inc:138
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
 #, fuzzy
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
+msgid "Members"
+msgstr "Включаемые объекты"
+
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
 msgstr ""
-"Чтобы управлять пользователями с помощью Kerberos, необходим модуль kadm5, "
-"который можно загрузить из сети PEAR."
 
-#: setup/class_setupStep_Checks.inc:144
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
 #, fuzzy
-msgid "Checking for SNMP support"
-msgstr "Проверка поддержки gettext"
-
-#: setup/class_setupStep_Checks.inc:145
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
-msgstr ""
+msgid "List of available ACL categories"
+msgstr "Выберите тип мыши"
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:152
+#: ihtml/themes/default/acl.tpl:69
 #, fuzzy
-msgid "Checking for CUPS support"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
+msgid "Available roles"
+msgstr "Ð\94оÑ\81Ñ\82Ñ\83пнÑ\8bе Ð¿Ñ\80иложениÑ\8f"
 
-#: setup/class_setupStep_Checks.inc:153
-#, fuzzy
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"Чтобы получать информацию о доступных принтерах по протоколу IPP вместо "
-"чтения файлов printcap, вам нужно установить модуль CUPS."
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "Отмена"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "Проверка утилиты fping"
+#: ihtml/themes/default/logout-close.tpl:5
+msgid "Your GOsa session has been closed!"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:163
-#, fuzzy
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
-"Эта программа используется, только если вы работате с бездисковыми "
-"терминалами."
 
-#: setup/class_setupStep_Checks.inc:164
-#, fuzzy
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 msgid ""
-"The fping utility is only used in thin client based terminal environment."
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
 msgstr ""
-"Эта программа используется, только если вы работате с бездисковыми "
-"терминалами."
+"Вы сейчас редактируете объект базы данных. Хотите отказаться от изменений?"
 
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "Начало"
+
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "Справка"
+
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "Выход"
+
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "Пользователь:"
+
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:180
+#: ihtml/themes/default/snapshotdialog.tpl:3
 #, fuzzy
+msgid "Restoring object snapshots"
+msgstr "Объект группы"
+
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"Чтобы пользоваться Samba 2/3, вам нужно установить некоторые дополнительные "
-"программы для создания хэшей паролей."
 
-#: setup/class_setupStep_Checks.inc:181
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
-"Чтобы пользоваться Samba 2/3, вам нужно установить некоторые дополнительные "
-"программы для создания хэшей паролей."
-
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-#, fuzzy
-msgid "Off"
-msgstr "не в сети"
 
-#: setup/class_setupStep_Checks.inc:192
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:12
 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."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"register_globals - механизм PHP, позволяющий делать все глобальные "
-"переменные доступными из сценария без смены области действия. Это может быть "
-"нарушением безопасности. Тем не менее, GOsa будет работать в любом случае."
 
-#: setup/class_setupStep_Checks.inc:193
-#, fuzzy
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "Проверка значения параметра register_globals (должно быть: off)"
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "Объект"
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/snapshotdialog.tpl:29
+msgid "There is no snapshot available that could be restored"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:202
-msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:203
+#: ihtml/themes/default/snapshotdialog.tpl:49
 #, fuzzy
+msgid "Creating object snapshots"
+msgstr "Объект группы"
+
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
-msgstr "Проверка значения параметра register_globals (должно быть: off)"
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:211
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:55
 msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
-msgstr "Проверка значения параметра register_globals (должно быть: off)"
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:212
+#: ihtml/themes/default/snapshotdialog.tpl:70
 #, fuzzy
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð·Ð½Ð°Ñ\87ениÑ\8f Ð¿Ð°Ñ\80амеÑ\82Ñ\80а register_globals (должно Ð±Ñ\8bÑ\82Ñ\8c: off)"
+msgid "Timestamp"
+msgstr "ТаймаÑ\83Ñ\82 (Ñ\81)"
 
-#: setup/class_setupStep_Checks.inc:219
-msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:220
-msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
-msgstr ""
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "Продолжить"
 
-#: setup/class_setupStep_Checks.inc:227
-msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "Информация"
+
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
-msgid "The Execution time should be at least 30 seconds."
+#: ihtml/themes/default/pwd_heimdal.tpl:5
+#, fuzzy
+msgid "Heimdal options"
+msgstr "Почтовые настройки"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:243
-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."
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:250
+#: ihtml/themes/default/pwd_heimdal.tpl:34
 #, fuzzy
-msgid "On"
-msgstr "Параметры"
-
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
-msgstr ""
+msgid "Hour"
+msgstr "час"
 
-#: setup/class_setupStep_Checks.inc:252
+#: ihtml/themes/default/pwd_heimdal.tpl:36
 #, fuzzy
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð·Ð½Ð°Ñ\87ениÑ\8f Ð¿Ð°Ñ\80амеÑ\82Ñ\80а register_globals (должно Ð±Ñ\8bÑ\82Ñ\8c: off)"
+msgid "Minute"
+msgstr "Ð\9fÑ\80инÑ\82еÑ\80"
 
-#: setup/class_setupStep_Checks.inc:259
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
-msgstr ""
+#: ihtml/themes/default/pwd_heimdal.tpl:38
+#, fuzzy
+msgid "Day"
+msgstr "день"
 
-#: setup/class_setupStep_Checks.inc:260
+#: ihtml/themes/default/pwd_heimdal.tpl:40
 #, fuzzy
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
-msgstr "Проверка значения параметра register_globals (должно быть: off)"
+msgid "Month"
+msgstr "месяц"
 
-#: setup/class_setupStep_Checks.inc:270
+#: ihtml/themes/default/pwd_heimdal.tpl:42
 #, fuzzy
-msgid "Configuration writeable"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
+msgid "Year"
+msgstr "Ð\9fоиÑ\81к"
 
-#: setup/class_setupStep_Checks.inc:271
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
+msgstr ""
+
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr ""
+
+#: ihtml/themes/default/pwd_heimdal.tpl:127
 #, fuzzy
-msgid "The configuration file can't be written"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82ь"
+msgid "Password end"
+msgstr "Ð\9fаÑ\80оль"
 
-#: setup/class_setupStep_Checks.inc:272
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
 #, php-format
+msgid "Save"
+msgstr "Сохранить"
+
+#: ihtml/themes/default/remove.tpl:6
 msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"Это приложение может использоваться несколькими группами. Подумайте еще раз, "
+"действительно ли вы хотите удалить его, так как GOsa не сможет отменить "
+"результаты этой операции."
 
-#: setup/setup_language.tpl:3
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
 #, fuzzy
-msgid "Please select the preferred language"
-msgstr "Язык по умолчанию"
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr ""
+"Если вы уверены в своих действиях, нажмите на кнопку <i>Удалить</i>, иначе "
+"нажмите <i>Отмена</i>."
 
-#: setup/setup_language.tpl:5
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "Конфликт блокировок"
+
+#: ihtml/themes/default/islocked.tpl:9
+#, fuzzy
 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."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
+"Если результат этой проверки блокировки - ложь, очевидно, другой человек "
+"закрыл браузер во время редактирования данных. Вы можете удалить файл "
+"блокировки, нажав на кнопку <i>Удалить</i>."
 
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "Язык по умолчанию"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "Фильтры"
 
-#: setup/setup_frame.tpl:12
+#: ihtml/themes/default/password.tpl:6
 #, fuzzy
-msgid "GOsa setup wizard"
-msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
+msgid "Change your password"
+msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/password.tpl:34
 #, fuzzy
-msgid "Installation"
-msgstr "РабоÑ\87аÑ\8f Ñ\81Ñ\82анÑ\86иÑ\8f"
+msgid "Success"
+msgstr "ЭкÑ\81поÑ\80Ñ\82 Ñ\83Ñ\81пеÑ\88ен."
 
-#: setup/setup_frame.tpl:19
-#, fuzzy
-msgid "Steps"
-msgstr "Системы"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
+msgstr ""
 
-#: setup/setup_finish.tpl:3
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
 #, fuzzy
-msgid "Create your configuration file"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82ь"
+msgid "Password change"
+msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80оль"
 
-#: setup/setup_finish.tpl:13
-#, fuzzy
-msgid "Download configuration"
-msgstr "Системная информация"
+#: ihtml/themes/default/password.tpl:52
+msgid ""
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
+msgstr ""
 
-#: setup/setup_finish.tpl:18
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "Текущий пароль"
+
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "Новый пароль"
+
+#: ihtml/themes/default/password.tpl:85
 #, fuzzy
-msgid "Status: "
-msgstr "СоÑ\81Ñ\82оÑ\8fние"
+msgid "again"
+msgstr "Ð\9dаÑ\87ало"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+#: ihtml/themes/default/password.tpl:86
 #, fuzzy
-msgid "LDAP schema check"
-msgstr "СеÑ\80веÑ\80 Ð¿Ð¾Ð´ÐºÐ°Ñ\87ки"
+msgid "New password repeated"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
-msgstr ""
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+#, fuzzy
+msgid "Password strength"
+msgstr "Хэширование паролей"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
+#: ihtml/themes/default/password.tpl:100
 #, fuzzy
-msgid "No"
-msgstr "неÑ\82"
+msgid "Change"
+msgstr "Ð\9aанал"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
+#: ihtml/themes/default/password.tpl:101
 #, fuzzy
-msgid "Yes"
-msgstr "СиÑ\81Ñ\82емÑ\8b"
+msgid "Click here to change your password"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+msgid "Copy & paste wizard"
 msgstr ""
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/copyPasteDialog.tpl:7
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "Организация"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
+msgstr ""
 
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "Фамилия"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
+msgstr ""
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
+#: ihtml/themes/default/copyPasteDialog.tpl:24
 #, fuzzy
-msgid "Mail address"
-msgstr "MAC-адрес"
+msgid "Cancel all"
+msgstr "Отмена"
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+#, fuzzy
+msgid "Operation complete"
+msgstr "не полный"
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "Готово"
+
+#: ihtml/themes/default/sizelimit.tpl:3
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"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 от большой нагрузки. Простейший способ "
+"снизить время обработки запроса при обслуживаии большой базы данных это "
+"установить минимальное значение. Кроме того, будет очень полезно "
+"использовать фильтры для просмотра только ограниченного количества объектов."
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "Общее"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
+msgstr "Выберите тип реакции для данной сессии"
 
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr ""
+#: ihtml/themes/default/sizelimit.tpl:9
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "игнорировать ошибку и показать все найденые объекты"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
+#: ihtml/themes/default/sizelimit.tpl:10
+#, fuzzy
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
 msgstr ""
+"Игнорировать ошибку и показать все возвращаемые объекты в пределах лимита и "
+"позволить использовать фильтры"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr ""
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
+msgstr "Установить"
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr ""
-
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
 msgstr ""
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
 msgstr ""
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
-msgstr ""
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "Поиск"
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
+#: plugins/generic/welcome/welcome.tpl:4
+#, fuzzy
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
+"Это начальная страница GOsa. Из меню слева или среди пиктограмм ниже вы "
+"можете выбрать нужный вам раздел. Все изменения будут сразу же переноситься "
+"на LDAP-сервер вашей компании."
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: plugins/generic/welcome/welcome.tpl:8
+#, fuzzy
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
 msgstr ""
+"Чтобы завершить сеанс, выберите в меню слева вверху пункт <b>Выход</b>. "
+"Чтобы вернуться на начальную страницу, выберите <b>Начало</b>."
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
-msgstr ""
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "Команда разработчиков GOsa"
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
-msgstr ""
+#: plugins/generic/welcome/main.inc:26
+#, php-format
+msgid "Welcome %s!"
+msgstr "Добро пожаловать %s!"
 
-#: setup/setup_feedback.tpl:123
-msgid "Features"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "Общее"
 
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "Unix"
 
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "Почта"
 
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-#, fuzzy
-msgid "GOsa settings 3/3"
-msgstr "Почтовые настройки пользователя"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "Факс"
 
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "Прокси-сервер"
 
-#: setup/class_setupStep_Config3.inc:193
-msgid "Session lifetime must be a numeric value."
-msgstr ""
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/class_setupStep_Config3.inc:197
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr ""
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "Группа"
 
-#: setup/class_setupStep_Feedback.inc:91
-#, fuzzy
-msgid "UNIX accounts/groups"
-msgstr "UNIX аккаунт"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "Подразделение"
 
-#: setup/class_setupStep_Feedback.inc:93
-#, fuzzy
-msgid "Samba management"
-msgstr "Управление системами"
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "Телефон"
 
-#: setup/class_setupStep_Feedback.inc:95
-#, fuzzy
-msgid "Mailsystem management"
-msgstr "Управление системами"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "Приложение"
 
-#: setup/class_setupStep_Feedback.inc:97
-#, fuzzy
-msgid "FAX system administration"
-msgstr "Управление пользователями"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "Сервер"
 
-#: setup/class_setupStep_Feedback.inc:99
-#, fuzzy
-msgid "Asterisk administration"
-msgstr "Управление пользователями"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "Тонкий клиент"
 
-#: setup/class_setupStep_Feedback.inc:101
-#, fuzzy
-msgid "System inventory"
-msgstr "УдалиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82"
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "РабоÑ\87аÑ\8f Ñ\81Ñ\82анÑ\86иÑ\8f"
 
-#: setup/class_setupStep_Feedback.inc:103
-#, fuzzy
-msgid "System-/Configmanagement"
-msgstr "Управление системами"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "Объект группы"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "Адресная книга"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "Принтер"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-#, fuzzy
-msgid "Notification and feedback"
-msgstr "Изменить сертификаты"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "Имя объекта"
 
-#: setup/class_setupStep_Feedback.inc:112
-#, fuzzy
-msgid "Get notifications or send feedback"
-msgstr "Местоположение ветки"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "Описание"
 
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
+#: plugins/generic/references/contents.tpl:11
 #, fuzzy
-msgid "Setup error"
-msgstr "Состояние системы"
-
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr ""
-
-#: setup/class_setupStep_Feedback.inc:140
-#, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+msgid "Contents"
+msgstr "Контакт"
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "Данный объект не имеет ссылок на другие объекты"
 
-#: setup/class_setupStep_Feedback.inc:149
+#: plugins/personal/password/class_password.inc:27
 #, fuzzy
-msgid "Feedback sucessfully send"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ð·Ð°Ð²ÐµÑ\80Ñ\88ена"
+msgid "Change user passwords"
+msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/class_setupStep_Feedback.inc:179
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
 #, fuzzy
-msgid "Please specify a valid email address."
-msgstr "Ð\92ведиÑ\82е ÐºÐ¾Ñ\80Ñ\80екÑ\82ное Ð¸Ð¼Ñ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f!"
+msgid "User password"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
-msgstr ""
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "Для продолжения укажите свой текущий пароль."
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Настройки Samba"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr "Введенные пароли не совпадают!"
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
-msgstr ""
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "Вы не указали новый пароль."
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-#, fuzzy
-msgid "Samba SID"
-msgstr "Samba"
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr "Новый и текущий пароли слишком похожи."
 
-#: setup/setup_config2.tpl:31
-#, fuzzy
-msgid "RID base"
-msgstr "Базы данных"
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "Новый пароль слишком короткий."
 
-#: setup/setup_config2.tpl:46
-#, fuzzy
-msgid "Workstation container"
-msgstr "Ð\98мÑ\8f Ñ\80абоÑ\87ий Ñ\81Ñ\82анÑ\86ии"
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "Ð\9fÑ\80и Ð¿Ð¾Ð¿Ñ\8bÑ\82ке Ñ\81мениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c Ð¸Ð·Ð²Ð½Ðµ Ð²Ð¾Ð·Ð½Ð¸ÐºÐ»Ð° Ð¿Ñ\80облема: "
 
-#: setup/setup_config2.tpl:61
-#, fuzzy
-msgid "Samba SID mapping"
-msgstr "Samba"
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr "Введенный вами текущий пароль не совпадает с реальным."
 
-#: setup/setup_config2.tpl:71
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Timezone"
-msgstr "Ð\9cобилÑ\8cнÑ\8bй"
+msgid "You have no permission to change your password."
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: setup/setup_config2.tpl:74
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "Моя учетная запись"
+
+#: plugins/personal/password/nochange.tpl:2
 #, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "ЯзÑ\8bк Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
+msgid "Password change not allowed"
+msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/setup_config2.tpl:96
+#: plugins/personal/password/nochange.tpl:6
 #, fuzzy
-msgid "Additional GOsa settings"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð² fstab"
+msgid "You are not allowed to change your password at this time"
+msgstr "Ð\92ам Ð½Ðµ Ñ\80азÑ\80еÑ\88ено Ð¼ÐµÐ½Ñ\8fÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c."
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
+#: plugins/personal/password/changed.tpl:3
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
 msgstr ""
+"Вы успешно сменили свой пароль. Не забудьте изменить нужные настройки "
+"использующих его программ."
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "Удалить параметры"
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "Назад"
 
-#: setup/setup_config2.tpl:124
+#: plugins/personal/password/password.tpl:4
 #, fuzzy
-msgid "Enable DHCP extension"
-msgstr "Удалить параметры"
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
+msgstr ""
+"В полях ниже вы можете изменить свой пароль. Изменения вступят в силу "
+"немедленно. Пожалуйста, запомните новый пароль, так как иначе вы не сможете "
+"войти в систему."
 
-#: setup/setup_config2.tpl:136
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
 #, fuzzy
-msgid "Enable mime type management"
-msgstr "Управление системами"
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
+msgstr ""
+"Изменение пароля влияет на аутентификацию при использовании почты, прокси-"
+"сервера, Samba и служб UNIX."
 
-#: setup/setup_config2.tpl:148
-#, fuzzy
-msgid "Enable FAI release management"
-msgstr "Управление подразделениями"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "Подтверждение"
 
-#: setup/setup_config2.tpl:160
-#, fuzzy
-msgid "Enable user netatalk plugin"
-msgstr "Создать телефонный аккаунт"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "Изменить пароль"
 
-#: setup/setup_config2.tpl:171
-#, fuzzy
-msgid "Government mode"
-msgstr "в папку"
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "Очистить поля"
 
-#: setup/setup_config2.tpl:180
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
 #, fuzzy
-msgid "Mail settings"
+msgid "Password settings"
 msgstr "Почтовые настройки пользователя"
 
-#: setup/setup_config2.tpl:184
-#, fuzzy
-msgid "Mail method"
-msgstr "Почтовые настройки"
-
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "отключен"
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "Сертификаты"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "Стандартный сертификат"
 
-#: setup/setup_config2.tpl:214
-#, fuzzy
-msgid "Vacation templates"
-msgstr "Шаблон рабочей станции"
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "Удалить"
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "Сертификат S/MIME"
 
-#: setup/setup_config2.tpl:240
-#, fuzzy
-msgid "Snapshots / Undo"
-msgstr "Приложение"
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "Сертификат PKCS12"
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-#, fuzzy
-msgid "Enable snapshots"
-msgstr "СоздаÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "СеÑ\80ийнÑ\8bй Ð½Ð¾Ð¼ÐµÑ\80 Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82а"
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Snapshot base"
-msgstr "Ð\9fÑ\80иложение"
+msgid "Edit organizational user settings"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð² fstab"
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "Сервер"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "женский"
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "Пользователь"
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "мужской"
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "Пароль"
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+#: plugins/personal/generic/class_user.inc:496
 #, fuzzy
-msgid "LDAP inspection"
-msgstr "Ð\9fÑ\80овеÑ\80ка ÐºÐ¾Ð½Ñ\84игÑ\83Ñ\80аÑ\86ии PHP"
+msgid "Serial number"
+msgstr "ТелеÑ\84оннÑ\8bе Ð½Ð¾Ð¼ÐµÑ\80а"
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
+#: plugins/personal/generic/class_user.inc:541
+msgid ""
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:113
-#, fuzzy
-msgid "Checking for root object"
-msgstr "Проверка модуля gd"
+#: plugins/personal/generic/class_user.inc:551
+#, php-format
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:125
-#, fuzzy
-msgid "Checking for invisible departments"
-msgstr "Проверка поддержки gettext"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:131
+#: plugins/personal/generic/class_user.inc:560
 #, fuzzy
-msgid "Checking for invisible users"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
+msgid "No certificate installed"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82Ñ\8b"
 
-#: setup/class_setupStep_Migrate.inc:137
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Checking for super administrator"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ\82елÑ\8cнÑ\8bÑ\85 Ð¿Ñ\80огÑ\80амм"
+msgid "Password method"
+msgstr "Ð¥Ñ\8dÑ\88иÑ\80ование Ð¿Ð°Ñ\80олей"
 
-#: setup/class_setupStep_Migrate.inc:143
+#: plugins/personal/generic/class_user.inc:586
 #, fuzzy
-msgid "Checking for users outside the people tree"
-msgstr "Проверка модуля cups"
-
-#: setup/class_setupStep_Migrate.inc:149
-#, fuzzy
-msgid "Checking for groups outside the groups tree"
-msgstr "Проверка модуля cups"
-
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:161
-#, fuzzy
-msgid "Checking for duplicate uid numbers"
-msgstr "Проверка поддержки gettext"
-
-#: setup/class_setupStep_Migrate.inc:167
-#, fuzzy
-msgid "Checking for duplicate gid numbers"
-msgstr "Проверка поддержки gettext"
-
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-#, fuzzy
-msgid "LDAP query failed"
-msgstr "Невозможно выполнить запрос к базе данных!"
-
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "Предупреждение"
-
-#: setup/class_setupStep_Migrate.inc:213
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "Укажите корректный номер телефона."
-
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:262
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "Укажите корректный номер телефона."
-
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "Ошибка"
-
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-#, fuzzy
-msgid "Migrate"
-msgstr "Дата"
-
-#: setup/class_setupStep_Migrate.inc:387
-#, fuzzy, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr "Вы собираетесь удалить объект %s."
-
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-#, fuzzy
-msgid "Move"
-msgstr "Режим"
-
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
-msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-#, fuzzy
-msgid "Migration error"
-msgstr "Дата"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "Список подразделений"
-
-#: setup/class_setupStep_Migrate.inc:727
-#, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "Создать"
-
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "Срок действия пароля истекает"
-
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr "Введенные пароли не совпадают!"
-
-#: setup/class_setupStep_Migrate.inc:975
-#, fuzzy
-msgid "Input error"
-msgstr "Ошибка LDAP:"
-
-#: setup/class_setupStep_Migrate.inc:975
-#, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "Введите корректное имя пользователя!"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1019
-#, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr ""
+msgid "The selected password method is no longer available."
+msgstr "У выбранного приложения нет параметров."
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1095,5576 +1079,5650 @@ msgstr ""
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "Ошибка LDAP:"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "Невозможно подключиться к серверу базы данных!"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-#, fuzzy
-msgid "to"
-msgstr "Отношение"
-
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-#, fuzzy
-msgid "Try to create root object"
-msgstr "Объект группы"
-
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "Ошибка при выполнении \"%s\"!"
-
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
-msgstr ""
-
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-#, fuzzy
-msgid "License"
-msgstr "в"
-
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
-msgstr ""
-
-#: setup/class_setupStep_Welcome.inc:38
-#, fuzzy
-msgid "Welcome"
-msgstr "Добро пожаловать %s!"
-
-#: setup/class_setupStep_Welcome.inc:39
-#, fuzzy
-msgid "The welcome message"
-msgstr "Удалить"
-
-#: setup/class_setupStep_Welcome.inc:40
-#, fuzzy
-msgid "Welcome to GOsa setup wizard"
-msgstr "Добро пожаловать в раздел настройки GOsa!"
-
-#: setup/setup_config3.tpl:2
-#, fuzzy
-msgid "GOsa core settings"
-msgstr "Почтовые настройки пользователя"
-
-#: setup/setup_config3.tpl:6
-#, fuzzy
-msgid "Disable primary group filter"
-msgstr "Показать группы пользователей"
-
-#: setup/setup_config3.tpl:18
-#, fuzzy
-msgid "Display summary in listings"
-msgstr "Шаблон для групп"
-
-#: setup/setup_config3.tpl:30
-#, fuzzy
-msgid "Honour administrative units"
-msgstr "Управление группами"
-
-#: setup/setup_config3.tpl:42
-#, fuzzy
-msgid "Smarty compile directory"
-msgstr "Домашний каталог"
-
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
-
-#: setup/setup_config3.tpl:60
-#, fuzzy
-msgid "Path for PPD storage"
-msgstr "Хэширование паролей"
-
-#: setup/setup_config3.tpl:77
-#, fuzzy
-msgid "Path for kiosk profile storage"
-msgstr "Почтовые настройки пользователя"
-
-#: setup/setup_config3.tpl:96
-#, fuzzy
-msgid "Enable system deployment"
-msgstr "Управление системами"
-
-#: setup/setup_config3.tpl:115
-#, fuzzy
-msgid "Mail queue script"
-msgstr "Путь к сценариям"
-
-#: setup/setup_config3.tpl:134
-#, fuzzy
-msgid "Notification script"
-msgstr "Изменить сертификаты"
-
-#: setup/setup_config3.tpl:153
-msgid "Enable edit locking"
-msgstr ""
-
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
-
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "Атрибут DN пользователей"
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "Имя пользователя"
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "Фамилия"
 
-#: setup/setup_config3.tpl:198
-msgid "Enforce encrypted connections"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "Имя"
 
-#: setup/setup_config3.tpl:210
-#, fuzzy
-msgid "Warn if session is not encrypted"
-msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы."
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "Домашняя страница"
 
-#: setup/setup_config3.tpl:222
-#, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "Общая информация о пользователе"
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "Факс"
 
-#: setup/setup_config3.tpl:234
-#, fuzzy
-msgid "Session lifetime"
-msgstr "Конфликт сеансов"
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "Мобильный"
 
-#: setup/setup_config3.tpl:243
-msgid "Debugging"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "Пейджер"
 
-#: setup/setup_config3.tpl:247
+#: plugins/personal/generic/class_user.inc:1296
 #, fuzzy
-msgid "Show PHP errors"
-msgstr "Ð\9eÑ\88ибка LDAP:"
+msgid "Cannot open certificate!"
+msgstr "Ð\9dевозможно Ð²Ñ\8bбÑ\80аÑ\82Ñ\8c Ð±Ð°Ð·Ñ\83 Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
 
-#: setup/setup_config3.tpl:259
-#, fuzzy
-msgid "Maximum LDAP query time"
-msgstr "Размер квоты"
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "Подразделение"
 
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "Номер дома"
 
-#: setup/setup_config3.tpl:289
-#, fuzzy
-msgid "Debug level"
-msgstr "Уровень информативности"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "Специальность"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-#, fuzzy
-msgid "Disabled"
-msgstr "отключен"
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "Последняя доставка"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
-#, fuzzy
-msgid "Enabled"
-msgstr "отключен"
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
+msgstr "Местоположение сотрудника"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "Описание подразделения"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "Поиск"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
+msgstr "Область деятельности"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "Применить"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "Должность"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "Отмена"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "Видимый всем"
 
-#: setup/setup_ldap.tpl:25
-#, fuzzy
-msgid "LDAP connection"
-msgstr "Отключение"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "Улица"
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "Местоположение"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "Роль"
 
-#: setup/setup_ldap.tpl:37
-#, fuzzy
-msgid "Connection URL"
-msgstr "Подключение"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "Почтовый индекс"
 
-#: setup/setup_ldap.tpl:45
+#: plugins/personal/generic/class_user.inc:1443
 #, fuzzy
-msgid "TLS connection"
-msgstr "Соединение..."
+msgid "Generic user settings"
+msgstr "Ð\9eбÑ\89аÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82еле"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "Пользователи"
+
+#: plugins/personal/generic/class_user.inc:1452
 #: plugins/personal/generic/multiple_generic.tpl:47
 #: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
+#: plugins/admin/users/class_divListUsers.inc:162
 #: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
 #: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
 msgid "Base"
 msgstr "Ветка"
 
-#: setup/setup_ldap.tpl:65
-#, fuzzy
-msgid "Reload"
-msgstr "чтение"
-
-#: setup/setup_ldap.tpl:69
-#, fuzzy
-msgid "Authentication"
-msgstr "Рабочая станция Windows"
-
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "DN администратора"
-
-#: setup/setup_ldap.tpl:78
-#, fuzzy
-msgid "Select user"
-msgstr "Удалить"
-
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
-
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "Пароль администратора"
-
-#: setup/setup_ldap.tpl:101
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
 #, fuzzy
-msgid "Schema based settings"
-msgstr "Настройки Samba"
-
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
+msgid "Surename"
+msgstr "Имя сервера"
 
-#: setup/setup_ldap.tpl:117
+#: plugins/personal/generic/class_user.inc:1456
 #, fuzzy
-msgid "Current status"
-msgstr "Состояние системы"
-
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
+msgid "User identification"
 msgstr "Информация"
 
-#: setup/setup_migrate.tpl:5
-msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
-msgstr ""
-
-#: setup/setup_migrate.tpl:33
-#, fuzzy
-msgid "Check again"
-msgstr "Проверить"
-
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
-
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-#, fuzzy
-msgid "Select all"
-msgstr "Удалить"
-
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr ""
-
-#: setup/setup_migrate.tpl:72
-#, fuzzy
-msgid "Move selected workstations"
-msgstr "Выберите чтобы посмотреть рабочие станции"
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "Обращение"
 
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "Академическое звание"
+
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
 msgstr ""
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+#: plugins/personal/generic/class_user.inc:1460
 #, fuzzy
-msgid "Close"
-msgstr "Ð\92Ñ\8bбÑ\80аÑ\82Ñ\8c"
+msgid "Home phone number"
+msgstr "ТелеÑ\84оннÑ\8bе Ð½Ð¾Ð¼ÐµÑ\80а"
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "Организация"
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "Дата рождения"
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1465
+#, fuzzy
+msgid "Gender"
+msgstr "Отправитель"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1466
+#, fuzzy
+msgid "Preferred language"
+msgstr "Язык по умолчанию"
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#: plugins/personal/generic/class_user.inc:1467
 #, fuzzy
-msgid "Hide changes"
-msgstr "УдалиÑ\82Ñ\8c Ñ\82елеÑ\84оннÑ\8bй Ð°ÐºÐºÐ°Ñ\83нÑ\82"
+msgid "Department number"
+msgstr "УпÑ\80авление Ð¿Ð¾Ð´Ñ\80азделениÑ\8fми"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
+#: plugins/personal/generic/class_user.inc:1468
 #, fuzzy
-msgid "Show changes"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82елеÑ\84онÑ\8b"
+msgid "Employee number"
+msgstr "ФоÑ\80ма Ñ\82Ñ\80Ñ\83доÑ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82ва"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "Форма трудоустройства"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "Местоположение"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "Адм. единица"
 
-#: setup/setup_migrate.tpl:148
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
 #, fuzzy
-msgid "Move selected users into this people tree"
-msgstr "СоздаÑ\82Ñ\8c Ñ\88аблон"
+msgid "User picture"
+msgstr "Ð\98зобÑ\80ажение"
 
-#: setup/setup_migrate.tpl:198
+#: plugins/personal/generic/class_user.inc:1473
 #, fuzzy
-msgid "Next"
-msgstr "текст"
+msgid "Room number"
+msgstr "Телефонные номера"
 
-#: setup/setup_migrate.tpl:199
+#: plugins/personal/generic/class_user.inc:1474
 #, fuzzy
-msgid "Abort"
-msgstr "Ð\9fоÑ\80Ñ\82"
+msgid "Telefon number"
+msgstr "ТелеÑ\84оннÑ\8bе Ð½Ð¾Ð¼ÐµÑ\80а"
 
-#: setup/setup_migrate.tpl:201
+#: plugins/personal/generic/class_user.inc:1475
 #, fuzzy
-msgid "Create a new GOsa administrator account"
-msgstr "СоздаÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
+msgid "Mobile number"
+msgstr "Ð\94омаÑ\88ний Ñ\82елеÑ\84он"
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1476
+#, fuzzy
+msgid "Pager number"
+msgstr "Телефонные номера"
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "Идентификатор пользователя"
+#: plugins/personal/generic/class_user.inc:1477
+#, fuzzy
+msgid "User certificates"
+msgstr "Стандартный сертификат"
 
-#: setup/setup_migrate.tpl:233
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
 #, fuzzy
-msgid "Password (again)"
-msgstr "Ð¥Ñ\8dÑ\88иÑ\80ование Ð¿Ð°Ñ\80олей"
+msgid "Postal address"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bй Ð¸Ð½Ð´ÐµÐºÑ\81"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1480
+#, fuzzy
+msgid "Fax number"
+msgstr "Терминал"
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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 ""
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "Личная информация"
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-#, fuzzy
-msgid "Current"
-msgstr "Текущий пароль"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "Изображение"
 
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
 #, fuzzy
-msgid "After migration"
-msgstr "УпÑ\80авление Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8fми"
+msgid "Preferred langage"
+msgstr "ЯзÑ\8bк Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "Выберите ветку для пользователя"
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+#, fuzzy
+msgid "Select a base"
+msgstr "Выберите, чтобы просмотреть серверы"
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "Адрес"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "Личный телефон"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "PHP setup configuration"
-msgstr "Ð\91азÑ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "Ð¥Ñ\8dÑ\88иÑ\80ование Ð¿Ð°Ñ\80олей"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "show information"
-msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82Ñ\8b"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "Ð\93оÑ\82ово"
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾Ð± Ð¾Ñ\80ганизаÑ\86ии"
 
-#: setup/class_setupStep_Finish.inc:38
-#, fuzzy
-msgid "Write configuration file"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "Ð\9dомеÑ\80 Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
 
-#: setup/class_setupStep_Finish.inc:39
-#, fuzzy
-msgid "Finish - write the configuration file"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "Ð\9dомеÑ\80 Ñ\80абоÑ\82ника"
 
-#: setup/class_setupStep_Finish.inc:100
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "Номер комнаты"
+
+#: plugins/personal/generic/paste_generic.tpl:1
 #, fuzzy
-msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr ""
-"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
+msgid "User settings"
+msgstr "Почтовые настройки пользователя"
 
-#: setup/class_setupStep_Finish.inc:102
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
 #, fuzzy
-msgid "The configuration is currently not readable or it does not exists."
-msgstr ""
-"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
+msgid "Last name"
+msgstr "Список"
 
-#: setup/class_setupStep_Finish.inc:111
-#, fuzzy, 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. You may want to execute these commands to achieve this "
-"requirement:"
-msgstr ""
-"Поместив файл gosa.conf в каталог /etc/gosa, убедитесь, что только "
-"пользователь веб-сервера может его читать. Для этого вам, возможно, "
-"понадобится выполнить следующие команды:"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+#, fuzzy
+msgid "First name"
+msgstr "Список"
 
-#: setup/class_setupStep_Ldap.inc:53
+#: plugins/personal/generic/paste_generic.tpl:23
 #, fuzzy
-msgid "LDAP setup"
-msgstr "LDAP-сервер"
+msgid "Clear password"
+msgstr "Новый пароль"
 
-#: setup/class_setupStep_Ldap.inc:54
+#: plugins/personal/generic/paste_generic.tpl:24
 #, fuzzy
-msgid "LDAP connection setup"
-msgstr "Соединение..."
+msgid "Set new password"
+msgstr "Ð\98змениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/class_setupStep_Ldap.inc:55
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "Удалить изображение"
+
+#: plugins/personal/generic/password.tpl:2
 msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
+"Вы изменили метод шифрования паролей в базе LDAP. В связи с этим введите "
+"свой пароль снова. GOsa произведет шифрование в соответствии с выбраной "
+"схемой."
 
-#: setup/class_setupStep_Ldap.inc:105
-#, fuzzy, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
-
-#: setup/class_setupStep_Ldap.inc:107
-#, fuzzy, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "Сменить изображение"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, fuzzy, php-format
-msgid "Anonymous bind on server '%s' succeeded."
-msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
+msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:113
+#: plugins/personal/generic/generic.tpl:62
 #, fuzzy
-msgid "Please specify user and password."
-msgstr "Ð\92ведиÑ\82е Ñ\81вой Ð¿Ð°Ñ\80олÑ\8c!"
+msgid "Template name"
+msgstr "Шаблон"
 
-#: setup/class_setupStep_Ldap.inc:115
-#, fuzzy, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии. Ð\9eÑ\82веÑ\82 Ñ\81еÑ\80веÑ\80а: \"%s\"."
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "Ð\9fол"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
-#, fuzzy
-msgid "Language setup"
-msgstr "Язык"
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "Настроить"
 
-#: setup/class_setupStep_Language.inc:42
-#, fuzzy
-msgid "This step allows you to select your preferred language."
-msgstr "Язык по умолчанию"
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "Воспользуйтесь закладкой \"Телефон\""
 
-#: setup/class_setupStep_Language.inc:47
+#: plugins/personal/generic/main.inc:104
 #, fuzzy
-msgid "Automatic"
-msgstr "авÑ\82омаÑ\82иÑ\87еÑ\81ки"
+msgid "You have no permission to set your password!"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: setup/class_setup.inc:196
-#, fuzzy
-msgid "Completed"
-msgstr "не полный"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "Общая информация о пользователе"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "Назад"
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "Выберите группы для добавления"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "Продолжить"
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "Объединения в подразделении"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "Выбрать раздел, для которого будет осуществлен поиск"
 
-#: setup/setup_config1.tpl:6
-#, fuzzy
-msgid "Theme"
-msgstr "Мобильный"
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "Шаблон для групп"
 
-#: setup/setup_config1.tpl:15
-#, fuzzy
-msgid "Apache"
-msgstr "Отмена"
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "Регулярное выражение, соответствующее именам групп"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "Показать группы пользователей"
 
-#: setup/setup_config1.tpl:27
-#, fuzzy
-msgid "People and group storage"
-msgstr "СÑ\82Ñ\80Ñ\83кÑ\82Ñ\83Ñ\80наÑ\8f ÐµÐ´Ð¸Ð½Ð¸Ñ\86а (OU) Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "Ð\98мÑ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f, Ð´Ð»Ñ\8f ÐºÐ¾Ñ\82оÑ\80ого Ð¿ÐµÑ\80еÑ\87иÑ\81лÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: setup/setup_config1.tpl:30
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid "People DN attribute"
-msgstr "Ð\90Ñ\82Ñ\80ибÑ\83Ñ\82 DN Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
+msgid "Search in subtrees"
+msgstr "Ð\98Ñ\81каÑ\82Ñ\8c Ð² Ð¿Ð¾Ð´Ð´ÐµÑ\80евÑ\8cÑ\8fÑ\85"
 
-#: setup/setup_config1.tpl:41
-#, fuzzy
-msgid "People storage subtree"
-msgstr "Структурная единица (OU) пользователей"
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
+msgstr ""
 
-#: setup/setup_config1.tpl:50
+#: plugins/personal/posix/class_posixAccount.inc:154
 #, fuzzy
-msgid "Group storage subtree"
-msgstr "OU групп"
-
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+msgid "expired"
+msgstr "Экспорт"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
 msgstr ""
 
-#: setup/setup_config1.tpl:81
+#: plugins/personal/posix/class_posixAccount.inc:159
 #, fuzzy
-msgid "Automatic uids"
-msgstr "авÑ\82омаÑ\82иÑ\87еÑ\81ки"
+msgid "active, password not changable"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:161
+#, fuzzy
+msgid "active, password expired"
+msgstr "Срок действия пароля истекает"
 
-#: setup/setup_config1.tpl:113
+#: plugins/personal/posix/class_posixAccount.inc:163
 #, fuzzy
-msgid "Number base for people/groups"
-msgstr "Ð\91аза Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\82оÑ\80ов Ð´Ð»Ñ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей/гÑ\80Ñ\83пп"
+msgid "active"
+msgstr "Ð\9bиÑ\87нÑ\8bй"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "Не настроено"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
-#, fuzzy
-msgid "Password settings"
-msgstr "Почтовые настройки пользователя"
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "автоматически"
 
-#: setup/setup_config1.tpl:140
-msgid "Password encryption algorithm"
+#: plugins/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_config1.tpl:151
-#, fuzzy
-msgid "Password restrictions"
-msgstr "Срок действия пароля истекает"
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "Окружение"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
+msgstr "Пароль нельзя изменить в течение %s дн. с последней смены (shadowMin)"
+
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "Пароль должен быть изменен по истечении %s дн. (shadowMax)"
+
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
 msgstr ""
+"Отключить учетную запись, если срок действия пароля истек и прошло %s дн. "
+"бездействия (shadowInactive)"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
 msgstr ""
+"Предупреждать пользователей за %s дн. до истечения срока действия пароля "
+"(shadowWarning)"
 
-#: setup/setup_config1.tpl:182
-#, fuzzy
-msgid "Password change hook"
-msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "оÑ\82клÑ\8eÑ\87ен"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "полный доступ"
 
-#: setup/setup_config1.tpl:209
-#, fuzzy
-msgid "Use account expiration"
-msgstr "Учетная запись"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "разрешить доступ только на эти хосты"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
 msgstr ""
 
-#: setup/setup_config1.tpl:222
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"Сейчас вам нужно указать параметры доступа к LDAP-серверу. GOsa всегда "
-"выступает в роли администратора и управляет правами доступа самостоятельно. "
-"Это временное решение, пока в OpenLDAP не будут реализованы полностью "
-"средства контроля доступа (ACI) внутри каталогов. Чтобы это решение "
-"работало, укажите DN (уникальное имя) администратора и соответствующий "
-"пароль."
+msgid "Uid number"
+msgstr "Терминал"
 
-#: setup/setup_config1.tpl:223
+#: plugins/personal/posix/class_posixAccount.inc:914
 msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
 msgstr ""
-"Некоторые основные параметры LDAP изменяемы и влияют на расположение "
-"сохраняемой информации о пользователях и группах, а также на способ создания "
-"учетных записей. Проверьте, подходят ли вам значения, указанные ниже."
 
-#: setup/setup_config1.tpl:224
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "Группа пользователя"
 
-#: setup/setup_welcome.tpl:4
-msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "Домашний каталог"
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/setup_welcome.tpl:11
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
+
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
 #, fuzzy
-msgid "Create a basic, single site configuration"
-msgstr "Ð\91азÑ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+msgid "shadowMin"
+msgstr "Ð\97аÑ\82енение"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+#, fuzzy
+msgid "shadowMax"
+msgstr "Затенение"
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
+#, fuzzy
+msgid "shadowWarning"
+msgstr "Затенение"
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
+#, fuzzy
+msgid "shadowInactive"
+msgstr "Затенение"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: setup/setup_welcome.tpl:20
+#: plugins/personal/posix/class_posixAccount.inc:1496
 #, fuzzy
-msgid "Find every possible configuration error"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
+msgid "POSIX account"
+msgstr "Ð\90ккаÑ\83нÑ\82 FTP"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Оболочка"
 
-#: setup/setup_welcome.tpl:25
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "Идентификатор пользователя"
+
+#: plugins/personal/posix/class_posixAccount.inc:1509
 #, fuzzy
-msgid "To continue..."
-msgstr "Ð\9fÑ\80одолжение Ð½Ð°Ñ\81Ñ\82Ñ\80ойки..."
+msgid "Group ID"
+msgstr "Ð\93Ñ\80Ñ\83ппа"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1511
+#, fuzzy
+msgid "Force password change on login"
+msgstr "Сменить пароль"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1512
+#, fuzzy
+msgid "Shadow min"
+msgstr "Затенение"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#: plugins/personal/posix/class_posixAccount.inc:1513
 #, fuzzy
-msgid "GOsa settings 2/3"
-msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
+msgid "Shadow max"
+msgstr "Ð\97аÑ\82енение"
 
-#: setup/class_setupStep_Config2.inc:87
+#: plugins/personal/posix/class_posixAccount.inc:1514
 #, fuzzy
-msgid "Customize special parameters"
-msgstr "Ð\98змениÑ\82Ñ\8c Ð¿Ð°Ñ\80амеÑ\82Ñ\80Ñ\8b"
+msgid "Shadow warning"
+msgstr "Ð\97аÑ\82енение"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+#: plugins/personal/posix/class_posixAccount.inc:1515
 #, fuzzy
-msgid "GOsa settings 1/3"
-msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
+msgid "Shadow inactive"
+msgstr "Ð\97аÑ\82енение"
 
-#: setup/class_setupStep_Config1.inc:76
+#: plugins/personal/posix/class_posixAccount.inc:1516
 #, fuzzy
-msgid "GOsa generic settings"
-msgstr "Ð\9eбÑ\89аÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82еле"
+msgid "Shadow expire"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð»Ñ\8eдей"
 
-#: setup/class_setupStep_Config1.inc:118
-#, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1517
+#, fuzzy
+msgid "System trust model"
+msgstr "Системные доверия"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:4
+#, fuzzy
+msgid "Posix settings"
+msgstr "Атрибуты UNIX"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr "Структурная единица (OU) пользователей"
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "Указать UID/GID вручную"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr "OU групп"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "Членство в группах"
 
-#: setup/class_setupStep_Config1.inc:130
-msgid "Uid base must be numeric"
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
 msgstr ""
+"(Предупреждение: NFS не поддерживает более 16 групп для одного пользователя!)"
 
-#: setup/class_setupStep_Config1.inc:134
-msgid "The given password minimum length is not numeric."
-msgstr ""
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "Основная группа"
 
-#: setup/class_setupStep_Config1.inc:137
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "Состояние"
+
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
 #, fuzzy
-msgid "The given password differ value is not numeric."
-msgstr "Ð\97наÑ\87ение Ð¿Ð¾Ð»Ñ\8f \"Ð\9aвоÑ\82а\" Ð½ÐµÐºÐ¾Ñ\80Ñ\80екÑ\82но."
+msgid "In all groups"
+msgstr "Ð\9eÑ\81новнаÑ\8f Ð³Ñ\80Ñ\83ппа"
 
-#: setup/setup_schema.tpl:3
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
 #, fuzzy
-msgid "Schema specific settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82елеÑ\84она"
+msgid "Not in all groups"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82ой"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "Учетная запись"
 
-#: setup/setup_schema.tpl:16
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "Системные доверия"
+
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
 #, fuzzy
-msgid "Check status"
-msgstr "СоÑ\81Ñ\82оÑ\8fние Ñ\81иÑ\81Ñ\82емÑ\8b"
+msgid "Trust mode"
+msgstr "Режим"
 
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr ""
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "Пользователь должен сменить пароль при первом входе в систему"
 
-#: setup/setup_schema.tpl:23
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "Срок действия пароля истекает"
+
+#: plugins/personal/posix/main.inc:131
 #, fuzzy
-msgid "Schema check failed"
-msgstr "Ð\9fÑ\80иложение"
+msgid "POSIX settings"
+msgstr "Ð\90Ñ\82Ñ\80ибÑ\83Ñ\82Ñ\8b UNIX"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "Выберите системы для добавления"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "Показать системы в подразделении"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "Фильтры"
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "Показать подходяшие системы"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "Регулярное выражение для поиска адреса"
 
-#: ihtml/themes/default/login.tpl:27
-#, fuzzy
-msgid "Login screen"
-msgstr "Служба печати"
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
+msgstr ""
 
-#: ihtml/themes/default/login.tpl:34
-#, fuzzy
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
 msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
-"Чтобы войти в систему<br> введите свои <i>имя пользователя</i> и <i>пароль</"
-"i>."
-
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "Имя пользователя"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "Ð\9aаÑ\82алог"
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "СпиÑ\81ок Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "Войти"
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "Свойства"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "Нажмите на эту кнопку, чтобы войти в систему"
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "Действия"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "Выберите, чтобы просмотреть шаблоны псевдопользователей"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "Показать шаблоны"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
+#: plugins/admin/users/class_divListUsers.inc:85
 #, fuzzy
-msgid "Heimdal options"
-msgstr "Почтовые настройки"
-
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
-
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
+msgid "Select to see users that have only a GOsa object"
 msgstr ""
+"Выберите, чтобы просмотреть пользователей, у которых есть только объект GOsa"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "Показать обычных пользователей"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
 msgstr ""
+"Выберите, чтобы просмотреть пользователей с атрибутами в стандарте POSIX"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-#, fuzzy
-msgid "Hour"
-msgstr "час"
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "Показать UNIX-пользователей"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
-#, fuzzy
-msgid "Minute"
-msgstr "Принтер"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "Выберите, чтобы просмотреть пользователей с настройками почты"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
-#, fuzzy
-msgid "Day"
-msgstr "день"
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "Показать пользователей с почтой"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
-#, fuzzy
-msgid "Month"
-msgstr "месяц"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "Выберите, чтобы просмотреть пользователей с настройками Samba"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
-#, fuzzy
-msgid "Year"
-msgstr "Поиск"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "Показать пользователей Samba"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "Выберите, чтобы просмотреть пользователей с настройками прокси-сервера"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "Показать пользователей с прокси-серверами"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
 #, fuzzy
-msgid "Password end"
-msgstr "Пароль"
-
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
-#, php-format
-msgid "Save"
-msgstr "Сохранить"
+msgid "Select to search within subtrees"
+msgstr "Искать в поддеревьях"
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "Конфликт блокировок"
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "Фильтр"
 
-#: ihtml/themes/default/islocked.tpl:9
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
 #, fuzzy
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
-"Если результат этой проверки блокировки - ложь, очевидно, другой человек "
-"закрыл браузер во время редактирования данных. Вы можете удалить файл "
-"блокировки, нажав на кнопку <i>Удалить</i>."
+msgid "Submit department"
+msgstr "Показать подразделения"
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
 msgstr ""
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-#, fuzzy
-msgid "Old Password"
-msgstr "Пароль"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "Создать"
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-#, fuzzy
-msgid "New Password"
-msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80оль"
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "Ð\9fолÑ\8cзоваÑ\82ель"
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-#, fuzzy
-msgid "Verify Password"
-msgstr "Ð\9fаÑ\80олÑ\8c"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "Шаблон"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-#, fuzzy
-msgid "Change Password"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "Изменить"
+
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
 msgstr "Сменить пароль"
 
-#: ihtml/themes/default/accountexpired.tpl:52
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "Click here to Change your password"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
+msgid "Copy"
+msgstr "Ð\9aомпаниÑ\8f"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "Конфликт сеансов"
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
+#, fuzzy
+msgid "Cut"
+msgstr "Выполнить"
 
-#: ihtml/themes/default/conflict.tpl:6
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
 #, fuzzy
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
-msgstr ""
-"Возможно, есть еще один экземпляр вашего сеанса. Работа с несколькими окнами "
-"одновременно технически невозможна и в значительной мере зависит от "
-"используемого браузера. Использование разных браузеров одновременно "
-"(например, IE и Mozilla) возможно. Нажав на кнопку <b>Выход</b>, вы "
-"завершите текущий сеанс."
+msgid "Paste"
+msgstr "Дата"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
 msgstr ""
-"Если вы ничего не предпримете, редактируемые вами данные не будут сохранены, "
-"поэтому закройте все окна, кроме одного, и начните сеанс заново."
 
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "Выход"
+#: plugins/admin/users/class_divListUsers.inc:267
+#, fuzzy
+msgid "Edit generic properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/logout-close.tpl:5
-msgid "Your GOsa session has been closed!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+#, fuzzy
+msgid "Posix"
+msgstr "Прокси-сервер"
 
-#: ihtml/themes/default/logout-close.tpl:7
-msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:269
+#, fuzzy
+msgid "Edit UNIX properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
+#: plugins/admin/users/class_divListUsers.inc:271
 #, fuzzy
-msgid "Restoring object snapshots"
-msgstr "Ð\9eбÑ\8aекÑ\82 Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Edit environment properties"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
-msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:273
+#, fuzzy
+msgid "Edit mail properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
-msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:275
+#, fuzzy
+msgid "Edit phone properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:277
+#, fuzzy
+msgid "Edit fax properies"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "Объект"
+#: plugins/admin/users/class_divListUsers.inc:279
+#, fuzzy
+msgid "Edit samba properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
-msgid "There is no snapshot available that could be restored"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
 msgstr ""
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:281
+#, fuzzy
+msgid "Edit netatalk properties"
+msgstr "Изменить свойства"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
+#: plugins/admin/users/class_divListUsers.inc:282
 #, fuzzy
-msgid "Creating object snapshots"
-msgstr "Ð\9eбÑ\8aекÑ\82 Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Create user from template"
+msgstr "СоздаÑ\82Ñ\8c Ñ\88аблон"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:283
+#, fuzzy
+msgid "Create user with this template"
+msgstr "Создать шаблон"
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+#, fuzzy
+msgid "cut"
+msgstr "Выполнить"
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
 #, fuzzy
-msgid "Timestamp"
-msgstr "ТаймаÑ\83Ñ\82 (Ñ\81)"
+msgid "Cut this entry"
+msgstr "РедакÑ\82иоваÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+#, fuzzy
+msgid "Copy this entry"
+msgstr "Редактиовать объект"
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
+#: plugins/admin/users/class_divListUsers.inc:318
 #, fuzzy
-msgid "New ACL"
-msgstr "СоздаÑ\82Ñ\8c"
+msgid "Deactivated"
+msgstr "Ð\9bиÑ\87нÑ\8bй"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+#: plugins/admin/users/class_divListUsers.inc:321
 #, fuzzy
-msgid "ACL type"
-msgstr "Тип"
+msgid "Active"
+msgstr "Ð\9bиÑ\87нÑ\8bй"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
 #, fuzzy
-msgid "Select an acl type"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е, Ñ\87Ñ\82обÑ\8b Ð¿Ñ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\81еÑ\80веÑ\80Ñ\8b"
+msgid "edit"
+msgstr "Ð\98змениÑ\82Ñ\8c"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:329
+#, fuzzy
+msgid "Edit user"
+msgstr "Пользователи домена"
 
-#: ihtml/themes/default/acl.tpl:29
+#: plugins/admin/users/class_divListUsers.inc:338
 #, fuzzy
-msgid "Available members"
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83пнÑ\8bе Ð¿Ñ\80иложениÑ\8f"
+msgid "password"
+msgstr "Ð\9fаÑ\80олÑ\8c"
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:342
+#, fuzzy
+msgid "You are not allowed to change the password for this user."
+msgstr "Вам не разрешено менять пароль."
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
 #, fuzzy
-msgid "Members"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82Ñ\8b"
+msgid "delete"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+#, fuzzy
+msgid "Delete user"
+msgstr "Удалить"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+#: plugins/admin/users/class_divListUsers.inc:356
 #, fuzzy
-msgid "List of available ACL categories"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\82ип Ð¼Ñ\8bÑ\88и"
+msgid "You are not allowed to remove this user."
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f!"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:442
+#, fuzzy
+msgid "Number of listed users"
+msgstr "Подразделение"
 
-#: ihtml/themes/default/acl.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
 #, fuzzy
-msgid "Available roles"
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83пнÑ\8bе Ð¿Ñ\80иложениÑ\8f"
+msgid "Number of listed departments"
+msgstr "Ð\9fодÑ\80азделение"
 
-#: ihtml/themes/default/password.tpl:6
+#: plugins/admin/users/class_userManagement.inc:27
 #, fuzzy
-msgid "Change your password"
-msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
+msgid "Manage users"
+msgstr "Ð\9fолÑ\8cзоваÑ\82ели Ð´Ð¾Ð¼ÐµÐ½Ð°"
 
-#: ihtml/themes/default/password.tpl:34
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, fuzzy
-msgid "Success"
-msgstr "ЭкÑ\81поÑ\80Ñ\82 Ñ\83Ñ\81пеÑ\88ен."
+msgid "Daemon"
+msgstr "Ð\94омен"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
+#, php-format
+msgid "Something went wrong while talking to the daemon: %s."
 msgstr ""
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
+#: plugins/admin/users/class_userManagement.inc:293
 #, fuzzy
-msgid "Password change"
+msgid "Password change failed."
 msgstr "Сменить пароль"
 
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr "У вас недостаточно прав для смены пароля этого пользователя!"
 
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "ТекÑ\83Ñ\89ий Ð¿Ð°Ñ\80олÑ\8c"
+#: plugins/admin/users/class_userManagement.inc:456
+#, fuzzy, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
 
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "Новый пароль"
+#: plugins/admin/users/class_userManagement.inc:458
+#, fuzzy, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "Вы собираетесь удалить объект %s."
 
-#: ihtml/themes/default/password.tpl:85
+#: plugins/admin/users/class_userManagement.inc:460
 #, fuzzy
-msgid "again"
-msgstr "Ð\9dаÑ\87ало"
+msgid "Delete users"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: ihtml/themes/default/password.tpl:86
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
 #, fuzzy
-msgid "New password repeated"
-msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80оль"
+msgid "User delete"
+msgstr "УдалиÑ\82ь"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
-#, fuzzy
-msgid "Password strength"
-msgstr "Хэширование паролей"
+#: plugins/admin/users/class_userManagement.inc:488
+#, fuzzy, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "У вас недостаточно прав для удаления этого пользователя!"
 
-#: ihtml/themes/default/password.tpl:100
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "Вы собираетесь удалить пользователя %s."
+
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid "Change"
-msgstr "Ð\9aанал"
+msgid "User deleted"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: ihtml/themes/default/password.tpl:101
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid "Click here to change your password"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
+msgid "User successfully removed."
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ð·Ð°Ð²ÐµÑ\80Ñ\88ена"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-msgid "Copy & paste wizard"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "У вас недостаточно прав для удаления этого пользователя!"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "нет"
+
+#: plugins/admin/users/remove.tpl:6
 msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
+"Сюда входит вся информация об учетной записи этого пользователя, его права "
+"доступа в системе, настройки IMAP и т. д. Подумайте еще раз, действительно "
+"ли вам нужно удаление, так как GOsa не сможет отменить результаты этой "
+"операции."
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "Создание пользователя на основе шаблона"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
+#: plugins/admin/users/template.tpl:6
+#, fuzzy
 msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
+"Можно создавать пользователей на основе шаблонов. При этом многие поля в "
+"базе данных будут заполнены автоматически. Выберите <b>нет</b>, чтобы не "
+"использовать шаблоны."
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
+#: plugins/admin/users/password.tpl:4
 #, fuzzy
-msgid "Cancel all"
-msgstr "Отмена"
+msgid ""
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
+msgstr ""
+"В полях ниже вы можете изменить пароль выбранного пользователя. Изменения "
+"вступят в силу немедленно. Пожалуйста, запомните новый пароль, так как иначе "
+"пользователь не сможет войти в систему."
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
+#: plugins/admin/users/password.tpl:21
 #, fuzzy
-msgid "Operation complete"
-msgstr "не Ð¿Ð¾Ð»Ð½Ñ\8bй"
+msgid "Strength"
+msgstr "УлиÑ\86а"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr ""
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "Управление пользователями"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "Объединения"
 
-#: ihtml/themes/default/logout.tpl:10
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
 #, fuzzy
-msgid "Sign in again"
-msgstr "Ð\92ойÑ\82и"
+msgid "Manage object groups"
+msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr ""
-"Вы сейчас редактируете объект базы данных. Хотите отказаться от изменений?"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, fuzzy, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "Вы собираетесь удалить объект %s."
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "Начало"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, fuzzy, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "Вы собираетесь удалить групповой объект \"%s\"."
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "Справка"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "Permission error"
+msgstr "Права для членов группы"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "Выход"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "Пользователь:"
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "Вы собираетесь удалить групповой объект \"%s\"."
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
+#, fuzzy
+msgid "Windows Install"
+msgstr "Рабочая станция Windows"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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."
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+#, fuzzy
+msgid "Terminal"
+msgstr "Терминалы"
+
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
-"Ограничение на количество возвращаемых объектов позволяет ускорить операции "
-"поиска и предохраняет сервер LDAP от большой нагрузки. Простейший способ "
-"снизить время обработки запроса при обслуживаии большой базы данных это "
-"установить минимальное значение. Кроме того, будет очень полезно "
-"использовать фильтры для просмотра только ограниченного количества объектов."
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "Выберите тип реакции для данной сессии"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "Этот объект не является группой."
+
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "слишком много различных объектов!"
+
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "пользователи"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "игноÑ\80иÑ\80оваÑ\82Ñ\8c Ð¾Ñ\88ибкÑ\83 Ð¸ Ð¿Ð¾ÐºÐ°Ð·Ð°Ñ\82Ñ\8c Ð²Ñ\81е Ð½Ð°Ð¹Ð´ÐµÐ½Ñ\8bе Ð¾Ð±Ñ\8aекÑ\82ы"
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr "гÑ\80Ñ\83ппы"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-#, fuzzy
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr ""
-"Игнорировать ошибку и показать все возвращаемые объекты в пределах лимита и "
-"позволить использовать фильтры"
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "приложения"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "Установить"
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "подразделения"
 
-#: ihtml/themes/default/remove.tpl:6
-msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"Это приложение может использоваться несколькими группами. Подумайте еще раз, "
-"действительно ли вы хотите удалить его, так как GOsa не сможет отменить "
-"результаты этой операции."
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "серверы"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-#, fuzzy
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr ""
-"Если вы уверены в своих действиях, нажмите на кнопку <i>Удалить</i>, иначе "
-"нажмите <i>Отмена</i>."
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "рабочие станции"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "Удалить"
+#: plugins/admin/ogroups/class_ogroup.inc:315
+#, fuzzy
+msgid "winstations"
+msgstr "Рабочая станция"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "терминалы"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "телефоны"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "принтеры"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "и"
 
-#: include/class_certificate.inc:212
+#: plugins/admin/ogroups/class_ogroup.inc:470
 #, fuzzy
-msgid "Can't create/open File"
-msgstr "Невозможно импортиовать пустой файл"
+msgid "Non existing dn:"
+msgstr "Не существующий dn:"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
+#: plugins/admin/ogroups/class_ogroup.inc:629
+#, fuzzy
+msgid "You can combine two different object types at maximum, only!"
 msgstr ""
+"Вы можете комбинировать не более двух различных классов в одном объекте!"
 
-#: include/utils/class_msgPool.inc:14
+#: plugins/admin/ogroups/class_ogroup.inc:763
 #, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð´Ñ\80азделениÑ\8f."
+msgid "Object group generic"
+msgstr "Ð\9eбÑ\8aекÑ\82 Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
+#: plugins/admin/ogroups/class_ogroup.inc:774
 #, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð´Ñ\80азделениÑ\8f."
+msgid "Member"
+msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82Ñ\8b"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "Выбрать объекты для добавления"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "Выберите подразделение"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "Показать подразделения"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "Выберите чтобы посмотреть пользователей GOsa"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "Показать людей"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "Выберите чтобы посмотреть группы GOsa"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "Показать группы"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "Выберите чтобы посмотреть приложения"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "У вас недостаточно прав для создания телефонов в этой ветке."
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "Показать приложения"
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ñ\81Ñ\82оп-лиÑ\81Ñ\82а."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е, Ñ\87Ñ\82обÑ\8b Ð¿Ñ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\81еÑ\80веÑ\80Ñ\8b"
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "Показать серверы"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
-#, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "Выберите чтобы посмотреть рабочие станции"
 
-#: include/utils/class_msgPool.inc:98
-#, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "Показать рабочие станции"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-#, fuzzy
-msgid "Connection information"
-msgstr "Личная информация"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "Выберите чтобы посмотреть терминалы"
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "Невозможно подключиться к серверу базы данных!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "Показать терминалы"
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "Невозможно выбрать базу данных!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "Выберите чтобы посмотреть принтеры"
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "Показать принтеры"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "Выберите чтобы посмотреть телефоны"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "Показать телефоны"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "Показать объекты подразделения"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "Показать совпадения объектов"
+
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "Регулярное выражение, соответствующее именам объектов"
+
+#: plugins/admin/ogroups/remove.tpl:7
+msgid ""
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
 msgstr ""
+"Подумайте еще раз, действительно ли вам нужно удаление, так как GOsa не "
+"сможет восстановить эти данные."
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "Невозможно выбрать базу данных!"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "Группа"
 
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "Ð\97наÑ\87ение Ð¿Ð¾Ð»Ñ\8f \"ФакÑ\81\" Ñ\81одеÑ\80жиÑ\82 Ð½ÐµÐ´Ð¾Ð¿Ñ\83Ñ\81Ñ\82имÑ\8bй Ð½Ð¾Ð¼ÐµÑ\80 Ñ\82елеÑ\84она."
+#: plugins/admin/ogroups/paste_generic.tpl:7
+#, fuzzy
+msgid "Please enter the new object group name"
+msgstr "Ð\92ведиÑ\82е Ð°Ð´Ñ\80еÑ\81 Ñ\81еÑ\80веÑ\80а"
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr ""
-"Не удается найти команду \"%s\", указанную в поле POSTCREATE модуля \"%s\"."
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "Название группы"
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "Значение 'UID' слишком маленькое."
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "Описание группы"
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
-msgstr ""
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "Выберите ветку для группы"
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "Значение 'UID' слишком маленькое."
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "Включаемые объекты"
 
-#: include/utils/class_msgPool.inc:171
-#, fuzzy, php-format
-msgid "'%s' must be %d or above!"
-msgstr ""
-"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней "
-"реализованы некоторые новые функции и исправлены некоторые ошибки."
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+#, fuzzy
+msgid "List of object groups"
+msgstr "Название группы"
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#, fuzzy
+msgid "Name of object groups"
+msgstr "Название группы"
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr ""
-"Пользователь с таким регистрационным именем в базе данных уже существует."
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "Подразделения"
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "Ð\9eбÑ\8fзаÑ\82елÑ\8cное Ð¿Ð¾Ð»Ðµ \"Ð\98мÑ\8f\" Ð½Ðµ Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¾."
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+#, fuzzy
+msgid "Select to see groups containing users"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8fми"
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "Показать группы с пользователями"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "Ð\97наÑ\87ение Ð¿Ð¾Ð»Ñ\8f \"Ð\98мÑ\8f\" Ñ\81одеÑ\80жиÑ\82 Ð½ÐµÐ´Ð¾Ð¿Ñ\83Ñ\81Ñ\82имÑ\8bе Ñ\81имволÑ\8b."
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+#, fuzzy
+msgid "Select to see groups containing groups"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð³Ñ\80Ñ\83ппами"
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "Показать группы с группами"
 
-#: include/utils/class_msgPool.inc:216
-#, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "СмениÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+#, fuzzy
+msgid "Select to see groups containing applications"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80иложениÑ\8fми"
 
-#: include/utils/class_msgPool.inc:226
-#, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "Удалить параметры"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "Показать группы с приложениями"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
-#, php-format
-msgid "Add"
-msgstr "Добавить"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+#, fuzzy
+msgid "Select to see groups containing departments"
+msgstr "Показать группы с подразделениями"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "Добавить"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "Показать группы с подразделениями"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "УдалиÑ\82Ñ\8c"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+#, fuzzy
+msgid "Select to see groups containing servers"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\81еÑ\80веÑ\80ами"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "Установить"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "Показать группы с серверами"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "Ð\98змениÑ\82Ñ\8c"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+#, fuzzy
+msgid "Select to see groups containing workstations"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\80абоÑ\87ими Ñ\81Ñ\82анÑ\86иÑ\8fми"
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "Пользователи домена"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "Показать группы с рабочими станциями"
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "Ð\94лÑ\8f Ñ\8dÑ\82ой Ñ\83Ñ\87еÑ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и Ð½ÐµÑ\82 ÐºÐ¾Ñ\80Ñ\80екÑ\82нÑ\8bÑ\85 Ñ\80аÑ\81Ñ\88иÑ\80ений GOsa."
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Select to see groups containing windows workstations"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\80абоÑ\87ими Ñ\81Ñ\82анÑ\86иÑ\8fми"
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
-msgstr ""
-"В этой учетной записи используются атрибуты POSIX. Вы можете отключить их "
-"использование, щелкнув ниже."
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#, fuzzy
+msgid "Show groups containing windows workstations"
+msgstr "Показать группы с рабочими станциями"
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
-msgstr ""
-"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
-"использование, сначала нужно удалить учетную запись Samba."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#, fuzzy
+msgid "Select to see groups containing terminals"
+msgstr "Показать группы с терминалами"
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
-msgstr ""
-"В этой учетной записи не используются атрибуты POSIX. Вы можете использовать "
-"их, щелкнув ниже."
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "Показать группы с терминалами"
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
-msgstr ""
-"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
-"использование, сначала нужно удалить учетную запись Samba."
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+#, fuzzy
+msgid "Select to see groups containing printer"
+msgstr "Показать группы с принтерами"
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
-msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
-msgstr ""
-"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
-"использование, сначала нужно удалить учетную запись Samba."
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+#, fuzzy
+msgid "Show groups containing printer"
+msgstr "Показать группы с принтерами"
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð² fstab"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+#, fuzzy
+msgid "Select to see groups containing phones"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80инÑ\82еÑ\80ами"
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Ð\90Ñ\82Ñ\80ибÑ\83Ñ\82Ñ\8b UNIX"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+#, fuzzy
+msgid "Show groups containing phones"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80инÑ\82еÑ\80ами"
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "Нажмите 'Изменить' чтобы отредактировать данные в этой форме."
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+#, fuzzy
+msgid "Edit this entry"
+msgstr "Редактиовать объект"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "Январь"
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+#, fuzzy
+msgid "Delete this entry"
+msgstr "Удалить"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "ФевÑ\80алÑ\8c"
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+#, fuzzy
+msgid "You are not allowed to remove this entry."
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¾Ð±Ñ\8aекÑ\82а!"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "Ð\9cаÑ\80Ñ\82"
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+#, fuzzy
+msgid "Number of listed object groups"
+msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "Апрель"
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+#, fuzzy
+msgid "Phone queue"
+msgstr "Номер телефона"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "Ð\9cай"
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+#, fuzzy
+msgid "System"
+msgstr "СиÑ\81Ñ\82емÑ\8b"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "Июнь"
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "Устройства"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "Июль"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "Запуск"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "Август"
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "Сентябрь"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "Терминалы"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "Ð\9eкÑ\82Ñ\8fбÑ\80Ñ\8c"
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "Ð\9fодÑ\80азделениÑ\8f"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "Ноябрь"
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
+#, fuzzy, php-format
+msgid "You're about to delete the following entry %s"
+msgstr "Вы собираетесь удалить объект %s."
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "Декабрь"
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
+#, fuzzy, php-format
+msgid "You're about to delete the following entries %s"
+msgstr "Вы собираетесь удалить объект %s."
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "Ð\98мÑ\8f Ñ\81еÑ\80веÑ\80а"
+#: plugins/admin/departments/class_departmentManagement.inc:245
+#, php-format
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ñ\86елÑ\83Ñ\8e Ð²ÐµÑ\82кÑ\83 LDAP Ñ\81 ÐºÐ¾Ñ\80нем Ð² \"%s\"."
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/departments/tabs_department.inc:55
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+msgstr ""
+
+#: plugins/admin/departments/dep_move_confirm.tpl:2
 #, fuzzy
-msgid "Monday"
-msgstr "меÑ\81Ñ\8fÑ\86"
+msgid "You are currently moving/renaming this department."
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð´Ñ\80азделениÑ\8f."
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Wednesday"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "Обязательное поле \"Имя\" не заполнено."
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
-msgstr ""
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "Обязательное поле \"Описание\" не заполнено."
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
 #, fuzzy
-msgid "read operation"
-msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки"
+msgid "Fatal error"
+msgstr "ТеÑ\80минал-Ñ\81еÑ\80веÑ\80"
 
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+msgid "Cannot find an unused tag for this administrative unit!"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
-#, fuzzy
-msgid "modify operation"
-msgstr "Личная информация"
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "delete operation"
-msgstr "Выберите чтобы посмотреть рабочие станции"
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "search operation"
-msgstr "Учетная запись"
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Рабочая станция Windows"
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "Страна"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "Невозможно выполнить запрос к базе данных!"
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "Телефон"
 
-#: include/utils/class_msgPool.inc:374
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
 #, fuzzy
-msgid "LDAP operation failed!"
-msgstr "Ð\9dевозможно Ð²Ñ\8bполниÑ\82Ñ\8c Ð·Ð°Ð¿Ñ\80оÑ\81 Ðº Ð±Ð°Ð·Ðµ Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
+msgid "Department name"
+msgstr "УпÑ\80авление Ð¿Ð¾Ð´Ñ\80азделениÑ\8fми"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "Категория"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
 #, fuzzy
-msgid "Configuration error"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
+msgid "Administrative settings"
+msgstr "Ð\90дминиÑ\81Ñ\82Ñ\80иÑ\80ование"
 
-#: include/utils/class_timezone.inc:51
+#: plugins/admin/departments/class_departmentGeneric.inc:644
 #, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
+msgid "Object '%s' is already tagged"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:745
+#: plugins/admin/departments/class_departmentGeneric.inc:683
 #, php-format
-msgid "Cannot send abort event for entry: %s"
+msgid "Removing tag from object '%s'"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
+#: plugins/admin/departments/remove.tpl:6
+#, fuzzy
+msgid ""
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
+"Это включает <b>все</b> учетные записи, системы и т.п. для данного "
+"подразделения. Подумайте еще раз, действительно ли вы хотите его удалить, "
+"так как GOsa не сможет отменить результаты этой операции."
 
-#: include/class_tabs.inc:216
-#, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
+#, fuzzy
+msgid ""
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
+"Лучше всего перед удалением сохранить резервную копию текущего дерева LDAP в "
+"файл. Если вы сделали это и действительно хотите выполнить удаление, нажмите "
+"<i>Удалить</i>, иначе нажмите <i>Отмена</i>."
 
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83п"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "СпиÑ\81ок Ð¿Ð¾Ð´Ñ\80азделений"
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "СÑ\81Ñ\8bлки"
+#: plugins/admin/departments/class_divListDepartment.inc:75
+msgid "Regular expression for matching department names"
+msgstr "РегÑ\83лÑ\8fÑ\80ное Ð²Ñ\8bÑ\80ажение, Ñ\81ооÑ\82веÑ\82Ñ\81Ñ\82вÑ\83Ñ\8eÑ\89ее Ð¸Ð¼ÐµÐ½Ð°Ð¼ Ð¿Ð¾Ð´Ñ\80азделений"
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "УдалиÑ\82Ñ\8c"
+#: plugins/admin/departments/class_divListDepartment.inc:219
+#, fuzzy
+msgid "department"
+msgstr "подÑ\80азделениÑ\8f"
 
-#: include/class_hostActionQueue.inc:73
-#, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "Удалить"
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "Подразделение"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "Удалить"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "Имя создаваемой ветки"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
-msgstr ""
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "Описание подразделения"
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
-msgstr ""
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "Категория этой ветки"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "Удалить"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr "Выберите ветку для подразделения"
+
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "Адм. единица, в которой находится ветка"
+
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "Местоположение ветки"
+
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "Почтовый адрес для ветки"
+
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "Основный телефонный номер для ветки"
+
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "Основный номер факса для ветки"
 
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:277
-#, fuzzy, php-format
-msgid "Entry with id '%s' not found."
-msgstr "Показать подразделения"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "Управление подразделениями"
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
 msgstr ""
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr ""
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
+#, fuzzy
+msgid "Acl"
+msgstr "Все"
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:26
+#, fuzzy
+msgid "Access control list templates"
+msgstr "Параметры доступа"
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:27
+#, fuzzy
+msgid "Edit ACL roles"
+msgstr "Доступ"
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+#, fuzzy
+msgid "All categories"
+msgstr "Категория"
+
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
 #, fuzzy
-msgid "Internal error"
-msgstr "ТеÑ\80минал-Ñ\81еÑ\80веÑ\80"
+msgid "One level"
+msgstr "УÑ\80овенÑ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\82ивноÑ\81Ñ\82и"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
+#, fuzzy
+msgid "Current object"
+msgstr "Текущий пароль"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
+#, fuzzy
+msgid "Complete subtree"
+msgstr "не полный"
+
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
 msgstr ""
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "УдалиÑ\82Ñ\8c"
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+#, fuzzy
+msgid "Down"
+msgstr "Ð\94омен"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
+#, fuzzy
+msgid "Edit ACL"
+msgstr "Ð\98змениÑ\82Ñ\8c"
 
-#: include/class_CopyPasteHandler.inc:391
-#, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
+#, fuzzy
+msgid "Delete ACL"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
 #, fuzzy
-msgid "Paste"
-msgstr "Ð\94аÑ\82а"
+msgid "No ACL settings for this category"
+msgstr "Ð\9eпиÑ\81ание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/class_CopyPasteHandler.inc:485
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
+#, php-format
+msgid "Contains ACLs for these objects: %s"
+msgstr ""
+
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
 #, fuzzy
-msgid "Can't paste"
-msgstr "СоздаÑ\82Ñ\8c Ñ\82елеÑ\84оннÑ\8bй Ð°ÐºÐºÐ°Ñ\83нÑ\82"
+msgid "Edit categories ACLs"
+msgstr "СпиÑ\81ок Ñ\81иÑ\81Ñ\82ем"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
 msgstr ""
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
 #, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
+msgid "Edit ACL for '%s', scope is '%s'"
 msgstr ""
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
 msgstr ""
 
-#: include/class_plugin.inc:1613
+#: plugins/admin/acl/class_aclRole.inc:618
 #, fuzzy
-msgid "from"
-msgstr "и"
-
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr ""
+msgid "Object in use"
+msgstr "Имя объекта"
 
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
+#: plugins/admin/acl/class_aclRole.inc:618
+#, php-format
+msgid "This role cannot be removed while it is in use by these objects:"
 msgstr ""
 
-#: include/php_setup.inc:96
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
 #, fuzzy
-msgid "Send bugreport"
-msgstr "Ð\9eÑ\82пÑ\80авиÑ\82елÑ\8c"
+msgid "ACL roles"
+msgstr "Ð\94оÑ\81Ñ\82Ñ\83п"
 
-#: include/php_setup.inc:101
+#: plugins/admin/acl/class_aclRole.inc:700
 #, fuzzy
-msgid "Toggle information"
-msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
+msgid "Acl roles"
+msgstr "УпÑ\80авление Ñ\81иÑ\81Ñ\82емами"
 
-#: include/php_setup.inc:111
+#: plugins/admin/acl/remove.tpl:6
 #, fuzzy
-msgid "PHP error"
-msgstr "Ошибка LDAP:"
-
-#: include/php_setup.inc:130
-msgid "class"
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"Сюда входит <b>вся</b> информация о системе и ее настройках. Подумайте еще "
+"раз, действительно ли вам нужно удаление, так как GOsa не сможет отменить "
+"результаты этой операции."
 
-#: include/php_setup.inc:136
+#: plugins/admin/acl/tabs_acl_role.inc:28
 #, fuzzy
-msgid "function"
-msgstr "Ð\94ейÑ\81Ñ\82вие"
+msgid "ACL Templates"
+msgstr "Шаблон"
 
-#: include/php_setup.inc:141
+#: plugins/admin/acl/class_divListACL.inc:51
 #, fuzzy
-msgid "static"
-msgstr "СоÑ\81Ñ\82оÑ\8fние"
+msgid "List of acl"
+msgstr "СпиÑ\81ок Ð³Ñ\80Ñ\83пп"
 
-#: include/php_setup.inc:145
+#: plugins/admin/acl/class_divListACL.inc:52
 #, fuzzy
-msgid "method"
-msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки"
+msgid "List of acls"
+msgstr "СпиÑ\81ок Ð³Ñ\80Ñ\83пп"
 
-#: include/php_setup.inc:178
-msgid "Trace"
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
 msgstr ""
 
-#: include/php_setup.inc:179
+#: plugins/admin/acl/class_divListACL.inc:84
 #, fuzzy
-msgid "File"
-msgstr "ФайлÑ\8b"
+msgid "Display acls matching"
+msgstr "Шаблон Ð´Ð»Ñ\8f Ð³Ñ\80Ñ\83пп"
 
-#: include/php_setup.inc:179
+#: plugins/admin/acl/class_divListACL.inc:243
 #, fuzzy
-msgid "Line"
-msgstr "в"
+msgid "Edit acl role"
+msgstr "Ð\9fолÑ\8cзоваÑ\82ели Ð´Ð¾Ð¼ÐµÐ½Ð°"
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "Тип"
+#: plugins/admin/acl/class_divListACL.inc:253
+#, fuzzy
+msgid "Delete acl role"
+msgstr "Удалить"
 
-#: include/php_setup.inc:180
+#: plugins/admin/acl/class_divListACL.inc:265
 #, fuzzy
-msgid "Arguments"
-msgstr "подÑ\80азделениÑ\8f"
+msgid "Edit acl"
+msgstr "СпиÑ\81ок Ñ\81иÑ\81Ñ\82ем"
 
-#: include/class_acl.inc:26
+#: plugins/admin/acl/class_divListACL.inc:269
 #, fuzzy
-msgid "Access control"
-msgstr "Параметры доступа"
+msgid "Delete acl"
+msgstr "Удалить"
+
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+#, fuzzy
+msgid "ACL management"
+msgstr "Управление подразделениями"
+
+#: plugins/admin/acl/class_aclManagement.inc:26
+#, fuzzy
+msgid "ACLs"
+msgstr "Доступ"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
 #, fuzzy
 msgid "Manage access control lists"
 msgstr "Параметры доступа"
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-#, fuzzy
-msgid "All categories"
-msgstr "Категория"
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
+
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
+
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
+#, fuzzy, php-format
+msgid "You're about to delete the acl %s."
+msgstr "Вы собираетесь удалить группу \"%s\"."
+
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "Список групп"
+
+#: plugins/admin/groups/class_divListGroup.inc:79
+#, fuzzy
+msgid "Groupname / Department"
+msgstr "Подразделение"
+
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr "Выберите, чтобы просмотреть список основных групп пользователей"
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "Показать основные группы"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-#, fuzzy
-msgid "One level"
-msgstr "Уровень информативности"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "Выберите, чтобы просмотреть группы, которые входят в samba"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-#, fuzzy
-msgid "Current object"
-msgstr "Текущий пароль"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "Показать группы samba"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-#, fuzzy
-msgid "Complete subtree"
-msgstr "не полный"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "Выберите, чтобы просмотреть список групп, которым доступны приложения"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "Показать группы приложений"
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
 msgstr ""
+"Выберите, чтобы просмотреть список групп, которым доступны функции эл. почты"
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "Пользователи"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "Показать группы с эл. почтой"
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "Группы"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "Выберите, чтобы просмотреть список обычных групп"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "Показать обычные группы"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
+#: plugins/admin/groups/class_divListGroup.inc:359
 #, fuzzy
-msgid "Down"
-msgstr "Ð\94омен"
+msgid "Number of listed groups"
+msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-#, fuzzy
-msgid "edit"
-msgstr "Изменить"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "Выбрать пользователей для добавления"
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/groups/group_objects.tpl:30
 #, fuzzy
-msgid "Edit ACL"
-msgstr "Изменить"
+msgid "Search within subtree"
+msgstr "Искать в поддеревьях"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-#, fuzzy
-msgid "delete"
-msgstr "Удалить"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "Подразделение"
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
-#, fuzzy
-msgid "Delete ACL"
-msgstr "Удалить"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "Регулярное выражение, соответствующее именам пользователей"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-#, fuzzy
-msgid "No ACL settings for this category"
-msgstr "Описание группы"
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "Группы"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
+msgstr ""
+
+#: plugins/admin/groups/class_groupManagement.inc:434
 #, php-format
-msgid "Contains ACLs for these objects: %s"
+msgid "You're about to delete the group '%s'."
+msgstr "Вы собираетесь удалить группу \"%s\"."
+
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
+"Возможно, это основная группа пользователей. Еще раз проверте что Вы "
+"действительно хотите удалить ее, так как GOsa не сможет отменить результаты "
+"этой операции."
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/groups/paste_generic.tpl:1
 #, fuzzy
-msgid "Edit categories ACLs"
-msgstr "СпиÑ\81ок Ñ\81иÑ\81Ñ\82ем"
+msgid "Group settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Samba"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "Имя группы, соответствующее стандарту POSIX"
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
-#, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
 msgstr ""
+"Обычно идентификаторы создаются автоматически, но вы можете выбрать указание "
+"вручную"
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "Указать GID вручную"
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-#, fuzzy
-msgid "Show/Hide Advanced Settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82елеÑ\84она"
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "УказаннÑ\8bй Ð²Ñ\80Ñ\83Ñ\87нÑ\83Ñ\8e GID"
 
-#: include/class_acl.inc:690
-#, fuzzy
-msgid "Create objects"
-msgstr "Объект группы"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "Создать группу для работы с Samba"
 
-#: include/class_acl.inc:691
-#, fuzzy
-msgid "Move objects"
-msgstr "Включаемые объекты"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "в домене"
 
-#: include/class_acl.inc:692
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "Члены телефонной группы"
+
+#: plugins/admin/groups/generic.tpl:155
 #, fuzzy
-msgid "Remove objects"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82ы"
+msgid "Members are in a nagios group"
+msgstr "ЧленÑ\8b Ñ\82елеÑ\84онной Ð³Ñ\80Ñ\83ппы"
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
-msgstr ""
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "Члены группы"
 
-#: include/class_acl.inc:697
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "Управление группами"
+
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
 #, fuzzy
-msgid "Move object"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82Ñ\8b"
+msgid "Configuration error"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: include/class_acl.inc:698
+#: plugins/admin/groups/class_groupGeneric.inc:152
 #, fuzzy
-msgid "Remove object"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82Ñ\8b"
+msgid "Cannot find group SID in your configuration!"
+msgstr "Ð\9dе Ð¼Ð¾Ð³Ñ\83 Ð½Ð°Ð¹Ñ\82и SID Ð² Ð±Ð°Ð·Ðµ LDAP Ð¸Ð»Ð¸ Ð² Ñ\81онÑ\84игÑ\83Ñ\80аÑ\86ионном Ñ\84айле!"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "чтение"
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "Это DN соответствует не группе."
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "запиÑ\81Ñ\8c"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Ð\93Ñ\80Ñ\83ппа Samba"
 
-#: include/class_acl.inc:710
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "Администраторы домена"
+
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "Пользователи домена"
+
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "Непривилегированные пользователи домена"
+
+#: plugins/admin/groups/class_groupGeneric.inc:355
+#, php-format
+msgid "Special group (%d)"
+msgstr "Специальная группа (%d)"
+
+#: plugins/admin/groups/class_groupGeneric.inc:509
 #, fuzzy
-msgid "Complete object"
-msgstr "Включаемые объекты"
+msgid "! unknown id"
+msgstr "состояние неизвестно"
 
-#: include/class_acl.inc:826
+#: plugins/admin/groups/class_groupGeneric.inc:547
 #, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgid "Search returned too many results. Not displaying more than %s entries!"
 msgstr ""
 
-#: include/class_acl.inc:869
+#: plugins/admin/groups/class_groupGeneric.inc:728
 #, fuzzy, php-format
-msgid "Unknown entry '%s'!"
-msgstr "состояние неизвестно"
+msgid "Cannot find any SID for '%s'!"
+msgstr "Удалить"
 
-#: include/class_acl.inc:929 include/class_acl.inc:931
+#: plugins/admin/groups/class_groupGeneric.inc:733
 #, fuzzy, php-format
-msgid "Role: %s"
-msgstr "Роль"
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "Удалить"
+
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#, fuzzy
+msgid "Cannot allocate a free ID!"
+msgstr "Слишком много пользователей, невозможно создать идентификатор!"
+
+#: plugins/admin/groups/class_groupGeneric.inc:1015
+#, fuzzy
+msgid "Generic group settings"
+msgstr "Общая информация о пользователе"
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1027
+#, fuzzy
+msgid "Phone pickup group"
+msgstr "Члены телефонной группы"
 
-#: include/class_acl.inc:939
-#, fuzzy, php-format
-msgid "Contains settings for these objects: %s"
-msgstr "Ð\9eпиÑ\81ание Ð³Ñ\80Ñ\83ппÑ\8b"
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+#, fuzzy
+msgid "Nagios group"
+msgstr "Ð\9aонÑ\82акÑ\82"
 
-#: include/class_acl.inc:948
+#: plugins/admin/groups/class_groupGeneric.inc:1031
 #, fuzzy
-msgid "Members:"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82ы"
+msgid "Group member"
+msgstr "ЧленÑ\8b Ð³Ñ\80Ñ\83ппы"
 
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1032
+#, fuzzy
+msgid "Samba group type"
+msgstr "Группа Samba"
 
-#: include/class_acl.inc:1115
+#: plugins/admin/groups/class_groupGeneric.inc:1033
 #, fuzzy
-msgid "Access control list"
-msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð´Ð¾Ñ\81Ñ\82Ñ\83па"
+msgid "Samba domain name"
+msgstr "Ð\94омаÑ\88ний ÐºÐ°Ñ\82алог Samba"
 
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
 #, fuzzy
-msgid "ACL roles"
-msgstr "Доступ"
+msgid "Samba SID"
+msgstr "Samba"
 
-#: include/class_acl.inc:1123
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
 #, fuzzy
-msgid "Role name"
-msgstr "Ð\98мÑ\8f Ñ\81еÑ\80веÑ\80а"
+msgid "Language setup"
+msgstr "ЯзÑ\8bк"
 
-#: include/class_acl.inc:1124
+#: setup/class_setupStep_Language.inc:42
 #, fuzzy
-msgid "Role description"
-msgstr "Ð\9eпиÑ\81ание Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
+msgid "This step allows you to select your preferred language."
+msgstr "ЯзÑ\8bк Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: include/class_pluglist.inc:56
+#: setup/class_setupStep_Language.inc:47
 #, fuzzy
-msgid "All objects in this category"
-msgstr "Ð\9eпиÑ\81ание Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Automatic"
+msgstr "авÑ\82омаÑ\82иÑ\87еÑ\81ки"
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
+msgstr ""
+
+#: setup/setup_welcome.tpl:11
 #, fuzzy
-msgid "Unknown"
-msgstr "состояние неизвестно"
+msgid "Create a basic, single site configuration"
+msgstr "Базы данных"
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Служба печати"
-
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_log.inc:107
-msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
 msgstr ""
 
-#: include/class_log.inc:120
-#, fuzzy, php-format
-msgid "Invalid option '%s' specified."
-msgstr "Значение поля \"Имя\" содержит недопустимые символы."
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
+msgstr ""
 
-#: include/class_log.inc:124
+#: setup/setup_welcome.tpl:20
 #, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "Указанное Ð¸Ð¼Ñ\8f Ñ\83же Ð¸Ñ\81полÑ\8cзÑ\83еÑ\82Ñ\81Ñ\8f."
+msgid "Find every possible configuration error"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: include/class_log.inc:145
-msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "Невозможно подключиться к серверу базы данных!"
-
-#: include/class_log.inc:165
-#, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "Невозможно выбрать базу данных!"
+#: setup/setup_welcome.tpl:25
+#, fuzzy
+msgid "To continue..."
+msgstr "Продолжение настройки..."
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/setup_welcome.tpl:28
+msgid ""
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_log.inc:218
-#, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
 msgstr ""
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "Ð\9dевозможно Ð²Ñ\8bбÑ\80аÑ\82Ñ\8c Ð±Ð°Ð·Ñ\83 Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
+#, fuzzy
+msgid "GOsa settings 1/3"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: include/class_multi_plug.inc:362
+#: setup/class_setupStep_Config1.inc:76
 #, fuzzy
-msgid "You are currently editing mutliple entries."
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð´Ñ\80азделениÑ\8f."
+msgid "GOsa generic settings"
+msgstr "Ð\9eбÑ\89аÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82еле"
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
 #, fuzzy
-msgid "Password reset"
-msgstr "СÑ\80ок Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ð¿Ð°Ñ\80олÑ\8f Ð¸Ñ\81Ñ\82екает"
+msgid "No"
+msgstr "нет"
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
 #, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
+msgid "Yes"
+msgstr "СиÑ\81Ñ\82емÑ\8b"
 
-#: include/class_msg_dialog.inc:122
-msgid "Please fix the above error and reload the page."
+#: setup/class_setupStep_Config1.inc:118
+#, php-format
+msgid "The specified value for '%s' must be a numeric value"
 msgstr ""
 
-#: include/functions_helpviewer.inc:45
-#, fuzzy, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "Ошибка XML в gosa.conf: %s в строке %d"
-
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
 msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
+#, php-format
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-#, fuzzy
-msgid "next"
-msgstr "текст"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr "Структурная единица (OU) пользователей"
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr "OU групп"
+
+#: setup/class_setupStep_Config1.inc:130
+msgid "Uid base must be numeric"
 msgstr ""
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
+#: setup/class_setupStep_Config1.inc:134
+msgid "The given password minimum length is not numeric."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:240
+#: setup/class_setupStep_Config1.inc:137
 #, fuzzy
-msgid "Go to root department"
-msgstr "СпиÑ\81ок Ð¿Ð¾Ð´Ñ\80азделений"
+msgid "The given password differ value is not numeric."
+msgstr "Ð\97наÑ\87ение Ð¿Ð¾Ð»Ñ\8f \"Ð\9aвоÑ\82а\" Ð½ÐµÐºÐ¾Ñ\80Ñ\80екÑ\82но."
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
+msgstr ""
+
+#: setup/setup_ldap.tpl:25
 #, fuzzy
-msgid "Root"
-msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c"
+msgid "LDAP connection"
+msgstr "Ð\9eÑ\82клÑ\8eÑ\87ение"
 
-#: include/class_MultiSelectWindow.inc:248
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "Местоположение"
+
+#: setup/setup_ldap.tpl:37
 #, fuzzy
-msgid "Go up one department"
-msgstr "Подразделение"
+msgid "Connection URL"
+msgstr "Подключение"
 
-#: include/class_MultiSelectWindow.inc:256
+#: setup/setup_ldap.tpl:45
 #, fuzzy
-msgid "Go to users department"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð¿Ð¾Ð´Ñ\80азделение"
+msgid "TLS connection"
+msgstr "Соединение..."
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
+#: setup/setup_ldap.tpl:65
 #, fuzzy
-msgid "Home"
-msgstr "Имя системы"
+msgid "Reload"
+msgstr "чтение"
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr ""
+#: setup/setup_ldap.tpl:69
+#, fuzzy
+msgid "Authentication"
+msgstr "Рабочая станция Windows"
+
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "DN администратора"
+
+#: setup/setup_ldap.tpl:78
+#, fuzzy
+msgid "Select user"
+msgstr "Удалить"
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
-msgstr ""
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "Пароль администратора"
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
+#: setup/setup_ldap.tpl:101
 #, fuzzy
-msgid "Restore"
-msgstr "Повторить"
-
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
-msgstr ""
+msgid "Schema based settings"
+msgstr "Настройки Samba"
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_ldap.tpl:117
 #, fuzzy
-msgid "Create snapshot"
-msgstr "Создать настройки запись эл. почты"
+msgid "Current status"
+msgstr "Состояние системы"
 
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
+msgstr ""
+
+#: setup/setup_migrate.tpl:33
 #, fuzzy
-msgid "Create a new snapshot from this object"
-msgstr "Ð\9eбÑ\8aекÑ\82 Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Check again"
+msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c"
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "Ошибка XML в gosa.conf: %s в строке %d"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
+msgstr ""
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_config.inc:228
-#, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
 msgstr ""
-"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
-"администратору."
 
-#: include/class_config.inc:560
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
 #, fuzzy
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "Ð\92 Ð²Ð°Ñ\88ем Ñ\84айле Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¾Ñ\82Ñ\81Ñ\83Ñ\82Ñ\81Ñ\82вÑ\83Ñ\8eÑ\82 Ð·Ð½Ð°Ñ\87ениÑ\8f SID Ð¸/или RIDBASE!"
+msgid "Select all"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: include/class_SnapShotDialog.inc:83
-#, fuzzy, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "Вы собираетесь удалить группу \"%s\"."
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
+msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
+#: setup/setup_migrate.tpl:72
 #, fuzzy
-msgid "Remove snapshot"
-msgstr "СоздаÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
+msgid "Move selected workstations"
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\80абоÑ\87ие Ñ\81Ñ\82анÑ\86ии"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "Описание"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+#, fuzzy
+msgid "Close"
+msgstr "Выбрать"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
+#: setup/setup_migrate.tpl:88
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:318
-#, fuzzy, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"."
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP-сервер"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+#, fuzzy
+msgid "Hide changes"
+msgstr "Удалить телефонный аккаунт"
 
-#: include/functions.inc:380 include/functions.inc:450
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
 #, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
+msgid "Show changes"
+msgstr "Показать телефоны"
+
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
 msgstr ""
-"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP."
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/setup_migrate.tpl:142
+msgid ""
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:605
-#, fuzzy, php-format
+#: setup/setup_migrate.tpl:145
 msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
 msgstr ""
-"Не удается считать блокировку в базе данных LDAP. Проверьте, раздел \"config"
-"\" в файле gosa.conf!"
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\81оздании Ð±Ð»Ð¾ÐºÐ¸Ñ\80овки. Ð\9eÑ\82веÑ\82 Ñ\81еÑ\80веÑ\80а: \"%s\"."
+#: setup/setup_migrate.tpl:148
+#, fuzzy
+msgid "Move selected users into this people tree"
+msgstr "СоздаÑ\82Ñ\8c Ñ\88аблон"
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "Удалить приложения"
+#: setup/setup_migrate.tpl:198
+#, fuzzy
+msgid "Next"
+msgstr "текст"
 
-#: include/functions.inc:691 include/functions.inc:736
-#, fuzzy, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ñ\81оздаÑ\82Ñ\8c ÐºÐ²Ð¾Ñ\82Ñ\83 IMAP. Ð\9eÑ\82веÑ\82 Ñ\81еÑ\80веÑ\80а: \"%s\"."
+#: setup/setup_migrate.tpl:199
+#, fuzzy
+msgid "Abort"
+msgstr "Ð\9fоÑ\80Ñ\82"
 
-#: include/functions.inc:699
+#: setup/setup_migrate.tpl:201
 #, fuzzy
+msgid "Create a new GOsa administrator account"
+msgstr "Создать настройки запись эл. почты"
+
+#: setup/setup_migrate.tpl:204
 msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
 msgstr ""
-"Для блокируемого объекта обнаружено несколько блокировок. Этого быть не "
-"должно, проверьте работу LDAP."
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "Ð\9dайдено Ð±Ð¾Ð»ÐµÐµ %d Ð¾Ð±Ñ\8aекÑ\82ов."
+#: setup/setup_migrate.tpl:233
+#, fuzzy
+msgid "Password (again)"
+msgstr "Ð¥Ñ\8dÑ\88иÑ\80ование Ð¿Ð°Ñ\80олей"
 
-#: include/functions.inc:998
-#, php-format
+#: setup/setup_migrate.tpl:258
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
 msgstr ""
-"Установить новое значение лимита в %s и показать мне это сообщение если "
-"лимит будет исчерпан."
 
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "Настроить"
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
+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 ""
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "не полный"
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+#, fuzzy
+msgid "Current"
+msgstr "Текущий пароль"
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "Ошибка LDAP:"
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#, fuzzy
+msgid "After migration"
+msgstr "Управление пользователями"
 
-#: include/functions.inc:1254
+#: setup/setup_migrate.tpl:313
 msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
+msgstr ""
+
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+#, fuzzy
+msgid "GOsa settings 3/3"
+msgstr "Почтовые настройки пользователя"
+
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
 msgstr ""
 
-#: include/functions.inc:1260
-msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
+#: setup/class_setupStep_Config3.inc:193
+msgid "Session lifetime must be a numeric value."
 msgstr ""
 
-#: include/functions.inc:1325
-#, fuzzy
-msgid "Continue anyway"
-msgstr "Продолжить"
+#: setup/class_setupStep_Config3.inc:197
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr ""
 
-#: include/functions.inc:1327
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
 #, fuzzy
-msgid "Edit anyway"
-msgstr "Редактиовать объект"
-
-#: include/functions.inc:1329
-#, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "Вы собираетесь удалить объект %s."
+msgid "LDAP inspection"
+msgstr "Проверка конфигурации PHP"
 
-#: include/functions.inc:1513
-msgid "Entries per page"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
 msgstr ""
 
-#: include/functions.inc:1541
-msgid "Apply filter"
+#: setup/class_setupStep_Migrate.inc:113
+#, fuzzy
+msgid "Checking for root object"
+msgstr "Проверка модуля gd"
+
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789"
+#: setup/class_setupStep_Migrate.inc:125
+#, fuzzy
+msgid "Checking for invisible departments"
+msgstr "Проверка поддержки gettext"
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:131
+#, fuzzy
+msgid "Checking for invisible users"
+msgstr "Проверка поддержки gettext"
 
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:137
+#, fuzzy
+msgid "Checking for super administrator"
+msgstr "Проверка дополнительных программ"
 
-#: include/functions.inc:1950 include/functions.inc:1970
+#: setup/class_setupStep_Migrate.inc:143
 #, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "Checking for users outside the people tree"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¼Ð¾Ð´Ñ\83лÑ\8f cups"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
-msgid "'base_hook' is not available. Using default base."
+#: setup/class_setupStep_Migrate.inc:149
+#, fuzzy
+msgid "Checking for groups outside the groups tree"
+msgstr "Проверка модуля cups"
+
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:161
 #, fuzzy
-msgid "LDAP warning"
-msgstr "ЭкÑ\81поÑ\80Ñ\82 Ð² LDIF"
+msgid "Checking for duplicate uid numbers"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:167
 #, fuzzy
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\81Ñ\85емаÑ\85. Ð\9fÑ\80овеÑ\80ка Ñ\81Ñ\85ем Ð½ÐµÐ²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð°!"
+msgid "Checking for duplicate gid numbers"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+#, fuzzy
+msgid "LDAP query failed"
+msgstr "Невозможно выполнить запрос к базе данных!"
 
-#: include/functions.inc:2277
-msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
 msgstr ""
 
-#: include/functions.inc:2320
+#: setup/class_setupStep_Migrate.inc:213
 #, fuzzy, php-format
-msgid "Missing required object class '%s'!"
-msgstr "СпиÑ\81ок Ð¿Ð¾Ð´Ñ\80азделений"
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "УкажиÑ\82е ÐºÐ¾Ñ\80Ñ\80екÑ\82нÑ\8bй Ð½Ð¾Ð¼ÐµÑ\80 Ñ\82елеÑ\84она."
 
-#: include/functions.inc:2322
+#: setup/class_setupStep_Migrate.inc:262
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "Укажите корректный номер телефона."
+
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "Ошибка"
+
+#: setup/class_setupStep_Migrate.inc:319
 #, php-format
-msgid "Missing optional object class '%s'!"
+msgid ""
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
 
-#: include/functions.inc:2328
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+#, fuzzy
+msgid "Migrate"
+msgstr "Дата"
+
+#: setup/class_setupStep_Migrate.inc:387
+#, fuzzy, php-format
+msgid "Found %s groups outside the configured tree '%s'."
+msgstr "Вы собираетесь удалить объект %s."
+
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#, fuzzy
+msgid "Move"
+msgstr "Режим"
+
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
 
-#: include/functions.inc:2330
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgid ""
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
 
-#: include/functions.inc:2334
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "Class(es) available"
+msgid "Found %s user(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "Дата"
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#, fuzzy, php-format
+msgid "Cannot migrate department '%s':"
+msgstr "Список подразделений"
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
 msgstr ""
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "Немецкий"
-
-#: include/functions.inc:2386
-msgid "French"
-msgstr "Французский"
-
-#: include/functions.inc:2387
-msgid "Italian"
+#: setup/class_setupStep_Migrate.inc:945
+#, php-format
+msgid "Cannot add ACL for user '%s':"
 msgstr ""
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "Испанский"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Password error"
+msgstr "Срок действия пароля истекает"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "Английский"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
+msgstr "Введенные пароли не совпадают!"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "Датский"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Input error"
+msgstr "Ошибка LDAP:"
 
-#: include/functions.inc:2391
+#: setup/class_setupStep_Migrate.inc:975
 #, fuzzy
-msgid "Polish"
-msgstr "Ð\90нглийÑ\81кий"
+msgid "Specify a valid user ID!"
+msgstr "Ð\92ведиÑ\82е ÐºÐ¾Ñ\80Ñ\80екÑ\82ное Ð¸Ð¼Ñ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f!"
 
-#: include/functions.inc:2392
-msgid "Swedish"
+#: setup/class_setupStep_Migrate.inc:1019
+#, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
 msgstr ""
 
-#: include/functions.inc:2393
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
 #, fuzzy
-msgid "Chinese"
-msgstr "сброс"
-
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "Русский"
-
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "Ошибка при установке пароля. Ответ LDAP-сервера: \"%s\"."
+msgid "Cannot move users to the requested department!"
+msgstr "Невозможно подключиться к серверу базы данных!"
 
-#: include/functions.inc:2562
-#, fuzzy, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
 msgstr ""
-"Не удается найти команду \"%s\", указанную в поле POSTREMOVE модуля \"%s\"."
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
+#, fuzzy
+msgid "to"
+msgstr "Отношение"
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
 msgstr ""
 
-#: include/class_ldap.inc:579
-#, php-format
-msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
 msgstr ""
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
 msgstr ""
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
+#: setup/class_setupStep_Migrate.inc:1613
+msgid ""
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
 
-#: include/class_ldap.inc:713
-#, fuzzy, php-format
-msgid "while operating on LDAP server %s"
-msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"."
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+#, fuzzy
+msgid "Try to create root object"
+msgstr "Объект группы"
 
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
 msgstr ""
 
-#: include/class_ldap.inc:964
-#, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "Ошибка при выполнении \"%s\"!"
 
-#: plugins/personal/generic/paste_generic.tpl:1
+#: setup/setup_frame.tpl:12
 #, fuzzy
-msgid "User settings"
+msgid "GOsa setup wizard"
 msgstr "Почтовые настройки пользователя"
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+#: setup/setup_frame.tpl:19
 #, fuzzy
-msgid "Last name"
-msgstr "СпиÑ\81ок"
+msgid "Installation"
+msgstr "РабоÑ\87аÑ\8f Ñ\81Ñ\82анÑ\86иÑ\8f"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+#: setup/setup_frame.tpl:19
 #, fuzzy
-msgid "First name"
-msgstr "Список"
-
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "Имя пользователя"
+msgid "Steps"
+msgstr "Системы"
 
-#: plugins/personal/generic/paste_generic.tpl:23
+#: setup/class_setupStep_Feedback.inc:91
 #, fuzzy
-msgid "Clear password"
-msgstr "Новый пароль"
+msgid "UNIX accounts/groups"
+msgstr "UNIX аккаунт"
 
-#: plugins/personal/generic/paste_generic.tpl:24
+#: setup/class_setupStep_Feedback.inc:93
 #, fuzzy
-msgid "Set new password"
-msgstr "Изменить пароль"
-
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "Изображение"
+msgid "Samba management"
+msgstr "Управление системами"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
+#: setup/class_setupStep_Feedback.inc:95
 #, fuzzy
-msgid "User picture"
-msgstr "Изображение"
-
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "Удалить изображение"
-
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "Сертификаты"
-
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "Стандартный сертификат"
-
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "Удалить"
+msgid "Mailsystem management"
+msgstr "Управление системами"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "Сертификат S/MIME"
+#: setup/class_setupStep_Feedback.inc:97
+#, fuzzy
+msgid "FAX system administration"
+msgstr "Управление пользователями"
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "Сертификат PKCS12"
+#: setup/class_setupStep_Feedback.inc:99
+#, fuzzy
+msgid "Asterisk administration"
+msgstr "Управление пользователями"
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "СеÑ\80ийнÑ\8bй Ð½Ð¾Ð¼ÐµÑ\80 Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82а"
+#: setup/class_setupStep_Feedback.inc:101
+#, fuzzy
+msgid "System inventory"
+msgstr "УдалиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82"
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/class_setupStep_Feedback.inc:103
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð² fstab"
+msgid "System-/Configmanagement"
+msgstr "УпÑ\80авление Ñ\81иÑ\81Ñ\82емами"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "женÑ\81кий"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "Ð\90дÑ\80еÑ\81наÑ\8f ÐºÐ½Ð¸Ð³Ð°"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "мужской"
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+#, fuzzy
+msgid "Notification and feedback"
+msgstr "Изменить сертификаты"
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
-msgstr ""
+#: setup/class_setupStep_Feedback.inc:112
+#, fuzzy
+msgid "Get notifications or send feedback"
+msgstr "Местоположение ветки"
 
-#: plugins/personal/generic/class_user.inc:492
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
 #, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "Ð\92ведиÑ\82е ÐºÐ¾Ñ\80Ñ\80екÑ\82нÑ\8bй Ñ\81еÑ\80ийнÑ\8bй Ð½Ð¾Ð¼ÐµÑ\80"
+msgid "Setup error"
+msgstr "СоÑ\81Ñ\82оÑ\8fние Ñ\81иÑ\81Ñ\82емÑ\8b"
 
-#: plugins/personal/generic/class_user.inc:536
-msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:546
+#: setup/class_setupStep_Feedback.inc:140
 #, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr ""
-
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
+msgid "Cannot send feedback to '%s': %s"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:555
+#: setup/class_setupStep_Feedback.inc:149
 #, fuzzy
-msgid "No certificate installed"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82Ñ\8b"
+msgid "Feedback sucessfully send"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ð·Ð°Ð²ÐµÑ\80Ñ\88ена"
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
+#: setup/class_setupStep_Feedback.inc:179
 #, fuzzy
-msgid "Password method"
-msgstr "Хэширование паролей"
+msgid "Please specify a valid email address."
+msgstr "Введите корректное имя пользователя!"
+
+#: setup/class_setupStep_Feedback.inc:183
+msgid ""
+"You have to select at least one of both options, subscribe or send feedback."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
 #, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "У Ð²Ñ\8bбÑ\80анного Ð¿Ñ\80иложениÑ\8f Ð½ÐµÑ\82 Ð¿Ð°Ñ\80амеÑ\82Ñ\80ов."
+msgid "License"
+msgstr "в"
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "У вас недостаточно прав для удаления этого стоп-листа."
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "Имя"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Настройки Samba"
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "Домашняя страница"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "Телефон"
+#: setup/setup_config2.tpl:31
+#, fuzzy
+msgid "RID base"
+msgstr "Базы данных"
+
+#: setup/setup_config2.tpl:46
+#, fuzzy
+msgid "Workstation container"
+msgstr "Имя рабочий станции"
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "Факс"
+#: setup/setup_config2.tpl:61
+#, fuzzy
+msgid "Samba SID mapping"
+msgstr "Samba"
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
+#: setup/setup_config2.tpl:71
+#, fuzzy
+msgid "Timezone"
 msgstr "Мобильный"
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "Пейджер"
+#: setup/setup_config2.tpl:74
+#, fuzzy
+msgid "Please choose your preferred timezone here"
+msgstr "Язык по умолчанию"
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/setup_config2.tpl:96
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "Ð\9dевозможно Ð²Ñ\8bбÑ\80аÑ\82Ñ\8c Ð±Ð°Ð·Ñ\83 Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
+msgid "Additional GOsa settings"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð² fstab"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "Подразделение"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "Номер дома"
+#: setup/setup_config2.tpl:112
+#, fuzzy
+msgid "Enable DNS extension"
+msgstr "Удалить параметры"
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "Специальность"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "Удалить параметры"
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "Последняя доставка"
+#: setup/setup_config2.tpl:136
+#, fuzzy
+msgid "Enable mime type management"
+msgstr "Управление системами"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
-msgstr "Местоположение сотрудника"
+#: setup/setup_config2.tpl:148
+#, fuzzy
+msgid "Enable FAI release management"
+msgstr "Управление подразделениями"
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "Описание подразделения"
+#: setup/setup_config2.tpl:160
+#, fuzzy
+msgid "Enable user netatalk plugin"
+msgstr "Создать телефонный аккаунт"
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
-msgstr "Область деятельности"
+#: setup/setup_config2.tpl:171
+#, fuzzy
+msgid "Government mode"
+msgstr "в папку"
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "Должность"
+#: setup/setup_config2.tpl:180
+#, fuzzy
+msgid "Mail settings"
+msgstr "Почтовые настройки пользователя"
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "Видимый всем"
+#: setup/setup_config2.tpl:184
+#, fuzzy
+msgid "Mail method"
+msgstr "Почтовые настройки"
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "Улица"
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "Роль"
+#: setup/setup_config2.tpl:214
+#, fuzzy
+msgid "Vacation templates"
+msgstr "Шаблон рабочей станции"
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "Почтовый индекс"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1432
+#: setup/setup_config2.tpl:240
 #, fuzzy
-msgid "Generic user settings"
-msgstr "Общая информация о пользователе"
-
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "Моя учетная запись"
+msgid "Snapshots / Undo"
+msgstr "Приложение"
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
 #, fuzzy
-msgid "User password"
-msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c"
+msgid "Enable snapshots"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
 #, fuzzy
-msgid "Surename"
-msgstr "Имя сервера"
+msgid "Snapshot base"
+msgstr "Приложение"
+
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr ""
+
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1445
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
 #, fuzzy
-msgid "User identification"
-msgstr "Информация"
+msgid "Mail address"
+msgstr "MAC-адрес"
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "Обращение"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "Академическое звание"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1449
-#, fuzzy
-msgid "Home phone number"
-msgstr "Телефонные номера"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "Подразделение"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "Дата рождения"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1454
-#, fuzzy
-msgid "Gender"
-msgstr "Отправитель"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
+
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
+
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
+
+#: setup/setup_feedback.tpl:123
+msgid "Features"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1455
-#, fuzzy
-msgid "Preferred language"
-msgstr "Язык по умолчанию"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1456
-#, fuzzy
-msgid "Department number"
-msgstr "Управление подразделениями"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1457
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr ""
+
+#: setup/setup_schema.tpl:3
 #, fuzzy
-msgid "Employee number"
-msgstr "ФоÑ\80ма Ñ\82Ñ\80Ñ\83доÑ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82ва"
+msgid "Schema specific settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82елеÑ\84она"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "Форма трудоустройства"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "Местоположение"
+#: setup/setup_schema.tpl:16
+#, fuzzy
+msgid "Check status"
+msgstr "Состояние системы"
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "Адм. единица"
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1462
+#: setup/setup_schema.tpl:23
 #, fuzzy
-msgid "Room number"
-msgstr "ТелеÑ\84оннÑ\8bе Ð½Ð¾Ð¼ÐµÑ\80а"
+msgid "Schema check failed"
+msgstr "Ð\9fÑ\80иложение"
 
-#: plugins/personal/generic/class_user.inc:1463
-#, fuzzy
-msgid "Telefon number"
-msgstr "Телефонные номера"
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
-#, fuzzy
-msgid "Mobile number"
-msgstr "Домашний телефон"
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1465
-#, fuzzy
-msgid "Pager number"
-msgstr "Телефонные номера"
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1466
+#: setup/class_setup.inc:196
 #, fuzzy
-msgid "User certificates"
-msgstr "СÑ\82андаÑ\80Ñ\82нÑ\8bй Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82"
+msgid "Completed"
+msgstr "не Ð¿Ð¾Ð»Ð½Ñ\8bй"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
+#: setup/class_setupStep_Ldap.inc:53
 #, fuzzy
-msgid "Postal address"
-msgstr "Почтовый индекс"
+msgid "LDAP setup"
+msgstr "LDAP-сервер"
 
-#: plugins/personal/generic/class_user.inc:1469
+#: setup/class_setupStep_Ldap.inc:54
 #, fuzzy
-msgid "Fax number"
-msgstr "ТеÑ\80минал"
+msgid "LDAP connection setup"
+msgstr "Соединение..."
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/class_setupStep_Ldap.inc:55
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
 msgstr ""
-"Вы изменили метод шифрования паролей в базе LDAP. В связи с этим введите "
-"свой пароль снова. GOsa произведет шифрование в соответствии с выбраной "
-"схемой."
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "Подтверждение"
+#: setup/class_setupStep_Ldap.inc:105
+#, fuzzy, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "Изменить пароль"
+#: setup/class_setupStep_Ldap.inc:107
+#, fuzzy, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
+#: setup/class_setupStep_Ldap.inc:112
+#, fuzzy, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии. Ð\9eÑ\82веÑ\82 Ñ\81еÑ\80веÑ\80а: \"%s\"."
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
+#: setup/class_setupStep_Ldap.inc:113
 #, fuzzy
-msgid "Preferred langage"
-msgstr "ЯзÑ\8bк Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
+msgid "Please specify user and password."
+msgstr "Ð\92ведиÑ\82е Ñ\81вой Ð¿Ð°Ñ\80олÑ\8c!"
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð²ÐµÑ\82кÑ\83 Ð´Ð»Ñ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
+#: setup/class_setupStep_Ldap.inc:115
+#, fuzzy, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии. Ð\9eÑ\82веÑ\82 Ñ\81еÑ\80веÑ\80а: \"%s\"."
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-#, fuzzy
-msgid "Select a base"
-msgstr "Выберите, чтобы просмотреть серверы"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "Адрес"
+#: setup/setup_config1.tpl:6
+#, fuzzy
+msgid "Theme"
+msgstr "Мобильный"
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "Ð\9bиÑ\87нÑ\8bй Ñ\82елеÑ\84он"
+#: setup/setup_config1.tpl:15
+#, fuzzy
+msgid "Apache"
+msgstr "Ð\9eÑ\82мена"
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "Хэширование паролей"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82Ñ\8b"
+#: setup/setup_config1.tpl:27
+#, fuzzy
+msgid "People and group storage"
+msgstr "СÑ\82Ñ\80Ñ\83кÑ\82Ñ\83Ñ\80наÑ\8f ÐµÐ´Ð¸Ð½Ð¸Ñ\86а (OU) Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾Ð± Ð¾Ñ\80ганизаÑ\86ии"
+#: setup/setup_config1.tpl:30
+#, fuzzy
+msgid "People DN attribute"
+msgstr "Ð\90Ñ\82Ñ\80ибÑ\83Ñ\82 DN Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "Ð\9dомеÑ\80 Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
+#: setup/setup_config1.tpl:41
+#, fuzzy
+msgid "People storage subtree"
+msgstr "СÑ\82Ñ\80Ñ\83кÑ\82Ñ\83Ñ\80наÑ\8f ÐµÐ´Ð¸Ð½Ð¸Ñ\86а (OU) Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "Номер работника"
+#: setup/setup_config1.tpl:50
+#, fuzzy
+msgid "Group storage subtree"
+msgstr "OU групп"
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "Номер комнаты"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
-msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
-msgstr "Введенные пароли не совпадают!"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:104
+#: setup/setup_config1.tpl:81
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "У вас недостаточно прав для смены своего пароля."
-
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "Изменить"
+msgid "Automatic uids"
+msgstr "автоматически"
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "Общая информация о пользователе"
+#: setup/setup_config1.tpl:113
+#, fuzzy
+msgid "Number base for people/groups"
+msgstr "База идентификаторов для пользователей/групп"
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "Сменить изображение"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/setup_config1.tpl:140
+msgid "Password encryption algorithm"
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:62
+#: setup/setup_config1.tpl:151
 #, fuzzy
-msgid "Template name"
-msgstr "Шаблон"
+msgid "Password restrictions"
+msgstr "СÑ\80ок Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ð¿Ð°Ñ\80олÑ\8f Ð¸Ñ\81Ñ\82екаеÑ\82"
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "Пол"
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "Воспользуйтесь закладкой \"Телефон\""
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr ""
 
-#: plugins/personal/password/nochange.tpl:2
+#: setup/setup_config1.tpl:182
 #, fuzzy
-msgid "Password change not allowed"
+msgid "Password change hook"
 msgstr "Сменить пароль"
 
-#: plugins/personal/password/nochange.tpl:6
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr ""
+
+#: setup/setup_config1.tpl:209
 #, fuzzy
-msgid "You are not allowed to change your password at this time"
-msgstr "Ð\92ам Ð½Ðµ Ñ\80азÑ\80еÑ\88ено Ð¼ÐµÐ½Ñ\8fÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c."
+msgid "Use account expiration"
+msgstr "УÑ\87еÑ\82наÑ\8f Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c"
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/setup_config1.tpl:221
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
 msgstr ""
-"Вы успешно сменили свой пароль. Не забудьте изменить нужные настройки "
-"использующих его программ."
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/setup_config1.tpl:222
 #, fuzzy
-msgid "Change user passwords"
-msgstr "Сменить пароль"
+msgid ""
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"Сейчас вам нужно указать параметры доступа к LDAP-серверу. GOsa всегда "
+"выступает в роли администратора и управляет правами доступа самостоятельно. "
+"Это временное решение, пока в OpenLDAP не будут реализованы полностью "
+"средства контроля доступа (ACI) внутри каталогов. Чтобы это решение "
+"работало, укажите DN (уникальное имя) администратора и соответствующий "
+"пароль."
 
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "Для продолжения укажите свой текущий пароль."
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
+msgstr ""
+"Некоторые основные параметры LDAP изменяемы и влияют на расположение "
+"сохраняемой информации о пользователях и группах, а также на способ создания "
+"учетных записей. Проверьте, подходят ли вам значения, указанные ниже."
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "Вы не указали новый пароль."
+#: setup/setup_config1.tpl:224
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
-msgstr "Новый и текущий пароли слишком похожи."
+#: setup/setup_language.tpl:3
+#, fuzzy
+msgid "Please select the preferred language"
+msgstr "Язык по умолчанию"
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "Новый пароль слишком короткий."
+#: setup/setup_language.tpl:5
+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/personal/password/class_password.inc:95
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
+msgstr "Язык по умолчанию"
+
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:64
+#, fuzzy
+msgid "Checking PHP version"
+msgstr "Проверка версии PHP (>=4.1.0)"
+
+#: setup/class_setupStep_Checks.inc:65
 #, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "При попытке сменить пароль извне возникла проблема: "
+msgid "PHP must be of version %s or above."
+msgstr ""
+"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней "
+"реализованы некоторые новые функции и исправлены некоторые ошибки."
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:66
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
-msgstr "Введенный вами текущий пароль не совпадает с реальным."
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:72
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
+msgid "Checking for LDAP support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:73
 #, fuzzy
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr "Основной модуль, используемый GOsa, и поэтому обязательный."
+
+#: setup/class_setupStep_Checks.inc:74
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
-"В полях ниже вы можете изменить свой пароль. Изменения вступят в силу "
-"немедленно. Пожалуйста, запомните новый пароль, так как иначе вы не сможете "
-"войти в систему."
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "Проверка поддержки gettext"
+
+#: setup/class_setupStep_Checks.inc:81
 #, fuzzy
-msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
-msgstr ""
-"Изменение пароля влияет на аутентификацию при использовании почты, прокси-"
-"сервера, Samba и служб UNIX."
+msgid "Gettext support is required for internationalization."
+msgstr "Необходима для локализованных версий GOsa."
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "Очистить поля"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:4
+#: setup/class_setupStep_Checks.inc:88
 #, fuzzy
-msgid "Posix settings"
-msgstr "Ð\90Ñ\82Ñ\80ибÑ\83Ñ\82Ñ\8b UNIX"
+msgid "Checking for iconv support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "Домашний каталог"
+#: setup/class_setupStep_Checks.inc:89
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "УказаÑ\82Ñ\8c UID/GID Ð²Ñ\80Ñ\83Ñ\87нÑ\83Ñ\8e"
+#: setup/class_setupStep_Checks.inc:96
+#, fuzzy
+msgid "Checking for mhash support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "ЧленÑ\81Ñ\82во Ð² Ð³Ñ\80Ñ\83ппаÑ\85"
+#: setup/class_setupStep_Checks.inc:104
+#, fuzzy
+msgid "Checking for IMAP support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
+#: setup/class_setupStep_Checks.inc:105
+#, fuzzy
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
 msgstr ""
-"(Предупреждение: NFS не поддерживает более 16 групп для одного пользователя!)"
+"Этот модуль нужен для работы с сервером IMAP. С его помощью можно получать "
+"информацию о состоянии учетной записи, создавать и удалять пользователей."
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "Выберите группы для добавления"
+#: setup/class_setupStep_Checks.inc:106
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "Объединения в подразделении"
+#: setup/class_setupStep_Checks.inc:112
+#, fuzzy
+msgid "Checking for multi byte support"
+msgstr "Проверка поддержки gettext"
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "Выбрать раздел, для которого будет осуществлен поиск"
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "Шаблон для групп"
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "Регулярное выражение, соответствующее именам групп"
+#: setup/class_setupStep_Checks.inc:120
+#, fuzzy
+msgid "Checking for getacl in IMAP implementation"
+msgstr "Проверка использования getacl в IMAP"
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "Показать группы пользователей"
+#: setup/class_setupStep_Checks.inc:121
+#, fuzzy
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
+msgstr ""
+"Поддержка getacl в IMAP нужна для выставления прав на общие папки. "
+"Стандартный модуль IMAP не может обрабатывать acl. Для использования этой "
+"функции вам нужна последняя версия PHP."
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "Ð\98мÑ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f, Ð´Ð»Ñ\8f ÐºÐ¾Ñ\82оÑ\80ого Ð¿ÐµÑ\80еÑ\87иÑ\81лÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ð³Ñ\80Ñ\83ппÑ\8b"
+#: setup/class_setupStep_Checks.inc:128
+#, fuzzy
+msgid "Checking for MySQL support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/class_setupStep_Checks.inc:129
 #, fuzzy
-msgid "Search in subtrees"
-msgstr "Искать в поддеревьях"
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr ""
+"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы "
+"данных."
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "Пользователь должен сменить пароль при первом входе в систему"
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "Срок действия пароля истекает"
+#: setup/class_setupStep_Checks.inc:136
+#, fuzzy
+msgid "Checking for kadm5 support"
+msgstr "Проверка поддержки gettext"
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "Unix"
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr ""
+"Чтобы управлять пользователями с помощью Kerberos, необходим модуль kadm5, "
+"который можно загрузить из сети PEAR."
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:138
+#, fuzzy
+msgid ""
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
 msgstr ""
+"Чтобы управлять пользователями с помощью Kerberos, необходим модуль kadm5, "
+"который можно загрузить из сети PEAR."
 
-#: plugins/personal/posix/class_posixAccount.inc:154
+#: setup/class_setupStep_Checks.inc:144
 #, fuzzy
-msgid "expired"
-msgstr "ЭкÑ\81поÑ\80Ñ\82"
+msgid "Checking for SNMP support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
+#: setup/class_setupStep_Checks.inc:145
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-#, fuzzy
-msgid "active, password not changable"
-msgstr "Новый пароль"
+#: setup/class_setupStep_Checks.inc:146
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:161
+#: setup/class_setupStep_Checks.inc:152
 #, fuzzy
-msgid "active, password expired"
-msgstr "СÑ\80ок Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ð¿Ð°Ñ\80олÑ\8f Ð¸Ñ\81Ñ\82екаеÑ\82"
+msgid "Checking for CUPS support"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð´Ð´ÐµÑ\80жки gettext"
 
-#: plugins/personal/posix/class_posixAccount.inc:163
+#: setup/class_setupStep_Checks.inc:153
 #, fuzzy
-msgid "active"
-msgstr "Личный"
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"Чтобы получать информацию о доступных принтерах по протоколу IPP вместо "
+"чтения файлов printcap, вам нужно установить модуль CUPS."
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "Ð\9dе Ð½Ð°Ñ\81Ñ\82Ñ\80оено"
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "Ð\9fÑ\80овеÑ\80ка Ñ\83Ñ\82илиÑ\82Ñ\8b fping"
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "автоматически"
+#: setup/class_setupStep_Checks.inc:163
+#, fuzzy
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr ""
+"Эта программа используется, только если вы работате с бездисковыми "
+"терминалами."
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:164
+#, fuzzy
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
 msgstr ""
+"Эта программа используется, только если вы работате с бездисковыми "
+"терминалами."
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "Окружение"
+#: setup/class_setupStep_Checks.inc:180
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr ""
+"Чтобы пользоваться Samba 2/3, вам нужно установить некоторые дополнительные "
+"программы для создания хэшей паролей."
 
-#: plugins/personal/posix/class_posixAccount.inc:465
-#, php-format
-msgid "Password can't be changed up to %s days after last change"
-msgstr "Пароль нельзя изменить в течение %s дн. с последней смены (shadowMin)"
+#: setup/class_setupStep_Checks.inc:181
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr ""
+"Чтобы пользоваться Samba 2/3, вам нужно установить некоторые дополнительные "
+"программы для создания хэшей паролей."
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "Пароль должен быть изменен по истечении %s дн. (shadowMax)"
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+#, fuzzy
+msgid "Off"
+msgstr "не в сети"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
+#: setup/class_setupStep_Checks.inc:192
+#, fuzzy
+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 ""
-"Отключить учетную запись, если срок действия пароля истек и прошло %s дн. "
-"бездействия (shadowInactive)"
+"register_globals - механизм PHP, позволяющий делать все глобальные "
+"переменные доступными из сценария без смены области действия. Это может быть "
+"нарушением безопасности. Тем не менее, GOsa будет работать в любом случае."
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
+#: setup/class_setupStep_Checks.inc:193
+#, fuzzy
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "Проверка значения параметра register_globals (должно быть: off)"
+
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
 msgstr ""
-"Предупреждать пользователей за %s дн. до истечения срока действия пароля "
-"(shadowWarning)"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "полный доступ"
+#: setup/class_setupStep_Checks.inc:202
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "разрешить доступ только на эти хосты"
+#: setup/class_setupStep_Checks.inc:203
+#, fuzzy
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr "Проверка значения параметра register_globals (должно быть: off)"
 
-#: plugins/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
-msgstr ""
+#: setup/class_setupStep_Checks.inc:211
+#, fuzzy
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
+msgstr "Проверка значения параметра register_globals (должно быть: off)"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:212
 #, fuzzy
-msgid "Uid number"
-msgstr "ТеÑ\80минал"
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð·Ð½Ð°Ñ\87ениÑ\8f Ð¿Ð°Ñ\80амеÑ\82Ñ\80а register_globals (должно Ð±Ñ\8bÑ\82Ñ\8c: off)"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:219
 msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "Группа пользователя"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
-#, fuzzy
-msgid "shadowMin"
-msgstr "Затенение"
+#: setup/class_setupStep_Checks.inc:227
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-#, fuzzy
-msgid "shadowMax"
-msgstr "Затенение"
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
-#, fuzzy
-msgid "shadowWarning"
-msgstr "Затенение"
+#: setup/class_setupStep_Checks.inc:235
+msgid "The Execution time should be at least 30 seconds."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
-#, fuzzy
-msgid "shadowInactive"
-msgstr "Затенение"
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/class_setupStep_Checks.inc:243
+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/personal/posix/class_posixAccount.inc:1496
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:250
 #, fuzzy
-msgid "POSIX account"
-msgstr "Ð\90ккаÑ\83нÑ\82 FTP"
+msgid "On"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b"
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Оболочка"
+#: setup/class_setupStep_Checks.inc:251
+msgid ""
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
+#: setup/class_setupStep_Checks.inc:252
 #, fuzzy
-msgid "Group ID"
-msgstr "Ð\93Ñ\80Ñ\83ппа"
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr "Ð\9fÑ\80овеÑ\80ка Ð·Ð½Ð°Ñ\87ениÑ\8f Ð¿Ð°Ñ\80амеÑ\82Ñ\80а register_globals (должно Ð±Ñ\8bÑ\82Ñ\8c: off)"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
-#, fuzzy
-msgid "Force password change on login"
-msgstr "Сменить пароль"
+#: setup/class_setupStep_Checks.inc:259
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
+#: setup/class_setupStep_Checks.inc:260
 #, fuzzy
-msgid "Shadow min"
-msgstr "Затенение"
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+msgstr "Проверка значения параметра register_globals (должно быть: off)"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
+#: setup/class_setupStep_Checks.inc:270
 #, fuzzy
-msgid "Shadow max"
-msgstr "Ð\97аÑ\82енение"
+msgid "Configuration writeable"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
+#: setup/class_setupStep_Checks.inc:271
 #, fuzzy
-msgid "Shadow warning"
-msgstr "Ð\97аÑ\82енение"
+msgid "The configuration file can't be written"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
-#, fuzzy
-msgid "Shadow inactive"
-msgstr "Затенение"
+#: setup/class_setupStep_Checks.inc:272
+#, php-format
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
+#: setup/setup_config3.tpl:2
 #, fuzzy
-msgid "Shadow expire"
-msgstr "Показать людей"
+msgid "GOsa core settings"
+msgstr "Почтовые настройки пользователя"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
+#: setup/setup_config3.tpl:6
 #, fuzzy
-msgid "System trust model"
-msgstr "СиÑ\81Ñ\82емнÑ\8bе Ð´Ð¾Ð²ÐµÑ\80иÑ\8f"
+msgid "Disable primary group filter"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: plugins/personal/posix/main.inc:131
+#: setup/setup_config3.tpl:18
 #, fuzzy
-msgid "POSIX settings"
-msgstr "Атрибуты UNIX"
-
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "Основная группа"
-
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "Состояние"
+msgid "Display summary in listings"
+msgstr "Шаблон для групп"
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#: setup/setup_config3.tpl:30
 #, fuzzy
-msgid "In all groups"
-msgstr "Ð\9eÑ\81новнаÑ\8f Ð³Ñ\80Ñ\83ппа"
+msgid "Honour administrative units"
+msgstr "УпÑ\80авление Ð³Ñ\80Ñ\83ппами"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#: setup/setup_config3.tpl:42
 #, fuzzy
-msgid "Not in all groups"
-msgstr "Показать группы с эл. почтой"
-
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "Учетная запись"
+msgid "Smarty compile directory"
+msgstr "Домашний каталог"
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "Системные доверия"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
+msgstr ""
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
+#: setup/setup_config3.tpl:60
 #, fuzzy
-msgid "Trust mode"
-msgstr "Режим"
-
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "Выберите системы для добавления"
-
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "Показать системы в подразделении"
-
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "Показать подходяшие системы"
-
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "Регулярное выражение для поиска адреса"
-
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "Создание пользователя на основе шаблона"
+msgid "Path for PPD storage"
+msgstr "Хэширование паролей"
 
-#: plugins/admin/users/template.tpl:6
+#: setup/setup_config3.tpl:77
 #, fuzzy
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
-msgstr ""
-"Можно создавать пользователей на основе шаблонов. При этом многие поля в "
-"базе данных будут заполнены автоматически. Выберите <b>нет</b>, чтобы не "
-"использовать шаблоны."
+msgid "Path for kiosk profile storage"
+msgstr "Почтовые настройки пользователя"
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "Шаблон"
+#: setup/setup_config3.tpl:96
+#, fuzzy
+msgid "Enable system deployment"
+msgstr "Управление системами"
 
-#: plugins/admin/users/password.tpl:4
+#: setup/setup_config3.tpl:115
 #, fuzzy
-msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
-msgstr ""
-"В полях ниже вы можете изменить пароль выбранного пользователя. Изменения "
-"вступят в силу немедленно. Пожалуйста, запомните новый пароль, так как иначе "
-"пользователь не сможет войти в систему."
+msgid "Mail queue script"
+msgstr "Путь к сценариям"
 
-#: plugins/admin/users/password.tpl:21
+#: setup/setup_config3.tpl:134
 #, fuzzy
-msgid "Strength"
-msgstr "УлиÑ\86а"
+msgid "Notification script"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82Ñ\8b"
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "Список пользователей"
+#: setup/setup_config3.tpl:153
+msgid "Enable edit locking"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:60
-#, fuzzy
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
 msgstr ""
-"С помощью этого меню вы можете добавлять, изменять и удалять выбранных "
-"пользователей. Если у вас достаточно большое количество пользователей, вы "
-"можете использовать групповое выделение."
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "Свойства"
+#: setup/setup_config3.tpl:175
+#, fuzzy
+msgid "Login attribute"
+msgstr "Атрибут DN пользователей"
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "Действия"
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "Выберите, чтобы просмотреть шаблоны псевдопользователей"
+#: setup/setup_config3.tpl:198
+msgid "Enforce encrypted connections"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "Показать шаблоны"
+#: setup/setup_config3.tpl:210
+#, fuzzy
+msgid "Warn if session is not encrypted"
+msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы."
 
-#: plugins/admin/users/class_divListUsers.inc:86
+#: setup/setup_config3.tpl:222
 #, fuzzy
-msgid "Select to see users that have only a GOsa object"
-msgstr ""
-"Выберите, чтобы просмотреть пользователей, у которых есть только объект GOsa"
+msgid "Remember dialog filter settings"
+msgstr "Общая информация о пользователе"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "Показать обычных пользователей"
+#: setup/setup_config3.tpl:234
+#, fuzzy
+msgid "Session lifetime"
+msgstr "Конфликт сеансов"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
+#: setup/setup_config3.tpl:243
+msgid "Debugging"
 msgstr ""
-"Выберите, чтобы просмотреть пользователей с атрибутами в стандарте POSIX"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "Показать UNIX-пользователей"
+#: setup/setup_config3.tpl:247
+#, fuzzy
+msgid "Show PHP errors"
+msgstr "Ошибка LDAP:"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "Выберите, чтобы просмотреть пользователей с настройками почты"
+#: setup/setup_config3.tpl:259
+#, fuzzy
+msgid "Maximum LDAP query time"
+msgstr "Размер квоты"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "Показать пользователей с почтой"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "Выберите, чтобы просмотреть пользователей с настройками Samba"
+#: setup/setup_config3.tpl:289
+#, fuzzy
+msgid "Debug level"
+msgstr "Уровень информативности"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "Показать пользователей Samba"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+#, fuzzy
+msgid "Disabled"
+msgstr "отключен"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "Выберите, чтобы просмотреть пользователей с настройками прокси-сервера"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#, fuzzy
+msgid "Enabled"
+msgstr "отключен"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "Показать пользователей с прокси-серверами"
+#: setup/class_setupStep_Welcome.inc:38
+#, fuzzy
+msgid "Welcome"
+msgstr "Добро пожаловать %s!"
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/class_setupStep_Welcome.inc:39
 #, fuzzy
-msgid "Select to search within subtrees"
-msgstr "Ð\98Ñ\81каÑ\82Ñ\8c Ð² Ð¿Ð¾Ð´Ð´ÐµÑ\80евÑ\8cÑ\8fÑ\85"
+msgid "The welcome message"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "ФилÑ\8cÑ\82Ñ\80"
+#: setup/class_setupStep_Welcome.inc:40
+#, fuzzy
+msgid "Welcome to GOsa setup wizard"
+msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c Ð² Ñ\80аздел Ð½Ð°Ñ\81Ñ\82Ñ\80ойки GOsa!"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
 #, fuzzy
-msgid "Submit department"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
+msgid "LDAP schema check"
+msgstr "СеÑ\80веÑ\80 Ð¿Ð¾Ð´ÐºÐ°Ñ\87ки"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "Сменить пароль"
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "Компания"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "Выполнить"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:268
+#: setup/setup_checks.tpl:67
 #, fuzzy
-msgid "Edit generic properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "PHP setup configuration"
+msgstr "Ð\91азÑ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
+#: setup/setup_checks.tpl:67
 #, fuzzy
-msgid "Posix"
-msgstr "Ð\9fÑ\80окÑ\81и-Ñ\81еÑ\80веÑ\80"
+msgid "show information"
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: plugins/admin/users/class_divListUsers.inc:270
+#: setup/setup_finish.tpl:3
 #, fuzzy
-msgid "Edit UNIX properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "Create your configuration file"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/admin/users/class_divListUsers.inc:272
+#: setup/setup_finish.tpl:13
 #, fuzzy
-msgid "Edit environment properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "Download configuration"
+msgstr "СиÑ\81Ñ\82емнаÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "Почта"
+#: setup/setup_finish.tpl:18
+#, fuzzy
+msgid "Status: "
+msgstr "Состояние"
 
-#: plugins/admin/users/class_divListUsers.inc:274
+#: setup/class_setupStep_Finish.inc:38
 #, fuzzy
-msgid "Edit mail properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "Write configuration file"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/admin/users/class_divListUsers.inc:276
+#: setup/class_setupStep_Finish.inc:39
 #, fuzzy
-msgid "Edit phone properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "Finish - write the configuration file"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/admin/users/class_divListUsers.inc:278
+#: setup/class_setupStep_Finish.inc:100
 #, fuzzy
-msgid "Edit fax properies"
-msgstr "Изменить свойства"
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr ""
+"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
 
-#: plugins/admin/users/class_divListUsers.inc:280
+#: setup/class_setupStep_Finish.inc:102
 #, fuzzy
-msgid "Edit samba properties"
-msgstr "Изменить свойства"
+msgid "The configuration is currently not readable or it does not exists."
+msgstr ""
+"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
+#: setup/class_setupStep_Finish.inc:111
+#, fuzzy, 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. You may want to execute these commands to achieve this "
+"requirement:"
 msgstr ""
+"Поместив файл gosa.conf в каталог /etc/gosa, убедитесь, что только "
+"пользователь веб-сервера может его читать. Для этого вам, возможно, "
+"понадобится выполнить следующие команды:"
 
-#: plugins/admin/users/class_divListUsers.inc:282
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
 #, fuzzy
-msgid "Edit netatalk properties"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81войÑ\81Ñ\82ва"
+msgid "GOsa settings 2/3"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: plugins/admin/users/class_divListUsers.inc:283
+#: setup/class_setupStep_Config2.inc:87
 #, fuzzy
-msgid "Create user from template"
-msgstr "СоздаÑ\82Ñ\8c Ñ\88аблон"
+msgid "Customize special parameters"
+msgstr "Ð\98змениÑ\82Ñ\8c Ð¿Ð°Ñ\80амеÑ\82Ñ\80Ñ\8b"
 
-#: plugins/admin/users/class_divListUsers.inc:284
-#, fuzzy
-msgid "Create user with this template"
-msgstr "СоздаÑ\82Ñ\8c Ñ\88аблон"
+#: include/functions_helpviewer.inc:45
+#, fuzzy, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "Ð\9eÑ\88ибка XML Ð² gosa.conf: %s Ð² Ñ\81Ñ\82Ñ\80оке %d"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-#, fuzzy
-msgid "cut"
-msgstr "Выполнить"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr ""
+
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
 #, fuzzy
-msgid "Cut this entry"
-msgstr "Редактиовать объект"
+msgid "next"
+msgstr "текст"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
 msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-#, fuzzy
-msgid "Copy this entry"
-msgstr "Редактиовать объект"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
-#, fuzzy
-msgid "Deactivated"
-msgstr "Личный"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr ""
+
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "Доступ"
+
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "Ссылки"
 
-#: plugins/admin/users/class_divListUsers.inc:322
-#, fuzzy
-msgid "Active"
-msgstr "Личный"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:330
-#, fuzzy
-msgid "Edit user"
-msgstr "Пользователи домена"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:339
-#, fuzzy
-msgid "password"
-msgstr "Пароль"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:343
+#: include/class_plugin.inc:1613
 #, fuzzy
-msgid "You are not allowed to change the password for this user."
-msgstr "Ð\92ам Ð½Ðµ Ñ\80азÑ\80еÑ\88ено Ð¼ÐµÐ½Ñ\8fÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c."
+msgid "from"
+msgstr "и"
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
+#: include/class_MultiSelectWindow.inc:240
 #, fuzzy
-msgid "Delete user"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "Go to root department"
+msgstr "СпиÑ\81ок Ð¿Ð¾Ð´Ñ\80азделений"
 
-#: plugins/admin/users/class_divListUsers.inc:357
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
 #, fuzzy
-msgid "You are not allowed to remove this user."
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f!"
+msgid "Root"
+msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c"
 
-#: plugins/admin/users/class_divListUsers.inc:443
+#: include/class_MultiSelectWindow.inc:248
 #, fuzzy
-msgid "Number of listed users"
+msgid "Go up one department"
 msgstr "Подразделение"
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
+#: include/class_MultiSelectWindow.inc:256
 #, fuzzy
-msgid "Number of listed departments"
-msgstr "Ð\9fодразделение"
+msgid "Go to users department"
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð¿одразделение"
 
-#: plugins/admin/users/class_userManagement.inc:27
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
 #, fuzzy
-msgid "Manage users"
-msgstr "Ð\9fолÑ\8cзоваÑ\82ели Ð´Ð¾Ð¼ÐµÐ½Ð°"
+msgid "Home"
+msgstr "Ð\98мÑ\8f Ñ\81иÑ\81Ñ\82емÑ\8b"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "Домен"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: include/class_MultiSelectWindow.inc:529
 #, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+msgid "Inconsistent DN encoding detected: '%s'"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
 #, fuzzy
-msgid "Password change failed."
-msgstr "Сменить пароль"
-
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
-msgstr "У вас недостаточно прав для смены пароля этого пользователя!"
+msgid "Restore"
+msgstr "Повторить"
 
-#: plugins/admin/users/class_userManagement.inc:456
-#, fuzzy, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "Вы собираетесь удалить объект %s."
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:458
-#, fuzzy, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "Вы собираетесь удалить объект %s."
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:460
+#: include/class_MultiSelectWindow.inc:680
 #, fuzzy
-msgid "Delete users"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "Create snapshot"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
+#: include/class_MultiSelectWindow.inc:680
 #, fuzzy
-msgid "User delete"
-msgstr "Удалить"
-
-#: plugins/admin/users/class_userManagement.inc:488
-#, fuzzy, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "У вас недостаточно прав для удаления этого пользователя!"
-
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "Вы собираетесь удалить пользователя %s."
+msgid "Create a new snapshot from this object"
+msgstr "Объект группы"
 
-#: plugins/admin/users/class_userManagement.inc:603
+#: include/class_pluglist.inc:56
 #, fuzzy
-msgid "User deleted"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "All objects in this category"
+msgstr "Ð\9eпиÑ\81ание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: plugins/admin/users/class_userManagement.inc:603
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
+
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
 #, fuzzy
-msgid "User successfully removed."
-msgstr "Настройка завершена"
+msgid "Unknown"
+msgstr "состояние неизвестно"
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "У вас недостаточно прав для удаления этого пользователя!"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "нет"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr ""
 
-#: plugins/admin/users/remove.tpl:6
-msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
 msgstr ""
-"Сюда входит вся информация об учетной записи этого пользователя, его права "
-"доступа в системе, настройки IMAP и т. д. Подумайте еще раз, действительно "
-"ли вам нужно удаление, так как GOsa не сможет отменить результаты этой "
-"операции."
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "Управление пользователями"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:1
+#: include/class_certificate.inc:212
 #, fuzzy
-msgid "Group settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Samba"
+msgid "Can't create/open File"
+msgstr "Ð\9dевозможно Ð¸Ð¼Ð¿Ð¾Ñ\80Ñ\82иоваÑ\82Ñ\8c Ð¿Ñ\83Ñ\81Ñ\82ой Ñ\84айл"
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "Группа"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "Имя группы, соответствующее стандарту POSIX"
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
+#: include/class_SnapShotDialog.inc:83
+#, fuzzy, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "Вы собираетесь удалить группу \"%s\"."
+
+#: include/class_SnapShotDialog.inc:135
+#, fuzzy
+msgid "Remove snapshot"
+msgstr "Создать настройки запись эл. почты"
+
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
 msgstr ""
-"Обычно идентификаторы создаются автоматически, но вы можете выбрать указание "
-"вручную"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "УказаÑ\82Ñ\8c GID Ð²Ñ\80Ñ\83Ñ\87нÑ\83Ñ\8e"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "Ð\9eÑ\88ибка XML Ð² gosa.conf: %s Ð² Ñ\81Ñ\82Ñ\80оке %d"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "Указанный вручную GID"
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "Выбрать пользователей для добавления"
+#: include/class_config.inc:228
+#, fuzzy
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr ""
+"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
+"администратору."
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "Выберите, чтобы просмотреть серверы"
+#: include/class_config.inc:561
+#, fuzzy
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "В вашем файле настройки отсутствуют значения SID и/или RIDBASE!"
 
-#: plugins/admin/groups/group_objects.tpl:30
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
 #, fuzzy
-msgid "Search within subtree"
-msgstr "Ð\98Ñ\81каÑ\82Ñ\8c Ð² Ð¿Ð¾Ð´Ð´ÐµÑ\80евÑ\8cÑ\8fÑ\85"
+msgid "Internal error"
+msgstr "ТеÑ\80минал-Ñ\81еÑ\80веÑ\80"
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "Подразделение"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Служба печати"
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "Регулярное выражение, соответствующее именам пользователей"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr "Не могу найти SID в базе LDAP или в сонфигурационном файле!"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "Это DN соответствует не группе."
+#: include/class_log.inc:120
+#, fuzzy, php-format
+msgid "Invalid option '%s' specified."
+msgstr "Значение поля \"Имя\" содержит недопустимые символы."
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Группа Samba"
+#: include/class_log.inc:124
+#, fuzzy
+msgid "Specified objectType is empty or invalid"
+msgstr "Указанное имя уже используется."
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "Администраторы домена"
+#: include/class_log.inc:145
+msgid ""
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "Пользователи домена"
+#: include/class_log.inc:157
+#, fuzzy, php-format
+msgid "Cannot connect to logging server '%s'."
+msgstr "Невозможно подключиться к серверу базы данных!"
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "Непривилегированные пользователи домена"
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "Невозможно выбрать базу данных!"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
+#: include/class_log.inc:181
 #, php-format
-msgid "Special group (%d)"
-msgstr "Специальная группа (%d)"
-
-#: plugins/admin/groups/class_groupGeneric.inc:509
-#, fuzzy
-msgid "! unknown id"
-msgstr "состояние неизвестно"
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_log.inc:218
 #, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+msgid "Couldn't add your location to the logging database, the error was: %s."
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
+#: include/class_log.inc:241
 #, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "Ð\9dевозможно Ð²Ñ\8bбÑ\80аÑ\82Ñ\8c Ð±Ð°Ð·Ñ\83 Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
 
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "Удалить"
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:966
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr ""
+
+#: include/php_setup.inc:96
 #, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "СлиÑ\88ком Ð¼Ð½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей, Ð½ÐµÐ²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾ Ñ\81оздаÑ\82Ñ\8c Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\82оÑ\80!"
+msgid "Send bugreport"
+msgstr "Ð\9eÑ\82пÑ\80авиÑ\82елÑ\8c"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
+#: include/php_setup.inc:101
 #, fuzzy
-msgid "Generic group settings"
-msgstr "Ð\9eбÑ\89аÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82еле"
+msgid "Toggle information"
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
+#: include/php_setup.inc:111
 #, fuzzy
-msgid "Phone pickup group"
-msgstr "ЧленÑ\8b Ñ\82елеÑ\84онной Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "PHP error"
+msgstr "Ð\9eÑ\88ибка LDAP:"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
+#: include/php_setup.inc:130
+msgid "class"
+msgstr ""
+
+#: include/php_setup.inc:136
 #, fuzzy
-msgid "Nagios group"
-msgstr "Ð\9aонÑ\82акÑ\82"
+msgid "function"
+msgstr "Ð\94ейÑ\81Ñ\82вие"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
+#: include/php_setup.inc:141
 #, fuzzy
-msgid "Group member"
-msgstr "ЧленÑ\8b Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "static"
+msgstr "СоÑ\81Ñ\82оÑ\8fние"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
+#: include/php_setup.inc:145
 #, fuzzy
-msgid "Samba group type"
-msgstr "Ð\93Ñ\80Ñ\83ппа Samba"
+msgid "method"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr ""
+
+#: include/php_setup.inc:179
 #, fuzzy
-msgid "Samba domain name"
-msgstr "Ð\94омаÑ\88ний ÐºÐ°Ñ\82алог Samba"
+msgid "File"
+msgstr "ФайлÑ\8b"
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "Список групп"
+#: include/php_setup.inc:179
+#, fuzzy
+msgid "Line"
+msgstr "в"
+
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "Тип"
 
-#: plugins/admin/groups/class_divListGroup.inc:61
+#: include/php_setup.inc:180
 #, fuzzy
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+msgid "Arguments"
+msgstr "подразделения"
+
+#: include/class_acl.inc:26
+#, fuzzy
+msgid "Access control"
+msgstr "Параметры доступа"
+
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
 msgstr ""
-"С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
-"группы пользователей. Если у вас их достаточно большое количество, вы можете "
-"использовать групповое выделение."
 
-#: plugins/admin/groups/class_divListGroup.inc:80
+#: include/class_acl.inc:665 include/class_acl.inc:672
 #, fuzzy
-msgid "Groupname / Department"
-msgstr "Ð\9fодÑ\80азделение"
+msgid "Show/Hide Advanced Settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82елеÑ\84она"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr "Выберите, чтобы просмотреть список основных групп пользователей"
+#: include/class_acl.inc:690
+#, fuzzy
+msgid "Create objects"
+msgstr "Объект группы"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "Показать основные группы"
+#: include/class_acl.inc:691
+#, fuzzy
+msgid "Move objects"
+msgstr "Включаемые объекты"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "Выберите, чтобы просмотреть группы, которые входят в samba"
+#: include/class_acl.inc:692
+#, fuzzy
+msgid "Remove objects"
+msgstr "Включаемые объекты"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "Показать группы samba"
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "Выберите, чтобы просмотреть список групп, которым доступны приложения"
+#: include/class_acl.inc:697
+#, fuzzy
+msgid "Move object"
+msgstr "Включаемые объекты"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "Показать группы приложений"
+#: include/class_acl.inc:698
+#, fuzzy
+msgid "Remove object"
+msgstr "Включаемые объекты"
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "чтение"
+
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "запись"
+
+#: include/class_acl.inc:710
+#, fuzzy
+msgid "Complete object"
+msgstr "Включаемые объекты"
+
+#: include/class_acl.inc:826
+#, php-format
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
 msgstr ""
-"Выберите, чтобы просмотреть список групп, которым доступны функции эл. почты"
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "Показать группы с эл. почтой"
+#: include/class_acl.inc:869
+#, fuzzy, php-format
+msgid "Unknown entry '%s'!"
+msgstr "состояние неизвестно"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "Выберите, чтобы просмотреть список обычных групп"
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, fuzzy, php-format
+msgid "Role: %s"
+msgstr "Роль"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "Показать обычные группы"
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "Группа"
+#: include/class_acl.inc:939
+#, fuzzy, php-format
+msgid "Contains settings for these objects: %s"
+msgstr "Описание группы"
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "Приложение"
+#: include/class_acl.inc:948
+#, fuzzy
+msgid "Members:"
+msgstr "Включаемые объекты"
+
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
+#: include/class_acl.inc:1115
 #, fuzzy
-msgid "Edit this entry"
-msgstr "РедакÑ\82иоваÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82"
+msgid "Access control list"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð´Ð¾Ñ\81Ñ\82Ñ\83па"
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
+#: include/class_acl.inc:1123
 #, fuzzy
-msgid "Delete this entry"
-msgstr "УдалиÑ\82Ñ\8c"
+msgid "Role name"
+msgstr "Ð\98мÑ\8f Ñ\81еÑ\80веÑ\80а"
 
-#: plugins/admin/groups/class_divListGroup.inc:360
+#: include/class_acl.inc:1124
 #, fuzzy
-msgid "Number of listed groups"
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Role description"
+msgstr "Ð\9eпиÑ\81ание Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/class_msg_dialog.inc:122
+msgid "Please fix the above error and reload the page."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
 #, fuzzy, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
+#: include/class_hostActionQueue.inc:73
 #, fuzzy, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "Права для членов группы"
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "Удалить"
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:434
-#, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "Вы собираетесь удалить группу \"%s\"."
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
-msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "Удалить"
+
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
 msgstr ""
-"Возможно, это основная группа пользователей. Еще раз проверте что Вы "
-"действительно хотите удалить ее, так как GOsa не сможет отменить результаты "
-"этой операции."
 
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "Управление группами"
+#: include/class_hostActionQueue.inc:277
+#, fuzzy, php-format
+msgid "Entry with id '%s' not found."
+msgstr "Показать подразделения"
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "Описание группы"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "Выберите ветку для группы"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "Создать группу для работы с Samba"
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
+#, php-format
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "в домене"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "Члены телефонной группы"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:155
-#, fuzzy
-msgid "Members are in a nagios group"
-msgstr "Члены телефонной группы"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "Члены группы"
+#: include/functions.inc:101
+#, php-format
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
-#, fuzzy
-msgid "ACL Templates"
-msgstr "Шаблон"
+#: include/functions.inc:108
+#, php-format
+msgid ""
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-#, fuzzy
-msgid "Acl"
-msgstr "Все"
+#: include/functions.inc:318
+#, fuzzy, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"."
 
-#: plugins/admin/acl/class_aclManagement.inc:26
+#: include/functions.inc:380
 #, fuzzy
-msgid "ACLs"
-msgstr "Доступ"
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr ""
+"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP."
 
-#: plugins/admin/acl/class_aclManagement.inc:163
+#: include/functions.inc:450
 #, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr ""
+"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP."
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-#, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:605
 #, fuzzy, php-format
-msgid "You're about to delete the acl %s."
-msgstr "Вы собираетесь удалить группу \"%s\"."
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr ""
+"Не удается считать блокировку в базе данных LDAP. Проверьте, раздел \"config"
+"\" в файле gosa.conf!"
 
-#: plugins/admin/acl/class_divListACL.inc:51
+#: include/functions.inc:605 include/functions.inc:620
+#, fuzzy, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP-сервер"
+
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "Ошибка при создании блокировки. Ответ сервера: \"%s\"."
+
+#: include/functions.inc:699
 #, fuzzy
-msgid "List of acl"
-msgstr "Список групп"
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr ""
+"Для блокируемого объекта обнаружено несколько блокировок. Этого быть не "
+"должно, проверьте работу LDAP."
+
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "Найдено более %d объектов."
+
+#: include/functions.inc:998
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr ""
+"Установить новое значение лимита в %s и показать мне это сообщение если "
+"лимит будет исчерпан."
+
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "не полный"
+
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "Ошибка LDAP:"
+
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:52
+#: include/functions.inc:1325
 #, fuzzy
-msgid "List of acls"
-msgstr "СпиÑ\81ок Ð³Ñ\80Ñ\83пп"
+msgid "Continue anyway"
+msgstr "Ð\9fÑ\80одолжиÑ\82Ñ\8c"
 
-#: plugins/admin/acl/class_divListACL.inc:56
+#: include/functions.inc:1327
 #, fuzzy
-msgid "This menu allows you to edit and delete selected acls."
-msgstr ""
-"С помощью этого меню вы можете добавлять, изменять и удалять выбранные стоп-"
-"листы. Если у вас достаточно большое количество списков, вы можете "
-"использовать групповое выделение."
+msgid "Edit anyway"
+msgstr "Редактиовать объект"
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr ""
+#: include/functions.inc:1329
+#, fuzzy, php-format
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "Вы собираетесь удалить объект %s."
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
+#: include/functions.inc:1513
+msgid "Entries per page"
 msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
-#, fuzzy
-msgid "Display acls matching"
-msgstr "Шаблон для групп"
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:244
-#, fuzzy
-msgid "Edit acl role"
-msgstr "Пользователи домена"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789"
 
-#: plugins/admin/acl/class_divListACL.inc:254
-#, fuzzy
-msgid "Delete acl role"
-msgstr "Удалить"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:266
-#, fuzzy
-msgid "Edit acl"
-msgstr "Список систем"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:270
+#: include/functions.inc:1950 include/functions.inc:1970
 #, fuzzy
-msgid "Delete acl"
+msgid "Cannot write to revision file!"
 msgstr "Удалить"
 
-#: plugins/admin/acl/class_aclRole.inc:26
-#, fuzzy
-msgid "Access control list templates"
-msgstr "Параметры доступа"
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
+msgid "'base_hook' is not available. Using default base."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Edit ACL roles"
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83п"
+msgid "LDAP warning"
+msgstr "ЭкÑ\81поÑ\80Ñ\82 Ð² LDIF"
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Object in use"
-msgstr "Ð\98мÑ\8f Ð¾Ð±Ñ\8aекÑ\82а"
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\81Ñ\85емаÑ\85. Ð\9fÑ\80овеÑ\80ка Ñ\81Ñ\85ем Ð½ÐµÐ²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð°!"
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:700
-#, fuzzy
-msgid "Acl roles"
-msgstr "Управление системами"
-
-#: plugins/admin/acl/remove.tpl:6
-#, fuzzy
+#: include/functions.inc:2277
 msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
 msgstr ""
-"Сюда входит <b>вся</b> информация о системе и ее настройках. Подумайте еще "
-"раз, действительно ли вам нужно удаление, так как GOsa не сможет отменить "
-"результаты этой операции."
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
-#, fuzzy
-msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+#: include/functions.inc:2320
+#, fuzzy, php-format
+msgid "Missing required object class '%s'!"
+msgstr "Список подразделений"
+
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
 msgstr ""
-"Лучше всего перед удалением сохранить резервную копию текущего дерева LDAP в "
-"файл. Если вы сделали это и действительно хотите выполнить удаление, нажмите "
-"<i>Удалить</i>, иначе нажмите <i>Отмена</i>."
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-#, fuzzy
-msgid "ACL management"
-msgstr "Управление подразделениями"
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "Обязательное поле \"Имя\" не заполнено."
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "Обязательное поле \"Описание\" не заполнено."
+#: include/functions.inc:2334
+#, php-format
+msgid "Class(es) available"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "Терминал-сервер"
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
-msgid "Cannot find an unused tag for this administrative unit!"
+#: include/functions.inc:2357
+msgid ""
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
+#: include/functions.inc:2361
+msgid ""
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
-#, php-format
-msgid "Moving '%s' to '%s'"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
-#, php-format
-msgid "FAILED to copy %s, aborting operation"
+#: include/functions.inc:2385
+msgid "German"
+msgstr "Немецкий"
+
+#: include/functions.inc:2386
+msgid "French"
+msgstr "Французский"
+
+#: include/functions.inc:2387
+msgid "Italian"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "Подразделения"
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "Испанский"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "СÑ\82Ñ\80ана"
+#: include/functions.inc:2389
+msgid "English"
+msgstr "Ð\90нглийÑ\81кий"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "ТелеÑ\84он"
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "Ð\94аÑ\82Ñ\81кий"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
+#: include/functions.inc:2391
 #, fuzzy
-msgid "Department name"
-msgstr "УпÑ\80авление Ð¿Ð¾Ð´Ñ\80азделениÑ\8fми"
+msgid "Polish"
+msgstr "Ð\90нглийÑ\81кий"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "Категория"
+#: include/functions.inc:2392
+msgid "Swedish"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
+#: include/functions.inc:2393
 #, fuzzy
-msgid "Administrative settings"
-msgstr "Администрирование"
+msgid "Chinese"
+msgstr "сброс"
+
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "Русский"
+
+#: include/functions.inc:2562
+#, fuzzy, php-format
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr ""
+"Не удается найти команду \"%s\", указанную в поле POSTREMOVE модуля \"%s\"."
+
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
+
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
 #, php-format
-msgid "Object '%s' is already tagged"
+msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_ldap.inc:592
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_ldap.inc:640
 #, php-format
-msgid "Removing tag from object '%s'"
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#, fuzzy
-msgid "You are currently moving/renaming this department."
-msgstr "У вас недостаточно прав для удаления этого подразделения."
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
+#: include/class_ldap.inc:726
+#, fuzzy, php-format
+msgid "while operating on LDAP server %s"
+msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"."
+
+#: include/class_ldap.inc:948
+#, php-format
 msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_ldap.inc:977
+#, php-format
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr ""
+
+#: include/class_CopyPasteHandler.inc:118
+#, php-format
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+msgstr ""
+
+#: include/class_CopyPasteHandler.inc:126
+#, php-format
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "СпиÑ\81ок Ð¿Ð¾Ð´Ñ\80азделений"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
-#, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
-msgstr ""
-"С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
-"подразделения. Если у вас достаточно большое количество подразделений, вы "
-"можете использовать групповое выделение."
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "Вы собираетесь удалить объект %s."
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
-msgid "Regular expression for matching department names"
-msgstr "Регулярное выражение, соответствующее именам подразделений"
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "Вы собираетесь удалить объект %s."
 
-#: plugins/admin/departments/class_divListDepartment.inc:220
+#: include/class_CopyPasteHandler.inc:485
 #, fuzzy
-msgid "department"
-msgstr "подÑ\80азделениÑ\8f"
+msgid "Can't paste"
+msgstr "СоздаÑ\82Ñ\8c Ñ\82елеÑ\84оннÑ\8bй Ð°ÐºÐºÐ°Ñ\83нÑ\82"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:14
 #, fuzzy
-msgid "Manage Departments"
-msgstr "Подразделения"
-
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr "Вы собираетесь удалить целую ветку LDAP с корнем в \"%s\"."
+msgid "You have no permission to delete this object!"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/remove.tpl:6
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
 #, fuzzy
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"Это включает <b>все</b> учетные записи, системы и т.п. для данного "
-"подразделения. Подумайте еще раз, действительно ли вы хотите его удалить, "
-"так как GOsa не сможет отменить результаты этой операции."
-
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "Управление подразделениями"
+msgid "You have no permission to delete the object:"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "Подразделение"
+#: include/utils/class_msgPool.inc:26
+#, fuzzy
+msgid "You have no permission to delete these objects:"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "Имя создаваемой ветки"
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "Описание подразделения"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "Категория этой ветки"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "У вас недостаточно прав для удаления этого подразделения."
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr "Выберите ветку для подразделения"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "Адм. единица, в которой находится ветка"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "Местоположение ветки"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "Почтовый адрес для ветки"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "Основный телефонный номер для ветки"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "У вас недостаточно прав для создания телефонов в этой ветке."
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "Основный номер факса для ветки"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr ""
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
 #, fuzzy
-msgid "Please enter the new object group name"
-msgstr "Ð\92ведиÑ\82е Ð°Ð´Ñ\80еÑ\81 Ñ\81еÑ\80веÑ\80а"
+msgid "You have no permission to move the object:"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ñ\81Ñ\82оп-лиÑ\81Ñ\82а."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
+#: include/utils/class_msgPool.inc:98
 #, fuzzy
-msgid "Phone queue"
-msgstr "Ð\9dомеÑ\80 Ñ\82елеÑ\84она"
+msgid "You have no permission to move these objects:"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ñ\81Ñ\82оп-лиÑ\81Ñ\82а."
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
 #, fuzzy
-msgid "System"
-msgstr "СиÑ\81Ñ\82емÑ\8b"
+msgid "Connection information"
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "Устройства"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "Невозможно подключиться к серверу базы данных!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "Запуск"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "Невозможно выбрать базу данных!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "Терминалы"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "Невозможно выбрать базу данных!"
+
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "Значение поля \"Факс\" содержит недопустимый номер телефона."
+
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
 msgstr ""
+"Не удается найти команду \"%s\", указанную в поле POSTCREATE модуля \"%s\"."
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "Этот объект не является группой."
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "Значение 'UID' слишком маленькое."
 
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "слишком много различных объектов!"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "пользователи"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "Значение 'UID' слишком маленькое."
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "группы"
+#: include/utils/class_msgPool.inc:171
+#, fuzzy, php-format
+msgid "'%s' must be %d or above!"
+msgstr ""
+"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней "
+"реализованы некоторые новые функции и исправлены некоторые ошибки."
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "приложения"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
+
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr ""
+"Пользователь с таким регистрационным именем в базе данных уже существует."
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "подразделения"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "Обязательное поле \"Имя\" не заполнено."
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "серверы"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "рабочие станции"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "Значение поля \"Имя\" содержит недопустимые символы."
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Рабочая станция"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "терминалы"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "Сменить пароль"
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "телефоны"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "Удалить параметры"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "принтеры"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "Добавить"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "и"
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "Добавить"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-#, fuzzy
-msgid "Non existing dn:"
-msgstr "Ð\9dе Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89ий dn:"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "УдалиÑ\82Ñ\8c"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr ""
-"Вы можете комбинировать не более двух различных классов в одном объекте!"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "Удалить"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-#, fuzzy
-msgid "Object group generic"
-msgstr "Ð\9eбÑ\8aекÑ\82 Ð³Ñ\80Ñ\83ппÑ\8b"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "УÑ\81Ñ\82ановиÑ\82Ñ\8c"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "Объединения"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "Изменить"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-#, fuzzy
-msgid "Member"
-msgstr "Ð\92клÑ\8eÑ\87аемÑ\8bе Ð¾Ð±Ñ\8aекÑ\82Ñ\8b"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "Ð\9fолÑ\8cзоваÑ\82ели Ð´Ð¾Ð¼ÐµÐ½Ð°"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "Ð\9dазад"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð¾Ð±Ñ\8aекÑ\82 %s."
+msgid "Back %s..."
+msgstr "Ð\9fолÑ\8cзоваÑ\82ели Ð´Ð¾Ð¼ÐµÐ½Ð°"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:298
 #, fuzzy, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "Ð\92Ñ\8b Ñ\81обиÑ\80аеÑ\82еÑ\81Ñ\8c Ñ\83далиÑ\82Ñ\8c Ð³Ñ\80Ñ\83пповой Ð¾Ð±Ñ\8aекÑ\82 \"%s\"."
+msgid "This account has no valid %s extensions!"
+msgstr "Ð\94лÑ\8f Ñ\8dÑ\82ой Ñ\83Ñ\87еÑ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и Ð½ÐµÑ\82 ÐºÐ¾Ñ\80Ñ\80екÑ\82нÑ\8bÑ\85 Ñ\80аÑ\81Ñ\88иÑ\80ений GOsa."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "Вы собираетесь удалить групповой объект \"%s\"."
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr ""
+"В этой учетной записи используются атрибуты POSIX. Вы можете отключить их "
+"использование, щелкнув ниже."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "Рабочая станция"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
+msgstr ""
+"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
+"использование, сначала нужно удалить учетную запись Samba."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Рабочая станция Windows"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr ""
+"В этой учетной записи не используются атрибуты POSIX. Вы можете использовать "
+"их, щелкнув ниже."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-#, fuzzy
-msgid "Terminal"
-msgstr "Терминалы"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
+"использование, сначала нужно удалить учетную запись Samba."
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "Принтер"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их "
+"использование, сначала нужно удалить учетную запись Samba."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "Выбрать объекты для добавления"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "Дополнительные записи в fstab"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "Выберите подразделение"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Атрибуты UNIX"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð¿Ð¾Ð´Ñ\80азделениÑ\8f"
+#: include/utils/class_msgPool.inc:353
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "Ð\9dажмиÑ\82е 'Ð\98змениÑ\82Ñ\8c' Ñ\87Ñ\82обÑ\8b Ð¾Ñ\82Ñ\80едакÑ\82иÑ\80оваÑ\82Ñ\8c Ð´Ð°Ð½Ð½Ñ\8bе Ð² Ñ\8dÑ\82ой Ñ\84оÑ\80ме."
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей GOsa"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "ЯнваÑ\80Ñ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð»Ñ\8eдей"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "ФевÑ\80алÑ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b GOsa"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "Ð\9cаÑ\80Ñ\82"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "Ð\90пÑ\80елÑ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ñ\80иложениÑ\8f"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "Ð\9cай"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð¿Ñ\80иложениÑ\8f"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "Ð\98Ñ\8eнÑ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\81еÑ\80веÑ\80Ñ\8b"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "Ð\98Ñ\8eлÑ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\80абоÑ\87ие Ñ\81Ñ\82анÑ\86ии"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "Ð\90вгÑ\83Ñ\81Ñ\82"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\80абоÑ\87ие Ñ\81Ñ\82анÑ\86ии"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "СенÑ\82Ñ\8fбÑ\80Ñ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\82еÑ\80миналÑ\8b"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "Ð\9eкÑ\82Ñ\8fбÑ\80Ñ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82еÑ\80миналÑ\8b"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "Ð\9dоÑ\8fбÑ\80Ñ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ñ\80инÑ\82еÑ\80Ñ\8b"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "Ð\94екабÑ\80Ñ\8c"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "Показать принтеры"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "Имя сервера"
+
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "месяц"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "Выберите чтобы посмотреть телефоны"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "Показать телефоны"
+#: include/utils/class_msgPool.inc:367
+msgid "Wednesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "Показать объекты подразделения"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "Показать совпадения объектов"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "Регулярное выражение, соответствующее именам объектов"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
+#: include/utils/class_msgPool.inc:374
 #, fuzzy
-msgid "List of object groups"
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "read operation"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-#, fuzzy
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
-"группы пользователей. Если у вас их достаточно большое количество, вы можете "
-"использовать групповое выделение."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: include/utils/class_msgPool.inc:374
 #, fuzzy
-msgid "Name of object groups"
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "modify operation"
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing users"
-msgstr "Показать группы с пользователями"
-
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "Показать группы с пользователями"
+msgid "delete operation"
+msgstr "Выберите чтобы посмотреть рабочие станции"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing groups"
-msgstr "Показать группы с группами"
-
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "Показать группы с группами"
+msgid "search operation"
+msgstr "Учетная запись"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
+#: include/utils/class_msgPool.inc:375
 #, fuzzy
-msgid "Select to see groups containing applications"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80иложениÑ\8fми"
+msgid "authentication"
+msgstr "РабоÑ\87аÑ\8f Ñ\81Ñ\82анÑ\86иÑ\8f Windows"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "Показать группы с приложениями"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "Невозможно выполнить запрос к базе данных!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
+#: include/utils/class_msgPool.inc:380
 #, fuzzy
-msgid "Select to see groups containing departments"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ð¾Ð´Ñ\80азделениÑ\8fми"
+msgid "LDAP operation failed!"
+msgstr "Ð\9dевозможно Ð²Ñ\8bполниÑ\82Ñ\8c Ð·Ð°Ð¿Ñ\80оÑ\81 Ðº Ð±Ð°Ð·Ðµ Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "Показать группы с подразделениями"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
+#: include/class_multi_plug.inc:362
 #, fuzzy
-msgid "Select to see groups containing servers"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\81еÑ\80веÑ\80ами"
+msgid "You are currently editing mutliple entries."
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¿Ð¾Ð´Ñ\80азделениÑ\8f."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "Показать группы с серверами"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "Срок действия пароля истекает"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
+#: include/class_multi_plug.inc:391
 #, fuzzy
-msgid "Select to see groups containing workstations"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\80абоÑ\87ими Ñ\81Ñ\82анÑ\86иÑ\8fми"
+msgid "The user password was resetted, please set a new password value!"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "Показать группы с рабочими станциями"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "Приложение"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82 html/getxls.php:493
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "Показать группы с рабочими станциями"
+msgid "Permission denied!"
+msgstr "Права для членов группы"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:82
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\80абоÑ\87ими Ñ\81Ñ\82анÑ\86иÑ\8fми"
+msgid "You are not allowed to create ldap dumps."
+msgstr "Ð\92ам Ð½Ðµ Ñ\80азÑ\80еÑ\88ено Ð¼ÐµÐ½Ñ\8fÑ\82Ñ\8c Ð¿Ð°Ñ\80олÑ\8c."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
+#: html/getldif.php:107
 #, fuzzy
-msgid "Select to see groups containing terminals"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ñ\82еÑ\80миналами"
+msgid "Error in ivbb parameter!"
+msgstr "Ð\98змениÑ\82Ñ\8c Ð¿Ð°Ñ\80амеÑ\82Ñ\80Ñ\8b"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "Показать группы с терминалами"
+#: html/password.php:58 html/index.php:141
+#, fuzzy, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr ""
+"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
+#: html/password.php:78
 #, fuzzy
-msgid "Select to see groups containing printer"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80инÑ\82еÑ\80ами"
+msgid "Accessibility"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оиÑ\82Ñ\8c"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-#, fuzzy
-msgid "Show groups containing printer"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b Ñ\81 Ð¿Ñ\80инÑ\82еÑ\80ами"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, fuzzy, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "Ð\9dедоÑ\81Ñ\82Ñ\83пен ÐºÐ°Ñ\82алог \"%s\", Ñ\83казаннÑ\8bй ÐºÐ°Ðº ÐºÐ°Ñ\82алог ÐºÐ¾Ð¼Ð¿Ð¸Ð»Ñ\8fÑ\86ии!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-#, fuzzy
-msgid "Select to see groups containing phones"
-msgstr "Показать группы с принтерами"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-#, fuzzy
-msgid "Show groups containing phones"
-msgstr "Показать группы с принтерами"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль."
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "Объект группы"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "У вас недостаточно прав для смены своего пароля."
+
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "При попытке сменить пароль извне возникла проблема: "
+
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы."
+
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "Использовать шифрование SSL"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "You are not allowed to remove this entry."
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\83далениÑ\8f Ñ\8dÑ\82ого Ð¾Ð±Ñ\8aекÑ\82а!"
+msgid "Smarty"
+msgstr "Ð\97апÑ\83Ñ\81к"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/index.php:57
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+msgid "Session is not encrypted!"
+msgstr "Ð\94аннÑ\8bе, Ð¿ÐµÑ\80едаваемÑ\8bе Ð² Ñ\82еÑ\87ение Ñ\8dÑ\82ого Ñ\81еанÑ\81а, Ð½Ðµ Ð±Ñ\83дÑ\83Ñ\82 Ð·Ð°Ñ\88иÑ\84Ñ\80ованÑ\8b."
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
 msgstr ""
-"Подумайте еще раз, действительно ли вам нужно удаление, так как GOsa не "
-"сможет восстановить эти данные."
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "Название группы"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "Настроить"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "Включаемые объекты"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "Имя объекта"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-#, fuzzy
-msgid "Contents"
-msgstr "Контакт"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "Данный объект не имеет ссылок на другие объекты"
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "Факс"
+#: html/index.php:282
+msgid "Your ldap setup contains old schema definitions:"
+msgstr ""
+
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "Введите корректное имя пользователя!"
+
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "Введите свой пароль!"
+
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Рабочая станция Windows"
+
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "Прокси-сервер"
+#: html/index.php:374
+#, fuzzy
+msgid "Account locked. Please contact your system administrator."
+msgstr ""
+"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
+"администратору."
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/index.php:425
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "Тонкий клиент"
+#: html/main.php:153
+#, php-format
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/generic/welcome/welcome.tpl:4
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "Базы данных"
+
+#: html/main.php:172
 #, fuzzy
 msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
 msgstr ""
-"Это начальная страница GOsa. Из меню слева или среди пиктограмм ниже вы "
-"можете выбрать нужный вам раздел. Все изменения будут сразу же переноситься "
-"на LDAP-сервер вашей компании."
+"Используется механизм register_globals. GOsa не допустит пользователей в "
+"систему, пока он не будет отключен администратором."
 
-#: plugins/generic/welcome/welcome.tpl:8
+#: html/main.php:217
 #, fuzzy
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
+msgid "Configuration warning"
+msgstr "Настроить"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
-"Чтобы завершить сеанс, выберите в меню слева вверху пункт <b>Выход</b>. "
-"Чтобы вернуться на начальную страницу, выберите <b>Начало</b>."
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "Команда разработчиков GOsa"
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "Срок действия пароля истекает"
 
-#: plugins/generic/welcome/main.inc:26
-#, php-format
-msgid "Welcome %s!"
-msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c %s!"
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82аÑ\82оÑ\87но Ð¿Ñ\80ав Ð´Ð»Ñ\8f Ñ\81менÑ\8b Ñ\81воего Ð¿Ð°Ñ\80олÑ\8f."
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
-msgstr ""
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "в"
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
-msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
-msgstr ""
+#: html/main.php:366
+#, fuzzy, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "Не удается найти определение для модуля \"%s\"!"
 
 #: html/getxls.php:88
 msgid "Birthday"
@@ -6801,11 +6859,6 @@ msgstr "Список пользователей"
 msgid "Computers of %s on %s"
 msgstr "не полный"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "Права для членов группы"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6823,21 +6876,6 @@ msgstr "Невозможно выбрать базу данных!"
 msgid "Database query failed!"
 msgstr "Невозможно выполнить запрос к базе данных!"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "Вам не разрешено менять пароль."
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "Изменить параметры"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "Приложение"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr ""
@@ -6852,170 +6890,81 @@ msgstr "Метод '%s' не описан в вашем файле конфиг
 msgid "Helpdir '%s' is not accessible, can't read any helpfiles."
 msgstr ""
 
-#: html/password.php:58 html/index.php:141
-#, fuzzy, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr ""
-"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана."
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "Настроить"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, fuzzy, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "Недоступен каталог \"%s\", указанный как каталог компиляции!"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль."
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "У вас недостаточно прав для смены своего пароля."
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "При попытке сменить пароль извне возникла проблема: "
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы."
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "Использовать шифрование SSL"
-
-#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "Smarty"
-msgstr "Запуск"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
+#~ msgid "User login failed."
+#~ msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"."
 
-#: html/main.php:171
 #, fuzzy
-msgid "PHP configuration"
-msgstr "Базы данных"
+#~ msgid "Removing a lock failed."
+#~ msgstr "Удалить приложения"
 
-#: html/main.php:172
 #, fuzzy
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr ""
-"Используется механизм register_globals. GOsa не допустит пользователей в "
-"систему, пока он не будет отключен администратором."
+#~ msgid "Cannot get locking information from LDAP tree!"
+#~ msgstr "Не удается создать квоту IMAP. Ответ сервера: \"%s\"."
 
-#: html/main.php:217
 #, fuzzy
-msgid "Configuration warning"
-msgstr "Настроить"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
+#~ msgid "Setting the password failed!"
+#~ msgstr "Ошибка при установке пароля. Ответ LDAP-сервера: \"%s\"."
 
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "Срок действия пароля истекает"
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "Введите корректный серийный номер"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "У вас недостаточно прав для смены своего пароля."
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "У вас недостаточно прав для удаления этого стоп-листа."
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "в"
-
-#: html/main.php:366
-#, fuzzy, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "Не удается найти определение для модуля \"%s\"!"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "С помощью этого меню вы можете добавлять, изменять и удалять выбранных "
+#~ "пользователей. Если у вас достаточно большое количество пользователей, вы "
+#~ "можете использовать групповое выделение."
 
-#: html/index.php:57
 #, fuzzy
-msgid "Session is not encrypted!"
-msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы."
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
+#~ "группы пользователей. Если у вас их достаточно большое количество, вы "
+#~ "можете использовать групповое выделение."
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "Настроить"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
-
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr ""
-"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
-"администратору."
-
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
-
-#: html/index.php:282
-msgid "Your ldap setup contains old schema definitions:"
-msgstr ""
-
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "Введите корректное имя пользователя!"
-
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "Введите свой пароль!"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr ""
+#~ "С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
+#~ "стоп-листы. Если у вас достаточно большое количество списков, вы можете "
+#~ "использовать групповое выделение."
 
-#: html/index.php:318
 #, fuzzy
-msgid "Authentication error"
-msgstr "Рабочая станция Windows"
-
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
+#~ "подразделения. Если у вас достаточно большое количество подразделений, вы "
+#~ "можете использовать групповое выделение."
 
-#: html/index.php:374
 #, fuzzy
-msgid "Account locked. Please contact your system administrator."
-msgstr ""
-"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
-"администратору."
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "С помощью этого меню вы можете добавлять, изменять и удалять выбранные "
+#~ "группы пользователей. Если у вас их достаточно большое количество, вы "
+#~ "можете использовать групповое выделение."
 
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr ""
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr ""
+#~ "Не удается начать сеанс на LDAP-сервере. Обратитесь к системному "
+#~ "администратору."
 
 #, fuzzy
 #~ msgid "Removing of user/generic account with dn '%s' failed."
index d25f709f641bf574c8788237f17658f0b663ec5d..8a466ae6e6a6adf38b4ab5c059be0b7ab2734dd7 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: messages\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-08 18:38+0100\n"
+"POT-Creation-Date: 2008-03-10 16:37+0100\n"
 "PO-Revision-Date: 2007-06-03 12:27+0800\n"
 "Last-Translator: Jiang Xin <worldhello.net@gmail.com>\n"
 "Language-Team: Chinese Simplified <zh@li.org>\n"
@@ -16,1061 +16,1024 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: KBabel 1.11.4\n"
 
-#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
-msgid "Installation check"
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:2
+msgid "Session conflict detected"
+msgstr "检测道会话冲突"
 
-#: setup/class_setupStep_Checks.inc:40
-msgid "Basic checks for PHP version and required extensions."
-msgstr ""
+#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57
+#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/remove.tpl:2
+#: ihtml/themes/default/islocked.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:820
+#: plugins/admin/users/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#: plugins/admin/departments/remove.tpl:2 plugins/admin/acl/remove.tpl:2
+#: plugins/admin/groups/remove.tpl:2 setup/class_setupStep_Migrate.inc:211
+#: setup/class_setupStep_Migrate.inc:260 setup/class_setupStep_Migrate.inc:385
+#: setup/class_setupStep_Migrate.inc:460 setup/class_setupStep_Migrate.inc:596
+#: setup/class_setupStep_Migrate.inc:726 setup/setup_checks.tpl:32
+#: setup/setup_checks.tpl:93 include/class_tabs.inc:216
+#: include/functions.inc:699 include/functions.inc:2212
+#: include/functions.inc:2216 include/functions.inc:2222 html/password.php:284
+#: html/index.php:57 html/index.php:63 html/index.php:419 html/index.php:425
+msgid "Warning"
+msgstr "警告"
 
-#: setup/class_setupStep_Checks.inc:64
+#: ihtml/themes/default/conflict.tpl:6
 #, fuzzy
-msgid "Checking PHP version"
-msgstr "检查 PHP 版本 (>=4.1.0)"
-
-#: setup/class_setupStep_Checks.inc:65
-#, php-format
-msgid "PHP must be of version %s or above."
+msgid ""
+"Probably there's another active instance of your session. Multiple window "
+"operation is technical not possible and heavily depends on the browser "
+"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
+"possible. Pressing the Logout button will close this session."
 msgstr ""
+"可能已经存在另外一个您的活动的会话。多窗口操作在技术上不可能并且和严重依赖您"
+"使用浏览器。使用不同的浏览器(如 IE 和 Mozilla)是可能的。按“退出”按钮关闭此"
+"会话。"
 
-#: setup/class_setupStep_Checks.inc:66
+#: ihtml/themes/default/conflict.tpl:10
 msgid ""
-"GOsa requires functionality that is not available (or buggy) in older PHP "
-"versions. Please update to a supported version."
+"Ignoring this message will change/destroy the data you're currently editing, "
+"so please close multiple windows and log in again."
 msgstr ""
+"忽略这条信息将会修改/破坏您当前编辑的数据,所以请关闭多个窗口并重新登录。"
 
-#: setup/class_setupStep_Checks.inc:72
-#, fuzzy
-msgid "Checking for LDAP support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/conflict.tpl:14
+msgid "Logout"
+msgstr "退出"
 
-#: setup/class_setupStep_Checks.inc:73
-#, fuzzy
-msgid "This is the main extension used by GOsa and therefore really required."
-msgstr "这是 GOsa 用到的主要模块,因此是必须的。"
+#: ihtml/themes/default/accountexpired.tpl:15
+msgid "Your Password has expired !! Choose a new Password"
+msgstr "您的口令已经过期 !! 选择一个新口令"
 
-#: setup/class_setupStep_Checks.inc:74
-msgid ""
-"The ldap extension (php5-ldap) is required to communicate with your LDAP "
-"server."
-msgstr ""
+#: ihtml/themes/default/accountexpired.tpl:23
+#: ihtml/themes/default/accountexpired.tpl:27
+msgid "Old Password"
+msgstr "旧口令"
 
-#: setup/class_setupStep_Checks.inc:80
-msgid "Checking for gettext support"
-msgstr "检查 getteext 支持"
+#: ihtml/themes/default/accountexpired.tpl:32
+#: ihtml/themes/default/accountexpired.tpl:36
+msgid "New Password"
+msgstr "新口令"
 
-#: setup/class_setupStep_Checks.inc:81
-#, fuzzy
-msgid "Gettext support is required for internationalization."
-msgstr "对äº\8e GOsa å\9b½é\99\85å\8c\96é\9c\80è¦\81 gettext æ\94¯æ\8c\81ã\80\82"
+#: ihtml/themes/default/accountexpired.tpl:41
+#: ihtml/themes/default/accountexpired.tpl:45
+msgid "Verify Password"
+msgstr "å\8f£ä»¤ç¡®è®¤"
 
-#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
-msgid "Please make sure that the extension is activated."
+#: ihtml/themes/default/accountexpired.tpl:51
+msgid "Change Password"
+msgstr "修改口令"
+
+#: ihtml/themes/default/accountexpired.tpl:52
+msgid "Click here to Change your password"
+msgstr "点击这里来修改您的口令"
+
+#: ihtml/themes/default/login.tpl:10
+msgid "GOsa login screen"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:88
-msgid "Checking for iconv support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/login.tpl:27
+#, fuzzy
+msgid "Login screen"
+msgstr "登录脚本"
 
-#: setup/class_setupStep_Checks.inc:89
+#: ihtml/themes/default/login.tpl:34
 #, fuzzy
 msgid ""
-"This module is used by GOsa to convert samba munged dial informations and is "
-"therefore required. "
-msgstr "GOsa 用这个模块来转换 samba 扩展信息,因此需要。"
+"Please use your username and your password to log into the site "
+"administration system."
+msgstr "请用您的用户名和口令登录"
 
-#: setup/class_setupStep_Checks.inc:96
-#, fuzzy
-msgid "Checking for mhash support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
+#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
+#: plugins/admin/users/class_divListUsers.inc:80
+msgid "Username"
+msgstr "用户名"
 
-#: setup/class_setupStep_Checks.inc:97
-msgid "You'll need this module to make use of SSHA encryption"
-msgstr ""
+#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49
+#: ihtml/themes/default/password.tpl:39
+#: plugins/personal/password/class_password.inc:26
+#: plugins/personal/generic/paste_generic.tpl:20 setup/setup_migrate.tpl:225
+#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
+msgid "Password"
+msgstr "口令"
 
-#: setup/class_setupStep_Checks.inc:98
-msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
-msgstr ""
+#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
+#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
+msgid "Directory"
+msgstr "目录"
 
-#: setup/class_setupStep_Checks.inc:104
-#, fuzzy
-msgid "Checking for IMAP support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
+msgid "Sign in"
+msgstr "登录"
 
-#: setup/class_setupStep_Checks.inc:105
-#, fuzzy
-msgid ""
-"The IMAP module is needed to communicate with the IMAP server. GOsa "
-"retrieves status information, creates and deletes mail users, etc."
-msgstr "IMAP 模块用于和 IMAP 服务器通讯。它获取状态信息,创建和删除邮件账户。"
+#: ihtml/themes/default/login.tpl:78
+msgid "Click here to log in"
+msgstr "点击这里登录"
 
-#: setup/class_setupStep_Checks.inc:106
+#: ihtml/themes/default/logout.tpl:5
+msgid "Your GOsa session has expired!"
+msgstr "您的 GOsa 会话已经过期!"
+
+#: ihtml/themes/default/logout.tpl:7
 msgid ""
-"This module is used to communicate with your mail server. Please install "
-"php5-imap."
+"The last interaction with the GOsa web interface has been some time ago in "
+"the past. For security reasons, the session has been closed. To continue "
+"with administrative tasks, please sign in again."
 msgstr ""
+"上一次操作 GOsa 界面是在很长时间之前。出于安全上的考虑,已经关闭了连接。要继"
+"续执行管理任务,请重新登录。"
 
-#: setup/class_setupStep_Checks.inc:112
-#, fuzzy
-msgid "Checking for multi byte support"
-msgstr "检查 getteext 支持"
-
-#: setup/class_setupStep_Checks.inc:113
-msgid "The multi byte string support is required by some plugins."
-msgstr ""
+#: ihtml/themes/default/logout.tpl:10
+msgid "Sign in again"
+msgstr "重新登录"
 
-#: setup/class_setupStep_Checks.inc:114
-msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
+msgid "Assigned ACLs for current entry"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:120
+#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
 #, fuzzy
-msgid "Checking for getacl in IMAP implementation"
-msgstr "æ£\80æ\9f¥ imap ä¸­ç\9a\84 getacl"
+msgid "New ACL"
+msgstr "æ\96°"
 
-#: setup/class_setupStep_Checks.inc:121
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid ""
-"The getacl support is needed to handle shared folder permissions. Old IMAP "
-"extensions are not capable of reading acl's. You need a recent PHP version "
-"to use this feature."
-msgstr ""
-"共享目录需要 getacl 支持。 标准的 IMAP 模块不能访问 acl。需要这个功能,您需要"
-"一个最新版本的 PHP。"
+msgid "ACL type"
+msgstr "分类类型"
 
-#: setup/class_setupStep_Checks.inc:128
+#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
 #, fuzzy
-msgid "Checking for MySQL support"
-msgstr "检查 iconv 支持"
+msgid "Select an acl type"
+msgstr "选择一个位置"
 
-#: setup/class_setupStep_Checks.inc:129
-#, fuzzy
-msgid ""
-"MySQL support is needed to communicate with several supported databases."
-msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。"
+#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
+#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
+#: plugins/admin/users/class_userManagement.inc:925
+#: plugins/admin/ogroups/class_ogroupManagement.inc:456
+#: plugins/admin/groups/class_groupManagement.inc:523 setup/setup_ldap.tpl:16
+#: setup/setup_migrate.tpl:133 setup/setup_migrate.tpl:184
+#: setup/setup_migrate.tpl:250 setup/setup_migrate.tpl:305
+#: setup/setup_migrate.tpl:358 include/utils/class_msgPool.inc:244
+#, php-format
+msgid "Apply"
+msgstr "应用"
 
-#: setup/class_setupStep_Checks.inc:130
-msgid ""
-"This module is required to communicate with database servers (GOfax, "
-"asterisk, GLPI, etc.). Please install php5-mysql"
+#: ihtml/themes/default/acl.tpl:15
+msgid "Use members from"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:136
-#, fuzzy
-msgid "Checking for kadm5 support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/acl.tpl:29
+msgid "Available members"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:137
-msgid ""
-"Managing users in kerberos requires the kadm5 module which is downloadable "
-"via PEAR network."
-msgstr "在 kerberos 中管理用户需要 kadm5 模块,可以通过 PEAR 网络下载。"
+#: ihtml/themes/default/acl.tpl:30
+msgid "List message possible targets"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:138
-#, fuzzy
-msgid ""
-"This module is required to manage user in kerberos, it is downloadable via "
-"PEAR network"
-msgstr "在 kerberos 中管理用户需要 kadm5 模块,可以通过 PEAR 网络下载。"
+#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
+msgid "Members"
+msgstr "成员"
 
-#: setup/class_setupStep_Checks.inc:144
-#, fuzzy
-msgid "Checking for SNMP support"
-msgstr "检查 iconv 支持"
+#: ihtml/themes/default/acl.tpl:42
+msgid "List message recipients"
+msgstr ""
 
-#: setup/class_setupStep_Checks.inc:145
+#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
 #, fuzzy
-msgid ""
-"The simple network management protocol is needed to get status information "
-"from clients."
-msgstr "简单网络管理协议 (SNMP) 需要来做客户端监视。"
+msgid "List of available ACL categories"
+msgstr "可用软件包列表"
 
-#: setup/class_setupStep_Checks.inc:146
-msgid ""
-"This module is required for client monitoring. Please install php5-snmp."
+#: ihtml/themes/default/acl.tpl:63
+msgid "ACLs for this object"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:152
+#: ihtml/themes/default/acl.tpl:69
 #, fuzzy
-msgid "Checking for CUPS support"
-msgstr "检查 iconv 支持"
-
-#: setup/class_setupStep_Checks.inc:153
-#, fuzzy
-msgid ""
-"In order to read available printers via the IPP protocol instead of printcap "
-"files, you've to install the CUPS module."
-msgstr ""
-"为了从 IPP 协议而非 printcap 文件中读取可用打印机,您必须安装 CUPS 模块。"
+msgid "Available roles"
+msgstr "可用的应用程序"
 
-#: setup/class_setupStep_Checks.inc:162
-msgid "Checking for fping utility"
-msgstr "检查 fping 工具"
+#: ihtml/themes/default/acl.tpl:77 ihtml/themes/default/acl.tpl:91
+#: ihtml/themes/default/snapshotdialog.tpl:44
+#: ihtml/themes/default/snapshotdialog.tpl:89
+#: ihtml/themes/default/msg_dialog.tpl:79
+#: ihtml/themes/default/msg_dialog.tpl:134
+#: ihtml/themes/default/pwd_heimdal.tpl:200 ihtml/themes/default/remove.tpl:15
+#: ihtml/themes/default/islocked.tpl:15
+#: ihtml/themes/default/copyPasteDialog.tpl:21
+#: plugins/admin/users/class_userManagement.inc:928
+#: plugins/admin/ogroups/class_ogroupManagement.inc:459
+#: plugins/admin/acl/tabs_acl.inc:83 plugins/admin/acl/tabs_acl_role.inc:69
+#: plugins/admin/groups/class_groupManagement.inc:526 setup/setup_ldap.tpl:17
+#: setup/setup_migrate.tpl:135 setup/setup_migrate.tpl:186
+#: setup/setup_migrate.tpl:251 setup/setup_migrate.tpl:307
+#: setup/setup_migrate.tpl:360 include/utils/class_msgPool.inc:232
+#, php-format
+msgid "Cancel"
+msgstr "取消"
 
-#: setup/class_setupStep_Checks.inc:163
+#: ihtml/themes/default/logout-close.tpl:5
 #, fuzzy
-msgid ""
-"The fping utility is used if you've got a thin client based terminal "
-"environment."
-msgstr "工具 fping 只有在您部署了基于瘦客户机的终端环境下被使用。"
+msgid "Your GOsa session has been closed!"
+msgstr "您的 GOsa 会话已经过期!"
 
-#: setup/class_setupStep_Checks.inc:164
-#, fuzzy
+#: ihtml/themes/default/logout-close.tpl:7
 msgid ""
-"The fping utility is only used in thin client based terminal environment."
-msgstr "工具 fping 只有在您部署了基于瘦客户机的终端环境下被使用。"
-
-#: setup/class_setupStep_Checks.inc:179
-msgid "SAMBA password hash generation"
+"Please close this browser window and clean the authentication caches to "
+"avoid an automatic re-authentication by your browser."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:180
-#, fuzzy
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
+#: include/class_pluglist.inc:175
 msgid ""
-"In order to use SAMBA 2/3 passwords, you've to install additional packages "
-"to generate password hashes."
-msgstr "为了使用 SAMBA 2/3, 您必须安装一些额外的软件包来创建口令。"
+"You are currently editing a database entry. Do you want to dismiss the "
+"changes?"
+msgstr "您正在编辑一个数据项。您确认要丢弃当前的修改么?"
 
-#: setup/class_setupStep_Checks.inc:181
-#, fuzzy
-msgid ""
-"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
-"a look at mkntpasswd."
-msgstr "为了使用 SAMBA 2/3, 您必须安装一些额外的软件包来创建口令。"
+#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
+msgid "Main"
+msgstr "首页"
 
-#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
-#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
-#: setup/class_setupStep_Checks.inc:258
-msgid "Off"
-msgstr ""
+#: ihtml/themes/default/framework.tpl:16
+msgid "Help"
+msgstr "帮助"
 
-#: setup/class_setupStep_Checks.inc:192
-#, fuzzy
-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 的一个不必修改范围就可以从脚本中访问所有全局变量的机"
-"制。这可能存在安全风险。GOsa 在两种情况下都可以运行。"
+#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
+msgid "Sign out"
+msgstr "退出"
 
-#: setup/class_setupStep_Checks.inc:193
-#, fuzzy
-msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
-msgstr "检查 register_globals 是否设置为 'off'"
+#: ihtml/themes/default/framework.tpl:29
+msgid "Signed in:"
+msgstr "登录:"
 
-#: setup/class_setupStep_Checks.inc:201
-msgid "PHP uses this value for the garbage collector to delete old sessions."
+#: ihtml/themes/default/framework.tpl:32
+msgid "GOsa main menu"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:202
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:3
+msgid "Restoring object snapshots"
+msgstr ""
+
+#: ihtml/themes/default/snapshotdialog.tpl:6
 msgid ""
-"Setting this value to one day will prevent loosing session and cookies "
-"before they really timeout."
+"This procedure will restore a snapshot of the selected object. It will "
+"replace the existing object after pressing the restore button."
 msgstr ""
-"PHP 用这个值来进行垃圾回收,删除旧的会话。设置这个值为一天,将会防止在真正超"
-"时之前的会话和 cookie 丢失。"
 
-#: setup/class_setupStep_Checks.inc:203
+#: ihtml/themes/default/snapshotdialog.tpl:9
 msgid ""
-"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
-"higher."
+"Remember that DNS configuration and database entries could not be restored. "
+"For some objects it is only nescessary to open and save them again (goFon), "
+"but some entries must be recreated manually (glpi)."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:211
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:12
 msgid ""
-"In Order to use GOsa without any trouble, the session.auto_register option "
-"in your php.ini should be set to 'Off'."
+"Don't forget to check references to other objects, for example does the "
+"selected printer still exists ?"
 msgstr ""
-"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必"
-"须设置为 'Off'。"
 
-#: setup/class_setupStep_Checks.inc:212
+#: ihtml/themes/default/snapshotdialog.tpl:20
+#: ihtml/themes/default/snapshotdialog.tpl:62
+#: plugins/admin/departments/class_departmentGeneric.inc:538
+#: include/class_acl.inc:663 include/class_acl.inc:670
+#: include/class_acl.inc:677 include/class_acl.inc:683
+#: include/utils/class_msgPool.inc:385
+msgid "Object"
+msgstr "对象"
+
+#: ihtml/themes/default/snapshotdialog.tpl:29
 #, fuzzy
-msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgid "There is no snapshot available that could be restored"
+msgstr "没有可用的 mysql 扩展,请检查您的 php 设置。"
+
+#: ihtml/themes/default/snapshotdialog.tpl:31
+msgid "Choose a snapshot and click the folder image, to restore the snapshot"
 msgstr ""
-"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必"
-"须设置为 'Off'。"
 
-#: setup/class_setupStep_Checks.inc:219
+#: ihtml/themes/default/snapshotdialog.tpl:49
 #, fuzzy
-msgid ""
-"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
-"errors that are not reproducable! Increase it for larger setups."
-msgstr "GOsa 需要至少 16MB 内存,太少会导致无法预料的错误!将其设置为更大。"
+msgid "Creating object snapshots"
+msgstr "创建新对象组"
 
-#: setup/class_setupStep_Checks.inc:220
+#: ihtml/themes/default/snapshotdialog.tpl:52
 msgid ""
-"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+"This procedure will create a snapshot of the selected object. It will be "
+"stored inside a special branch of your directory system and can be restored "
+"later on."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:227
-#, fuzzy
+#: ihtml/themes/default/snapshotdialog.tpl:55
 msgid ""
-"This option influences the PHP output handling. Turn this Option off, to "
-"increase performance."
-msgstr "这个选项影响输出处理。关闭这个选项,可以提高性能。"
-
-#: setup/class_setupStep_Checks.inc:228
-msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+"Remember that database entries, DNS configurations and possibly created "
+"zones in server extensions will not be stored in the snapshot."
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:235
+#: ihtml/themes/default/snapshotdialog.tpl:70
 #, fuzzy
-msgid "The Execution time should be at least 30 seconds."
-msgstr "执行时间应该至少 30 秒,因为一些动作可能会花很多时间。"
+msgid "Timestamp"
+msgstr "过期"
 
-#: setup/class_setupStep_Checks.inc:236
-msgid ""
-"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+#: ihtml/themes/default/snapshotdialog.tpl:79
+msgid "Reason for generating this snapshot"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:243
-#, fuzzy
-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 将不会发送任何有关正运行着"
-"的服务器的信息。"
+#: ihtml/themes/default/snapshotdialog.tpl:87
+#: plugins/admin/users/template.tpl:48
+#: plugins/admin/departments/class_departmentGeneric.inc:465
+#: plugins/admin/departments/class_departmentGeneric.inc:560
+#: setup/class_setup.inc:266
+msgid "Continue"
+msgstr "继续"
 
-#: setup/class_setupStep_Checks.inc:244
-msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
-msgstr ""
+#: ihtml/themes/default/msg_dialog.tpl:55
+#: ihtml/themes/default/msg_dialog.tpl:100
+#: plugins/personal/generic/class_user.inc:395
+#: plugins/personal/generic/class_user.inc:496
+#: plugins/personal/generic/class_user.inc:766
+#: plugins/personal/generic/class_user.inc:1296
+#: plugins/personal/generic/main.inc:104
+#: plugins/personal/posix/class_posixAccount.inc:1321
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#: plugins/admin/groups/class_groupGeneric.inc:966
+#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
+#: setup/setup_checks.tpl:91 include/class_plugin.inc:626
+#: include/class_plugin.inc:658 include/class_plugin.inc:689
+#: include/class_plugin.inc:1404 include/class_log.inc:145
+#: include/class_log.inc:157 include/class_log.inc:165
+#: include/class_log.inc:180 include/class_log.inc:218
+#: include/class_log.inc:241 include/class_msg_dialog.inc:97
+#: include/class_gosaSupportDaemon.inc:745
+#: include/class_gosaSupportDaemon.inc:765 include/functions.inc:1264
+#: include/class_CopyPasteHandler.inc:350 include/utils/class_msgPool.inc:105
+#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
+#: include/utils/class_msgPool.inc:388 html/index.php:225 html/index.php:229
+msgid "Error"
+msgstr "错误"
 
-#: setup/class_setupStep_Checks.inc:250
+#: ihtml/themes/default/msg_dialog.tpl:59
+#: ihtml/themes/default/msg_dialog.tpl:104
+#: ihtml/themes/default/MultiSelectWindow.tpl:45
+#: ihtml/themes/default/MultiSelectWindow.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:169 setup/setup_ldap.tpl:121
+msgid "Information"
+msgstr "提示信息"
+
+#: ihtml/themes/default/msg_dialog.tpl:76
+#: ihtml/themes/default/msg_dialog.tpl:78
+#: ihtml/themes/default/msg_dialog.tpl:131
+#: ihtml/themes/default/msg_dialog.tpl:133
+#: plugins/admin/users/class_userManagement.inc:922
+#: plugins/admin/ogroups/class_ogroupManagement.inc:453
+#: plugins/admin/acl/tabs_acl.inc:81 plugins/admin/acl/tabs_acl_role.inc:67
+#: plugins/admin/groups/class_groupManagement.inc:520
+#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
+#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
+#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
+#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
+#: setup/class_setupStep_Migrate.inc:877
+#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
+#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:238
+#, php-format
+msgid "Ok"
+msgstr "好"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:5
 #, fuzzy
-msgid "On"
-msgstr "打开"
+msgid "Heimdal options"
+msgstr "邮件选项"
 
-#: setup/class_setupStep_Checks.inc:251
-msgid ""
-"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
-"escape all quotes in strings in this case."
+#: ihtml/themes/default/pwd_heimdal.tpl:6
+msgid "Use empty values for infinite"
 msgstr ""
-"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串"
-"中所有引号编码。"
 
-#: setup/class_setupStep_Checks.inc:252
-msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+#: ihtml/themes/default/pwd_heimdal.tpl:10
+msgid "Ticket max life"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:259
-#, fuzzy
-msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:18
+msgid "Ticket max renew"
 msgstr ""
-"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串"
-"中所有引号编码。"
 
-#: setup/class_setupStep_Checks.inc:260
-msgid ""
-"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
+#: ihtml/themes/default/pwd_heimdal.tpl:32
+msgid "infinite"
 msgstr ""
 
-#: setup/class_setupStep_Checks.inc:270
+#: ihtml/themes/default/pwd_heimdal.tpl:34
+msgid "Hour"
+msgstr "小时"
+
+#: ihtml/themes/default/pwd_heimdal.tpl:36
 #, fuzzy
-msgid "Configuration writeable"
-msgstr "配置文件"
-
-#: setup/class_setupStep_Checks.inc:271
-#, fuzzy
-msgid "The configuration file can't be written"
-msgstr "查看配置信息"
-
-#: setup/class_setupStep_Checks.inc:272
-#, php-format
-msgid ""
-"GOsa reads its configuration from a file located in (%s/%s). The setup can "
-"write the configuration directly if it is writeable."
-msgstr ""
-
-#: setup/setup_language.tpl:3
-#, fuzzy
-msgid "Please select the preferred language"
-msgstr "请选择一个打印机或者取消。"
-
-#: setup/setup_language.tpl:5
-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 ""
-
-#: setup/setup_language.tpl:9
-#, fuzzy
-msgid "Please select your preferred language here"
-msgstr "首选语种"
+msgid "Minute"
+msgstr "打印机"
 
-#: setup/setup_frame.tpl:12
+#: ihtml/themes/default/pwd_heimdal.tpl:38
 #, fuzzy
-msgid "GOsa setup wizard"
-msgstr "GOsa 帮助浏览器"
+msgid "Day"
+msgstr "五月"
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/pwd_heimdal.tpl:40
 #, fuzzy
-msgid "Installation"
-msgstr "Windows 工作站"
+msgid "Month"
+msgstr ""
 
-#: setup/setup_frame.tpl:19
+#: ihtml/themes/default/pwd_heimdal.tpl:42
 #, fuzzy
-msgid "Steps"
-msgstr "系统设置"
+msgid "Year"
+msgstr "查找"
 
-#: setup/setup_finish.tpl:3
-#, fuzzy
-msgid "Create your configuration file"
-msgstr "配置文件"
+#: ihtml/themes/default/pwd_heimdal.tpl:47
+msgid "Valid ticket start time"
+msgstr ""
 
-#: setup/setup_finish.tpl:13
-msgid "Download configuration"
-msgstr "下载配置"
+#: ihtml/themes/default/pwd_heimdal.tpl:87
+msgid "Valid ticket end time"
+msgstr ""
 
-#: setup/setup_finish.tpl:18
+#: ihtml/themes/default/pwd_heimdal.tpl:127
 #, fuzzy
-msgid "Status: "
-msgstr "状态"
+msgid "Password end"
+msgstr "口令"
 
-#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
-msgid "LDAP schema check"
-msgstr ""
+#: ihtml/themes/default/pwd_heimdal.tpl:198
+#: ihtml/themes/default/copyPasteDialog.tpl:19
+#: include/class_MultiSelectWindow.inc:134 include/utils/class_msgPool.inc:250
+#, php-format
+msgid "Save"
+msgstr "保存"
 
-#: setup/class_setupStep_Schema.inc:44
-msgid "Perform test on your current LDAP schema"
+#: ihtml/themes/default/remove.tpl:6
+msgid ""
+"This may be used by several groups. Please double check if your really want "
+"to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"这可能被好几个组使用。请再次检查您是否要这么做,因为 GOsa 没有办法将您的数据"
+"找回。"
 
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:55
-#: setup/setup_feedback.tpl:73 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "No"
-msgstr "否"
-
-#: setup/class_setupStep_Schema.inc:82 setup/setup_feedback.tpl:53
-#: setup/setup_feedback.tpl:71 setup/class_setupStep_Config3.inc:86
-#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config2.inc:160
-#: setup/class_setupStep_Config1.inc:88
-msgid "Yes"
-msgstr "是"
+#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
+#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/groups/remove.tpl:10
+msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
+msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。"
 
-#: setup/setup_feedback.tpl:6
-msgid "Subscribe to the gosa-announce mailinglist"
-msgstr ""
+#: ihtml/themes/default/islocked.tpl:2
+msgid "Locking conflict detected"
+msgstr "检测到锁定冲突"
 
-#: setup/setup_feedback.tpl:9
+#: ihtml/themes/default/islocked.tpl:9
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to subscribe you to the gosa-announce mailing list. You've to confirm "
-"this by mail."
+"If this lock detection is false, the other person has obviously closed the "
+"webbrowser during the edit operation. You may want to take over the lock by "
+"pressing the 'Edit anyway' button."
 msgstr ""
+"如果锁检查失败,明显的是另外的人在进行编辑操作时关闭了浏览器。您可以通过按“仍"
+"然编辑”按钮来接管这个锁文件。"
 
-#: setup/setup_feedback.tpl:14 plugins/personal/generic/class_user.inc:1451
-#: plugins/personal/generic/multiple_generic.tpl:149
-#: plugins/personal/generic/generic.tpl:271 html/getxls.php:301
-msgid "Organization"
-msgstr "组织/公司"
+#: ihtml/themes/default/MultiSelectWindow.tpl:57
+#: ihtml/themes/default/MultiSelectWindow.tpl:97
+#: plugins/personal/posix/posix_groups.tpl:21
+#: plugins/admin/ogroups/ogroup_objects.tpl:20
+#: plugins/admin/groups/group_objects.tpl:20
+msgid "Filters"
+msgstr "过滤器"
 
-#: setup/setup_feedback.tpl:22 setup/setup_migrate.tpl:209
-#: plugins/personal/generic/class_user.inc:1133
-#: plugins/personal/generic/class_user.inc:1144
-#: plugins/personal/generic/class_user.inc:1181
-#: plugins/personal/generic/class_user.inc:1567
-#: plugins/admin/users/class_userManagement.inc:736
-#: plugins/admin/users/class_userManagement.inc:814
-#: plugins/admin/users/class_userManagement.inc:826
-#: plugins/admin/groups/class_groupGeneric.inc:871
-#: plugins/admin/groups/class_groupGeneric.inc:877
-#: plugins/admin/groups/class_groupGeneric.inc:879
-#: plugins/admin/groups/class_groupGeneric.inc:891
-#: plugins/admin/groups/class_groupGeneric.inc:905
-#: plugins/admin/groups/class_groupGeneric.inc:912
-#: plugins/admin/groups/class_groupGeneric.inc:1023
-#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/paste_role.tpl:4
-#: plugins/admin/acl/class_aclRole.inc:703
-#: plugins/admin/departments/class_departmentGeneric.inc:250
-#: plugins/admin/departments/class_departmentGeneric.inc:252
-#: plugins/admin/departments/class_departmentGeneric.inc:258
-#: plugins/admin/departments/class_departmentGeneric.inc:266
-#: plugins/admin/departments/class_departmentGeneric.inc:270
-#: plugins/admin/ogroups/class_ogroup.inc:614
-#: plugins/admin/ogroups/class_ogroup.inc:624
-#: plugins/admin/ogroups/class_ogroup.inc:771 html/getxls.php:225
-#: html/getxls.php:292
-msgid "Name"
-msgstr "名称"
+#: ihtml/themes/default/password.tpl:6
+#, fuzzy
+msgid "Change your password"
+msgstr "修改口令"
 
-#: setup/setup_feedback.tpl:30 html/getxls.php:227
-msgid "Mail address"
-msgstr "邮件地址"
+#: ihtml/themes/default/password.tpl:34
+#, fuzzy
+msgid "Success"
+msgstr "访问"
 
-#: setup/setup_feedback.tpl:41
-msgid "Send feedback to the GOsa project team"
+#: ihtml/themes/default/password.tpl:34
+msgid "Your password has been changed successfully."
 msgstr ""
 
-#: setup/setup_feedback.tpl:44
+#: ihtml/themes/default/password.tpl:40
+#: plugins/admin/users/class_userManagement.inc:348
+#, fuzzy
+msgid "Password change"
+msgstr "不允许修改口令"
+
+#: ihtml/themes/default/password.tpl:52
 msgid ""
-"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
-"order to submit your form anonymously."
+"This dialog provides a simple way to change your password. Enter the current "
+"password and the new password (twice) in the fields below and press the "
+"'Change' button."
 msgstr ""
 
-#: setup/setup_feedback.tpl:46 plugins/personal/generic/class_user.inc:37
-#: plugins/personal/generic/class_user.inc:1431
-#: plugins/personal/posix/generic.tpl:4
-#: plugins/admin/groups/class_groupGeneric.inc:1014
-#: plugins/admin/departments/class_departmentGeneric.inc:568
-#: plugins/admin/ogroups/class_ogroup.inc:762
-#: plugins/generic/references/class_reference.inc:40
-msgid "Generic"
-msgstr "通用配置"
-
-#: setup/setup_feedback.tpl:50
-msgid "Did the setup procedure help you to get started?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
+#: plugins/personal/password/password.tpl:13 html/password.php:221
+msgid "Current password"
+msgstr "当前口令"
 
-#: setup/setup_feedback.tpl:60
-msgid "If not, what problems did you encounter"
-msgstr ""
+#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
+#: ihtml/themes/default/password.tpl:85
+#: plugins/personal/password/password.tpl:18
+#: plugins/personal/generic/password.tpl:7
+#: plugins/personal/generic/main.inc:86
+#: plugins/admin/users/class_userManagement.inc:246
+#: plugins/admin/users/password.tpl:13 html/password.php:200
+msgid "New password"
+msgstr "新口令"
 
-#: setup/setup_feedback.tpl:68
-msgid "Is this the first time you use GOsa?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:85
+#, fuzzy
+msgid "again"
+msgstr "首页"
 
-#: setup/setup_feedback.tpl:74
-msgid "I use it since"
-msgstr ""
+#: ihtml/themes/default/password.tpl:86
+#, fuzzy
+msgid "New password repeated"
+msgstr "新口令"
 
-#: setup/setup_feedback.tpl:75
-msgid "Select the year since when you are using GOsa"
-msgstr ""
+#: ihtml/themes/default/password.tpl:89
+#: plugins/personal/password/password.tpl:28
+#, fuzzy
+msgid "Password strength"
+msgstr "口令存储"
 
-#: setup/setup_feedback.tpl:82
-msgid "What operating system / distribution do you use?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:100
+#, fuzzy
+msgid "Change"
+msgstr "频道"
 
-#: setup/setup_feedback.tpl:90
-msgid "What web server do you use?"
-msgstr ""
+#: ihtml/themes/default/password.tpl:101
+#, fuzzy
+msgid "Click here to change your password"
+msgstr "点击这里来修改您的口令"
 
-#: setup/setup_feedback.tpl:98
-msgid "What PHP version do you use?"
-msgstr ""
+#: ihtml/themes/default/copyPasteDialog.tpl:1
+#, fuzzy
+msgid "Copy & paste wizard"
+msgstr "拷贝和粘贴精灵"
 
-#: setup/setup_feedback.tpl:106
-msgid "LDAP"
+#: ihtml/themes/default/copyPasteDialog.tpl:7
+msgid ""
+"Some values need to be unique in the complete directory while some "
+"combinations make no sense. GOsa shows the relevant attributes. Please "
+"maintain the values below to fullfill the policies."
 msgstr ""
+"有的变量需要在整个目录中保持唯一,而有的组合没有意义。GOsa 显示有关属性。请按"
+"照这个原则维护其取值。"
 
-#: setup/setup_feedback.tpl:110
-msgid "What kind of LDAP server(s) do you use?"
+#: ihtml/themes/default/copyPasteDialog.tpl:9
+msgid "Remember that some properties like taken snapshots will not be copied!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:116
-msgid "How many objects are in your LDAP?"
+#: ihtml/themes/default/copyPasteDialog.tpl:10
+msgid ""
+"Or if you copy or cut an entry within GOsa and delete the source object, you "
+"may get errors while pasting this object again!"
 msgstr ""
 
-#: setup/setup_feedback.tpl:123
+#: ihtml/themes/default/copyPasteDialog.tpl:24
 #, fuzzy
-msgid "Features"
-msgstr "功能"
-
-#: setup/setup_feedback.tpl:126
-msgid "What features of GOsa do you use?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:136
-msgid "What features do you want to see in future versions of GOsa?"
-msgstr ""
-
-#: setup/setup_feedback.tpl:143
-msgid "Send feedback"
-msgstr ""
-
-#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
-#, fuzzy
-msgid "GOsa settings 3/3"
-msgstr "用户设置"
-
-#: setup/class_setupStep_Config3.inc:79
-msgid "Tweak some GOsa core behaviour"
-msgstr ""
+msgid "Cancel all"
+msgstr "取消"
 
-#: setup/class_setupStep_Config3.inc:193
-#, fuzzy
-msgid "Session lifetime must be a numeric value."
-msgstr "需要的分值必须是数字。"
+#: ihtml/themes/default/copyPasteDialog.tpl:30
+msgid "Operation complete"
+msgstr "操作完成"
 
-#: setup/class_setupStep_Config3.inc:197
-#, fuzzy
-msgid "Maximal ldap query time must be a numeric value. "
-msgstr "需要的分值必须是数字。"
+#: ihtml/themes/default/copyPasteDialog.tpl:32
+#: setup/class_setupStep_Finish.inc:37
+msgid "Finish"
+msgstr "完成"
 
-#: setup/class_setupStep_Feedback.inc:91
-msgid "UNIX accounts/groups"
+#: ihtml/themes/default/sizelimit.tpl:3
+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/class_setupStep_Feedback.inc:93
-#, fuzzy
-msgid "Samba management"
-msgstr "系统管理"
+#: ihtml/themes/default/sizelimit.tpl:6
+msgid "Please choose the way to react for this session"
+msgstr "请选择响应这个会话的方法"
 
-#: setup/class_setupStep_Feedback.inc:95
-#, fuzzy
-msgid "Mailsystem management"
-msgstr "系统管理"
+#: ihtml/themes/default/sizelimit.tpl:9
+msgid "ignore this error and show all entries the LDAP server returns"
+msgstr "忽略错误并显示 LDAP 服务器返回的所有条目"
 
-#: setup/class_setupStep_Feedback.inc:97
-#, fuzzy
-msgid "FAX system administration"
-msgstr "用户管理"
+#: ihtml/themes/default/sizelimit.tpl:10
+msgid ""
+"ignore this error and show all entries that fit into the defined sizelimit "
+"and let me use filters instead"
+msgstr "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。"
 
-#: setup/class_setupStep_Feedback.inc:99
-#, fuzzy
-msgid "Asterisk administration"
-msgstr "用户管理"
+#: ihtml/themes/default/sizelimit.tpl:14
+#: plugins/personal/generic/generic.tpl:137
+#: include/utils/class_msgPool.inc:268
+#, php-format
+msgid "Set"
+msgstr "设置"
 
-#: setup/class_setupStep_Feedback.inc:101
-#, fuzzy
-msgid "System inventory"
-msgstr "删除 inventory"
+#: ihtml/themes/default/help.tpl:9
+msgid "GOsa help viewer"
+msgstr "GOsa 帮助浏览器"
 
-#: setup/class_setupStep_Feedback.inc:103
-#, fuzzy
-msgid "System-/Configmanagement"
-msgstr "系统管理"
+#: ihtml/themes/default/help.tpl:15
+msgid "Index"
+msgstr "索引"
 
-#: setup/class_setupStep_Feedback.inc:105
-msgid "Addressbook"
-msgstr "地址簿"
+#: ihtml/themes/default/help.tpl:21 setup/setup_ldap.tpl:13
+msgid "Search"
+msgstr "查找"
 
-#: setup/class_setupStep_Feedback.inc:111
-#: setup/class_setupStep_Feedback.inc:113
-msgid "Notification and feedback"
+#: plugins/generic/welcome/welcome.tpl:4
+msgid ""
+"This is the GOsa main menu. You can select your tasks from the menu on the "
+"left, or by choosing one of the pictograms below. All changes apply directly "
+"to your companies LDAP server."
 msgstr ""
+"这是 Gosa 主菜单。您可以从左侧的菜单中选择,或者点击下面的图标。所有改变都将"
+"直接修改您公司的 LDAP 服务器。"
 
-#: setup/class_setupStep_Feedback.inc:112
-#, fuzzy
-msgid "Get notifications or send feedback"
-msgstr "主机通知命令"
-
-#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
-#, fuzzy
-msgid "Setup error"
-msgstr "PHP 错误"
+#: plugins/generic/welcome/welcome.tpl:8
+msgid ""
+"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
+"back to the pictogram view."
+msgstr "选择上方左侧的“退出”按钮断开链接,选择“首页”回到图标程序界面。"
 
-#: setup/class_setupStep_Feedback.inc:140
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Feedback error"
-msgstr ""
+#: plugins/generic/welcome/welcome.tpl:15
+msgid "The GOsa team"
+msgstr "GOsa 团队"
 
-#: setup/class_setupStep_Feedback.inc:140
+#: plugins/generic/welcome/main.inc:26
 #, php-format
-msgid "Cannot send feedback to '%s': %s"
-msgstr ""
+msgid "Welcome %s!"
+msgstr "欢迎 %s!"
 
-#: setup/class_setupStep_Feedback.inc:147
-msgid "Cannot send feedback: service temporarily unavailable"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:40
+#: plugins/personal/generic/class_user.inc:37
+#: plugins/personal/generic/class_user.inc:1442
+#: plugins/personal/posix/generic.tpl:4
+#: plugins/admin/ogroups/class_ogroup.inc:762
+#: plugins/admin/departments/class_departmentGeneric.inc:574
+#: plugins/admin/groups/class_groupGeneric.inc:1014
+#: setup/setup_feedback.tpl:46
+msgid "Generic"
+msgstr "通用配置"
 
-#: setup/class_setupStep_Feedback.inc:149
-msgid "Feedback sucessfully send"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:42
+#: plugins/personal/posix/class_posixAccount.inc:37
+msgid "UNIX"
+msgstr "UNIX"
 
-#: setup/class_setupStep_Feedback.inc:179
-#, fuzzy
-msgid "Please specify a valid email address."
-msgstr "请输入一个有效的 iSerial。"
+#: plugins/generic/references/class_reference.inc:44
+#: plugins/admin/users/class_divListUsers.inc:272
+#: plugins/admin/ogroups/class_divListOGroup.inc:258
+#: plugins/admin/ogroups/tabs_ogroups.inc:110
+#: plugins/admin/ogroups/tabs_ogroups.inc:256
+#: plugins/admin/groups/class_divListGroup.inc:258
+msgid "Mail"
+msgstr "邮件"
 
-#: setup/class_setupStep_Feedback.inc:183
-msgid ""
-"You have to select at least one of both options, subscribe or send feedback."
-msgstr ""
+#: plugins/generic/references/class_reference.inc:46
+#: plugins/generic/references/class_reference.inc:48
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:278
+#: plugins/admin/groups/class_divListGroup.inc:260
+msgid "Samba"
+msgstr "Samba"
 
-#: setup/setup_config2.tpl:2
-msgid "Samba settings"
-msgstr "Samba 设置"
+#: plugins/generic/references/class_reference.inc:50
+msgid "FAX"
+msgstr "传真"
 
-#: setup/setup_config2.tpl:6
-msgid "Samba hash generator"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:52
+msgid "Proxy"
+msgstr "代理"
 
-#: setup/setup_config2.tpl:15 plugins/admin/groups/class_groupGeneric.inc:1034
-#, fuzzy
-msgid "Samba SID"
-msgstr "Samba"
+#: plugins/generic/references/class_reference.inc:54
+msgid "FTP"
+msgstr "FTP"
 
-#: setup/setup_config2.tpl:31
-#, fuzzy
-msgid "RID base"
-msgstr "数据库"
+#: plugins/generic/references/class_reference.inc:56
+#: plugins/admin/ogroups/class_ogroupManagement.inc:504
+#: plugins/admin/groups/class_divListGroup.inc:184
+msgid "Group"
+msgstr "组"
 
-#: setup/setup_config2.tpl:46
-#, fuzzy
-msgid "Workstation container"
-msgstr "工作站名称"
+#: plugins/generic/references/class_reference.inc:58
+#: plugins/personal/generic/class_user.inc:1463
+#: plugins/personal/generic/multiple_generic.tpl:159
+#: plugins/personal/generic/generic.tpl:279
+#: plugins/admin/users/class_divListUsers.inc:80
+#: plugins/admin/ogroups/class_ogroupManagement.inc:506
+#: plugins/admin/departments/class_divListDepartment.inc:156
+msgid "Department"
+msgstr "部门"
 
-#: setup/setup_config2.tpl:61
-msgid "Samba SID mapping"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:60
+#: plugins/personal/generic/class_user.inc:1175
+#: plugins/personal/generic/class_user.inc:1563
+#: plugins/personal/generic/multiple_generic.tpl:217
+#: plugins/personal/generic/multiple_generic.tpl:428
+#: plugins/personal/generic/generic.tpl:330
+#: plugins/personal/generic/generic.tpl:511
+#: plugins/admin/users/class_divListUsers.inc:274
+#: plugins/admin/ogroups/class_ogroupManagement.inc:508
+#: plugins/admin/departments/class_departmentGeneric.inc:274
+#: plugins/admin/departments/generic.tpl:83
+#: plugins/admin/groups/class_divListGroup.inc:264
+msgid "Phone"
+msgstr "电话"
 
-#: setup/setup_config2.tpl:71
-#, fuzzy
-msgid "Timezone"
-msgstr "用户时区"
+#: plugins/generic/references/class_reference.inc:62
+#: plugins/admin/ogroups/class_ogroupManagement.inc:505
+#: plugins/admin/ogroups/tabs_ogroups.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:262
+msgid "Application"
+msgstr "应用程序"
 
-#: setup/setup_config2.tpl:74
-#, fuzzy
-msgid "Please choose your preferred timezone here"
-msgstr "首选语种"
+#: plugins/generic/references/class_reference.inc:64
+#: plugins/admin/ogroups/class_ogroupManagement.inc:507
+#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
+msgid "Server"
+msgstr "服务器"
 
-#: setup/setup_config2.tpl:96
-#, fuzzy
-msgid "Additional GOsa settings"
-msgstr "应用程序设置"
+#: plugins/generic/references/class_reference.inc:66
+msgid "Thin Client"
+msgstr "瘦客户机"
 
-#: setup/setup_config2.tpl:100
-msgid "Enable Copy & Paste"
-msgstr ""
+#: plugins/generic/references/class_reference.inc:68
+#: plugins/admin/ogroups/class_ogroupManagement.inc:509
+msgid "Workstation"
+msgstr "工作站"
 
-#: setup/setup_config2.tpl:112
-#, fuzzy
-msgid "Enable DNS extension"
-msgstr "删除打印机扩展"
+#: plugins/generic/references/class_reference.inc:70
+#: plugins/admin/ogroups/class_divListOGroup.inc:195
+#: plugins/admin/ogroups/class_divListOGroup.inc:324
+msgid "Object group"
+msgstr "对象组"
 
-#: setup/setup_config2.tpl:124
-#, fuzzy
-msgid "Enable DHCP extension"
-msgstr "删除打印机扩展"
+#: plugins/generic/references/class_reference.inc:72
+#: plugins/admin/ogroups/class_ogroupManagement.inc:512
+msgid "Printer"
+msgstr "打印机"
 
-#: setup/setup_config2.tpl:136
-#, fuzzy
-msgid "Enable mime type management"
-msgstr "系统管理"
+#: plugins/generic/references/contents.tpl:11
+msgid "Object name"
+msgstr "对象名称"
 
-#: setup/setup_config2.tpl:148
-#, fuzzy
-msgid "Enable FAI release management"
-msgstr "Asterisk 管理"
+#: plugins/generic/references/contents.tpl:11
+#: plugins/admin/ogroups/class_ogroup.inc:773
+#: plugins/admin/ogroups/generic.tpl:15
+#: plugins/admin/departments/class_departmentGeneric.inc:263
+#: plugins/admin/departments/class_departmentGeneric.inc:583
+#: plugins/admin/departments/generic.tpl:16 plugins/admin/acl/acl_role.tpl:17
+#: plugins/admin/acl/class_aclRole.inc:705 plugins/admin/groups/generic.tpl:24
+#: plugins/admin/groups/class_groupGeneric.inc:1025
+#: include/class_SnapShotDialog.inc:169 html/getxls.php:160
+#: html/getxls.php:289
+msgid "Description"
+msgstr "描述"
 
-#: setup/setup_config2.tpl:160
+#: plugins/generic/references/contents.tpl:11
+msgid "Contents"
+msgstr "内容"
+
+#: plugins/generic/references/contents.tpl:18
+msgid "This object has no relationship to other objects."
+msgstr "这个对象和其他对象没有关系。"
+
+#: plugins/personal/password/class_password.inc:27
 #, fuzzy
-msgid "Enable user netatalk plugin"
-msgstr "管理 netatalk 账号"
+msgid "Change user passwords"
+msgstr "修改口令"
 
-#: setup/setup_config2.tpl:171
+#: plugins/personal/password/class_password.inc:79
+#: plugins/personal/password/class_password.inc:82
+#: plugins/personal/password/class_password.inc:85
+#: plugins/personal/password/class_password.inc:88
+#: plugins/personal/password/class_password.inc:91
+#: plugins/personal/password/class_password.inc:94
+#: plugins/personal/password/class_password.inc:108
+#: plugins/personal/password/class_password.inc:114
+#: plugins/personal/password/class_password.inc:142
+#: plugins/personal/generic/class_user.inc:1453
 #, fuzzy
-msgid "Government mode"
-msgstr "部门名称"
+msgid "User password"
+msgstr "清除口令"
 
-#: setup/setup_config2.tpl:180
-msgid "Mail settings"
-msgstr "邮件选项"
+#: plugins/personal/password/class_password.inc:80
+msgid "You need to specify your current password in order to proceed."
+msgstr "您需要输入当前口令才能继续。"
 
-#: setup/setup_config2.tpl:184
-msgid "Mail method"
-msgstr "邮件方法"
+#: plugins/personal/password/class_password.inc:83
+#: plugins/personal/generic/main.inc:81
+#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
+msgid ""
+"The passwords you've entered as 'New password' and 'Repeated new password' "
+"do not match."
+msgstr "您输入的“新口令”和“重复新口令”不匹配。"
 
-#: setup/setup_config2.tpl:188
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "disabled"
-msgstr "禁用"
+#: plugins/personal/password/class_password.inc:86
+msgid "The password you've entered as 'New password' is empty."
+msgstr "输入的“新口令”为空。"
 
-#: setup/setup_config2.tpl:200
-msgid "Account identification attribute"
-msgstr ""
+#: plugins/personal/password/class_password.inc:89 html/password.php:208
+msgid "The password used as new and current are too similar."
+msgstr "输入的新口令和当前口令非常相似。"
 
-#: setup/setup_config2.tpl:214
+#: plugins/personal/password/class_password.inc:92 html/password.php:213
+msgid "The password used as new is to short."
+msgstr "输入的新口令太短了。"
+
+#: plugins/personal/password/class_password.inc:95
+#, fuzzy, php-format
+msgid "External password changer reported a problem: %s."
+msgstr "外部口令更改程序报告错误:"
+
+#: plugins/personal/password/class_password.inc:109
+msgid ""
+"The password you've entered as your current password doesn't match the real "
+"one."
+msgstr "您输入的当前口令不正确。"
+
+#: plugins/personal/password/class_password.inc:115
 #, fuzzy
-msgid "Vacation templates"
-msgstr "工作站模板"
+msgid "You have no permission to change your password."
+msgstr "您无权修改您的口令。"
 
-#: setup/setup_config2.tpl:230
-msgid "Use Cyrus UNIX style"
-msgstr ""
+#: plugins/personal/password/class_password.inc:146
+#: plugins/personal/generic/class_user.inc:1447
+#: plugins/personal/posix/class_posixAccount.inc:1500
+msgid "My account"
+msgstr "我的账号"
 
-#: setup/setup_config2.tpl:240
-msgid "Snapshots / Undo"
-msgstr ""
+#: plugins/personal/password/nochange.tpl:2
+msgid "Password change not allowed"
+msgstr "不允许修改口令"
 
-#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
-msgid "Enable snapshots"
-msgstr ""
+#: plugins/personal/password/nochange.tpl:6
+msgid "You are not allowed to change your password at this time"
+msgstr "现在您无权修改您的口令"
 
-#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
-msgid "Snapshot base"
+#: plugins/personal/password/changed.tpl:3
+msgid ""
+"You've successfully changed your password. Remember to change all programms "
+"configured to use it as well."
+msgstr "您已经成功更改口令。还要记住更改相关程序设定。"
+
+#: plugins/personal/password/changed.tpl:9
+#: plugins/admin/departments/class_departmentManagement.inc:441
+#: plugins/admin/departments/dep_iframe.tpl:18 setup/class_setup.inc:261
+#: setup/class_setup.inc:263 include/functions.inc:1550
+msgid "Back"
+msgstr "返回"
+
+#: plugins/personal/password/password.tpl:4
+msgid ""
+"To change your personal password use the fields below. The changes take "
+"effect immediately. Please memorize the new password, because you wouldn't "
+"be able to login without it."
 msgstr ""
+"用下面的表格更改个人口令。口令更改即时生效。请记住新口令,忘记口令将无法登"
+"录。"
 
-#: setup/setup_config2.tpl:264 setup/setup_config2.tpl:309
-#: plugins/admin/ogroups/class_ogroupManagement.inc:507
-#: plugins/generic/references/class_reference.inc:64
-msgid "Server"
-msgstr "服务器"
+#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
+msgid ""
+"Changing the password affects your authentification on mail, proxy, samba "
+"and unix services."
+msgstr "修改口令将影响邮件,代理,samba,unix等的登录。"
 
-#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
-#: plugins/admin/users/class_divListUsers.inc:176
-#: plugins/admin/ogroups/class_ogroupManagement.inc:503
-msgid "User"
-msgstr "用户"
+#: plugins/personal/password/password.tpl:23
+#: plugins/personal/generic/password.tpl:11
+#: plugins/admin/users/password.tpl:17
+msgid "Repeat new password"
+msgstr "重复新口令"
 
-#: setup/setup_config2.tpl:282 setup/setup_config2.tpl:327
-#: setup/setup_migrate.tpl:225 ihtml/themes/default/login.tpl:47
-#: ihtml/themes/default/login.tpl:49 ihtml/themes/default/password.tpl:39
-#: plugins/personal/generic/paste_generic.tpl:20
-#: plugins/personal/password/class_password.inc:26
-msgid "Password"
-msgstr "口令"
+#: plugins/personal/password/password.tpl:39
+#: plugins/personal/generic/password.tpl:17
+#: plugins/admin/users/password.tpl:30
+msgid "Set password"
+msgstr "设置口令"
 
-#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+#: plugins/personal/password/password.tpl:41
+msgid "Clear fields"
+msgstr "清除字段"
+
+#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136
 #, fuzzy
-msgid "LDAP inspection"
-msgstr "PHP 安装检查"
+msgid "Password settings"
+msgstr "用户设置"
 
-#: setup/class_setupStep_Migrate.inc:107
-msgid "Analyze your current LDAP for GOsa compatibility"
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:3
+#: plugins/personal/generic/multiple_generic.tpl:117
+#: plugins/personal/generic/generic.tpl:238
+msgid "Certificates"
+msgstr "证书"
 
-#: setup/class_setupStep_Migrate.inc:113
-#, fuzzy
-msgid "Checking for root object"
-msgstr "检查 iconv 支持"
+#: plugins/personal/generic/generic_certs.tpl:8
+msgid "Standard certificate"
+msgstr "标准证书"
 
-#: setup/class_setupStep_Migrate.inc:119
-msgid "Checking permissions on LDAP database"
-msgstr ""
+#: plugins/personal/generic/generic_certs.tpl:21
+#: plugins/personal/generic/generic_certs.tpl:45
+#: plugins/personal/generic/generic_certs.tpl:69
+#: plugins/admin/users/class_divListUsers.inc:187
+#: plugins/admin/ogroups/class_divListOGroup.inc:204
+#: plugins/admin/departments/class_divListDepartment.inc:160
+#: plugins/admin/acl/class_divListACL.inc:172
+#: plugins/admin/groups/class_divListGroup.inc:192
+msgid "Remove"
+msgstr "删除"
 
-#: setup/class_setupStep_Migrate.inc:125
-#, fuzzy
-msgid "Checking for invisible departments"
-msgstr "检查 iconv 支持"
+#: plugins/personal/generic/generic_certs.tpl:33
+msgid "S/MIME certificate"
+msgstr "S/MIME 证书"
 
-#: setup/class_setupStep_Migrate.inc:131
-#, fuzzy
-msgid "Checking for invisible users"
-msgstr "检查 iconv 支持"
+#: plugins/personal/generic/generic_certs.tpl:57
+msgid "PKCS12 certificate"
+msgstr "PKCS12 证书"
 
-#: setup/class_setupStep_Migrate.inc:137
-#, fuzzy
-msgid "Checking for super administrator"
-msgstr "检查一些附加程序"
+#: plugins/personal/generic/generic_certs.tpl:78
+#: plugins/personal/generic/class_user.inc:1435
+msgid "Certificate serial number"
+msgstr "证书系列号"
 
-#: setup/class_setupStep_Migrate.inc:143
+#: plugins/personal/generic/class_user.inc:38
 #, fuzzy
-msgid "Checking for users outside the people tree"
-msgstr "检查 cups 模块"
+msgid "Edit organizational user settings"
+msgstr "应用程序设置"
 
-#: setup/class_setupStep_Migrate.inc:149
-#, fuzzy
-msgid "Checking for groups outside the groups tree"
-msgstr "检查 cups 模块"
+#: plugins/personal/generic/class_user.inc:297
+msgid "female"
+msgstr "女"
 
-#: setup/class_setupStep_Migrate.inc:155
-msgid "Checking for windows workstations outside the winstation tree"
+#: plugins/personal/generic/class_user.inc:297
+msgid "male"
+msgstr "男"
+
+#: plugins/personal/generic/class_user.inc:395
+msgid "Cannot upload file!"
 msgstr ""
 
-#: setup/class_setupStep_Migrate.inc:161
+#: plugins/personal/generic/class_user.inc:496
 #, fuzzy
-msgid "Checking for duplicate uid numbers"
-msgstr "检查函数 %s"
-
-#: setup/class_setupStep_Migrate.inc:167
-#, fuzzy
-msgid "Checking for duplicate gid numbers"
-msgstr "检查函数 %s"
-
-#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
-#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
-#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
-#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
-#: setup/class_setupStep_Migrate.inc:807
-#, fuzzy
-msgid "LDAP query failed"
-msgstr "Mysql 查询失败。"
-
-#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
-#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
-#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
-#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
-#: setup/class_setupStep_Migrate.inc:808
-msgid "Possibly the 'root object' is missing."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:211 setup/class_setupStep_Migrate.inc:260
-#: setup/class_setupStep_Migrate.inc:385 setup/class_setupStep_Migrate.inc:460
-#: setup/class_setupStep_Migrate.inc:596 setup/class_setupStep_Migrate.inc:726
-#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93
-#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/conflict.tpl:6
-#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57
-#: ihtml/themes/default/msg_dialog.tpl:102 include/class_tabs.inc:216
-#: include/functions.inc:699 include/functions.inc:2212
-#: include/functions.inc:2216 include/functions.inc:2222
-#: plugins/personal/posix/class_posixAccount.inc:820
-#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2
-#: plugins/admin/acl/remove.tpl:2
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2
-#: html/password.php:284 html/index.php:57 html/index.php:63
-#: html/index.php:419 html/index.php:425
-msgid "Warning"
-msgstr "警告"
-
-#: setup/class_setupStep_Migrate.inc:213
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'uidNumber'."
-msgstr "发现记录类型 '%s' 有重复。"
-
-#: setup/class_setupStep_Migrate.inc:217 setup/class_setupStep_Migrate.inc:266
-#: setup/class_setupStep_Migrate.inc:324 setup/class_setupStep_Migrate.inc:392
-#: setup/class_setupStep_Migrate.inc:467 setup/class_setupStep_Migrate.inc:539
-#: setup/class_setupStep_Migrate.inc:592 setup/class_setupStep_Migrate.inc:722
-#: setup/class_setupStep_Migrate.inc:877
-#: setup/class_setupStep_Migrate.inc:1635 setup/setup_checks.tpl:27
-#: setup/setup_checks.tpl:87 ihtml/themes/default/msg_dialog.tpl:76
-#: ihtml/themes/default/msg_dialog.tpl:78
-#: ihtml/themes/default/msg_dialog.tpl:131
-#: ihtml/themes/default/msg_dialog.tpl:133 include/utils/class_msgPool.inc:238
-#: plugins/personal/generic/main.inc:160
-#: plugins/admin/users/class_userManagement.inc:922
-#: plugins/admin/groups/class_groupManagement.inc:520
-#: plugins/admin/acl/tabs_acl_role.inc:67 plugins/admin/acl/tabs_acl.inc:81
-#: plugins/admin/ogroups/class_ogroupManagement.inc:453
-#, php-format
-msgid "Ok"
-msgstr "好"
-
-#: setup/class_setupStep_Migrate.inc:262
-#, fuzzy, php-format
-msgid "Found %s duplicate values for attribute 'gidNumber'."
-msgstr "发现记录类型 '%s' 有重复。"
-
-#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
-#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
-#: setup/class_setupStep_Migrate.inc:1612
-#: setup/class_setupStep_Migrate.inc:1625
-msgid "Failed"
-msgstr "失败"
-
-#: setup/class_setupStep_Migrate.inc:319
-#, php-format
-msgid ""
-"Found %s winstations outside the predefined winstation department ou '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
-#: setup/class_setupStep_Migrate.inc:728
-#, fuzzy
-msgid "Migrate"
-msgstr "创建"
-
-#: setup/class_setupStep_Migrate.inc:387
-#, php-format
-msgid "Found %s groups outside the configured tree '%s'."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
-#, fuzzy
-msgid "Move"
-msgstr "模式"
-
-#: setup/class_setupStep_Migrate.inc:462
-#, php-format
-msgid "Found %s user(s) outside the configured tree '%s'."
-msgstr ""
+msgid "Serial number"
+msgstr "电话号码"
 
-#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
-#, php-format
+#: plugins/personal/generic/class_user.inc:541
 msgid ""
-"The specified user '%s' does not have full access to your ldap database."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:597
-#, php-format
-msgid "Found %s user(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#: setup/class_setupStep_Migrate.inc:945
-#, fuzzy
-msgid "Migration error"
-msgstr "创建"
-
-#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
-#, fuzzy, php-format
-msgid "Cannot migrate department '%s':"
-msgstr "转到根部门"
+"(Some types of certificates are currently not supported and may be displayed "
+"as 'invalid'.)"
+msgstr "(目前有的种类的证书不支持,可能显示为“无效”)"
 
-#: setup/class_setupStep_Migrate.inc:727
+#: plugins/personal/generic/class_user.inc:551
 #, php-format
-msgid "Found %s department(s) that will not be visible in GOsa."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:882
-msgid "There is no GOsa administrator account inside your LDAP."
-msgstr ""
-
-#: setup/class_setupStep_Migrate.inc:883
-#: plugins/admin/users/class_divListUsers.inc:171
-#: plugins/admin/groups/class_divListGroup.inc:179
-#: plugins/admin/acl/class_divListACL.inc:162
-#: plugins/admin/departments/class_divListDepartment.inc:152
-#: plugins/admin/ogroups/class_divListOGroup.inc:191
-msgid "Create"
-msgstr "创建"
+msgid "Certificate is valid from %s to %s and is currently %s."
+msgstr "证书从 %s 到 %s 是有效的,当前为 %s。"
 
-#: setup/class_setupStep_Migrate.inc:945
-#, php-format
-msgid "Cannot add ACL for user '%s':"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:554
+msgid "valid"
+msgstr "有效"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Password error"
-msgstr "口令过期截止日"
+#: plugins/personal/generic/class_user.inc:555
+msgid "invalid"
+msgstr "无效"
 
-#: setup/class_setupStep_Migrate.inc:970
-#, fuzzy
-msgid "Provided passwords do not match!"
-msgstr "输入的新口令和重复口令不匹配!"
+#: plugins/personal/generic/class_user.inc:560
+msgid "No certificate installed"
+msgstr "未安装证书"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586 html/password.php:163
 #, fuzzy
-msgid "Input error"
-msgstr "PHP 错误"
+msgid "Password method"
+msgstr "口令存储"
 
-#: setup/class_setupStep_Migrate.inc:975
+#: plugins/personal/generic/class_user.inc:586
 #, fuzzy
-msgid "Specify a valid user ID!"
-msgstr "请输入一个有效的用户名!"
-
-#: setup/class_setupStep_Migrate.inc:1019 setup/setup_checks.tpl:30
-#: setup/setup_checks.tpl:91 ihtml/themes/default/msg_dialog.tpl:55
-#: ihtml/themes/default/msg_dialog.tpl:100 include/utils/class_msgPool.inc:105
-#: include/utils/class_msgPool.inc:117 include/utils/class_msgPool.inc:135
-#: include/utils/class_msgPool.inc:382 include/class_gosaSupportDaemon.inc:745
-#: include/class_gosaSupportDaemon.inc:765
-#: include/class_CopyPasteHandler.inc:350 include/class_plugin.inc:626
-#: include/class_plugin.inc:658 include/class_plugin.inc:689
-#: include/class_plugin.inc:1404 include/class_log.inc:145
-#: include/class_log.inc:157 include/class_log.inc:165
-#: include/class_log.inc:180 include/class_log.inc:218
-#: include/class_log.inc:241 include/class_msg_dialog.inc:97
-#: include/functions.inc:1264 plugins/personal/generic/class_user.inc:395
-#: plugins/personal/generic/class_user.inc:492
-#: plugins/personal/generic/class_user.inc:755
-#: plugins/personal/generic/class_user.inc:1285
-#: plugins/personal/generic/main.inc:104
-#: plugins/personal/posix/class_posixAccount.inc:1321
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#: plugins/admin/groups/class_groupGeneric.inc:966 html/index.php:225
-#: html/index.php:229
-msgid "Error"
-msgstr "错误"
-
-#: setup/class_setupStep_Migrate.inc:1019
-#, fuzzy, php-format
-msgid "Adding an administrative user failed: object '%s' already exists!"
-msgstr "为对象 '%s' 设置动作状态(FAIstate) 失败,值为 '%s'。"
+msgid "The selected password method is no longer available."
+msgstr "此应用程序不再可用。"
 
+#: plugins/personal/generic/class_user.inc:682
+#: plugins/personal/generic/class_user.inc:1020
+#: plugins/personal/posix/class_posixAccount.inc:663
+#: plugins/personal/posix/class_posixAccount.inc:929
+#: plugins/admin/users/class_userManagement.inc:545
+#: plugins/admin/ogroups/class_ogroup.inc:686
+#: plugins/admin/ogroups/class_ogroup.inc:700
+#: plugins/admin/departments/tabs_department.inc:55
+#: plugins/admin/departments/class_departmentGeneric.inc:190
+#: plugins/admin/departments/class_departmentGeneric.inc:369
+#: plugins/admin/departments/class_departmentGeneric.inc:666
+#: plugins/admin/departments/class_departmentGeneric.inc:697
+#: plugins/admin/acl/class_aclRole.inc:585
+#: plugins/admin/acl/class_aclRole.inc:625
+#: plugins/admin/acl/class_aclRole.inc:639
+#: plugins/admin/groups/class_groupGeneric.inc:577
+#: plugins/admin/groups/class_groupGeneric.inc:844
 #: setup/class_setupStep_Migrate.inc:1030
 #: setup/class_setupStep_Migrate.inc:1056
 #: setup/class_setupStep_Migrate.inc:1104
@@ -1080,5387 +1043,5485 @@ msgstr "为对象 '%s' 设置动作状态(FAIstate) 失败,值为 '%s'。"
 #: include/class_plugin.inc:1127 include/class_plugin.inc:1131
 #: include/class_plugin.inc:1208 include/class_plugin.inc:1266
 #: include/class_plugin.inc:1332 include/class_plugin.inc:1348
-#: include/class_acl.inc:1082 include/class_MultiSelectWindow.inc:529
-#: include/class_config.inc:228 include/functions.inc:344
+#: include/class_MultiSelectWindow.inc:529 include/class_config.inc:228
+#: include/class_acl.inc:1082 include/functions.inc:344
 #: include/functions.inc:371 include/functions.inc:380
 #: include/functions.inc:409 include/functions.inc:652
 #: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544 include/class_ldap.inc:636
-#: include/class_ldap.inc:1102 plugins/personal/generic/class_user.inc:671
-#: plugins/personal/generic/class_user.inc:1009
-#: plugins/personal/posix/class_posixAccount.inc:663
-#: plugins/personal/posix/class_posixAccount.inc:929
-#: plugins/admin/users/class_userManagement.inc:545
-#: plugins/admin/groups/class_groupGeneric.inc:577
-#: plugins/admin/groups/class_groupGeneric.inc:844
-#: plugins/admin/acl/class_aclRole.inc:585
-#: plugins/admin/acl/class_aclRole.inc:625
-#: plugins/admin/acl/class_aclRole.inc:639
-#: plugins/admin/departments/class_departmentGeneric.inc:190
-#: plugins/admin/departments/class_departmentGeneric.inc:365
-#: plugins/admin/departments/class_departmentGeneric.inc:660
-#: plugins/admin/departments/class_departmentGeneric.inc:691
-#: plugins/admin/departments/tabs_department.inc:54
-#: plugins/admin/ogroups/class_ogroup.inc:686
-#: plugins/admin/ogroups/class_ogroup.inc:700 html/index.php:255
-#: html/index.php:269 html/index.php:282
+#: include/functions.inc:2544 include/class_ldap.inc:649
+#: include/class_ldap.inc:1115 html/index.php:255 html/index.php:269
+#: html/index.php:282
 #, fuzzy
 msgid "LDAP error"
 msgstr "LDAP 错误:"
 
-#: setup/class_setupStep_Migrate.inc:1056
-#: setup/class_setupStep_Migrate.inc:1104
-#: setup/class_setupStep_Migrate.inc:1152
-#, fuzzy
-msgid "Cannot move users to the requested department!"
-msgstr "选择放置部门的子树"
-
-#: setup/class_setupStep_Migrate.inc:1066
-msgid "Winstation will be moved from"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1138
+#: plugins/personal/generic/class_user.inc:1150
+#: plugins/personal/generic/class_user.inc:1164
+#: plugins/personal/generic/class_user.inc:1166
+#: plugins/personal/generic/paste_generic.tpl:15
+#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
+#: html/password.php:219
+msgid "Login"
+msgstr "登录名"
 
-#: setup/class_setupStep_Migrate.inc:1066
-#: setup/class_setupStep_Migrate.inc:1115
-#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
-#, fuzzy
-msgid "to"
-msgstr "停止"
+#: plugins/personal/generic/class_user.inc:1144
+#: plugins/personal/generic/class_user.inc:1155
+#: plugins/personal/generic/class_user.inc:1192
+#: plugins/personal/generic/class_user.inc:1578
+#: plugins/admin/users/class_userManagement.inc:736
+#: plugins/admin/users/class_userManagement.inc:814
+#: plugins/admin/users/class_userManagement.inc:826
+#: plugins/admin/ogroups/class_ogroup.inc:614
+#: plugins/admin/ogroups/class_ogroup.inc:624
+#: plugins/admin/ogroups/class_ogroup.inc:771
+#: plugins/admin/departments/class_departmentGeneric.inc:251
+#: plugins/admin/departments/class_departmentGeneric.inc:253
+#: plugins/admin/departments/class_departmentGeneric.inc:259
+#: plugins/admin/departments/class_departmentGeneric.inc:267
+#: plugins/admin/departments/class_departmentGeneric.inc:271
+#: plugins/admin/acl/acl_role.tpl:7 plugins/admin/acl/class_aclRole.inc:703
+#: plugins/admin/acl/paste_role.tpl:4
+#: plugins/admin/groups/class_groupGeneric.inc:871
+#: plugins/admin/groups/class_groupGeneric.inc:877
+#: plugins/admin/groups/class_groupGeneric.inc:879
+#: plugins/admin/groups/class_groupGeneric.inc:891
+#: plugins/admin/groups/class_groupGeneric.inc:905
+#: plugins/admin/groups/class_groupGeneric.inc:912
+#: plugins/admin/groups/class_groupGeneric.inc:1023
+#: setup/setup_migrate.tpl:209 setup/setup_feedback.tpl:22 html/getxls.php:225
+#: html/getxls.php:292
+msgid "Name"
+msgstr "名称"
 
-#: setup/class_setupStep_Migrate.inc:1077
-#: setup/class_setupStep_Migrate.inc:1125
-msgid "Updating following references too"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1147
+#: plugins/personal/generic/class_user.inc:1189
+#: plugins/personal/generic/class_user.inc:1455
+#: plugins/personal/generic/class_user.inc:1575
+#: plugins/admin/users/class_userManagement.inc:739
+#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
+#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
+msgid "Given name"
+msgstr "名"
 
-#: setup/class_setupStep_Migrate.inc:1115
-msgid "Group will be moved from"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1170
+#: plugins/personal/generic/class_user.inc:1461
+#: plugins/personal/generic/class_user.inc:1560
+#: plugins/personal/generic/multiple_generic.tpl:88
+#: plugins/personal/generic/generic.tpl:210
+msgid "Homepage"
+msgstr "个人主页"
 
-#: setup/class_setupStep_Migrate.inc:1162
-msgid "User will be moved from"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1178
+#: plugins/personal/generic/class_user.inc:1566
+#: plugins/personal/generic/multiple_generic.tpl:247
+#: plugins/personal/generic/multiple_generic.tpl:438
+#: plugins/personal/generic/generic.tpl:355
+#: plugins/personal/generic/generic.tpl:523
+#: plugins/admin/users/class_divListUsers.inc:276
+#: plugins/admin/departments/class_departmentGeneric.inc:277
+#: plugins/admin/departments/class_departmentGeneric.inc:593
+#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
+#: html/getxls.php:299
+msgid "Fax"
+msgstr "传真"
 
-#: setup/class_setupStep_Migrate.inc:1172
-msgid "The following references will be updated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1181
+#: plugins/personal/generic/class_user.inc:1569
+#: plugins/personal/generic/multiple_generic.tpl:227
+#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
+msgid "Mobile"
+msgstr "手机"
 
-#: setup/class_setupStep_Migrate.inc:1613
-msgid ""
-"The LDAP root object is missing. It is required to use your LDAP service."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1184
+#: plugins/personal/generic/class_user.inc:1572
+#: plugins/personal/generic/multiple_generic.tpl:237
+#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
+#: html/getxls.php:302
+msgid "Pager"
+msgstr "呼机"
 
-#: setup/class_setupStep_Migrate.inc:1614
-#: setup/class_setupStep_Migrate.inc:1627
-msgid "Try to create root object"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1296
+#, fuzzy
+msgid "Cannot open certificate!"
+msgstr "无法打开指定证书!"
 
-#: setup/class_setupStep_Migrate.inc:1626
-msgid "Root object couldn't be created, you should try it on your own."
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1427
+#: plugins/personal/generic/multiple_generic.tpl:371
+#: plugins/personal/generic/generic.tpl:463
+msgid "Unit"
+msgstr "单元"
 
-#: setup/class_setupStep_Migrate.inc:1916
-#, fuzzy, php-format
-msgid "Copy '%s' to '%s' failed:"
-msgstr "移动 '%s' 到 '%s'"
+#: plugins/personal/generic/class_user.inc:1428
+#: plugins/personal/generic/multiple_generic.tpl:402
+#: plugins/personal/generic/generic.tpl:488
+msgid "House identifier"
+msgstr "家庭角色"
 
-#: setup/setup_license.tpl:8
-msgid "I have read the license and accept it"
+#: plugins/personal/generic/class_user.inc:1429
+#: plugins/personal/generic/multiple_generic.tpl:302
+#: plugins/personal/generic/generic.tpl:405
+msgid "Vocation"
+msgstr "行业"
+
+#: plugins/personal/generic/class_user.inc:1430
+#: plugins/personal/generic/multiple_generic.tpl:449
+#: plugins/personal/generic/generic.tpl:532
+msgid "Last delivery"
+msgstr "最后传递"
+
+#: plugins/personal/generic/class_user.inc:1431
+#: plugins/personal/generic/multiple_generic.tpl:360
+#: plugins/personal/generic/generic.tpl:454
+msgid "Person locality"
 msgstr ""
 
-#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
-#, fuzzy
-msgid "License"
-msgstr "行"
+#: plugins/personal/generic/class_user.inc:1432
+#: plugins/personal/generic/multiple_generic.tpl:312
+#: plugins/personal/generic/generic.tpl:413
+msgid "Unit description"
+msgstr "单元描述"
 
-#: setup/class_setupStep_License.inc:58
-msgid "Terms and conditions for usage"
+#: plugins/personal/generic/class_user.inc:1433
+#: plugins/personal/generic/multiple_generic.tpl:323
+#: plugins/personal/generic/generic.tpl:422
+msgid "Subject area"
 msgstr ""
 
-#: setup/class_setupStep_Welcome.inc:38
-#, fuzzy
-msgid "Welcome"
-msgstr "欢迎 %s!"
+#: plugins/personal/generic/class_user.inc:1434
+#: plugins/personal/generic/multiple_generic.tpl:334
+#: plugins/personal/generic/generic.tpl:431
+msgid "Functional title"
+msgstr "单位职称"
 
-#: setup/class_setupStep_Welcome.inc:39
-#, fuzzy
-msgid "The welcome message"
-msgstr "解除挂起的邮件"
+#: plugins/personal/generic/class_user.inc:1436
+#: plugins/personal/generic/multiple_generic.tpl:460
+#: plugins/personal/generic/generic.tpl:541
+msgid "Public visible"
+msgstr "公开"
 
-#: setup/class_setupStep_Welcome.inc:40
-#, fuzzy
-msgid "Welcome to GOsa setup wizard"
-msgstr "欢迎进入 Gosa 安装程序!"
+#: plugins/personal/generic/class_user.inc:1437
+#: plugins/personal/generic/multiple_generic.tpl:382
+#: plugins/personal/generic/generic.tpl:472
+msgid "Street"
+msgstr "街道"
 
-#: setup/setup_config3.tpl:2
-#, fuzzy
-msgid "GOsa core settings"
-msgstr "用户设置"
+#: plugins/personal/generic/class_user.inc:1438
+#: plugins/personal/generic/multiple_generic.tpl:345
+#: plugins/personal/generic/generic.tpl:440
+#: plugins/admin/acl/class_aclRole.inc:694
+#: plugins/admin/acl/class_divListACL.inc:166
+#: plugins/admin/acl/class_divListACL.inc:225
+msgid "Role"
+msgstr "角色"
 
-#: setup/setup_config3.tpl:6
-#, fuzzy
-msgid "Disable primary group filter"
-msgstr "显示用户组"
+#: plugins/personal/generic/class_user.inc:1439
+#: plugins/personal/generic/multiple_generic.tpl:392
+#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
+msgid "Postal code"
+msgstr "邮编"
 
-#: setup/setup_config3.tpl:18
+#: plugins/personal/generic/class_user.inc:1443
 #, fuzzy
-msgid "Display summary in listings"
-msgstr "显示匹配的宏"
+msgid "Generic user settings"
+msgstr "通用队列设置"
 
-#: setup/setup_config3.tpl:30
-#, fuzzy
-msgid "Honour administrative units"
-msgstr "组管理"
+#: plugins/personal/generic/class_user.inc:1448
+#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:216
+#: html/getxls.php:91 html/getxls.php:92 html/getxls.php:310
+msgid "Users"
+msgstr "用户"
 
-#: setup/setup_config3.tpl:42
-#, fuzzy
-msgid "Smarty compile directory"
-msgstr "用户主目录"
+#: plugins/personal/generic/class_user.inc:1452
+#: plugins/personal/generic/multiple_generic.tpl:47
+#: plugins/personal/generic/generic.tpl:170
+#: plugins/admin/users/class_divListUsers.inc:162
+#: plugins/admin/ogroups/class_ogroup.inc:772
+#: plugins/admin/ogroups/generic.tpl:26
+#: plugins/admin/ogroups/class_divListOGroup.inc:182
+#: plugins/admin/departments/class_departmentGeneric.inc:585
+#: plugins/admin/departments/class_divListDepartment.inc:144
+#: plugins/admin/departments/generic.tpl:35 plugins/admin/acl/acl_role.tpl:27
+#: plugins/admin/acl/class_aclRole.inc:704
+#: plugins/admin/acl/class_divListACL.inc:153
+#: plugins/admin/groups/class_divListGroup.inc:170
+#: plugins/admin/groups/generic.tpl:39
+#: plugins/admin/groups/class_groupGeneric.inc:1024 setup/setup_ldap.tpl:55
+msgid "Base"
+msgstr "位置"
 
-#: setup/setup_config3.tpl:51
-msgid "SNMP community"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1454 html/getxls.php:303
+msgid "Surename"
+msgstr ""
 
-#: setup/setup_config3.tpl:60
+#: plugins/personal/generic/class_user.inc:1456
 #, fuzzy
-msgid "Path for PPD storage"
-msgstr "口令存储"
+msgid "User identification"
+msgstr "用户信息"
 
-#: setup/setup_config3.tpl:77
+#: plugins/personal/generic/class_user.inc:1457
+#: plugins/personal/generic/generic.tpl:98
+msgid "Personal title"
+msgstr "个人称谓"
+
+#: plugins/personal/generic/class_user.inc:1458
+#: plugins/personal/generic/multiple_generic.tpl:23
+#: plugins/personal/generic/generic.tpl:108
+msgid "Academic title"
+msgstr "学位头衔"
+
+#: plugins/personal/generic/class_user.inc:1459 html/getxls.php:226
+msgid "Home postal address"
+msgstr "住宅地址"
+
+#: plugins/personal/generic/class_user.inc:1460
 #, fuzzy
-msgid "Path for kiosk profile storage"
-msgstr "Kiosk profile 设置"
+msgid "Home phone number"
+msgstr "电话号码"
 
-#: setup/setup_config3.tpl:96
+#: plugins/personal/generic/class_user.inc:1462
+#: plugins/personal/generic/multiple_generic.tpl:149
+#: plugins/personal/generic/generic.tpl:271 setup/setup_feedback.tpl:14
+#: html/getxls.php:301
+msgid "Organization"
+msgstr "组织/公司"
+
+#: plugins/personal/generic/class_user.inc:1464
+#: plugins/personal/generic/generic.tpl:119
+msgid "Date of birth"
+msgstr "生日"
+
+#: plugins/personal/generic/class_user.inc:1465
 #, fuzzy
-msgid "Enable system deployment"
-msgstr "系统管理"
+msgid "Gender"
+msgstr "发送者"
 
-#: setup/setup_config3.tpl:115
+#: plugins/personal/generic/class_user.inc:1466
 #, fuzzy
-msgid "Mail queue script"
-msgstr "é\82®ä»¶é\98\9få\88\97"
+msgid "Preferred language"
+msgstr "é¦\96é\80\89语ç§\8d"
 
-#: setup/setup_config3.tpl:134
+#: plugins/personal/generic/class_user.inc:1467
 #, fuzzy
-msgid "Notification script"
-msgstr "主机通知周期"
+msgid "Department number"
+msgstr "部门名称"
 
-#: setup/setup_config3.tpl:153
+#: plugins/personal/generic/class_user.inc:1468
 #, fuzzy
-msgid "Enable edit locking"
-msgstr "å\90¯ç\94¨é\82®ä»¶æ\89«æ\8f\8f"
+msgid "Employee number"
+msgstr "å\91\98工类å\88«"
 
-#: setup/setup_config3.tpl:172
-msgid "Login and session"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1469
+#: plugins/personal/generic/multiple_generic.tpl:189
+#: plugins/personal/generic/generic.tpl:303
+msgid "Employee type"
+msgstr "员工类别"
 
-#: setup/setup_config3.tpl:175
-#, fuzzy
-msgid "Login attribute"
-msgstr "电话属性"
+#: plugins/personal/generic/class_user.inc:1470
+#: plugins/personal/generic/multiple_generic.tpl:265
+#: plugins/personal/generic/generic.tpl:373
+#: plugins/admin/departments/class_departmentGeneric.inc:586
+#: plugins/admin/departments/generic.tpl:56
+#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
+msgid "Location"
+msgstr "位置"
 
-#: setup/setup_config3.tpl:186
-msgid "Enforce register_globals to be deactivated"
-msgstr ""
+#: plugins/personal/generic/class_user.inc:1471
+#: plugins/personal/generic/multiple_generic.tpl:275
+#: plugins/personal/generic/generic.tpl:381
+#: plugins/admin/departments/class_departmentGeneric.inc:590
+#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
+#: html/getxls.php:303
+msgid "State"
+msgstr "州/省"
 
-#: setup/setup_config3.tpl:198
+#: plugins/personal/generic/class_user.inc:1472
+#: plugins/personal/generic/paste_generic.tpl:47
+msgid "User picture"
+msgstr "用户图片"
+
+#: plugins/personal/generic/class_user.inc:1473
 #, fuzzy
-msgid "Enforce encrypted connections"
-msgstr "封锁加密归档"
+msgid "Room number"
+msgstr "电话号码"
 
-#: setup/setup_config3.tpl:210
+#: plugins/personal/generic/class_user.inc:1474
 #, fuzzy
-msgid "Warn if session is not encrypted"
-msgstr "会话不会被加密。"
+msgid "Telefon number"
+msgstr "电话号码"
 
-#: setup/setup_config3.tpl:222
+#: plugins/personal/generic/class_user.inc:1475
 #, fuzzy
-msgid "Remember dialog filter settings"
-msgstr "通用队列设置"
-
-#: setup/setup_config3.tpl:234
-#, fuzzy
-msgid "Session lifetime"
-msgstr "检测道会话冲突"
-
-#: setup/setup_config3.tpl:243
-#, fuzzy
-msgid "Debugging"
-msgstr "启用 debug"
-
-#: setup/setup_config3.tpl:247
-#, fuzzy
-msgid "Show PHP errors"
-msgstr "PHP 错误"
+msgid "Mobile number"
+msgstr "电话号码"
 
-#: setup/setup_config3.tpl:259
+#: plugins/personal/generic/class_user.inc:1476
 #, fuzzy
-msgid "Maximum LDAP query time"
-msgstr "最大文件大小"
-
-#: setup/setup_config3.tpl:277
-msgid "Log LDAP statistics"
-msgstr ""
+msgid "Pager number"
+msgstr "电话号码"
 
-#: setup/setup_config3.tpl:289
+#: plugins/personal/generic/class_user.inc:1477
 #, fuzzy
-msgid "Debug level"
-msgstr "日志级别"
+msgid "User certificates"
+msgstr "编辑证书"
 
-#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
-#, fuzzy
-msgid "Disabled"
-msgstr "禁用"
+#: plugins/personal/generic/class_user.inc:1479 html/getxls.php:228
+#: html/getxls.php:300 html/getxls.php:302
+msgid "Postal address"
+msgstr "地址"
 
-#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#: plugins/personal/generic/class_user.inc:1480
 #, fuzzy
-msgid "Enabled"
-msgstr "ç¦\81ç\94¨"
+msgid "Fax number"
+msgstr "ç³»å\88\97å\8f·"
 
-#: setup/setup_ldap.tpl:7
-msgid "Please choose the LDAP user to be used by GOsa"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:5
+#: plugins/personal/generic/generic.tpl:6
+msgid "Personal information"
+msgstr "个人信息"
 
-#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21
-msgid "Search"
-msgstr "查找"
+#: plugins/personal/generic/multiple_generic.tpl:13
+#: plugins/personal/generic/paste_generic.tpl:37
+#: plugins/personal/generic/generic.tpl:20
+#: plugins/personal/generic/generic.tpl:22
+#: plugins/personal/generic/generic.tpl:38
+#: plugins/personal/generic/generic_picture.tpl:5
+#: plugins/personal/generic/generic_picture.tpl:15
+msgid "Personal picture"
+msgstr "个人图片"
 
-#: setup/setup_ldap.tpl:16 setup/setup_migrate.tpl:133
-#: setup/setup_migrate.tpl:184 setup/setup_migrate.tpl:250
-#: setup/setup_migrate.tpl:305 setup/setup_migrate.tpl:358
-#: ihtml/themes/default/acl.tpl:8 ihtml/themes/default/acl.tpl:20
-#: ihtml/themes/default/acl.tpl:75 ihtml/themes/default/acl.tpl:89
-#: include/utils/class_msgPool.inc:244
-#: plugins/admin/users/class_userManagement.inc:925
-#: plugins/admin/groups/class_groupManagement.inc:523
-#: plugins/admin/acl/acl_role.tpl:49 plugins/admin/acl/acl_role.tpl:59
-#: plugins/admin/acl/acl_role.tpl:73
-#: plugins/admin/ogroups/class_ogroupManagement.inc:456
-#, php-format
-msgid "Apply"
-msgstr "应用"
+#: plugins/personal/generic/multiple_generic.tpl:33
+#: plugins/personal/generic/generic.tpl:157
+msgid "Preferred langage"
+msgstr "首选语种"
 
-#: setup/setup_ldap.tpl:17 setup/setup_migrate.tpl:135
-#: setup/setup_migrate.tpl:186 setup/setup_migrate.tpl:251
-#: setup/setup_migrate.tpl:307 setup/setup_migrate.tpl:360
-#: ihtml/themes/default/pwd_heimdal.tpl:200
-#: ihtml/themes/default/islocked.tpl:15
-#: ihtml/themes/default/snapshotdialog.tpl:44
-#: ihtml/themes/default/snapshotdialog.tpl:89 ihtml/themes/default/acl.tpl:77
-#: ihtml/themes/default/acl.tpl:91 ihtml/themes/default/copyPasteDialog.tpl:21
-#: ihtml/themes/default/remove.tpl:15 ihtml/themes/default/msg_dialog.tpl:79
-#: ihtml/themes/default/msg_dialog.tpl:134 include/utils/class_msgPool.inc:232
-#: plugins/personal/generic/generic_picture.tpl:35
-#: plugins/personal/generic/generic_certs.tpl:94
-#: plugins/personal/generic/password.tpl:19
-#: plugins/personal/generic/main.inc:162
-#: plugins/personal/posix/posix_groups.tpl:81
-#: plugins/personal/posix/trust_machines.tpl:41
-#: plugins/admin/users/template.tpl:50 plugins/admin/users/password.tpl:32
-#: plugins/admin/users/class_userManagement.inc:928
-#: plugins/admin/users/remove.tpl:16 plugins/admin/users/remove.tpl:19
-#: plugins/admin/groups/group_objects.tpl:57
-#: plugins/admin/groups/class_groupManagement.inc:526
-#: plugins/admin/groups/remove.tpl:18 plugins/admin/groups/remove.tpl:22
-#: plugins/admin/acl/acl_role.tpl:61 plugins/admin/acl/acl_role.tpl:75
-#: plugins/admin/acl/tabs_acl_role.inc:69 plugins/admin/acl/tabs_acl.inc:83
-#: plugins/admin/acl/remove.tpl:17 plugins/admin/acl/remove.tpl:21
-#: plugins/admin/departments/dep_move_confirm.tpl:17
-#: plugins/admin/departments/class_departmentManagement.inc:406
-#: plugins/admin/departments/remove.tpl:17
-#: plugins/admin/departments/remove.tpl:21
-#: plugins/admin/ogroups/class_ogroupManagement.inc:459
-#: plugins/admin/ogroups/ogroup_objects.tpl:56
-#: plugins/admin/ogroups/remove.tpl:17 plugins/admin/ogroups/remove.tpl:21
-#, php-format
-msgid "Cancel"
-msgstr "取消"
+#: plugins/personal/generic/multiple_generic.tpl:53
+#: plugins/personal/generic/generic.tpl:175
+msgid "Choose subtree to place user in"
+msgstr "将用户放到所选择子树中"
 
-#: setup/setup_ldap.tpl:25
-#, fuzzy
-msgid "LDAP connection"
-msgstr "断开"
+#: plugins/personal/generic/multiple_generic.tpl:56
+#: plugins/personal/generic/generic.tpl:180
+#: plugins/admin/ogroups/generic.tpl:34
+#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37
+#: plugins/admin/groups/generic.tpl:49
+msgid "Select a base"
+msgstr "选择一个位置"
 
-#: setup/setup_ldap.tpl:29
-msgid "Location name"
-msgstr "位置名称"
+#: plugins/personal/generic/multiple_generic.tpl:67
+#: plugins/personal/generic/multiple_generic.tpl:285
+#: plugins/personal/generic/generic.tpl:194
+#: plugins/personal/generic/generic.tpl:389
+#: plugins/admin/departments/class_departmentGeneric.inc:591
+#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
+msgid "Address"
+msgstr "住址"
 
-#: setup/setup_ldap.tpl:37
-#, fuzzy
-msgid "Connection URL"
-msgstr "连接 URL"
+#: plugins/personal/generic/multiple_generic.tpl:78
+#: plugins/personal/generic/generic.tpl:202
+msgid "Private phone"
+msgstr "私人电话"
 
-#: setup/setup_ldap.tpl:45
-#, fuzzy
-msgid "TLS connection"
-msgstr "连接"
+#: plugins/personal/generic/multiple_generic.tpl:105
+#: plugins/personal/generic/generic.tpl:223
+msgid "Password storage"
+msgstr "口令存储"
 
-#: setup/setup_ldap.tpl:55 plugins/personal/generic/class_user.inc:1441
-#: plugins/personal/generic/multiple_generic.tpl:47
-#: plugins/personal/generic/generic.tpl:170
-#: plugins/admin/users/class_divListUsers.inc:163
-#: plugins/admin/groups/class_groupGeneric.inc:1024
-#: plugins/admin/groups/class_divListGroup.inc:171
-#: plugins/admin/groups/generic.tpl:39 plugins/admin/acl/acl_role.tpl:27
-#: plugins/admin/acl/class_divListACL.inc:154
-#: plugins/admin/acl/class_aclRole.inc:704
-#: plugins/admin/departments/class_departmentGeneric.inc:579
-#: plugins/admin/departments/class_divListDepartment.inc:145
-#: plugins/admin/departments/generic.tpl:35
-#: plugins/admin/ogroups/class_ogroup.inc:772
-#: plugins/admin/ogroups/class_divListOGroup.inc:183
-#: plugins/admin/ogroups/generic.tpl:26
-msgid "Base"
-msgstr "位置"
+#: plugins/personal/generic/multiple_generic.tpl:121
+#: plugins/personal/generic/generic.tpl:241
+msgid "Edit certificates"
+msgstr "编辑证书"
 
-#: setup/setup_ldap.tpl:65
-#, fuzzy
-msgid "Reload"
-msgstr ""
+#: plugins/personal/generic/multiple_generic.tpl:137
+#: plugins/personal/generic/generic.tpl:259
+msgid "Organizational information"
+msgstr "组织信息"
 
-#: setup/setup_ldap.tpl:69
-#, fuzzy
-msgid "Authentication"
-msgstr "Nagios 鉴权"
+#: plugins/personal/generic/multiple_generic.tpl:169
+#: plugins/personal/generic/generic.tpl:287
+msgid "Department No."
+msgstr "部门编号"
 
-#: setup/setup_ldap.tpl:73
-msgid "Admin DN"
-msgstr "管理员 DN"
+#: plugins/personal/generic/multiple_generic.tpl:179
+#: plugins/personal/generic/generic.tpl:295
+msgid "Employee No."
+msgstr "员工编号"
 
-#: setup/setup_ldap.tpl:78
-#, fuzzy
-msgid "Select user"
-msgstr "删除用户"
+#: plugins/personal/generic/multiple_generic.tpl:207
+#: plugins/personal/generic/multiple_generic.tpl:418
+#: plugins/personal/generic/generic.tpl:321
+#: plugins/personal/generic/generic.tpl:503
+msgid "Room No."
+msgstr "房间号"
 
-#: setup/setup_ldap.tpl:86
-msgid "Automatically append LDAP base to admin DN"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:1
+msgid "User settings"
+msgstr "用户设置"
 
-#: setup/setup_ldap.tpl:93
-msgid "Admin password"
-msgstr "管理员口令"
+#: plugins/personal/generic/paste_generic.tpl:7
+#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
+msgid "Last name"
+msgstr "姓"
 
-#: setup/setup_ldap.tpl:101
-#, fuzzy
-msgid "Schema based settings"
-msgstr "Samba 设置"
+#: plugins/personal/generic/paste_generic.tpl:11
+#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
+msgid "First name"
+msgstr ""
 
-#: setup/setup_ldap.tpl:105
-msgid "Use rfc2307bis compliant groups"
-msgstr ""
+#: plugins/personal/generic/paste_generic.tpl:23
+msgid "Clear password"
+msgstr "清除口令"
 
-#: setup/setup_ldap.tpl:117
-#, fuzzy
-msgid "Current status"
-msgstr "当前版本"
+#: plugins/personal/generic/paste_generic.tpl:24
+msgid "Set new password"
+msgstr "设置新密码"
 
-#: setup/setup_ldap.tpl:121 ihtml/themes/default/MultiSelectWindow.tpl:44
-#: ihtml/themes/default/MultiSelectWindow.tpl:84
-#: ihtml/themes/default/msg_dialog.tpl:59
-#: ihtml/themes/default/msg_dialog.tpl:104
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "Information"
-msgstr "提示信息"
+#: plugins/personal/generic/paste_generic.tpl:52
+#: plugins/personal/generic/generic_picture.tpl:27
+msgid "Remove picture"
+msgstr "删除图片"
 
-#: setup/setup_migrate.tpl:5
+#: plugins/personal/generic/password.tpl:2
 msgid ""
-"During the LDAP inspection, we're going to check for several common pitfalls "
-"that may occur when migration to GOsa base LDAP administration. You may want "
-"to fix the problems below, in order to provide smooth services."
+"You have changed the method your password is stored in the ldap database. "
+"For that reason you've to enter your password at this point again. GOsa will "
+"then encode it with the selected method."
 msgstr ""
+"您已经修改了口令在 LDAP 数据库中存储的方法。因此您需要再输入您的口令。GOsa 将"
+"会按照您选择的方法重新编码。"
 
-#: setup/setup_migrate.tpl:33
-#, fuzzy
-msgid "Check again"
-msgstr "æ£\80æ\9f¥"
+#: plugins/personal/generic/generic.tpl:29
+#: plugins/personal/generic/generic.tpl:40
+msgid "Change picture"
+msgstr "æ\9b´æ\8d¢å\9b¾ç\89\87"
 
-#: setup/setup_migrate.tpl:37
-msgid "Move windows workstations into a valid windows workstation department"
+#: plugins/personal/generic/generic.tpl:52
+#: plugins/personal/generic/generic.tpl:73
+#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
+msgid "Multiple edit"
 msgstr ""
 
-#: setup/setup_migrate.tpl:39
-msgid ""
-"This dialog allows you to move the displayed windows workstations into a "
-"valid department"
-msgstr ""
+#: plugins/personal/generic/generic.tpl:62
+msgid "Template name"
+msgstr "模板名称"
 
-#: setup/setup_migrate.tpl:41
-msgid ""
-"Be careful with this tool, there may be references pointing to this "
-"workstations that can't be migrated."
-msgstr ""
+#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
+#: html/getxls.php:283
+msgid "Sex"
+msgstr "性别"
 
-#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
-#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
-#: setup/setup_migrate.tpl:346
-#, fuzzy
-msgid "Select all"
-msgstr "选择"
+#: plugins/personal/generic/generic.tpl:230 include/functions.inc:1010
+msgid "Configure"
+msgstr "配置"
 
-#: setup/setup_migrate.tpl:67
-msgid "Move selected windows workstations into the following GOsa department"
-msgstr ""
+#: plugins/personal/generic/generic.tpl:517
+msgid "Please use the phone tab"
+msgstr "请使用电话页面"
 
-#: setup/setup_migrate.tpl:72
+#: plugins/personal/generic/main.inc:104
 #, fuzzy
-msgid "Move selected workstations"
-msgstr "选择查看工作站"
-
-#: setup/setup_migrate.tpl:73
-msgid "What will be done here"
-msgstr ""
+msgid "You have no permission to set your password!"
+msgstr "您无权修改您的口令。"
 
-#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
-msgid "Close"
-msgstr "关闭"
+#: plugins/personal/generic/main.inc:195
+msgid "Generic user information"
+msgstr "用户一般信息"
 
-#: setup/setup_migrate.tpl:85
-msgid "Move groups into configured group tree"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:6
+msgid "Select groups to add"
+msgstr "选择要添加的组"
 
-#: setup/setup_migrate.tpl:88
-msgid ""
-"This dialog allows moving a couple of groups to the configured group tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:32
+msgid "Display groups of department"
+msgstr "显示部门的组"
 
-#: setup/setup_migrate.tpl:91
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"groups. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:35
+#: plugins/personal/posix/trust_machines.tpl:27
+#: plugins/admin/ogroups/ogroup_objects.tpl:42
+#: plugins/admin/groups/group_objects.tpl:40
+msgid "Choose the department the search will be based on"
+msgstr "选择一个部门来做查询"
 
-#: setup/setup_migrate.tpl:94
-msgid "Move selected groups into this group tree"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:44
+msgid "Display groups matching"
+msgstr "显示匹配的组"
 
-#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
-#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
-msgid "Hide changes"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:48
+#: plugins/admin/ogroups/class_divListOGroup.inc:104
+#: plugins/admin/groups/class_divListGroup.inc:95
+msgid "Regular expression for matching group names"
+msgstr "用于匹配组名的正则表达式"
 
-#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
-#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
-#, fuzzy
-msgid "Show changes"
-msgstr "显示软件包"
+#: plugins/personal/posix/posix_groups.tpl:55
+msgid "Display groups of user"
+msgstr "显示用户组"
 
-#: setup/setup_migrate.tpl:140
-msgid "Move users into configured user tree"
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:59
+#: plugins/admin/groups/class_divListGroup.inc:96
+msgid "User name of which groups are shown"
+msgstr "显示属于该组的用户名"
 
-#: setup/setup_migrate.tpl:142
-msgid ""
-"This dialog allows moving a couple of users to the configured user tree. "
-"Doing this may straighten your LDAP service."
-msgstr ""
+#: plugins/personal/posix/posix_groups.tpl:68
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/groups/class_divListGroup.inc:92
+#, fuzzy
+msgid "Search in subtrees"
+msgstr "在子树中查找"
 
-#: setup/setup_migrate.tpl:145
-msgid ""
-"Be careful with this option! There may be references pointing to these "
-"users. The GOsa setup can't migrate references, so you may want to cancel "
-"the migration in this case."
+#: plugins/personal/posix/class_posixAccount.inc:38
+msgid "Edit users POSIX extensions"
 msgstr ""
 
-#: setup/setup_migrate.tpl:148
-#, fuzzy
-msgid "Move selected users into this people tree"
-msgstr "创建使用该模板的用户"
-
-#: setup/setup_migrate.tpl:198
-#, fuzzy
-msgid "Next"
-msgstr "下一个"
+#: plugins/personal/posix/class_posixAccount.inc:154
+msgid "expired"
+msgstr "过期"
 
-#: setup/setup_migrate.tpl:199
-#, fuzzy
-msgid "Abort"
-msgstr "端口"
+#: plugins/personal/posix/class_posixAccount.inc:156
+msgid "grace time active"
+msgstr "时间限制激活"
 
-#: setup/setup_migrate.tpl:201
-#, fuzzy
-msgid "Create a new GOsa administrator account"
-msgstr "创建 netatalk 账号"
+#: plugins/personal/posix/class_posixAccount.inc:159
+msgid "active, password not changable"
+msgstr "活动,口令不可更改"
 
-#: setup/setup_migrate.tpl:204
-msgid ""
-"This dialog will automatically add a new super administrator to your LDAP "
-"tree."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:161
+msgid "active, password expired"
+msgstr "活动,口令过期"
 
-#: setup/setup_migrate.tpl:217
-#: plugins/personal/posix/class_posixAccount.inc:1508 html/getxls.php:102
-#: html/getxls.php:137 html/getxls.php:160 html/getxls.php:349
-#: html/getxls.php:366
-msgid "User ID"
-msgstr "用户 ID"
+#: plugins/personal/posix/class_posixAccount.inc:163
+msgid "active"
+msgstr "活动"
 
-#: setup/setup_migrate.tpl:233
-#, fuzzy
-msgid "Password (again)"
-msgstr "口令存储"
+#: plugins/personal/posix/class_posixAccount.inc:208
+msgid "unconfigured"
+msgstr "未配置"
 
-#: setup/setup_migrate.tpl:258
-msgid ""
-"The listed departments are currently invisible in the GOsa user interface. "
-"If you want to change this for a couple of entries, select them and use the "
-"migrate button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:219
+msgid "automatic"
+msgstr "自动"
 
-#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
-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/personal/posix/class_posixAccount.inc:275
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/personal/posix/class_posixAccount.inc:297
+#: plugins/personal/posix/class_posixAccount.inc:300
+msgid "POSIX"
 msgstr ""
 
-#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
-#, fuzzy
-msgid "Current"
-msgstr "当前版本"
-
-#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
-#, fuzzy
-msgid "After migration"
-msgstr "用户管理"
+#: plugins/personal/posix/class_posixAccount.inc:295
+#: plugins/admin/users/class_divListUsers.inc:270
+#: plugins/admin/ogroups/tabs_ogroups.inc:168
+#: plugins/admin/groups/class_divListGroup.inc:266
+msgid "Environment"
+msgstr "环境设置"
 
-#: setup/setup_migrate.tpl:313
-msgid ""
-"The listed users are currenlty invisble in the GOsa user interface. If you "
-"want to change this for a couple of users, just select them and use the "
-"'Migrate' button below."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:465
+#, php-format
+msgid "Password can't be changed up to %s days after last change"
+msgstr "自上次更改以来 %s 天,不能修改口令"
 
-#: setup/setup_checks.tpl:9
-msgid "PHP module and extension checks"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:469
+#, php-format
+msgid "Password must be changed after %s days"
+msgstr "口令必须在 %s 天之后更改"
 
-#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
-msgid "GOsa will NOT run without fixing this."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:473
+#, php-format
+msgid "Disable account after %s days of inactivity after password expiery"
+msgstr "口令过期 %s 天后,禁用账号"
 
-#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
-msgid "GOsa will run without fixing this."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:477
+#, php-format
+msgid "Warn user %s days before password expiery"
+msgstr "在口令过期 %s 天之前警告用户"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "PHP setup configuration"
-msgstr "PHP 安装检查"
+#: plugins/personal/posix/class_posixAccount.inc:608
+#: setup/setup_config2.tpl:188
+msgid "disabled"
+msgstr "禁用"
 
-#: setup/setup_checks.tpl:67
-#, fuzzy
-msgid "show information"
-msgstr "个人信息"
+#: plugins/personal/posix/class_posixAccount.inc:608
+msgid "full access"
+msgstr "完全访问权限"
 
-#: setup/class_setupStep_Finish.inc:37
-#: ihtml/themes/default/copyPasteDialog.tpl:32
-msgid "Finish"
-msgstr "完成"
+#: plugins/personal/posix/class_posixAccount.inc:609
+msgid "allow access to these hosts"
+msgstr "允许访问这些主机"
 
-#: setup/class_setupStep_Finish.inc:38
-#, fuzzy
-msgid "Write configuration file"
-msgstr "配置文件"
+#: plugins/personal/posix/class_posixAccount.inc:820
+msgid "Timeout while waiting for lock. Ignoring lock!"
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:39
+#: plugins/personal/posix/class_posixAccount.inc:914
 #, fuzzy
-msgid "Finish - write the configuration file"
-msgstr "需要 XML 功能来解析配置文件。"
+msgid "Uid number"
+msgstr "系列号"
 
-#: setup/class_setupStep_Finish.inc:100
-#, fuzzy
+#: plugins/personal/posix/class_posixAccount.inc:914
 msgid ""
-"Your configuration file is currently world readable. Please update the file "
-"permissions!"
-msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
+"A duplicated uid number was written for this user, if this was not intended "
+"please verify all used uidNumbers."
+msgstr ""
 
-#: setup/class_setupStep_Finish.inc:102
-#, fuzzy
-msgid "The configuration is currently not readable or it does not exists."
-msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
+#: plugins/personal/posix/class_posixAccount.inc:949
+#: plugins/personal/posix/class_posixAccount.inc:1142
+msgid "Group of user"
+msgstr "用户组"
 
-#: setup/class_setupStep_Finish.inc:111
-#, fuzzy, 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. You may want to execute these commands to achieve this "
-"requirement:"
-msgstr ""
-"将文件保存在 GOsa 配置文件目录中,确认 Web 服务器运行的账号能够读取 gosa."
-"conf,其他用户则无权访问。您可以执行如下命令来实现:"
-
-#: setup/class_setupStep_Ldap.inc:53
-#, fuzzy
-msgid "LDAP setup"
-msgstr "LDAP 服务器"
-
-#: setup/class_setupStep_Ldap.inc:54
-#, fuzzy
-msgid "LDAP connection setup"
-msgstr "断开"
+#: plugins/personal/posix/class_posixAccount.inc:1005
+#: plugins/personal/posix/class_posixAccount.inc:1008
+#: plugins/personal/posix/class_posixAccount.inc:1078
+#: plugins/personal/posix/class_posixAccount.inc:1081
+#: plugins/personal/posix/class_posixAccount.inc:1506
+#: plugins/personal/posix/paste_generic.tpl:8
+#: plugins/personal/posix/generic.tpl:7
+msgid "Home directory"
+msgstr "用户主目录"
 
-#: setup/class_setupStep_Ldap.inc:55
-msgid ""
-"This dialog performs the basic configuration of the LDAP connectivity for "
-"GOsa."
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1016
+#: plugins/personal/posix/class_posixAccount.inc:1019
+#: plugins/personal/posix/paste_generic.tpl:28
+#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
+msgid "UID"
+msgstr "UID"
 
-#: setup/class_setupStep_Ldap.inc:105
-#, fuzzy, php-format
-msgid "Anonymous bind failed on server '%s'."
-msgstr "为服务器 '%s' 插入新宏失败。"
+#: plugins/personal/posix/class_posixAccount.inc:1023
+#: plugins/personal/posix/class_posixAccount.inc:1026
+#: plugins/personal/posix/paste_generic.tpl:37
+#: plugins/personal/posix/generic.tpl:67
+#: plugins/admin/groups/class_groupGeneric.inc:921
+#: plugins/admin/groups/class_groupGeneric.inc:924
+#: plugins/admin/groups/class_groupGeneric.inc:1030
+msgid "GID"
+msgstr "GID"
 
-#: setup/class_setupStep_Ldap.inc:107
-#, fuzzy, php-format
-msgid "Bind as user '%s' failed on server '%s'."
-msgstr "为服务器 '%s' 插入新宏失败。"
+#: plugins/personal/posix/class_posixAccount.inc:1034
+#: plugins/personal/posix/class_posixAccount.inc:1087
+#, fuzzy
+msgid "shadowMin"
+msgstr "显示终端"
 
-#: setup/class_setupStep_Ldap.inc:112
-#, php-format
-msgid "Anonymous bind on server '%s' succeeded."
+#: plugins/personal/posix/class_posixAccount.inc:1039
+#: plugins/personal/posix/class_posixAccount.inc:1092
+msgid "shadowMax"
 msgstr ""
 
-#: setup/class_setupStep_Ldap.inc:113
+#: plugins/personal/posix/class_posixAccount.inc:1044
+#: plugins/personal/posix/class_posixAccount.inc:1097
 #, fuzzy
-msgid "Please specify user and password."
-msgstr "请输入您的口令!"
-
-#: setup/class_setupStep_Ldap.inc:115
-#, fuzzy, php-format
-msgid "Bind as user '%s' on server '%s' succeeded."
-msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。"
+msgid "shadowWarning"
+msgstr "显示分区"
 
-#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
+#: plugins/personal/posix/class_posixAccount.inc:1058
+#: plugins/personal/posix/class_posixAccount.inc:1111
 #, fuzzy
-msgid "Language setup"
-msgstr "语言"
+msgid "shadowInactive"
+msgstr "显示打印机"
 
-#: setup/class_setupStep_Language.inc:42
-msgid "This step allows you to select your preferred language."
+#: plugins/personal/posix/class_posixAccount.inc:1321
+msgid "Cannot allocate a free ID: too many users!"
 msgstr ""
 
-#: setup/class_setupStep_Language.inc:47
-#, fuzzy
-msgid "Automatic"
-msgstr "自动"
-
-#: setup/class_setup.inc:196
+#: plugins/personal/posix/class_posixAccount.inc:1496
 #, fuzzy
-msgid "Completed"
-msgstr "不完整"
+msgid "POSIX account"
+msgstr "GLPI 账号"
 
-#: setup/class_setup.inc:261 setup/class_setup.inc:263
-#: include/functions.inc:1550 plugins/personal/generic/main.inc:170
-#: plugins/personal/password/changed.tpl:9
-#: plugins/admin/departments/dep_iframe.tpl:18
-#: plugins/admin/departments/class_departmentManagement.inc:441
-msgid "Back"
-msgstr "返回"
+#: plugins/personal/posix/class_posixAccount.inc:1507
+#: plugins/personal/posix/generic.tpl:15
+msgid "Shell"
+msgstr "Shell"
 
-#: setup/class_setup.inc:266 ihtml/themes/default/snapshotdialog.tpl:87
-#: plugins/admin/users/template.tpl:48
-#: plugins/admin/departments/class_departmentGeneric.inc:459
-#: plugins/admin/departments/class_departmentGeneric.inc:554
-msgid "Continue"
-msgstr "继续"
+#: plugins/personal/posix/class_posixAccount.inc:1508
+#: setup/setup_migrate.tpl:217 html/getxls.php:102 html/getxls.php:137
+#: html/getxls.php:160 html/getxls.php:349 html/getxls.php:366
+msgid "User ID"
+msgstr "用户 ID"
 
-#: setup/setup_config1.tpl:2
-msgid "Look and feel"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1509
+#, fuzzy
+msgid "Group ID"
+msgstr "组"
 
-#: setup/setup_config1.tpl:6
+#: plugins/personal/posix/class_posixAccount.inc:1511
 #, fuzzy
-msgid "Theme"
-msgstr "模板"
+msgid "Force password change on login"
+msgstr "不允许修改口令"
 
-#: setup/setup_config1.tpl:15
+#: plugins/personal/posix/class_posixAccount.inc:1512
 #, fuzzy
-msgid "Apache"
-msgstr "缓存"
+msgid "Shadow min"
+msgstr "显示终端"
 
-#: setup/setup_config1.tpl:19
-msgid "Compress output send to browser"
+#: plugins/personal/posix/class_posixAccount.inc:1513
+msgid "Shadow max"
 msgstr ""
 
-#: setup/setup_config1.tpl:27
+#: plugins/personal/posix/class_posixAccount.inc:1514
 #, fuzzy
-msgid "People and group storage"
-msgstr "People dn attribute"
+msgid "Shadow warning"
+msgstr "显示分区"
 
-#: setup/setup_config1.tpl:30
+#: plugins/personal/posix/class_posixAccount.inc:1515
 #, fuzzy
-msgid "People DN attribute"
-msgstr "People dn attribute"
+msgid "Shadow inactive"
+msgstr "显示打印机"
 
-#: setup/setup_config1.tpl:41
-msgid "People storage subtree"
-msgstr ""
+#: plugins/personal/posix/class_posixAccount.inc:1516
+#, fuzzy
+msgid "Shadow expire"
+msgstr "显示人员"
 
-#: setup/setup_config1.tpl:50
+#: plugins/personal/posix/class_posixAccount.inc:1517
 #, fuzzy
-msgid "Group storage subtree"
-msgstr "忽略子树"
+msgid "System trust model"
+msgstr "信赖的系统"
 
-#: setup/setup_config1.tpl:59
-msgid "Include personal title in user DN"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:4
+msgid "Posix settings"
+msgstr "Posix 设置"
 
-#: setup/setup_config1.tpl:70
-msgid "Relaxed naming policies"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:23
+#: plugins/personal/posix/generic.tpl:52
+msgid "Force UID/GID"
+msgstr "指定 UID/GID"
 
-#: setup/setup_config1.tpl:81
-#, fuzzy
-msgid "Automatic uids"
-msgstr "自动"
+#: plugins/personal/posix/paste_generic.tpl:47
+#: plugins/personal/posix/generic.tpl:82
+msgid "Group membership"
+msgstr "组成员身份"
 
-#: setup/setup_config1.tpl:97 setup/class_setupStep_Config1.inc:118
-msgid "GID / UID min id"
-msgstr ""
+#: plugins/personal/posix/paste_generic.tpl:54
+#: plugins/personal/posix/generic.tpl:84
+msgid "(Warning: more than 16 groups are not supported by NFS!)"
+msgstr "(警告:NFS不支持超过 16 个组!)"
 
-#: setup/setup_config1.tpl:113
-#, fuzzy
-msgid "Number base for people/groups"
-msgstr "用户/组起始 ID"
+#: plugins/personal/posix/generic.tpl:25
+msgid "Primary group"
+msgstr "主要用户组"
 
-#: setup/setup_config1.tpl:121
-msgid "Hook for number base"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:36
+msgid "Status"
+msgstr "状态"
 
-#: setup/setup_config1.tpl:136 plugins/personal/password/main.inc:48
+#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
 #, fuzzy
-msgid "Password settings"
-msgstr "用户设置"
+msgid "In all groups"
+msgstr "显示邮件组"
 
-#: setup/setup_config1.tpl:140
+#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
 #, fuzzy
-msgid "Password encryption algorithm"
-msgstr "加密算法"
+msgid "Not in all groups"
+msgstr "显示邮件组"
 
-#: setup/setup_config1.tpl:151
-#, fuzzy
-msgid "Password restrictions"
-msgstr "口令过期截止日"
+#: plugins/personal/posix/generic.tpl:118
+msgid "Account"
+msgstr "账户"
 
-#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
-msgid "Password minimum length"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:125
+msgid "System trust"
+msgstr "信赖的系统"
 
-#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
-msgid "Different characters from old password"
-msgstr ""
+#: plugins/personal/posix/generic.tpl:127
+#: plugins/personal/posix/generic.tpl:155
+msgid "Trust mode"
+msgstr "信赖模式"
 
-#: setup/setup_config1.tpl:182
-#, fuzzy
-msgid "Password change hook"
-msgstr "不允许修改口令"
+#: plugins/personal/posix/posix_shadow.tpl:9
+msgid "User must change password on first login"
+msgstr "用户必须在第一次登录修改口令"
 
-#: setup/setup_config1.tpl:198
-msgid "Use SASL for kerberos"
-msgstr ""
+#: plugins/personal/posix/posix_shadow.tpl:34
+msgid "Password expires on"
+msgstr "口令过期截止日"
 
-#: setup/setup_config1.tpl:209
+#: plugins/personal/posix/main.inc:131
 #, fuzzy
-msgid "Use account expiration"
-msgstr "账号过期于"
+msgid "POSIX settings"
+msgstr "Posix 设置"
 
-#: setup/setup_config1.tpl:221
-msgid ""
-"GOsa supports several encryption types for your passwords. Normally this is "
-"adjustable via user templates, but you can specify a default method to be "
-"used here, too."
-msgstr ""
-"GOsa 支持好几种口令加密算法。通常可以通过用户模板调整算法,但是在这里您可以定"
-"义一个缺省方法。"
+#: plugins/personal/posix/trust_machines.tpl:6
+msgid "Select systems to add"
+msgstr "选择要添加的系统"
 
-#: setup/setup_config1.tpl:222
-#, fuzzy
-msgid ""
-"GOsa always acts as admin and manages access rights internally. This is a "
-"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
-"this to work, we need the admin DN and the corresponding password."
-msgstr ""
-"GOsa 总是作为 LDAP 管理员,并且管理内部权限。这是一个临时方案直到 OpenLDAP 目"
-"录 ACI 被完全实现。为了让其实现,我们需要管理员 DN 和正确的口令。"
+#: plugins/personal/posix/trust_machines.tpl:26
+msgid "Display systems of department"
+msgstr "显示部门的系统"
 
-#: setup/setup_config1.tpl:223
-msgid ""
-"Some basic LDAP parameters are tunable and affect the locations where GOsa "
-"saves people and groups, including the way accounts get created. Check the "
-"values below if the fit your needs."
-msgstr ""
-"有的基本的 LDAP 参数是可调的,并影响位置Gosa 保存用户和组的地方。包括账号创建"
-"的方式。点击下面的值如果它们不符合您的需要。"
+#: plugins/personal/posix/trust_machines.tpl:30
+msgid "Display systems matching"
+msgstr "显示匹配的系统"
 
-#: setup/setup_config1.tpl:224
-#, fuzzy
-msgid ""
-"GOsa has modular support for several mail methods. These methods provide "
-"interfaces to users mailboxes and general handling    for quotas. You can "
-"choose the dummy plugin to leave all your mail settings untouched."
+#: plugins/personal/posix/trust_machines.tpl:31
+msgid "Regular expression for matching addresses"
+msgstr "匹配地址的正则表达式"
+
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
+msgid "Bug submitter"
 msgstr ""
-"GOsa 通过模组支持几种邮件方法。这些方法提供用户邮箱的界面以及管理用户空间。您"
-"可以选择选择 dummy 插件以保持您的邮件设置不被更改。"
 
-#: setup/setup_welcome.tpl:4
+#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
 msgid ""
-"This seems to be the first time you start GOsa - we didn't find any "
-"configuration right now. This simple wizard intends to help you while "
-"setting it up."
+"<a\thref='https://oss.gonicus.de/labs/gosa/"
+"newticket'\ttarget='_blank'>Bugsubmitter</a>"
 msgstr ""
 
-#: setup/setup_welcome.tpl:8
-msgid "What will the wizard do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:55
+#: plugins/admin/users/class_divListUsers.inc:56
+msgid "List of users"
+msgstr "用户列表"
 
-#: setup/setup_welcome.tpl:11
-msgid "Create a basic, single site configuration"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:81
+#: plugins/admin/ogroups/class_divListOGroup.inc:84
+#: plugins/admin/departments/generic.tpl:4
+#: plugins/admin/groups/class_divListGroup.inc:80
+msgid "Properties"
+msgstr "属性"
 
-#: setup/setup_welcome.tpl:12
-msgid "Tries to find problems within your PHP and LDAP setup"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:82
+#: plugins/admin/users/class_divListUsers.inc:168
+#: plugins/admin/ogroups/class_divListOGroup.inc:85
+#: plugins/admin/ogroups/class_divListOGroup.inc:188
+#: plugins/admin/departments/class_divListDepartment.inc:68
+#: plugins/admin/departments/class_divListDepartment.inc:149
+#: plugins/admin/acl/class_divListACL.inc:74
+#: plugins/admin/acl/class_divListACL.inc:159
+#: plugins/admin/groups/class_divListGroup.inc:81
+#: plugins/admin/groups/class_divListGroup.inc:176
+msgid "Actions"
+msgstr "动作"
 
-#: setup/setup_welcome.tpl:13
-msgid "Let you choose from a set of basic and advanced configuration switches"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Select to see template pseudo users"
+msgstr "选择查看伪用户模板"
 
-#: setup/setup_welcome.tpl:14
-msgid "Guided migration of existing LDAP trees"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:84
+msgid "Show templates"
+msgstr "显示模板"
 
-#: setup/setup_welcome.tpl:17
-msgid "What will the wizard NOT do for you?"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Select to see users that have only a GOsa object"
+msgstr "选择查看只拥有一个 GOsa 对象的用户"
 
-#: setup/setup_welcome.tpl:20
-msgid "Find every possible configuration error"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:85
+msgid "Show functional users"
+msgstr "显示用户"
 
-#: setup/setup_welcome.tpl:21
-msgid "Migrate every possible LDAP setup - create backup dumps!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Select to see users that have posix settings"
+msgstr "显示具有 posix 设置的用户"
 
-#: setup/setup_welcome.tpl:25
-#, fuzzy
-msgid "To continue..."
-msgstr "安装继续..."
+#: plugins/admin/users/class_divListUsers.inc:86
+msgid "Show unix users"
+msgstr "显示 unix 用户"
 
-#: setup/setup_welcome.tpl:28
-msgid ""
-"For security reasons you need to authenticate for the installation by "
-"creating the file '/tmp/gosa.auth', containing the current session ID on the "
-"servers local filesystem. This can be done by executing the following "
-"command:"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Select to see users that have mail settings"
+msgstr "显示具有邮件设置的用户"
 
-#: setup/setup_welcome.tpl:34
-msgid "Click the 'Continue' button when you've finished."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:87
+msgid "Show mail users"
+msgstr "显示邮件用户"
 
-#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
-#, fuzzy
-msgid "GOsa settings 2/3"
-msgstr "用户设置"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Select to see users that have samba settings"
+msgstr "显示具有 samba 设置的用户"
 
-#: setup/class_setupStep_Config2.inc:87
-#, fuzzy
-msgid "Customize special parameters"
-msgstr "检查参数"
+#: plugins/admin/users/class_divListUsers.inc:88
+msgid "Show samba users"
+msgstr "显示 samba 用户"
 
-#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
-#, fuzzy
-msgid "GOsa settings 1/3"
-msgstr "用户设置"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Select to see users that have proxy settings"
+msgstr "显示具有代理设置的用户"
 
-#: setup/class_setupStep_Config1.inc:76
-#, fuzzy
-msgid "GOsa generic settings"
-msgstr "用户设置"
+#: plugins/admin/users/class_divListUsers.inc:89
+msgid "Show proxy users"
+msgstr "显示代理用户"
 
-#: setup/class_setupStep_Config1.inc:118
-#, fuzzy, php-format
-msgid "The specified value for '%s' must be a numeric value"
-msgstr "指定 '%s' 的值必须是数字类型。"
+#: plugins/admin/users/class_divListUsers.inc:93
+#: plugins/admin/ogroups/ogroup_objects.tpl:38
+#: plugins/admin/ogroups/class_divListOGroup.inc:101
+#: plugins/admin/departments/class_divListDepartment.inc:72
+#: plugins/admin/acl/class_divListACL.inc:80
+#: plugins/admin/groups/class_divListGroup.inc:92
+msgid "Select to search within subtrees"
+msgstr "选择在子树中查询"
 
-#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
-#, php-format
-msgid "Don't add a trailing comma to '%s'."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:96
+#: plugins/admin/groups/group_objects.tpl:46
+msgid "Display users matching"
+msgstr "显示匹配的用户"
 
-#: setup/class_setupStep_Config1.inc:122
-msgid "People storage ou"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+msgid "Submit department"
+msgstr "提交部门"
 
-#: setup/class_setupStep_Config1.inc:126
-msgid "Group storage ou"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:164
+#: plugins/admin/ogroups/class_divListOGroup.inc:184
+#: plugins/admin/departments/class_divListDepartment.inc:146
+#: plugins/admin/acl/class_divListACL.inc:155
+#: plugins/admin/groups/class_divListGroup.inc:171
+#: include/class_MultiSelectWindow.inc:263
+msgid "Submit"
+msgstr "提交"
 
-#: setup/class_setupStep_Config1.inc:130
-#, fuzzy
-msgid "Uid base must be numeric"
-msgstr "超时必须填数字"
+#: plugins/admin/users/class_divListUsers.inc:170
+#: plugins/admin/ogroups/class_divListOGroup.inc:190
+#: plugins/admin/departments/class_divListDepartment.inc:151
+#: plugins/admin/acl/class_divListACL.inc:161
+#: plugins/admin/groups/class_divListGroup.inc:178
+#: setup/class_setupStep_Migrate.inc:883
+msgid "Create"
+msgstr "创建"
 
-#: setup/class_setupStep_Config1.inc:134
-#, fuzzy
-msgid "The given password minimum length is not numeric."
-msgstr "Sieve 端口应为数字。"
+#: plugins/admin/users/class_divListUsers.inc:175
+#: plugins/admin/ogroups/class_ogroupManagement.inc:503
+#: setup/setup_config2.tpl:273 setup/setup_config2.tpl:318
+msgid "User"
+msgstr "用户"
 
-#: setup/class_setupStep_Config1.inc:137
-#, fuzzy
-msgid "The given password differ value is not numeric."
-msgstr "Sieve 端口应为数字。"
+#: plugins/admin/users/class_divListUsers.inc:177
+#: plugins/admin/users/class_userManagement.inc:733
+#: plugins/admin/users/template.tpl:15
+msgid "Template"
+msgstr "模板"
 
-#: setup/setup_schema.tpl:3
-#, fuzzy
-msgid "Schema specific settings"
-msgstr "Samba 设置"
+#: plugins/admin/users/class_divListUsers.inc:183
+#: plugins/admin/groups/class_divListGroup.inc:190
+msgid "Edit"
+msgstr "编辑"
 
-#: setup/setup_schema.tpl:7
-msgid "Enable schema validation when logging in"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:185
+#: plugins/admin/users/class_divListUsers.inc:339
+msgid "Change password"
+msgstr "修改口令"
 
-#: setup/setup_schema.tpl:16
+#: plugins/admin/users/class_divListUsers.inc:204
+#: plugins/admin/ogroups/class_divListOGroup.inc:221
+#: plugins/admin/acl/class_divListACL.inc:178
+#: plugins/admin/groups/class_divListGroup.inc:209
 #, fuzzy
-msgid "Check status"
-msgstr "具有状态"
-
-#: setup/setup_schema.tpl:20
-msgid "Schema check succeeded"
-msgstr ""
+msgid "Copy"
+msgstr "复制"
 
-#: setup/setup_schema.tpl:23
+#: plugins/admin/users/class_divListUsers.inc:206
+#: plugins/admin/ogroups/class_divListOGroup.inc:223
+#: plugins/admin/acl/class_divListACL.inc:180
+#: plugins/admin/groups/class_divListGroup.inc:211
 #, fuzzy
-msgid "Schema check failed"
-msgstr "保存电话失败"
+msgid "Cut"
+msgstr "剪切"
 
-#: setup/setup_schema.tpl:31
-msgid ""
-"Could not read any schema informations, all checks skipped. Adjust your ldap "
-"acls."
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:210
+#: plugins/admin/users/class_divListUsers.inc:213
+#: plugins/admin/ogroups/class_divListOGroup.inc:227
+#: plugins/admin/ogroups/class_divListOGroup.inc:230
+#: plugins/admin/acl/class_divListACL.inc:184
+#: plugins/admin/acl/class_divListACL.inc:187
+#: plugins/admin/groups/class_divListGroup.inc:215
+#: plugins/admin/groups/class_divListGroup.inc:218
+#: include/class_CopyPasteHandler.inc:483
+msgid "Paste"
+msgstr "粘贴"
 
-#: setup/setup_schema.tpl:35
-msgid ""
-"It seems that your ldap database wasn't initialized yet. This maybe the "
-"reason, why GOsa can't read your schema configuration!"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:266
+msgid "GOsa"
+msgstr "GOsa"
 
-#: ihtml/themes/default/MultiSelectWindow.tpl:55
-#: ihtml/themes/default/MultiSelectWindow.tpl:95
-#: plugins/personal/posix/posix_groups.tpl:21
-#: plugins/admin/groups/group_objects.tpl:20
-#: plugins/admin/ogroups/ogroup_objects.tpl:20
-msgid "Filters"
-msgstr "过滤器"
+#: plugins/admin/users/class_divListUsers.inc:267
+msgid "Edit generic properties"
+msgstr "编辑通用属性"
 
-#: ihtml/themes/default/login.tpl:10
-msgid "GOsa login screen"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:256
+msgid "Posix"
+msgstr "Posix"
 
-#: ihtml/themes/default/login.tpl:27
-#, fuzzy
-msgid "Login screen"
-msgstr "登录脚本"
+#: plugins/admin/users/class_divListUsers.inc:269
+msgid "Edit UNIX properties"
+msgstr "编辑 UNIX 属性"
 
-#: ihtml/themes/default/login.tpl:34
-#, fuzzy
-msgid ""
-"Please use your username and your password to log into the site "
-"administration system."
-msgstr "请用您的用户名和口令登录"
+#: plugins/admin/users/class_divListUsers.inc:271
+msgid "Edit environment properties"
+msgstr "编辑环境属性"
 
-#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44
-#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70
-#: plugins/admin/users/class_divListUsers.inc:81
-msgid "Username"
-msgstr "用户名"
+#: plugins/admin/users/class_divListUsers.inc:273
+msgid "Edit mail properties"
+msgstr "编辑邮件属性"
 
-#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53
-#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61
-msgid "Directory"
-msgstr "目录"
+#: plugins/admin/users/class_divListUsers.inc:275
+msgid "Edit phone properties"
+msgstr "编辑电话属性"
 
-#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80
-msgid "Sign in"
-msgstr "ç\99»å½\95"
+#: plugins/admin/users/class_divListUsers.inc:277
+msgid "Edit fax properies"
+msgstr "ç¼\96è¾\91ä¼ ç\9c\9få±\9eæ\80§"
 
-#: ihtml/themes/default/login.tpl:78
-msgid "Click here to log in"
-msgstr "ç\82¹å\87»è¿\99é\87\8cç\99»å½\95"
+#: plugins/admin/users/class_divListUsers.inc:279
+msgid "Edit samba properties"
+msgstr "ç¼\96è¾\91 samba å±\9eæ\80§"
 
-#: ihtml/themes/default/help.tpl:9
-msgid "GOsa help viewer"
-msgstr "GOsa 帮助浏览器"
+#: plugins/admin/users/class_divListUsers.inc:280
+msgid "Netatalk"
+msgstr "Netatalk"
 
-#: ihtml/themes/default/help.tpl:15
-msgid "Index"
-msgstr "ç´¢å¼\95"
+#: plugins/admin/users/class_divListUsers.inc:281
+msgid "Edit netatalk properties"
+msgstr "ç¼\96è¾\91 netatalk å±\9eæ\80§"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:5
-#, fuzzy
-msgid "Heimdal options"
-msgstr "邮件选项"
+#: plugins/admin/users/class_divListUsers.inc:282
+msgid "Create user from template"
+msgstr "从模板创建用户"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:6
-msgid "Use empty values for infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:283
+msgid "Create user with this template"
+msgstr "创建使用该模板的用户"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:10
-msgid "Ticket max life"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "cut"
+msgstr "剪切"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:18
-msgid "Ticket max renew"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:307
+#: plugins/admin/ogroups/class_divListOGroup.inc:277
+#: plugins/admin/acl/class_divListACL.inc:235
+#: plugins/admin/groups/class_divListGroup.inc:286
+msgid "Cut this entry"
+msgstr "剪切条目"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:32
-msgid "infinite"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "copy"
+msgstr "复制"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:34
-msgid "Hour"
-msgstr "小时"
+#: plugins/admin/users/class_divListUsers.inc:309
+#: plugins/admin/ogroups/class_divListOGroup.inc:279
+#: plugins/admin/acl/class_divListACL.inc:237
+#: plugins/admin/groups/class_divListGroup.inc:288
+msgid "Copy this entry"
+msgstr "拷贝条目"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:36
+#: plugins/admin/users/class_divListUsers.inc:318
 #, fuzzy
-msgid "Minute"
-msgstr "æ\89\93å\8d°æ\9cº"
+msgid "Deactivated"
+msgstr "æ´»å\8a¨"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:38
+#: plugins/admin/users/class_divListUsers.inc:321
+msgid "Active"
+msgstr "活动"
+
+#: plugins/admin/users/class_divListUsers.inc:328
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/acl/class_aclRole.inc:360
+#: plugins/admin/acl/class_aclRole.inc:405
+#: plugins/admin/acl/class_divListACL.inc:242
+#: plugins/admin/acl/class_divListACL.inc:264
+#: plugins/admin/groups/class_divListGroup.inc:293 include/class_acl.inc:429
+#: include/class_acl.inc:472
+msgid "edit"
+msgstr "编辑"
+
+#: plugins/admin/users/class_divListUsers.inc:329
+msgid "Edit user"
+msgstr "编辑用户"
+
+#: plugins/admin/users/class_divListUsers.inc:338
+msgid "password"
+msgstr "口令"
+
+#: plugins/admin/users/class_divListUsers.inc:342
 #, fuzzy
-msgid "Day"
-msgstr "五月"
+msgid "You are not allowed to change the password for this user."
+msgstr "现在您无权修改您的口令"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:40
+#: plugins/admin/users/class_divListUsers.inc:352
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/acl/class_aclRole.inc:406
+#: plugins/admin/acl/class_divListACL.inc:252
+#: plugins/admin/acl/class_divListACL.inc:268
+#: plugins/admin/groups/class_divListGroup.inc:302 include/class_acl.inc:430
+#: include/class_acl.inc:473
+msgid "delete"
+msgstr "删除"
+
+#: plugins/admin/users/class_divListUsers.inc:353
+#: plugins/admin/users/class_userManagement.inc:576
+msgid "Delete user"
+msgstr "删除用户"
+
+#: plugins/admin/users/class_divListUsers.inc:356
 #, fuzzy
-msgid "Month"
-msgstr "æ\9c\88"
+msgid "You are not allowed to remove this user."
+msgstr "æ\82¨æ\97 æ\9d\83å\88 é\99¤è¿\99个ç\94¨æ\88·ï¼\81"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:42
+#: plugins/admin/users/class_divListUsers.inc:442
 #, fuzzy
-msgid "Year"
-msgstr "查找"
+msgid "Number of listed users"
+msgstr "部门名称"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:47
-msgid "Valid ticket start time"
-msgstr ""
+#: plugins/admin/users/class_divListUsers.inc:443
+#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: plugins/admin/departments/class_divListDepartment.inc:229
+#: plugins/admin/groups/class_divListGroup.inc:360
+#, fuzzy
+msgid "Number of listed departments"
+msgstr "部门名称"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:87
-msgid "Valid ticket end time"
-msgstr ""
+#: plugins/admin/users/class_userManagement.inc:27
+#, fuzzy
+msgid "Manage users"
+msgstr "域用户"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:127
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, fuzzy
-msgid "Password end"
-msgstr "å\8f£ä»¤"
+msgid "Daemon"
+msgstr "å\85³é\97­"
 
-#: ihtml/themes/default/pwd_heimdal.tpl:198
-#: ihtml/themes/default/copyPasteDialog.tpl:19
-#: include/utils/class_msgPool.inc:250 include/class_MultiSelectWindow.inc:134
-#: plugins/personal/generic/generic_picture.tpl:33
-#: plugins/personal/generic/generic_certs.tpl:91
-#: plugins/admin/departments/dep_move_confirm.tpl:15
-#: plugins/admin/departments/class_departmentManagement.inc:404
+#: plugins/admin/users/class_userManagement.inc:193
+#: plugins/admin/ogroups/class_ogroupManagement.inc:173
+#: plugins/admin/groups/class_groupManagement.inc:191
 #, php-format
-msgid "Save"
-msgstr "保存"
+msgid "Something went wrong while talking to the daemon: %s."
+msgstr ""
 
-#: ihtml/themes/default/islocked.tpl:2
-msgid "Locking conflict detected"
-msgstr "检测到锁定冲突"
+#: plugins/admin/users/class_userManagement.inc:293
+#, fuzzy
+msgid "Password change failed."
+msgstr "不允许修改口令"
 
-#: ihtml/themes/default/islocked.tpl:9
-msgid ""
-"If this lock detection is false, the other person has obviously closed the "
-"webbrowser during the edit operation. You may want to take over the lock by "
-"pressing the 'Edit anyway' button."
-msgstr ""
-"如果锁检查失败,明显的是另外的人在进行编辑操作时关闭了浏览器。您可以通过按“仍"
-"然编辑”按钮来接管这个锁文件。"
+#: plugins/admin/users/class_userManagement.inc:293
+#: plugins/admin/users/class_userManagement.inc:348
+msgid "You are not allowed to set this users password!"
+msgstr "您无权设置这些用户口令!"
 
-#: ihtml/themes/default/accountexpired.tpl:15
-msgid "Your Password has expired !! Choose a new Password"
-msgstr "您的口令已经过期 !! 选择一个新口令"
+#: plugins/admin/users/class_userManagement.inc:456
+#, fuzzy, php-format
+msgid "You're about to delete the following entry: %s"
+msgstr "您将要删除条目 %s。"
 
-#: ihtml/themes/default/accountexpired.tpl:23
-#: ihtml/themes/default/accountexpired.tpl:27
-msgid "Old Password"
-msgstr "æ\97§å\8f£ä»¤"
+#: plugins/admin/users/class_userManagement.inc:458
+#, fuzzy, php-format
+msgid "You're about to delete the following entries: %s"
+msgstr "æ\82¨å°\86è¦\81å\88 é\99¤æ\9d¡ç\9b® %sã\80\82"
 
-#: ihtml/themes/default/accountexpired.tpl:32
-#: ihtml/themes/default/accountexpired.tpl:36
-msgid "New Password"
-msgstr "新口令"
+#: plugins/admin/users/class_userManagement.inc:460
+#, fuzzy
+msgid "Delete users"
+msgstr "删除用户"
 
-#: ihtml/themes/default/accountexpired.tpl:41
-#: ihtml/themes/default/accountexpired.tpl:45
-msgid "Verify Password"
-msgstr "口令确认"
+#: plugins/admin/users/class_userManagement.inc:488
+#: plugins/admin/users/class_userManagement.inc:608
+#, fuzzy
+msgid "User delete"
+msgstr "删除"
 
-#: ihtml/themes/default/accountexpired.tpl:51
-msgid "Change Password"
-msgstr "修改口令"
+#: plugins/admin/users/class_userManagement.inc:488
+#, fuzzy, php-format
+msgid "You are not allowed to delete the user '%s'!"
+msgstr "您无权删除这个用户!"
 
-#: ihtml/themes/default/accountexpired.tpl:52
-msgid "Click here to Change your password"
-msgstr "点击这里来修改您的口令"
+#: plugins/admin/users/class_userManagement.inc:576
+#, php-format
+msgid "You're about to delete the user %s."
+msgstr "您将删除用户 %s。"
 
-#: ihtml/themes/default/conflict.tpl:2
-msgid "Session conflict detected"
-msgstr "检测道会话冲突"
+#: plugins/admin/users/class_userManagement.inc:603
+#, fuzzy
+msgid "User deleted"
+msgstr "删除"
 
-#: ihtml/themes/default/conflict.tpl:6
+#: plugins/admin/users/class_userManagement.inc:603
 #, fuzzy
-msgid ""
-"Probably there's another active instance of your session. Multiple window "
-"operation is technical not possible and heavily depends on the browser "
-"you're using. Usage of different browsers at a time (i.e. IE and Mozilla) is "
-"possible. Pressing the Logout button will close this session."
-msgstr ""
-"可能已经存在另外一个您的活动的会话。多窗口操作在技术上不可能并且和严重依赖您"
-"使用浏览器。使用不同的浏览器(如 IE 和 Mozilla)是可能的。按“退出”按钮关闭此"
-"会话。"
+msgid "User successfully removed."
+msgstr "导入成功"
 
-#: ihtml/themes/default/conflict.tpl:10
-msgid ""
-"Ignoring this message will change/destroy the data you're currently editing, "
-"so please close multiple windows and log in again."
-msgstr ""
-"忽略这条信息将会修改/破坏您当前编辑的数据,所以请关闭多个窗口并重新登录。"
-
-#: ihtml/themes/default/conflict.tpl:14
-msgid "Logout"
-msgstr "退出"
+#: plugins/admin/users/class_userManagement.inc:608
+msgid "You are not allowed to delete this user!"
+msgstr "您无权删除这个用户!"
 
-#: ihtml/themes/default/logout-close.tpl:5
-#, fuzzy
-msgid "Your GOsa session has been closed!"
-msgstr "æ\82¨ç\9a\84 GOsa ä¼\9aè¯\9då·²ç»\8fè¿\87æ\9c\9fï¼\81"
+#: plugins/admin/users/class_userManagement.inc:714
+#: plugins/admin/ogroups/class_ogroup.inc:305
+msgid "none"
+msgstr "æ\97 "
 
-#: ihtml/themes/default/logout-close.tpl:7
+#: plugins/admin/users/remove.tpl:6
 msgid ""
-"Please close this browser window and clean the authentication caches to "
-"avoid an automatic re-authentication by your browser."
+"This includes all account data, system access rules, imap settings, etc. for "
+"this user. Please double check if your really want to do this since there is "
+"no way for GOsa to get your data back."
 msgstr ""
+"这包含该用户所有账号数据,系统访问规则,imap 设置等等。请再次检查您是否要这么"
+"做,因为 GOsa 没有办法将您的数据找回。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:3
-msgid "Restoring object snapshots"
-msgstr ""
+#: plugins/admin/users/template.tpl:2
+msgid "Creating a new user using templates"
+msgstr "用模板创建一个新用户"
 
-#: ihtml/themes/default/snapshotdialog.tpl:6
+#: plugins/admin/users/template.tpl:6
 msgid ""
-"This procedure will restore a snapshot of the selected object. It will "
-"replace the existing object after pressing the restore button."
+"Creating a new user can be assisted by using templates. Many database "
+"records will be filled automatically. Choose 'none' to skip the usage of "
+"templates."
 msgstr ""
+"可以使用模板来辅助新用户的创建。很多数据记录可以被自动填充。选择“无”来跳过模"
+"板选择。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:9
+#: plugins/admin/users/password.tpl:4
 msgid ""
-"Remember that DNS configuration and database entries could not be restored. "
-"For some objects it is only nescessary to open and save them again (goFon), "
-"but some entries must be recreated manually (glpi)."
-msgstr ""
+"To change the user password use the fields below. The changes take effect "
+"immediately. Please memorize the new password, because the user wouldn't be "
+"able to login without it."
+msgstr "用下面的字段修改用口令。修改即时生效。请记住新密码,否则无法登录。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:12
-msgid ""
-"Don't forget to check references to other objects, for example does the "
-"selected printer still exists ?"
-msgstr ""
+#: plugins/admin/users/password.tpl:21
+#, fuzzy
+msgid "Strength"
+msgstr "街道"
 
-#: ihtml/themes/default/snapshotdialog.tpl:20
-#: ihtml/themes/default/snapshotdialog.tpl:62
-#: include/utils/class_msgPool.inc:379 include/class_acl.inc:663
-#: include/class_acl.inc:670 include/class_acl.inc:677
-#: include/class_acl.inc:683
-#: plugins/admin/departments/class_departmentGeneric.inc:532
-msgid "Object"
-msgstr "对象"
+#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
+msgid "User administration"
+msgstr "用户管理"
 
-#: ihtml/themes/default/snapshotdialog.tpl:29
+#: plugins/admin/ogroups/class_ogroupManagement.inc:26
+#: plugins/admin/ogroups/class_ogroup.inc:768
+#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
+msgid "Object groups"
+msgstr "对象组"
+
+#: plugins/admin/ogroups/class_ogroupManagement.inc:27
 #, fuzzy
-msgid "There is no snapshot available that could be restored"
-msgstr "没有可用的 mysql 扩展,请检查您的 php 设置。"
+msgid "Manage object groups"
+msgstr "对象组名称"
 
-#: ihtml/themes/default/snapshotdialog.tpl:31
-msgid "Choose a snapshot and click the folder image, to restore the snapshot"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#, fuzzy, php-format
+msgid "You're about to delete the following object entry %s"
+msgstr "您将要删除条目 %s。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:49
+#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#, fuzzy, php-format
+msgid "You're about to delete the following object entries %s"
+msgstr "您将要删除这个对象组 '%s'。"
+
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:163
+#: plugins/admin/acl/class_aclManagement.inc:200
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
 #, fuzzy
-msgid "Creating object snapshots"
-msgstr "å\88\9b建æ\96°å¯¹è±¡ç»\84"
+msgid "Permission error"
+msgstr "å\85\81许"
 
-#: ihtml/themes/default/snapshotdialog.tpl:52
-msgid ""
-"This procedure will create a snapshot of the selected object. It will be "
-"stored inside a special branch of your directory system and can be restored "
-"later on."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:268
+#: plugins/admin/ogroups/class_ogroupManagement.inc:320
+#: plugins/admin/ogroups/class_ogroupManagement.inc:347
+#: plugins/admin/departments/class_departmentManagement.inc:203
+#: plugins/admin/departments/class_departmentManagement.inc:251
+#: plugins/admin/departments/class_departmentManagement.inc:270
+#: plugins/admin/acl/class_aclManagement.inc:253
+#: plugins/admin/acl/class_aclManagement.inc:277
+#: plugins/admin/acl/class_aclManagement.inc:316
+#: plugins/admin/acl/class_aclManagement.inc:340
+#: plugins/admin/groups/class_groupManagement.inc:388
+#: plugins/admin/groups/class_groupManagement.inc:441
+#: plugins/admin/groups/class_groupManagement.inc:472
+#, fuzzy
+msgid "You have no permission to delete this entry!"
+msgstr "您无权删除这个部门。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:55
-msgid ""
-"Remember that database entries, DNS configurations and possibly created "
-"zones in server extensions will not be stored in the snapshot."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:313
+#, php-format
+msgid "You're about to delete the object group '%s'."
+msgstr "您将要删除这个对象组 '%s'。"
 
-#: ihtml/themes/default/snapshotdialog.tpl:70
+#: plugins/admin/ogroups/class_ogroupManagement.inc:510
 #, fuzzy
-msgid "Timestamp"
-msgstr "过期"
+msgid "Windows Install"
+msgstr "Windows 工作站"
 
-#: ihtml/themes/default/snapshotdialog.tpl:79
-msgid "Reason for generating this snapshot"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroupManagement.inc:511
+msgid "Terminal"
+msgstr "终端"
 
-#: ihtml/themes/default/acl.tpl:2 plugins/admin/acl/acl_role.tpl:3
-msgid "Assigned ACLs for current entry"
+#: plugins/admin/ogroups/class_ogroup.inc:169
+msgid "You cannot combine terminals and workstations in one object group!"
 msgstr ""
 
-#: ihtml/themes/default/acl.tpl:4 plugins/admin/acl/acl_role.tpl:44
-#, fuzzy
-msgid "New ACL"
-msgstr "新"
+#: plugins/admin/ogroups/class_ogroup.inc:190
+msgid "This 'dn' is no object group."
+msgstr "这个 'dn' 不是对象组。"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-#, fuzzy
-msgid "ACL type"
-msgstr "分类类型"
+#: plugins/admin/ogroups/class_ogroup.inc:307
+msgid "too many different objects!"
+msgstr "太多不同对象!"
 
-#: ihtml/themes/default/acl.tpl:8 plugins/admin/acl/acl_role.tpl:49
-#, fuzzy
-msgid "Select an acl type"
-msgstr "选择一个位置"
+#: plugins/admin/ogroups/class_ogroup.inc:309
+msgid "users"
+msgstr "用户"
 
-#: ihtml/themes/default/acl.tpl:15
-msgid "Use members from"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:310
+msgid "groups"
+msgstr ""
 
-#: ihtml/themes/default/acl.tpl:29
-msgid "Available members"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:311
+msgid "applications"
+msgstr "应用程序"
 
-#: ihtml/themes/default/acl.tpl:30
-msgid "List message possible targets"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:312
+msgid "departments"
+msgstr "部门"
 
-#: ihtml/themes/default/acl.tpl:41 html/getxls.php:123 html/getxls.php:286
-msgid "Members"
-msgstr "æ\88\90å\91\98"
+#: plugins/admin/ogroups/class_ogroup.inc:313
+msgid "servers"
+msgstr "æ\9c\8då\8a¡å\99¨"
 
-#: ihtml/themes/default/acl.tpl:42
-msgid "List message recipients"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:314
+msgid "workstations"
+msgstr "工作站"
 
-#: ihtml/themes/default/acl.tpl:55 plugins/admin/acl/acl_role.tpl:54
+#: plugins/admin/ogroups/class_ogroup.inc:315
 #, fuzzy
-msgid "List of available ACL categories"
-msgstr "可用软件包列表"
+msgid "winstations"
+msgstr "Windows 工作站"
 
-#: ihtml/themes/default/acl.tpl:63
-msgid "ACLs for this object"
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:316
+msgid "terminals"
+msgstr "终端"
 
-#: ihtml/themes/default/acl.tpl:69
-#, fuzzy
-msgid "Available roles"
-msgstr "可用的应用程序"
+#: plugins/admin/ogroups/class_ogroup.inc:317
+msgid "phones"
+msgstr "电话"
 
-#: ihtml/themes/default/password.tpl:6
-#, fuzzy
-msgid "Change your password"
-msgstr "修改口令"
+#: plugins/admin/ogroups/class_ogroup.inc:318
+msgid "printers"
+msgstr "打印机"
 
-#: ihtml/themes/default/password.tpl:34
-#, fuzzy
-msgid "Success"
-msgstr "访问"
+#: plugins/admin/ogroups/class_ogroup.inc:325
+msgid "and"
+msgstr "和"
 
-#: ihtml/themes/default/password.tpl:34
-msgid "Your password has been changed successfully."
-msgstr ""
+#: plugins/admin/ogroups/class_ogroup.inc:470
+msgid "Non existing dn:"
+msgstr "不存在的 dn:"
 
-#: ihtml/themes/default/password.tpl:40
-#: plugins/admin/users/class_userManagement.inc:348
+#: plugins/admin/ogroups/class_ogroup.inc:629
 #, fuzzy
-msgid "Password change"
-msgstr "不允许修改口令"
-
-#: ihtml/themes/default/password.tpl:52
-msgid ""
-"This dialog provides a simple way to change your password. Enter the current "
-"password and the new password (twice) in the fields below and press the "
-"'Change' button."
-msgstr ""
-
-#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78
-#: plugins/personal/password/password.tpl:13 html/password.php:221
-msgid "Current password"
-msgstr "当前口令"
-
-#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82
-#: ihtml/themes/default/password.tpl:85
-#: plugins/personal/generic/password.tpl:7
-#: plugins/personal/generic/main.inc:86
-#: plugins/personal/password/password.tpl:18
-#: plugins/admin/users/password.tpl:13
-#: plugins/admin/users/class_userManagement.inc:246 html/password.php:200
-msgid "New password"
-msgstr "新口令"
-
-#: ihtml/themes/default/password.tpl:85
-#, fuzzy
-msgid "again"
-msgstr "首页"
+msgid "You can combine two different object types at maximum, only!"
+msgstr "您最多只能组合两个不同的对象类!"
 
-#: ihtml/themes/default/password.tpl:86
+#: plugins/admin/ogroups/class_ogroup.inc:763
 #, fuzzy
-msgid "New password repeated"
-msgstr "新口令"
+msgid "Object group generic"
+msgstr "对象组"
 
-#: ihtml/themes/default/password.tpl:89
-#: plugins/personal/password/password.tpl:28
+#: plugins/admin/ogroups/class_ogroup.inc:774
 #, fuzzy
-msgid "Password strength"
-msgstr "口令存储"
+msgid "Member"
+msgstr "成员"
 
-#: ihtml/themes/default/password.tpl:100
-#, fuzzy
-msgid "Change"
-msgstr "频道"
+#: plugins/admin/ogroups/ogroup_objects.tpl:6
+msgid "Select objects to add"
+msgstr "选择要添加的对象"
 
-#: ihtml/themes/default/password.tpl:101
-#, fuzzy
-msgid "Click here to change your password"
-msgstr "点击这里来修改您的口令"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Select to see departments"
+msgstr "选择查看部门"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:1
-#, fuzzy
-msgid "Copy & paste wizard"
-msgstr "拷贝和粘贴精灵"
+#: plugins/admin/ogroups/ogroup_objects.tpl:27
+msgid "Show departments"
+msgstr "显示部门"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:7
-msgid ""
-"Some values need to be unique in the complete directory while some "
-"combinations make no sense. GOsa shows the relevant attributes. Please "
-"maintain the values below to fullfill the policies."
-msgstr ""
-"有的变量需要在整个目录中保持唯一,而有的组合没有意义。GOsa 显示有关属性。请按"
-"照这个原则维护其取值。"
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Select to see GOsa accounts"
+msgstr "选择查看 Gosa 账号"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:9
-msgid "Remember that some properties like taken snapshots will not be copied!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:28
+msgid "Show people"
+msgstr "显示人员"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:10
-msgid ""
-"Or if you copy or cut an entry within GOsa and delete the source object, you "
-"may get errors while pasting this object again!"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Select to see GOsa groups"
+msgstr "选择查看 GOsa 组"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:24
-#, fuzzy
-msgid "Cancel all"
-msgstr "取消"
+#: plugins/admin/ogroups/ogroup_objects.tpl:29
+msgid "Show groups"
+msgstr "显示组"
 
-#: ihtml/themes/default/copyPasteDialog.tpl:30
-msgid "Operation complete"
-msgstr "操作完成"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Select to see applications"
+msgstr "选择查看应用程序"
 
-#: ihtml/themes/default/logout.tpl:5
-msgid "Your GOsa session has expired!"
-msgstr "æ\82¨ç\9a\84 GOsa ä¼\9aè¯\9då·²ç»\8fè¿\87æ\9c\9fï¼\81"
+#: plugins/admin/ogroups/ogroup_objects.tpl:30
+msgid "Show applications"
+msgstr "æ\98¾ç¤ºåº\94ç\94¨ç¨\8båº\8f"
 
-#: ihtml/themes/default/logout.tpl:7
-msgid ""
-"The last interaction with the GOsa web interface has been some time ago in "
-"the past. For security reasons, the session has been closed. To continue "
-"with administrative tasks, please sign in again."
-msgstr ""
-"上一次操作 GOsa 界面是在很长时间之前。出于安全上的考虑,已经关闭了连接。要继"
-"续执行管理任务,请重新登录。"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Select to see servers"
+msgstr "选择显示服务器"
 
-#: ihtml/themes/default/logout.tpl:10
-msgid "Sign in again"
-msgstr "重新登录"
+#: plugins/admin/ogroups/ogroup_objects.tpl:31
+msgid "Show servers"
+msgstr "显示服务器"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-#: ihtml/themes/default/framework.tpl:20 ihtml/themes/default/framework.tpl:24
-#: include/class_pluglist.inc:175
-msgid ""
-"You are currently editing a database entry. Do you want to dismiss the "
-"changes?"
-msgstr "您正在编辑一个数据项。您确认要丢弃当前的修改么?"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Select to see workstations"
+msgstr "选择查看工作站"
 
-#: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11
-msgid "Main"
-msgstr "首页"
+#: plugins/admin/ogroups/ogroup_objects.tpl:32
+msgid "Show workstations"
+msgstr "显示工作站"
 
-#: ihtml/themes/default/framework.tpl:16
-msgid "Help"
-msgstr "帮助"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Select to see terminals"
+msgstr "选择查看终端"
 
-#: ihtml/themes/default/framework.tpl:21 ihtml/themes/default/framework.tpl:25
-msgid "Sign out"
-msgstr "退出"
+#: plugins/admin/ogroups/ogroup_objects.tpl:33
+msgid "Show terminals"
+msgstr "显示终端"
 
-#: ihtml/themes/default/framework.tpl:29
-msgid "Signed in:"
-msgstr "登录:"
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Select to see printers"
+msgstr "选择查看打印机"
 
-#: ihtml/themes/default/framework.tpl:32
-msgid "GOsa main menu"
-msgstr ""
+#: plugins/admin/ogroups/ogroup_objects.tpl:34
+msgid "Show printers"
+msgstr "显示打印机"
 
-#: ihtml/themes/default/sizelimit.tpl:3
-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 服务器过载。最简单让大数据库处理"
-"不发成长时间超时的办法是,将查询缩小到更少并且使用过滤器。"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Select to see phones"
+msgstr "选择查看电话"
 
-#: ihtml/themes/default/sizelimit.tpl:6
-msgid "Please choose the way to react for this session"
-msgstr "请选择响应这个会话的方法"
+#: plugins/admin/ogroups/ogroup_objects.tpl:35
+msgid "Show phones"
+msgstr "显示电话"
 
-#: ihtml/themes/default/sizelimit.tpl:9
-msgid "ignore this error and show all entries the LDAP server returns"
-msgstr "忽略错误并显示 LDAP 服务器返回的所有条目"
+#: plugins/admin/ogroups/ogroup_objects.tpl:41
+msgid "Display objects of department"
+msgstr "选择查看部门对象"
 
-#: ihtml/themes/default/sizelimit.tpl:10
-msgid ""
-"ignore this error and show all entries that fit into the defined sizelimit "
-"and let me use filters instead"
-msgstr "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。"
+#: plugins/admin/ogroups/ogroup_objects.tpl:45
+msgid "Display objects matching"
+msgstr "显示匹配对象"
 
-#: ihtml/themes/default/sizelimit.tpl:14 include/utils/class_msgPool.inc:268
-#: plugins/personal/generic/generic.tpl:137
-#, php-format
-msgid "Set"
-msgstr "设置"
+#: plugins/admin/ogroups/ogroup_objects.tpl:46
+msgid "Regular expression for matching object names"
+msgstr "匹配对象名的正则表达式"
 
-#: ihtml/themes/default/remove.tpl:6
+#: plugins/admin/ogroups/remove.tpl:7
 msgid ""
-"This may be used by several groups. Please double check if your really want "
-"to do this since there is no way for GOsa to get your data back."
-msgstr ""
-"这可能被好几个组使用。请再次检查您是否要这么做,因为 GOsa 没有办法将您的数据"
-"找回。"
+"Please double check if you really want to do this since there is no way for "
+"GOsa to get your data back."
+msgstr "请再次检查您是否要这么做,因为 GOsa 没有办法将您的数据找回。"
 
-#: ihtml/themes/default/remove.tpl:9 plugins/admin/users/remove.tpl:10
-#: plugins/admin/groups/remove.tpl:10 plugins/admin/ogroups/remove.tpl:10
-msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort."
-msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。"
+#: plugins/admin/ogroups/paste_generic.tpl:4
+#: plugins/admin/ogroups/generic.tpl:7
+#: plugins/admin/groups/paste_generic.tpl:5
+#: plugins/admin/groups/generic.tpl:11
+msgid "Group name"
+msgstr "组名"
 
-#: ihtml/themes/default/remove.tpl:13 include/utils/class_msgPool.inc:262
-#: plugins/personal/posix/paste_generic.tpl:62
-#: plugins/personal/posix/generic.tpl:107
-#: plugins/personal/posix/generic.tpl:149
-#: plugins/personal/posix/generic.tpl:178 plugins/admin/users/remove.tpl:15
-#: plugins/admin/users/remove.tpl:18 plugins/admin/groups/remove.tpl:16
-#: plugins/admin/groups/remove.tpl:20 plugins/admin/groups/generic.tpl:195
-#: plugins/admin/acl/remove.tpl:15 plugins/admin/acl/remove.tpl:19
-#: plugins/admin/departments/remove.tpl:15
-#: plugins/admin/departments/remove.tpl:19 plugins/admin/ogroups/remove.tpl:15
-#: plugins/admin/ogroups/remove.tpl:19 plugins/admin/ogroups/generic.tpl:54
-#, php-format
-msgid "Delete"
-msgstr "删除"
+#: plugins/admin/ogroups/paste_generic.tpl:7
+msgid "Please enter the new object group name"
+msgstr "请输入新对象组名称"
 
-#: include/class_certificate.inc:55
-msgid "Can't open specified file, check accessibility and or existence"
-msgstr "无法打开特定文件,检查是否可以访问或者是否存在。"
+#: plugins/admin/ogroups/generic.tpl:10
+msgid "Name of the group"
+msgstr "组名称"
 
-#: include/class_certificate.inc:73
-msgid "Can't read specified certificate / or empty string given"
-msgstr "无法读取特定证书或者提供了一个空字符串"
+#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28
+msgid "Descriptive text for this group"
+msgstr "组的描述文字"
 
-#: include/class_certificate.inc:100
-msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
-msgstr "无法加载证书,可能是不支持的格式(用 PEM/DER)。"
+#: plugins/admin/ogroups/generic.tpl:29 plugins/admin/acl/acl_role.tpl:31
+#: plugins/admin/groups/generic.tpl:43
+msgid "Choose subtree to place group in"
+msgstr "选择来放置组的子树"
 
-#: include/class_certificate.inc:115
-msgid "The Format must be PEM, to output certificate informations"
-msgstr "要输出证书信息,格式必须是 PEM"
+#: plugins/admin/ogroups/generic.tpl:42
+msgid "Member objects"
+msgstr "成员对象"
 
-#: include/class_certificate.inc:212
-msgid "Can't create/open File"
-msgstr "无法创建/打开文件"
+#: plugins/admin/ogroups/class_divListOGroup.inc:59
+#: plugins/admin/ogroups/class_divListOGroup.inc:60
+msgid "List of object groups"
+msgstr "对象组列表"
 
-#: include/class_certificate.inc:219
-msgid "No valid certificate loaded"
-msgstr "无有效证书加载"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+msgid "Name of object groups"
+msgstr "对象组名称"
 
-#: include/utils/class_msgPool.inc:14
-#, fuzzy
-msgid "You have no permission to delete this object!"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:83
+#: plugins/admin/departments/class_departmentManagement.inc:26
+#: plugins/admin/departments/class_departmentGeneric.inc:575
+#: plugins/admin/departments/class_departmentGeneric.inc:580
+msgid "Departments"
+msgstr "部门"
 
-#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
-#, fuzzy
-msgid "You have no permission to delete the object:"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Select to see groups containing users"
+msgstr "选择查看包含用户的组"
 
-#: include/utils/class_msgPool.inc:26
-#, fuzzy
-msgid "You have no permission to delete these objects:"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:88
+msgid "Show groups containing users"
+msgstr "显示包含用户的组"
 
-#: include/utils/class_msgPool.inc:33
-#, fuzzy
-msgid "You have no permission to create this object!"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Select to see groups containing groups"
+msgstr "选择查看包含组的组"
 
-#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
-#, fuzzy
-msgid "You have no permission to create the object:"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:89
+msgid "Show groups containing groups"
+msgstr "显示包含组的组"
 
-#: include/utils/class_msgPool.inc:44
-#, fuzzy
-msgid "You have no permission to create these objects:"
-msgstr "您无权删除这个部门。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Select to see groups containing applications"
+msgstr "选择查看包含应用程序的组"
 
-#: include/utils/class_msgPool.inc:51
-#, fuzzy
-msgid "You have no permission to modify this object!"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:90
+msgid "Show groups containing applications"
+msgstr "显示包含应用程序的组"
 
-#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
-#, fuzzy
-msgid "You have no permission to modify the object:"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Select to see groups containing departments"
+msgstr "选择查看包含部门的组"
 
-#: include/utils/class_msgPool.inc:62
-#, fuzzy
-msgid "You have no permission to modify these objects:"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:91
+msgid "Show groups containing departments"
+msgstr "显示包含组织的组"
 
-#: include/utils/class_msgPool.inc:69
-#, fuzzy
-msgid "You have no permission to view this object!"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Select to see groups containing servers"
+msgstr "选择查看包含服务器的组"
 
-#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
-#, fuzzy
-msgid "You have no permission to view the object:"
-msgstr "您无权在此 'Base' 下创建一个电话"
+#: plugins/admin/ogroups/class_divListOGroup.inc:92
+msgid "Show groups containing servers"
+msgstr "显示包含服务器的组"
 
-#: include/utils/class_msgPool.inc:80
-#, fuzzy
-msgid "You have no permission to view these objects:"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Select to see groups containing workstations"
+msgstr "选择查看包含工作站的组"
 
-#: include/utils/class_msgPool.inc:87
-#, fuzzy
-msgid "You have no permission to move this object!"
-msgstr "您无权删除这个黑名单。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:93
+msgid "Show groups containing workstations"
+msgstr "显示包含工作站的组"
 
-#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "You have no permission to move the object:"
-msgstr "您无权删除这个黑名单。"
+msgid "Select to see groups containing windows workstations"
+msgstr "选择查看包含工作站的组"
 
-#: include/utils/class_msgPool.inc:98
+#: plugins/admin/ogroups/class_divListOGroup.inc:94
 #, fuzzy
-msgid "You have no permission to move these objects:"
-msgstr "æ\82¨æ\97 æ\9d\83å\88 é\99¤è¿\99个é»\91å\90\8då\8d\95ã\80\82"
+msgid "Show groups containing windows workstations"
+msgstr "æ\98¾ç¤ºå\8c\85å\90«å·¥ä½\9cç«\99ç\9a\84ç»\84"
 
-#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
-#: include/utils/class_msgPool.inc:138
-#, fuzzy
-msgid "Connection information"
-msgstr "个人信息"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Select to see groups containing terminals"
+msgstr "选择查看包含终端的组"
 
-#: include/utils/class_msgPool.inc:110
-#, fuzzy, php-format
-msgid "Cannot connect to %s database!"
-msgstr "无法连接到数据库!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:95
+msgid "Show groups containing terminals"
+msgstr "显示包含终端的组"
 
-#: include/utils/class_msgPool.inc:122
-#, fuzzy, php-format
-msgid "Cannot select %s database!"
-msgstr "无法选择数据库!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Select to see groups containing printer"
+msgstr "选择查看包含打印机的组"
 
-#: include/utils/class_msgPool.inc:128
-#, php-format
-msgid "No %s server defined!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:96
+msgid "Show groups containing printer"
+msgstr "显示包含打印机的组"
 
-#: include/utils/class_msgPool.inc:140
-#, fuzzy, php-format
-msgid "Cannot query %s database!"
-msgstr "无法选择数据库!"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Select to see groups containing phones"
+msgstr "选择查看包含电话的组"
 
-#: include/utils/class_msgPool.inc:146
-#, fuzzy, php-format
-msgid "The field '%s' contains a reserved keyword!"
-msgstr "“传真”字段包含一个无效电话号码"
+#: plugins/admin/ogroups/class_divListOGroup.inc:97
+msgid "Show groups containing phones"
+msgstr "显示包含电话的组"
 
-#: include/utils/class_msgPool.inc:152
-#, fuzzy, php-format
-msgid "Command specified as %s hook for plugin '%s' does not exist!"
-msgstr "命令 '%s',作为插件 '%s' 的 CHECK hook 好像并不存在。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:283
+#: plugins/admin/departments/class_divListDepartment.inc:185
+#: plugins/admin/groups/class_divListGroup.inc:293
+msgid "Edit this entry"
+msgstr "编辑这条记录"
 
-#: include/utils/class_msgPool.inc:159
-#, fuzzy, php-format
-msgid "Value for '%s' is too large!"
-msgstr "'UID' 赋值太小。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:291
+#: plugins/admin/departments/class_divListDepartment.inc:190
+#: plugins/admin/groups/class_divListGroup.inc:302
+msgid "Delete this entry"
+msgstr "删除这个条目"
 
-#: include/utils/class_msgPool.inc:161
-#, php-format
-msgid "'%s' must be smaller than %d!"
-msgstr ""
+#: plugins/admin/ogroups/class_divListOGroup.inc:294
+#, fuzzy
+msgid "You are not allowed to remove this entry."
+msgstr "您无权删除这个条目!"
 
-#: include/utils/class_msgPool.inc:169
-#, fuzzy, php-format
-msgid "Value for '%s' is too small!"
-msgstr "'UID' 赋值太小。"
+#: plugins/admin/ogroups/class_divListOGroup.inc:340
+#, fuzzy
+msgid "Number of listed object groups"
+msgstr "对象组名称"
 
-#: include/utils/class_msgPool.inc:171
-#, php-format
-msgid "'%s' must be %d or above!"
-msgstr ""
+#: plugins/admin/ogroups/tabs_ogroups.inc:96
+#: plugins/admin/ogroups/tabs_ogroups.inc:248
+msgid "Phone queue"
+msgstr "电话队列"
 
-#: include/utils/class_msgPool.inc:178
-#, php-format
-msgid "'%s' depends on '%s' - please provide both values!"
-msgstr ""
+#: plugins/admin/ogroups/tabs_ogroups.inc:120
+msgid "System"
+msgstr "系统"
 
-#: include/utils/class_msgPool.inc:184
-#, fuzzy, php-format
-msgid "There is already an entry with this '%s' attribute in the system!"
-msgstr "数据库中已经有同样登录名的用户。"
+#: plugins/admin/ogroups/tabs_ogroups.inc:128
+#: plugins/admin/ogroups/tabs_ogroups.inc:135
+#: plugins/admin/ogroups/tabs_ogroups.inc:228
+msgid "Devices"
+msgstr "设备"
 
-#: include/utils/class_msgPool.inc:190
-#, fuzzy, php-format
-msgid "The required field '%s' is empty!"
-msgstr "需要的“姓名”字段没有设置"
+#: plugins/admin/ogroups/tabs_ogroups.inc:142
+msgid "Startup"
+msgstr "启动"
 
-#: include/utils/class_msgPool.inc:198
-msgid "Example"
-msgstr ""
+#: plugins/admin/ogroups/tabs_ogroups.inc:146
+#: plugins/admin/acl/class_divListACL.inc:73
+msgid "Summary"
+msgstr "总结"
 
-#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
-#, fuzzy, php-format
-msgid "The Field '%s' contains invalid characters"
-msgstr "“姓名”字段包含无效字符。"
+#: plugins/admin/ogroups/tabs_ogroups.inc:224
+msgid "Terminals"
+msgstr "终端"
 
-#: include/utils/class_msgPool.inc:216
-#, php-format
-msgid "'%s' is not allowed:"
-msgstr ""
+#: plugins/admin/departments/class_departmentManagement.inc:27
+#, fuzzy
+msgid "Manage Departments"
+msgstr "部门"
 
-#: include/utils/class_msgPool.inc:216
+#: plugins/admin/departments/class_departmentManagement.inc:175
+#: plugins/admin/groups/class_groupManagement.inc:352
 #, fuzzy, php-format
-msgid "'%s' are not allowed."
-msgstr "不允许修改口令"
+msgid "You're about to delete the following entry %s"
+msgstr "您将要删除条目 %s。"
 
-#: include/utils/class_msgPool.inc:226
+#: plugins/admin/departments/class_departmentManagement.inc:177
+#: plugins/admin/groups/class_groupManagement.inc:354
 #, fuzzy, php-format
-msgid "Missing %s PHP extension!"
-msgstr "删除打印机扩展"
+msgid "You're about to delete the following entries %s"
+msgstr "您将要删除条目 %s。"
 
-#: include/utils/class_msgPool.inc:256
-#: plugins/personal/posix/paste_generic.tpl:61
-#: plugins/personal/posix/posix_groups.tpl:79
-#: plugins/personal/posix/generic.tpl:104
-#: plugins/personal/posix/generic.tpl:146
-#: plugins/personal/posix/generic.tpl:175
-#: plugins/personal/posix/trust_machines.tpl:39
-#: plugins/admin/groups/group_objects.tpl:55
-#: plugins/admin/groups/generic.tpl:193
-#: plugins/admin/ogroups/ogroup_objects.tpl:54
-#: plugins/admin/ogroups/generic.tpl:51
+#: plugins/admin/departments/class_departmentManagement.inc:245
 #, php-format
-msgid "Add"
-msgstr "æ·»å\8a "
+msgid "You're about to delete the whole LDAP subtree placed under '%s'."
+msgstr "æ\82¨å°\86è¦\81å\88 é\99¤ '%s' ä¸\8bç\9a\84æ\95´ä¸ª LDAP å­\90æ \91ã\80\82"
 
-#: include/utils/class_msgPool.inc:256
-#, fuzzy, php-format
-msgid "Add %s"
-msgstr "添加"
+#: plugins/admin/departments/tabs_department.inc:55
+#, fuzzy
+msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
+msgstr "移动树失败。目标树是源树的子树。"
 
-#: include/utils/class_msgPool.inc:262
-#, fuzzy, php-format
-msgid "Delete %s"
-msgstr "删除"
+#: plugins/admin/departments/dep_move_confirm.tpl:2
+#, fuzzy
+msgid "You are currently moving/renaming this department."
+msgstr "您无权删除这个部门。"
 
-#: include/utils/class_msgPool.inc:268
-#, fuzzy, php-format
-msgid "Set %s"
-msgstr "设置"
+#: plugins/admin/departments/dep_move_confirm.tpl:5
+msgid ""
+"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
+"snapshot entries for all entire objects."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit..."
-msgstr "编辑"
+#: plugins/admin/departments/dep_move_confirm.tpl:8
+msgid "GOsa can NOT fix this for you, yet."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:274
-#, fuzzy, php-format
-msgid "Edit %s..."
-msgstr "编辑用户"
+#: plugins/admin/departments/dep_move_confirm.tpl:11
+msgid ""
+"Before you confirm this action, ensure that everything will be as expected, "
+"possibly the best solution is a backup."
+msgstr ""
 
-#: include/utils/class_msgPool.inc:292
-#, fuzzy, php-format
-msgid "This account has no valid %s extensions!"
-msgstr "该账户没有有效的 Gosa 扩展。"
+#: plugins/admin/departments/class_departmentGeneric.inc:258
+msgid "Required field 'Name' is not set."
+msgstr "需要的“姓名”字段没有设置"
 
-#: include/utils/class_msgPool.inc:298
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. You can disable them by clicking below."
-msgstr "这个账户已经启用 posix 功能。要禁用请点击下面按钮。"
+#: plugins/admin/departments/class_departmentGeneric.inc:262
+msgid "Required field 'Description' is not set."
+msgstr "需要的字段“描述”没有设置。"
 
-#: include/utils/class_msgPool.inc:301 include/utils/class_msgPool.inc:308
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings enabled. To disable them, you'll need to remove "
-"the %s settings first!"
-msgstr ""
-"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
+#: plugins/admin/departments/class_departmentGeneric.inc:319 html/main.php:152
+#, fuzzy
+msgid "Fatal error"
+msgstr "终端服务器"
 
-#: include/utils/class_msgPool.inc:317
-#, fuzzy, php-format
-msgid ""
-"This account has %s settings disabled. You can enable them by clicking below."
-msgstr "这个账户已经启用 posix 功能。要启用请点击下面按钮。"
+#: plugins/admin/departments/class_departmentGeneric.inc:319
+#, fuzzy
+msgid "Cannot find an unused tag for this administrative unit!"
+msgstr "致命错误:无法找到一个未使用的标志来标记管理单元!"
 
-#: include/utils/class_msgPool.inc:320
-#, fuzzy, php-format
+#: plugins/admin/departments/class_departmentGeneric.inc:415
+#, php-format
+msgid "Tagging '%s'."
+msgstr "标记 '%s'。"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:502
+#, php-format
+msgid "Moving '%s' to '%s'"
+msgstr "移动 '%s' 到 '%s'"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:543
+#, php-format
+msgid "FAILED to copy %s, aborting operation"
+msgstr "拷贝 %s 失败,退出操作"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:584
+msgid "Country"
+msgstr "国家"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:587
+msgid "Telephone"
+msgstr "电话"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:588
+#: plugins/admin/departments/class_divListDepartment.inc:67
+msgid "Department name"
+msgstr "部门名称"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:589
+#: plugins/admin/departments/generic.tpl:24
+msgid "Category"
+msgstr "分类"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:592
+#: plugins/admin/departments/generic.tpl:109
+msgid "Administrative settings"
+msgstr "管理设置"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:644
+#, php-format
+msgid "Object '%s' is already tagged"
+msgstr "对象 '%s' 已经做标记"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:651
+#, php-format
+msgid "Adding tag (%s) to object '%s'"
+msgstr "添加标识(%s)到对象 '%s'"
+
+#: plugins/admin/departments/class_departmentGeneric.inc:683
+#, php-format
+msgid "Removing tag from object '%s'"
+msgstr "从对象 '%s' 删除标记"
+
+#: plugins/admin/departments/remove.tpl:6
 msgid ""
-"This account has %s settings disabled. To enable them, you'll need to add "
-"the %s settings first!"
+"This includes 'all' accounts, systems, etc. in this subtree. Please double "
+"check if your really want to do this since there is no way for GOsa to get "
+"your data back."
 msgstr ""
-"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
+"在这个子树中包含了所有账号,系统等等。请再次检查您是否要这么做,因为 GOsa 没"
+"有办法将您的数据找回。"
 
-#: include/utils/class_msgPool.inc:327
-#, fuzzy, php-format
+#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10
 msgid ""
-"This account has %s features settings. To disable them, you'll need to add "
-"the %s settings first!"
+"Best thing to do before performing this action would be to save the current "
+"contents of your LDAP tree in a file. So - if you've done so - press "
+"'Delete' to continue or 'Cancel' to abort."
 msgstr ""
-"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
+"最好在执行这个操作之前,保存当前 LDAP 树中的内容到一个文件。所以,如果您已经"
+"这么做了,按“删除”继续或者按“取消”退出。"
 
-#: include/utils/class_msgPool.inc:335
-#, fuzzy, php-format
-msgid "Add %s settings"
-msgstr "应用程序设置"
+#: plugins/admin/departments/class_divListDepartment.inc:47
+#: plugins/admin/departments/class_divListDepartment.inc:48
+msgid "List of departments"
+msgstr "部门列表"
 
-#: include/utils/class_msgPool.inc:341
-#, fuzzy, php-format
-msgid "Remove %s settings"
-msgstr "Posix 设置"
+#: plugins/admin/departments/class_divListDepartment.inc:75
+#, fuzzy
+msgid "Regular expression for matching department names"
+msgstr "匹配附件名称的正则表达式"
 
-#: include/utils/class_msgPool.inc:347 plugins/personal/generic/main.inc:183
-msgid "Click the 'Edit' button below to change informations in this dialog"
-msgstr "点击下面的“编辑”按钮修改该对话框内的信息"
+#: plugins/admin/departments/class_divListDepartment.inc:219
+msgid "department"
+msgstr "部门"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "January"
-msgstr "一月"
+#: plugins/admin/departments/generic.tpl:8
+msgid "Name of department"
+msgstr "部门名称"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "February"
-msgstr "二月"
+#: plugins/admin/departments/generic.tpl:11
+msgid "Name of subtree to create"
+msgstr "要创建子树的名称"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "March"
-msgstr "三月"
+#: plugins/admin/departments/generic.tpl:19
+msgid "Descriptive text for department"
+msgstr "部门描述文件"
 
-#: include/utils/class_msgPool.inc:353
-#: plugins/personal/generic/class_user.inc:286
-msgid "April"
-msgstr "四月"
+#: plugins/admin/departments/generic.tpl:27
+msgid "Category for this subtree"
+msgstr "这个子树的分类"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "May"
-msgstr "五月"
+#: plugins/admin/departments/generic.tpl:39
+msgid "Choose subtree to place department in"
+msgstr "选择放置部门的子树"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "June"
-msgstr "六月"
+#: plugins/admin/departments/generic.tpl:63
+msgid "State where this subtree is located"
+msgstr "这个子树位于的状态"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "July"
-msgstr "七月"
+#: plugins/admin/departments/generic.tpl:71
+msgid "Location of this subtree"
+msgstr "这个子树的位置"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "August"
-msgstr "八月"
+#: plugins/admin/departments/generic.tpl:79
+msgid "Postal address of this subtree"
+msgstr "这个子树的地址"
 
-#: include/utils/class_msgPool.inc:354
-#: plugins/personal/generic/class_user.inc:287
-msgid "September"
-msgstr "九月"
+#: plugins/admin/departments/generic.tpl:86
+msgid "Base telephone number of this subtree"
+msgstr "这个子树的电话号码"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "October"
-msgstr "十月"
+#: plugins/admin/departments/generic.tpl:94
+msgid "Base facsimile telephone number of this subtree"
+msgstr "这个子树的传真号码"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "November"
-msgstr "十一月"
+#: plugins/admin/departments/generic.tpl:111
+msgid "Tag department as an independent administrative unit"
+msgstr "将部门标记为独立的管理单元"
 
-#: include/utils/class_msgPool.inc:355
-#: plugins/personal/generic/class_user.inc:288
-msgid "December"
-msgstr "十二月"
+#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
+msgid "Department management"
+msgstr "部门管理"
 
-#: include/utils/class_msgPool.inc:361
-#, fuzzy
-msgid "Sunday"
-msgstr "姓"
+#: plugins/admin/departments/dep_iframe.tpl:1
+msgid "Processing the requested operation"
+msgstr "处理请求的操作"
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/departments/dep_iframe.tpl:7
+msgid ""
+"Your browser doesn't support iframes, please use this link to perform the "
+"requested operation."
+msgstr "您的浏览器不支持 iframe,请使用这个链接来执行请求的操作。"
+
+#: plugins/admin/acl/tabs_acl.inc:28
+#: plugins/admin/acl/class_divListACL.inc:259
 #, fuzzy
-msgid "Monday"
-msgstr ""
+msgid "Acl"
+msgstr "全部"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Tuesday"
+#: plugins/admin/acl/class_aclRole.inc:26
+msgid "Access control list templates"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:361
+#: plugins/admin/acl/class_aclRole.inc:27
 #, fuzzy
-msgid "Wednesday"
-msgstr "星期三"
-
-#: include/utils/class_msgPool.inc:361
-msgid "Thursday"
-msgstr ""
+msgid "Edit ACL roles"
+msgstr "MAC 地址"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Friday"
-msgstr ""
+#: plugins/admin/acl/class_aclRole.inc:123 include/class_acl.inc:197
+#, fuzzy
+msgid "All categories"
+msgstr "添加分类"
 
-#: include/utils/class_msgPool.inc:361
-msgid "Saturday"
+#: plugins/admin/acl/class_aclRole.inc:130 include/class_acl.inc:205
+msgid "Reset ACLs"
 msgstr ""
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/class_aclRole.inc:131 include/class_acl.inc:206
 #, fuzzy
-msgid "read operation"
-msgstr "邮件选项"
-
-#: include/utils/class_msgPool.inc:368
-msgid "add operation"
-msgstr ""
+msgid "One level"
+msgstr "日志级别"
 
-#: include/utils/class_msgPool.inc:368
+#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:207
+#: include/class_acl.inc:212
 #, fuzzy
-msgid "modify operation"
-msgstr "个人信息"
+msgid "Current object"
+msgstr "创建新 FAI 对象"
 
-#: include/utils/class_msgPool.inc:369
+#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:208
 #, fuzzy
-msgid "delete operation"
-msgstr "选择查看工作站"
+msgid "Complete subtree"
+msgstr "忽略子树"
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "search operation"
-msgstr "账号过期于"
+#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:209
+msgid "Complete subtree (permanent)"
+msgstr ""
 
-#: include/utils/class_msgPool.inc:369
-#, fuzzy
-msgid "authentication"
-msgstr "Nagios 鉴权"
+#: plugins/admin/acl/class_aclRole.inc:358
+#: include/class_MultiSelectWindow.inc:248
+#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:427
+msgid "Up"
+msgstr "上"
 
-#: include/utils/class_msgPool.inc:372
-#, fuzzy, php-format
-msgid "LDAP %s failed!"
-msgstr "Mysql 查询失败。"
+#: plugins/admin/acl/class_aclRole.inc:359 include/class_acl.inc:428
+msgid "Down"
+msgstr "关闭"
 
-#: include/utils/class_msgPool.inc:374
+#: plugins/admin/acl/class_aclRole.inc:360 include/class_acl.inc:429
 #, fuzzy
-msgid "LDAP operation failed!"
-msgstr "Mysql 查询失败。"
+msgid "Edit ACL"
+msgstr "编辑"
 
-#: include/utils/class_timezone.inc:51
-#: include/password-methods/class_password-methods-ssha.inc:51
-#: include/password-methods/class_password-methods-sha.inc:48
-#: include/class_CopyPasteHandler.inc:119
-#: include/class_CopyPasteHandler.inc:127
-#: include/class_CopyPasteHandler.inc:176
-#: include/class_CopyPasteHandler.inc:184
-#: include/class_CopyPasteHandler.inc:193 include/class_plugin.inc:1159
-#: include/class_plugin.inc:1171 include/class_pluglist.inc:149
-#: include/class_config.inc:560 include/functions.inc:605
-#: include/functions.inc:2563 include/functions.inc:2590
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#: plugins/admin/groups/class_groupGeneric.inc:547 html/index.php:217
+#: plugins/admin/acl/class_aclRole.inc:361 include/class_acl.inc:430
 #, fuzzy
-msgid "Configuration error"
-msgstr "配置文件"
-
-#: include/utils/class_timezone.inc:51
-#, php-format
-msgid ""
-"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
-"correct timezone offset."
-msgstr ""
+msgid "Delete ACL"
+msgstr "删除"
 
-#: include/class_gosaSupportDaemon.inc:464
-msgid "Could not parse XML."
+#: plugins/admin/acl/class_aclRole.inc:398 include/class_acl.inc:465
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:745
+#: plugins/admin/acl/class_aclRole.inc:400 include/class_acl.inc:467
 #, php-format
-msgid "Cannot send abort event for entry: %s"
+msgid "Contains ACLs for these objects: %s"
 msgstr ""
 
-#: include/class_gosaSupportDaemon.inc:765
-#, php-format
-msgid "Cannot remove entry: %s"
+#: plugins/admin/acl/class_aclRole.inc:405 include/class_acl.inc:472
+#, fuzzy
+msgid "Edit categories ACLs"
+msgstr "编辑分类"
+
+#: plugins/admin/acl/class_aclRole.inc:406 include/class_acl.inc:473
+msgid "Clear categories ACLs"
 msgstr ""
 
-#: include/class_tabs.inc:216
+#: plugins/admin/acl/class_aclRole.inc:422 include/class_acl.inc:518
 #, php-format
-msgid "Delete process has been canceled by plugin '%s': %s"
-msgstr "删除进程被插件 '%s' 取消: %s"
-
-#: include/class_tabs.inc:343 include/class_acl.inc:1114
-#: include/class_acl.inc:1115 include/class_acl.inc:1120
-msgid "ACL"
-msgstr "ACL"
+msgid "Edit ACL for '%s', scope is '%s'"
+msgstr ""
 
-#: include/class_tabs.inc:346
-msgid "References"
-msgstr "参考"
+#: plugins/admin/acl/class_aclRole.inc:432 include/class_acl.inc:528
+msgid "All objects in current subtree"
+msgstr ""
 
-#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
-#, fuzzy, php-format
-msgid "Can't locate gotomasses queue file '%s'."
-msgstr "无法创建文件 '%s'。"
+#: plugins/admin/acl/class_aclRole.inc:618
+#, fuzzy
+msgid "Object in use"
+msgstr "对象名称"
 
-#: include/class_hostActionQueue.inc:73
+#: plugins/admin/acl/class_aclRole.inc:618
 #, fuzzy, php-format
-msgid "Can't read gotomasses queue file '%s'."
-msgstr "无法创建文件 '%s'。"
+msgid "This role cannot be removed while it is in use by these objects:"
+msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:"
 
-#: include/class_hostActionQueue.inc:80
-#, fuzzy, php-format
-msgid "Can't read gotomasses storage file '%s'."
-msgstr "无法创建文件 '%s'。"
+#: plugins/admin/acl/class_aclRole.inc:695 include/class_acl.inc:1120
+#, fuzzy
+msgid "ACL roles"
+msgstr "MAC 地址"
 
-#: include/class_hostActionQueue.inc:143
-msgid "GOsa infrastructure"
+#: plugins/admin/acl/class_aclRole.inc:700
+msgid "Acl roles"
 msgstr ""
 
-#: include/class_hostActionQueue.inc:143
-msgid "Cannot read broken entry - skipped!"
+#: plugins/admin/acl/remove.tpl:6
+#, fuzzy
+msgid ""
+"This includes all system and setup informations. Please double check if your "
+"really want to do this since there is no way for GOsa to get your data back."
 msgstr ""
+"这包含所有系统和设置信息。请再次检查您是否要这么做,因为 GOsa 没有办法将您的"
+"数据找回。"
 
-#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
-#, fuzzy, php-format
-msgid "Can't write gotomasses queue file '%s'."
-msgstr "无法创建文件 '%s'。"
-
-#: include/class_hostActionQueue.inc:202
-msgid "The queue file was modified since last reload. Can't save changes."
-msgstr ""
+#: plugins/admin/acl/tabs_acl_role.inc:28
+#, fuzzy
+msgid "ACL Templates"
+msgstr "模板"
 
-#: include/class_hostActionQueue.inc:277
-#, php-format
-msgid "Entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:51
+#, fuzzy
+msgid "List of acl"
+msgstr "宏列表"
 
-#: include/class_hostActionQueue.inc:287
-#, php-format
-msgid "Could not update entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:52
+#, fuzzy
+msgid "List of acls"
+msgstr "宏列表"
 
-#: include/class_hostActionQueue.inc:298
-#, php-format
-msgid "Could not remove entry, entry with id '%s' not found."
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:80
+msgid "Ignore subtrees"
+msgstr "忽略子树"
 
-#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
-#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
-#, fuzzy, php-format
-msgid "Can't set priority for ID '%s'. ID does not exist."
-msgstr "软件包文件 '%s' 不存在。"
+#: plugins/admin/acl/class_divListACL.inc:84
+#, fuzzy
+msgid "Display acls matching"
+msgstr "显示匹配的宏"
 
-#: include/class_CopyPasteHandler.inc:118
-#, php-format
-msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:243
+#, fuzzy
+msgid "Edit acl role"
+msgstr "编辑宏"
 
-#: include/class_CopyPasteHandler.inc:126
-#, php-format
-msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:253
+#, fuzzy
+msgid "Delete acl role"
+msgstr "删除宏"
 
-#: include/class_CopyPasteHandler.inc:158
-#, php-format
-msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
-msgstr ""
+#: plugins/admin/acl/class_divListACL.inc:265
+#, fuzzy
+msgid "Edit acl"
+msgstr "编辑宏"
 
-#: include/class_CopyPasteHandler.inc:159
-#: include/class_CopyPasteHandler.inc:269 include/class_acl.inc:826
-#: include/class_log.inc:88 include/functions.inc:450
-#: include/functions.inc:595 include/functions.inc:620
-#: include/functions.inc:681 include/functions.inc:1068
-#: include/functions.inc:1916 include/functions.inc:1950
-#: include/functions.inc:1970 include/class_ldap.inc:579
-#: include/class_ldap.inc:627 html/getvcard.php:39
+#: plugins/admin/acl/class_divListACL.inc:269
 #, fuzzy
-msgid "Internal error"
-msgstr "终端服务器"
+msgid "Delete acl"
+msgstr "删除宏"
 
-#: include/class_CopyPasteHandler.inc:175
-#, php-format
-msgid "Cannot save LDAP dump: no write permission inside '%s'!"
-msgstr ""
+#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
+#, fuzzy
+msgid "ACL management"
+msgstr "管理"
 
-#: include/class_CopyPasteHandler.inc:183
-#, php-format
-msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:26
+#, fuzzy
+msgid "ACLs"
+msgstr "ACL"
 
-#: include/class_CopyPasteHandler.inc:192
-#, php-format
-msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
-msgstr ""
+#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27
+#, fuzzy
+msgid "Manage access control lists"
+msgstr "访问选项"
 
-#: include/class_CopyPasteHandler.inc:268
-#, fuzzy, php-format
-msgid "Cannot load dumped file '%s'!"
-msgstr "æ\97 æ³\95æ\89\93å¼\80æ\96\87件 '%s'。"
+#: plugins/admin/acl/class_aclManagement.inc:163
+#, fuzzy
+msgid "You have no permission to create a new role!"
+msgstr "æ\82¨æ\97 æ\9d\83å\88 é\99¤è¿\99个é\83¨é\97¨。"
 
-#: include/class_CopyPasteHandler.inc:368
-#, fuzzy, php-format
-msgid "You are going to paste the following entries '%s'."
-msgstr "您将要拷贝条目 '%s'。"
+#: plugins/admin/acl/class_aclManagement.inc:200
+#, fuzzy
+msgid "You have no permission to edit this ACL!"
+msgstr "您无权删除这个部门。"
 
-#: include/class_CopyPasteHandler.inc:391
+#: plugins/admin/acl/class_aclManagement.inc:245
+#: plugins/admin/acl/class_aclManagement.inc:309
 #, fuzzy, php-format
-msgid "You are going to paste the following entry '%s'."
-msgstr "您将要拷贝条目 '%s'。"
+msgid "You're about to delete the acl %s."
+msgstr "您将要删除宏 '%s'。"
 
-#: include/class_CopyPasteHandler.inc:483
-#: plugins/admin/users/class_divListUsers.inc:211
-#: plugins/admin/users/class_divListUsers.inc:214
-#: plugins/admin/groups/class_divListGroup.inc:216
-#: plugins/admin/groups/class_divListGroup.inc:219
-#: plugins/admin/acl/class_divListACL.inc:185
-#: plugins/admin/acl/class_divListACL.inc:188
-#: plugins/admin/ogroups/class_divListOGroup.inc:228
-#: plugins/admin/ogroups/class_divListOGroup.inc:231
-msgid "Paste"
-msgstr "粘贴"
+#: plugins/admin/groups/class_divListGroup.inc:55
+#: plugins/admin/groups/class_divListGroup.inc:56
+msgid "List of groups"
+msgstr "组列表"
 
-#: include/class_CopyPasteHandler.inc:485
-msgid "Can't paste"
-msgstr "无法粘贴"
+#: plugins/admin/groups/class_divListGroup.inc:79
+msgid "Groupname / Department"
+msgstr "组名 / 部门"
 
-#: include/class_plugin.inc:492
-msgid ""
-"The object has changed since opened in GOsa. All changes that may be done by "
-"others get lost if you save this entry!"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Select to see groups that are primary groups of users"
+msgstr "选择查看用户的主要组"
 
-#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
-#, php-format
-msgid ""
-"The snapshot functionality is enabled, but the required variable '%s' is not "
-"set."
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:84
+msgid "Show primary groups"
+msgstr "显示主要组"
 
-#: include/class_plugin.inc:1613
-msgid "Changing ACL dn"
-msgstr ""
-
-#: include/class_plugin.inc:1613
-msgid "from"
-msgstr "从"
-
-#: include/php_setup.inc:91
-msgid "Generating this page caused the PHP interpreter to raise some errors!"
-msgstr "生成这个页面导致 PHP 解析器发生一些错误!"
-
-#: include/php_setup.inc:96
-msgid "Send bug report to the GOsa Team"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Select to see groups that have samba groups mappings"
+msgstr "选择查看配置了 samba 映射的用户组"
 
-#: include/php_setup.inc:96
-#, fuzzy
-msgid "Send bugreport"
-msgstr "发送者"
+#: plugins/admin/groups/class_divListGroup.inc:85
+msgid "Show samba groups"
+msgstr "显示 samba 用户组"
 
-#: include/php_setup.inc:101
-msgid "Toggle information"
-msgstr "切换信息"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Select to see groups that have applications configured"
+msgstr "选择查看配置了应用程序的组"
 
-#: include/php_setup.inc:111
-msgid "PHP error"
-msgstr "PHP 错误"
+#: plugins/admin/groups/class_divListGroup.inc:86
+msgid "Show application groups"
+msgstr "显示应用程序组"
 
-#: include/php_setup.inc:130
-msgid "class"
-msgstr ""
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Select to see groups that have mail settings"
+msgstr "选择查看配置了邮件设置的组"
 
-#: include/php_setup.inc:136
-msgid "function"
-msgstr "功能"
+#: plugins/admin/groups/class_divListGroup.inc:87
+msgid "Show mail groups"
+msgstr "显示邮件组"
 
-#: include/php_setup.inc:141
-msgid "static"
-msgstr "é\9d\99æ\80\81"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Select to see normal groups that have only functional aspects"
+msgstr "é\80\89æ\8b©æ\9f¥ç\9c\8bå®\9eç\94¨ç\9a\84æ\99®é\80\9aç»\84"
 
-#: include/php_setup.inc:145
-msgid "method"
-msgstr "æ\96¹æ³\95"
+#: plugins/admin/groups/class_divListGroup.inc:88
+msgid "Show functional groups"
+msgstr "æ\98¾ç¤ºå®\9eç\94¨ç»\84"
 
-#: include/php_setup.inc:178
-msgid "Trace"
-msgstr "跟踪"
+#: plugins/admin/groups/class_divListGroup.inc:359
+#, fuzzy
+msgid "Number of listed groups"
+msgstr "组名称"
 
-#: include/php_setup.inc:179
-msgid "File"
-msgstr "文件"
+#: plugins/admin/groups/group_objects.tpl:6
+msgid "Select users to add"
+msgstr "选择要添加的用户"
 
-#: include/php_setup.inc:179
-msgid "Line"
-msgstr ""
+#: plugins/admin/groups/group_objects.tpl:30
+msgid "Search within subtree"
+msgstr "在子树中查找"
 
-#: include/php_setup.inc:179
-msgid "Type"
-msgstr "类型"
+#: plugins/admin/groups/group_objects.tpl:37
+msgid "Display users of department"
+msgstr "显示部门的用户"
 
-#: include/php_setup.inc:180
-msgid "Arguments"
-msgstr "å\8f\82æ\95°"
+#: plugins/admin/groups/group_objects.tpl:47
+msgid "Regular expression for matching user names"
+msgstr "å\8c¹é\85\8dç\94¨æ\88·å\90\8dç\9a\84æ­£å\88\99表达å¼\8f"
 
-#: include/class_acl.inc:26
-#, fuzzy
-msgid "Access control"
-msgstr "访问选项"
+#: plugins/admin/groups/class_groupManagement.inc:26
+#: plugins/admin/groups/class_groupGeneric.inc:1020 include/class_acl.inc:216
+#: html/getxls.php:126 html/getxls.php:128 html/getxls.php:311
+msgid "Groups"
+msgstr "用户组"
 
-#: include/class_acl.inc:27 plugins/admin/acl/class_aclManagement.inc:27
-#, fuzzy
-msgid "Manage access control lists"
-msgstr "访问选项"
+#: plugins/admin/groups/class_groupManagement.inc:27
+msgid "Manage POSIX groups"
+msgstr ""
 
-#: include/class_acl.inc:197 plugins/admin/acl/class_aclRole.inc:123
-#, fuzzy
-msgid "All categories"
-msgstr "æ·»å\8a å\88\86ç±»"
+#: plugins/admin/groups/class_groupManagement.inc:434
+#, php-format
+msgid "You're about to delete the group '%s'."
+msgstr "æ\82¨å°\86è¦\81å\88 é\99¤ç»\84 '%s'ã\80\82"
 
-#: include/class_acl.inc:205 plugins/admin/acl/class_aclRole.inc:130
-msgid "Reset ACLs"
+#: plugins/admin/groups/remove.tpl:6
+msgid ""
+"This may be a primary user group. Please double check if you really want to "
+"do this since there is no way for GOsa to get your data back."
 msgstr ""
+"这可能是一个主要的用户组。请再次检查您是否要这么做,因为 GOsa 没有办法将您的"
+"数据找回。"
 
-#: include/class_acl.inc:206 plugins/admin/acl/class_aclRole.inc:131
-#, fuzzy
-msgid "One level"
-msgstr "日志级别"
+#: plugins/admin/groups/paste_generic.tpl:1
+msgid "Group settings"
+msgstr "组设置"
 
-#: include/class_acl.inc:207 include/class_acl.inc:212
-#: plugins/admin/acl/class_aclRole.inc:132
-#, fuzzy
-msgid "Current object"
-msgstr "创建新 FAI 对象"
+#: plugins/admin/groups/paste_generic.tpl:8
+#: plugins/admin/groups/generic.tpl:17
+msgid "Posix name of the group"
+msgstr "组的 posix 名称"
 
-#: include/class_acl.inc:208 plugins/admin/acl/class_aclRole.inc:133
-#, fuzzy
-msgid "Complete subtree"
-msgstr "忽略子树"
+#: plugins/admin/groups/paste_generic.tpl:13
+#: plugins/admin/groups/generic.tpl:65
+msgid "Normally IDs are autogenerated, select to specify manually"
+msgstr "一般 ID 是自动创建的,要手工设置请选择"
 
-#: include/class_acl.inc:209 plugins/admin/acl/class_aclRole.inc:134
-msgid "Complete subtree (permanent)"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:15
+#: plugins/admin/groups/generic.tpl:68
+msgid "Force GID"
+msgstr "强制 GID"
 
-#: include/class_acl.inc:210 include/class_acl.inc:213
-msgid "Use ACL defined in role"
-msgstr ""
+#: plugins/admin/groups/paste_generic.tpl:18
+#: plugins/admin/groups/generic.tpl:71
+msgid "Forced ID number"
+msgstr "强制 ID 编号"
 
-#: include/class_acl.inc:216 plugins/personal/generic/class_user.inc:1437
-#: plugins/admin/users/class_userManagement.inc:26 html/getxls.php:91
-#: html/getxls.php:92 html/getxls.php:310
-msgid "Users"
-msgstr "用户"
+#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
+msgid "Select to create a samba conform group"
+msgstr "选择创建一个 samba 确认组"
 
-#: include/class_acl.inc:216 plugins/admin/groups/class_groupGeneric.inc:1020
-#: plugins/admin/groups/class_groupManagement.inc:26 html/getxls.php:126
-#: html/getxls.php:128 html/getxls.php:311
-msgid "Groups"
-msgstr "用户组"
+#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
+msgid "in domain"
+msgstr "于域"
 
-#: include/class_acl.inc:427 include/class_MultiSelectWindow.inc:248
-#: include/class_MultiSelectWindow.inc:250
-#: plugins/admin/acl/class_aclRole.inc:358
-msgid "Up"
-msgstr "上"
+#: plugins/admin/groups/generic.tpl:140
+msgid "Members are in a phone pickup group"
+msgstr "成员属于电话应答组"
 
-#: include/class_acl.inc:428 plugins/admin/acl/class_aclRole.inc:359
-msgid "Down"
-msgstr "关闭"
+#: plugins/admin/groups/generic.tpl:155
+msgid "Members are in a nagios group"
+msgstr "成员属于 nagios 组"
 
-#: include/class_acl.inc:429 include/class_acl.inc:472
-#: plugins/admin/users/class_divListUsers.inc:329
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/acl/class_divListACL.inc:243
-#: plugins/admin/acl/class_divListACL.inc:265
-#: plugins/admin/acl/class_aclRole.inc:360
-#: plugins/admin/acl/class_aclRole.inc:405
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "edit"
-msgstr "编辑"
+#: plugins/admin/groups/generic.tpl:172
+msgid "Group members"
+msgstr "组成员"
 
-#: include/class_acl.inc:429 plugins/admin/acl/class_aclRole.inc:360
-#, fuzzy
-msgid "Edit ACL"
-msgstr "编辑"
+#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
+msgid "Group administration"
+msgstr "组管理"
 
-#: include/class_acl.inc:430 include/class_acl.inc:473
-#: plugins/admin/users/class_divListUsers.inc:353
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/acl/class_divListACL.inc:253
-#: plugins/admin/acl/class_divListACL.inc:269
-#: plugins/admin/acl/class_aclRole.inc:361
-#: plugins/admin/acl/class_aclRole.inc:406
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "delete"
-msgstr "删除"
+#: plugins/admin/groups/class_groupGeneric.inc:152
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#: include/class_pluglist.inc:149 include/class_config.inc:561
+#: include/functions.inc:605 include/functions.inc:2563
+#: include/functions.inc:2590 include/class_CopyPasteHandler.inc:119
+#: include/class_CopyPasteHandler.inc:127
+#: include/class_CopyPasteHandler.inc:176
+#: include/class_CopyPasteHandler.inc:184
+#: include/class_CopyPasteHandler.inc:193
+#: include/password-methods/class_password-methods-sha.inc:48
+#: include/password-methods/class_password-methods-ssha.inc:51
+#: include/utils/class_timezone.inc:51 html/index.php:217
+#, fuzzy
+msgid "Configuration error"
+msgstr "配置文件"
 
-#: include/class_acl.inc:430 plugins/admin/acl/class_aclRole.inc:361
+#: plugins/admin/groups/class_groupGeneric.inc:152
 #, fuzzy
-msgid "Delete ACL"
-msgstr "删除"
+msgid "Cannot find group SID in your configuration!"
+msgstr "无法在 LDAP 或您的配置文件中查找这个组 SID。"
 
-#: include/class_acl.inc:465 plugins/admin/acl/class_aclRole.inc:398
-msgid "No ACL settings for this category"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:208
+msgid "This 'dn' is no group."
+msgstr "该 'dn' 不是一个组。"
 
-#: include/class_acl.inc:467 plugins/admin/acl/class_aclRole.inc:400
-#, php-format
-msgid "Contains ACLs for these objects: %s"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Samba group"
+msgstr "Samba 组"
 
-#: include/class_acl.inc:472 plugins/admin/acl/class_aclRole.inc:405
-#, fuzzy
-msgid "Edit categories ACLs"
-msgstr "编辑分类"
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain admins"
+msgstr "域管理员"
 
-#: include/class_acl.inc:473 plugins/admin/acl/class_aclRole.inc:406
-msgid "Clear categories ACLs"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:349
+msgid "Domain users"
+msgstr "域用户"
+
+#: plugins/admin/groups/class_groupGeneric.inc:350
+msgid "Domain guests"
+msgstr "域名 guests"
 
-#: include/class_acl.inc:518 plugins/admin/acl/class_aclRole.inc:422
+#: plugins/admin/groups/class_groupGeneric.inc:355
 #, php-format
-msgid "Edit ACL for '%s', scope is '%s'"
-msgstr ""
+msgid "Special group (%d)"
+msgstr "特殊组 (%d)"
 
-#: include/class_acl.inc:528 plugins/admin/acl/class_aclRole.inc:432
-msgid "All objects in current subtree"
+#: plugins/admin/groups/class_groupGeneric.inc:509
+msgid "! unknown id"
+msgstr "! 未知 id"
+
+#: plugins/admin/groups/class_groupGeneric.inc:547
+#, php-format
+msgid "Search returned too many results. Not displaying more than %s entries!"
 msgstr ""
 
-#: include/class_acl.inc:665 include/class_acl.inc:672
-#, fuzzy
-msgid "Show/Hide Advanced Settings"
-msgstr "高级电话设置"
+#: plugins/admin/groups/class_groupGeneric.inc:728
+#, fuzzy, php-format
+msgid "Cannot find any SID for '%s'!"
+msgstr "无法创建文件 '%s'。"
 
-#: include/class_acl.inc:690
+#: plugins/admin/groups/class_groupGeneric.inc:733
+#, fuzzy, php-format
+msgid "Cannot find any RIDBASE for '%s'!"
+msgstr "无法创建文件 '%s'。"
+
+#: plugins/admin/groups/class_groupGeneric.inc:966
 #, fuzzy
-msgid "Create objects"
-msgstr "å\88\9b建æ\96° FAI å¯¹è±¡"
+msgid "Cannot allocate a free ID!"
+msgstr "太å¤\9aç\94¨æ\88·ï¼\8cæ\97 æ³\95å\88\86é\85\8dä¸\80个å\8f¯ç\94¨ç\9a\84 IDï¼\81"
 
-#: include/class_acl.inc:691
+#: plugins/admin/groups/class_groupGeneric.inc:1015
 #, fuzzy
-msgid "Move objects"
-msgstr "成员对象"
+msgid "Generic group settings"
+msgstr "组设置"
 
-#: include/class_acl.inc:692
+#: plugins/admin/groups/class_groupGeneric.inc:1027
 #, fuzzy
-msgid "Remove objects"
-msgstr "æ\88\90å\91\98对象"
+msgid "Phone pickup group"
+msgstr "æ\88\90å\91\98å±\9eäº\8eç\94µè¯\9dåº\94ç­\94ç»\84"
 
-#: include/class_acl.inc:694 include/class_acl.inc:700
-msgid "Modifyable by owner"
-msgstr ""
+#: plugins/admin/groups/class_groupGeneric.inc:1028
+#, fuzzy
+msgid "Nagios group"
+msgstr "Nagios 账号"
 
-#: include/class_acl.inc:697
+#: plugins/admin/groups/class_groupGeneric.inc:1031
 #, fuzzy
-msgid "Move object"
-msgstr "成员对象"
+msgid "Group member"
+msgstr "组成员"
 
-#: include/class_acl.inc:698
+#: plugins/admin/groups/class_groupGeneric.inc:1032
 #, fuzzy
-msgid "Remove object"
-msgstr "成员对象"
+msgid "Samba group type"
+msgstr "Samba 组"
 
-#: include/class_acl.inc:705 include/class_acl.inc:796
-msgid "read"
-msgstr "读"
+#: plugins/admin/groups/class_groupGeneric.inc:1033
+#, fuzzy
+msgid "Samba domain name"
+msgstr "Samba 主目录"
 
-#: include/class_acl.inc:706 include/class_acl.inc:798
-msgid "write"
-msgstr "写"
+#: plugins/admin/groups/class_groupGeneric.inc:1034 setup/setup_config2.tpl:15
+#, fuzzy
+msgid "Samba SID"
+msgstr "Samba"
 
-#: include/class_acl.inc:710
+#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41
 #, fuzzy
-msgid "Complete object"
-msgstr "成员对象"
+msgid "Language setup"
+msgstr "语言"
 
-#: include/class_acl.inc:826
-#, php-format
-msgid "Unkown ACL type '%s'. Don't know how to handle it."
+#: setup/class_setupStep_Language.inc:42
+msgid "This step allows you to select your preferred language."
 msgstr ""
 
-#: include/class_acl.inc:869
-#, fuzzy, php-format
-msgid "Unknown entry '%s'!"
-msgstr "未知 FAIstate %s"
-
-#: include/class_acl.inc:929 include/class_acl.inc:931
-#, fuzzy, php-format
-msgid "Role: %s"
-msgstr "角色"
+#: setup/class_setupStep_Language.inc:47
+#, fuzzy
+msgid "Automatic"
+msgstr "自动"
 
-#: include/class_acl.inc:931
-msgid "Unknown role, possibly removed"
+#: setup/setup_welcome.tpl:4
+msgid ""
+"This seems to be the first time you start GOsa - we didn't find any "
+"configuration right now. This simple wizard intends to help you while "
+"setting it up."
 msgstr ""
 
-#: include/class_acl.inc:939
-#, php-format
-msgid "Contains settings for these objects: %s"
+#: setup/setup_welcome.tpl:8
+msgid "What will the wizard do for you?"
 msgstr ""
 
-#: include/class_acl.inc:948
-#, fuzzy
-msgid "Members:"
-msgstr "成员"
-
-#: include/class_acl.inc:954
-msgid "ACL is valid for all users"
+#: setup/setup_welcome.tpl:11
+msgid "Create a basic, single site configuration"
 msgstr ""
 
-#: include/class_acl.inc:1115
-#, fuzzy
-msgid "Access control list"
-msgstr "访问选项"
-
-#: include/class_acl.inc:1120 plugins/admin/acl/class_aclRole.inc:695
-#, fuzzy
-msgid "ACL roles"
-msgstr "MAC 地址"
-
-#: include/class_acl.inc:1123
-#, fuzzy
-msgid "Role name"
-msgstr "重命名"
-
-#: include/class_acl.inc:1124
-#, fuzzy
-msgid "Role description"
-msgstr "单元描述"
-
-#: include/class_pluglist.inc:56
-msgid "All objects in this category"
+#: setup/setup_welcome.tpl:12
+msgid "Tries to find problems within your PHP and LDAP setup"
 msgstr ""
 
-#: include/class_pluglist.inc:150
-msgid "The configuration format has changed. Please re-run setup!"
+#: setup/setup_welcome.tpl:13
+msgid "Let you choose from a set of basic and advanced configuration switches"
 msgstr ""
 
-#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
-#: include/class_pluglist.inc:282
-msgid "Unknown"
-msgstr "未知"
+#: setup/setup_welcome.tpl:14
+msgid "Guided migration of existing LDAP trees"
+msgstr ""
 
-#: include/class_socketClient.inc:58
-msgid "The mcrypt module was not found. Please install php5-mcrypt."
+#: setup/setup_welcome.tpl:17
+msgid "What will the wizard NOT do for you?"
 msgstr ""
 
-#: include/class_log.inc:88
-#, fuzzy, php-format
-msgid "Logging failed: %s"
-msgstr "Logging DB 用户"
+#: setup/setup_welcome.tpl:20
+msgid "Find every possible configuration error"
+msgstr ""
 
-#: include/class_log.inc:107
-msgid "Logging to MySQL disabled"
+#: setup/setup_welcome.tpl:21
+msgid "Migrate every possible LDAP setup - create backup dumps!"
 msgstr ""
 
-#: include/class_log.inc:107
+#: setup/setup_welcome.tpl:25
+#, fuzzy
+msgid "To continue..."
+msgstr "安装继续..."
+
+#: setup/setup_welcome.tpl:28
 msgid ""
-"The logging to a MySQL database is now disabled for this session of GOsa, "
-"due to communication errors with the specified logging database."
+"For security reasons you need to authenticate for the installation by "
+"creating the file '/tmp/gosa.auth', containing the current session ID on the "
+"servers local filesystem. This can be done by executing the following "
+"command:"
 msgstr ""
 
-#: include/class_log.inc:120
-#, php-format
-msgid "Invalid option '%s' specified."
+#: setup/setup_welcome.tpl:34
+msgid "Click the 'Continue' button when you've finished."
 msgstr ""
 
-#: include/class_log.inc:124
+#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75
 #, fuzzy
-msgid "Specified objectType is empty or invalid"
-msgstr "指定的 branch 名称无效。"
+msgid "GOsa settings 1/3"
+msgstr "用户设置"
 
-#: include/class_log.inc:145
-msgid ""
-"You have enabled the logging into mysql database, but there are no logging "
-"servers available."
-msgstr ""
+#: setup/class_setupStep_Config1.inc:76
+#, fuzzy
+msgid "GOsa generic settings"
+msgstr "用户设置"
 
-#: include/class_log.inc:157
-#, fuzzy, php-format
-msgid "Cannot connect to logging server '%s'."
-msgstr "无法连接到数据库!"
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "No"
+msgstr "否"
 
-#: include/class_log.inc:165
+#: setup/class_setupStep_Config1.inc:88 setup/class_setupStep_Config3.inc:86
+#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71
+#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Schema.inc:82
+#: setup/class_setupStep_Config2.inc:160
+msgid "Yes"
+msgstr "是"
+
+#: setup/class_setupStep_Config1.inc:118
 #, fuzzy, php-format
-msgid "Cannot select database '%s' on server '%s': %s"
-msgstr "æ\97 æ³\95å\9c¨ä¸»æ\9c\8då\8a¡å\99¨ '%s' ä¸\8aé\80\89æ\8b©æ\95°æ\8d®åº\93 '%s'。"
+msgid "The specified value for '%s' must be a numeric value"
+msgstr "æ\8c\87å®\9a '%s' ç\9a\84å\80¼å¿\85é¡»æ\98¯æ\95°å­\97ç±»å\9e\8b。"
 
-#: include/class_log.inc:181
-#, php-format
-msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97
+msgid "GID / UID min id"
 msgstr ""
 
-#: include/class_log.inc:218
+#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126
 #, php-format
-msgid "Couldn't add your location to the logging database, the error was: %s."
+msgid "Don't add a trailing comma to '%s'."
 msgstr ""
 
-#: include/class_log.inc:241
-#, fuzzy, php-format
-msgid "Cannot query database '%s' on server '%s': %s"
-msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。"
+#: setup/class_setupStep_Config1.inc:122
+msgid "People storage ou"
+msgstr ""
 
-#: include/class_multi_plug.inc:362
-#, fuzzy
-msgid "You are currently editing mutliple entries."
-msgstr "您无权删除这个部门。"
+#: setup/class_setupStep_Config1.inc:126
+msgid "Group storage ou"
+msgstr ""
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:130
 #, fuzzy
-msgid "Password reset"
-msgstr "口令过期截止日"
+msgid "Uid base must be numeric"
+msgstr "超时必须填数字"
 
-#: include/class_multi_plug.inc:391
+#: setup/class_setupStep_Config1.inc:134
 #, fuzzy
-msgid "The user password was resetted, please set a new password value!"
-msgstr "您的口令已经过期 !! 选择一个新口令"
+msgid "The given password minimum length is not numeric."
+msgstr "Sieve 端口应为数字。"
 
-#: include/class_msg_dialog.inc:122
+#: setup/class_setupStep_Config1.inc:137
 #, fuzzy
-msgid "Please fix the above error and reload the page."
-msgstr "请看一下 GOsa 日志文件。"
-
-#: include/functions_helpviewer.inc:45
-#, php-format
-msgid "XML error in guide.xml: %s at line %d"
-msgstr "XML 出错于 guide.xml: %s ,行 %d"
+msgid "The given password differ value is not numeric."
+msgstr "Sieve 端口应为数字。"
 
-#: include/functions_helpviewer.inc:88
-msgid "No help available for this plugin."
-msgstr "此插件没有可用帮助信息。"
+#: setup/setup_ldap.tpl:7
+msgid "Please choose the LDAP user to be used by GOsa"
+msgstr ""
 
-#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
-msgid "previous"
-msgstr "上一个"
+#: setup/setup_ldap.tpl:25
+#, fuzzy
+msgid "LDAP connection"
+msgstr "断开"
 
-#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
-msgid "next"
-msgstr "ä¸\8bä¸\80个"
+#: setup/setup_ldap.tpl:29
+msgid "Location name"
+msgstr "ä½\8dç½®å\90\8d称"
 
-#: include/functions_helpviewer.inc:389
-#, php-format
-msgid "%s results for your search with the keyword %s"
-msgstr "%s 结果当您查找关键字 %s"
+#: setup/setup_ldap.tpl:37
+#, fuzzy
+msgid "Connection URL"
+msgstr "连接 URL"
 
-#: include/functions_helpviewer.inc:463
-#, php-format
-msgid "%s%% hit rate in file %s"
-msgstr "%s%% 点击率于文件 %s"
+#: setup/setup_ldap.tpl:45
+#, fuzzy
+msgid "TLS connection"
+msgstr "连接"
 
-#: include/class_MultiSelectWindow.inc:240
-msgid "Go to root department"
-msgstr "转到根部门"
+#: setup/setup_ldap.tpl:65
+#, fuzzy
+msgid "Reload"
+msgstr "读"
 
-#: include/class_MultiSelectWindow.inc:240
-#: include/class_MultiSelectWindow.inc:242
-msgid "Root"
-msgstr ""
+#: setup/setup_ldap.tpl:69
+#, fuzzy
+msgid "Authentication"
+msgstr "Nagios 鉴权"
 
-#: include/class_MultiSelectWindow.inc:248
-msgid "Go up one department"
-msgstr "向上跳转一个部门"
+#: setup/setup_ldap.tpl:73
+msgid "Admin DN"
+msgstr "管理员 DN"
 
-#: include/class_MultiSelectWindow.inc:256
-msgid "Go to users department"
-msgstr "转到用户部门"
+#: setup/setup_ldap.tpl:78
+#, fuzzy
+msgid "Select user"
+msgstr "删除用户"
 
-#: include/class_MultiSelectWindow.inc:256
-#: include/class_MultiSelectWindow.inc:258
-msgid "Home"
+#: setup/setup_ldap.tpl:86
+msgid "Automatically append LDAP base to admin DN"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:263
-msgid "Reload list"
-msgstr "重新加载列表"
+#: setup/setup_ldap.tpl:93
+msgid "Admin password"
+msgstr "管理员口令"
 
-#: include/class_MultiSelectWindow.inc:263
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit"
-msgstr "提交"
+#: setup/setup_ldap.tpl:101
+#, fuzzy
+msgid "Schema based settings"
+msgstr "Samba 设置"
 
-#: include/class_MultiSelectWindow.inc:529
-#, php-format
-msgid "Inconsistent DN encoding detected: '%s'"
+#: setup/setup_ldap.tpl:105
+msgid "Use rfc2307bis compliant groups"
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:648
-#: include/class_MultiSelectWindow.inc:652
-#: include/class_MultiSelectWindow.inc:656
+#: setup/setup_ldap.tpl:117
 #, fuzzy
-msgid "Restore"
-msgstr "仓库"
-
-#: include/class_MultiSelectWindow.inc:651
-msgid "Restore snapshopts of already deleted objects"
-msgstr ""
+msgid "Current status"
+msgstr "当前版本"
 
-#: include/class_MultiSelectWindow.inc:674
-#: include/class_SnapShotDialog.inc:133
-msgid "Restore snapshot"
+#: setup/setup_migrate.tpl:5
+msgid ""
+"During the LDAP inspection, we're going to check for several common pitfalls "
+"that may occur when migration to GOsa base LDAP administration. You may want "
+"to fix the problems below, in order to provide smooth services."
 msgstr ""
 
-#: include/class_MultiSelectWindow.inc:680
-#, fuzzy
-msgid "Create snapshot"
-msgstr "创建 nagios 账户"
-
-#: include/class_MultiSelectWindow.inc:680
+#: setup/setup_migrate.tpl:33
 #, fuzzy
-msgid "Create a new snapshot from this object"
-msgstr "创建新 FAI 对象"
+msgid "Check again"
+msgstr "检查"
 
-#: include/class_config.inc:106
-#, php-format
-msgid "XML error in gosa.conf: %s at line %d"
-msgstr "XML 出错于 gosa.conf: %s ,行 %d"
+#: setup/setup_migrate.tpl:37
+msgid "Move windows workstations into a valid windows workstation department"
+msgstr ""
 
-#: include/class_config.inc:109
-msgid "Config file parsing"
+#: setup/setup_migrate.tpl:39
+msgid ""
+"This dialog allows you to move the displayed windows workstations into a "
+"valid department"
 msgstr ""
 
-#: include/class_config.inc:228
-#, fuzzy
-msgid "Cannot bind to LDAP. Please contact the system administrator."
-msgstr "无法绑定 LDAP。请联系系统管理员。"
+#: setup/setup_migrate.tpl:41
+msgid ""
+"Be careful with this tool, there may be references pointing to this "
+"workstations that can't be migrated."
+msgstr ""
 
-#: include/class_config.inc:560
+#: setup/setup_migrate.tpl:65 setup/setup_migrate.tpl:121
+#: setup/setup_migrate.tpl:173 setup/setup_migrate.tpl:293
+#: setup/setup_migrate.tpl:346
 #, fuzzy
-msgid "SID and/or RIDBASE missing in the configuration!"
-msgstr "您的配置文件缺少 SID 和/或 RIDBASE!"
+msgid "Select all"
+msgstr "选择"
 
-#: include/class_SnapShotDialog.inc:83
-#, fuzzy, php-format
-msgid "You're about to delete the snapshot '%s'."
-msgstr "您将要删除宏 '%s'。"
+#: setup/setup_migrate.tpl:67
+msgid "Move selected windows workstations into the following GOsa department"
+msgstr ""
 
-#: include/class_SnapShotDialog.inc:135
+#: setup/setup_migrate.tpl:72
 #, fuzzy
-msgid "Remove snapshot"
-msgstr "删除记录"
+msgid "Move selected workstations"
+msgstr "选择查看工作站"
 
-#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
-msgid "Y-m-d, H:i:s"
+#: setup/setup_migrate.tpl:73
+msgid "What will be done here"
 msgstr ""
 
-#: include/class_SnapShotDialog.inc:169
-#: plugins/admin/groups/class_groupGeneric.inc:1025
-#: plugins/admin/groups/generic.tpl:24 plugins/admin/acl/acl_role.tpl:17
-#: plugins/admin/acl/class_aclRole.inc:705
-#: plugins/admin/departments/class_departmentGeneric.inc:262
-#: plugins/admin/departments/class_departmentGeneric.inc:577
-#: plugins/admin/departments/generic.tpl:16
-#: plugins/admin/ogroups/class_ogroup.inc:773
-#: plugins/admin/ogroups/generic.tpl:15
-#: plugins/generic/references/contents.tpl:11 html/getxls.php:160
-#: html/getxls.php:289
-msgid "Description"
-msgstr "描述"
+#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135
+msgid "Close"
+msgstr "关闭"
 
-#: include/functions.inc:101
-#, php-format
-msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+#: setup/setup_migrate.tpl:85
+msgid "Move groups into configured group tree"
 msgstr ""
 
-#: include/functions.inc:108
-#, php-format
+#: setup/setup_migrate.tpl:88
 msgid ""
-"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
+"This dialog allows moving a couple of groups to the configured group tree. "
+"Doing this may straighten your LDAP service."
 msgstr ""
 
-#: include/functions.inc:318
-#, php-format
-msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
-msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。"
+#: setup/setup_migrate.tpl:91
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"groups. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409
-#, fuzzy, php-format
-msgid "User login failed."
-msgstr "用户登录失败。LDAP 服务器返回 '%s'。"
+#: setup/setup_migrate.tpl:94
+msgid "Move selected groups into this group tree"
+msgstr ""
 
-#: include/functions.inc:344 include/functions.inc:371
-#: include/functions.inc:409 include/functions.inc:605
-#: include/functions.inc:620 include/functions.inc:652
-#: include/functions.inc:691 include/functions.inc:736
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "LDAP server returned: %s"
-msgstr "LDAP 服务器"
+#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177
+#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350
+msgid "Hide changes"
+msgstr ""
 
-#: include/functions.inc:380 include/functions.inc:450
+#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179
+#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352
 #, fuzzy
-msgid ""
-"Username / UID is not unique inside the LDAP tree. Please contact your "
-"Administrator."
-msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。"
+msgid "Show changes"
+msgstr "显示软件包"
 
-#: include/functions.inc:595 include/functions.inc:681
-msgid "Error while adding a lock. Contact the developers!"
+#: setup/setup_migrate.tpl:140
+msgid "Move users into configured user tree"
 msgstr ""
 
-#: include/functions.inc:605
-#, fuzzy, php-format
+#: setup/setup_migrate.tpl:142
 msgid ""
-"Cannot create locking information in LDAP tree. Please contact your "
-"administrator!"
-msgstr "无法获得 LDAP 数据库的锁信息。检查 gosa.conf 中的 'config' 条目!"
+"This dialog allows moving a couple of users to the configured user tree. "
+"Doing this may straighten your LDAP service."
+msgstr ""
 
-#: include/functions.inc:620
-#, fuzzy, php-format
-msgid "Adding a lock failed."
-msgstr "保存 FAI 钩子失败"
+#: setup/setup_migrate.tpl:145
+msgid ""
+"Be careful with this option! There may be references pointing to these "
+"users. The GOsa setup can't migrate references, so you may want to cancel "
+"the migration in this case."
+msgstr ""
 
-#: include/functions.inc:652
-#, fuzzy, php-format
-msgid "Removing a lock failed."
-msgstr "å\88 é\99¤ FAI é\92©å­\90失败"
+#: setup/setup_migrate.tpl:148
+#, fuzzy
+msgid "Move selected users into this people tree"
+msgstr "å\88\9b建使ç\94¨è¯¥æ¨¡æ\9d¿ç\9a\84ç\94¨æ\88·"
 
-#: include/functions.inc:691 include/functions.inc:736
-#, php-format
-msgid "Cannot get locking information from LDAP tree!"
-msgstr ""
+#: setup/setup_migrate.tpl:198
+#, fuzzy
+msgid "Next"
+msgstr "下一个"
 
-#: include/functions.inc:699
+#: setup/setup_migrate.tpl:199
 #, fuzzy
-msgid ""
-"Found multiple locks for object to be locked. This should not happen - "
-"cleaning up multiple references."
-msgstr "发现要锁定的对象由多个锁。这虽然不可能──清除多个引用。"
+msgid "Abort"
+msgstr "端口"
 
-#: include/functions.inc:996
-#, php-format
-msgid "The size limit of %d entries is exceed!"
-msgstr "超过了 %d 个条目的大小限制!"
+#: setup/setup_migrate.tpl:201
+#, fuzzy
+msgid "Create a new GOsa administrator account"
+msgstr "创建 netatalk 账号"
 
-#: include/functions.inc:998
-#, php-format
+#: setup/setup_migrate.tpl:204
 msgid ""
-"Set the new size limit to %s and show me this message if the limit still "
-"exceeds"
-msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。"
-
-#: include/functions.inc:1010 plugins/personal/generic/generic.tpl:230
-msgid "Configure"
-msgstr "配置"
+"This dialog will automatically add a new super administrator to your LDAP "
+"tree."
+msgstr ""
 
-#: include/functions.inc:1015
-msgid "incomplete"
-msgstr "不完整"
+#: setup/setup_migrate.tpl:233
+#, fuzzy
+msgid "Password (again)"
+msgstr "口令存储"
 
-#: include/functions.inc:1253
-msgid "LDAP error:"
-msgstr "LDAP 错误:"
+#: setup/setup_migrate.tpl:258
+msgid ""
+"The listed departments are currently invisible in the GOsa user interface. "
+"If you want to change this for a couple of entries, select them and use the "
+"migrate button below."
+msgstr ""
 
-#: include/functions.inc:1254
+#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314
 msgid ""
-"Problems with the LDAP server mean that you probably lost the last changes. "
-"Please check your LDAP setup for possible errors and try again."
+"If you want to know what will be done when migrating the selected entries, "
+"use the 'Show changes' button to see the LDIF."
 msgstr ""
-"LDAP 服务器发生错误,意味着您最后的修改可能丢失。请检查您 LDAP 安装可能的错误"
-"再重试。"
 
-#: include/functions.inc:1260
+#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323
+#, fuzzy
+msgid "Current"
+msgstr "当前版本"
+
+#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330
+#, fuzzy
+msgid "After migration"
+msgstr "用户管理"
+
+#: setup/setup_migrate.tpl:313
 msgid ""
-"Please check your input and fix the error. Press 'OK' to close this message "
-"box."
-msgstr "请检查您的输入并修正错误。按“OK”关闭此对话框。"
+"The listed users are currenlty invisble in the GOsa user interface. If you "
+"want to change this for a couple of users, just select them and use the "
+"'Migrate' button below."
+msgstr ""
 
-#: include/functions.inc:1325
-msgid "Continue anyway"
-msgstr "仍然继续"
+#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78
+#, fuzzy
+msgid "GOsa settings 3/3"
+msgstr "用户设置"
 
-#: include/functions.inc:1327
-msgid "Edit anyway"
-msgstr "仍然编辑"
+#: setup/class_setupStep_Config3.inc:79
+msgid "Tweak some GOsa core behaviour"
+msgstr ""
 
-#: include/functions.inc:1329
-#, fuzzy, php-format
-msgid "You're going to edit the LDAP entry/entries '%s'"
-msgstr "您将要拷贝条目 '%s'。"
+#: setup/class_setupStep_Config3.inc:193
+#, fuzzy
+msgid "Session lifetime must be a numeric value."
+msgstr "需要的分值必须是数字。"
 
-#: include/functions.inc:1513
-msgid "Entries per page"
-msgstr "每页条目数"
+#: setup/class_setupStep_Config3.inc:197
+#, fuzzy
+msgid "Maximal ldap query time must be a numeric value. "
+msgstr "需要的分值必须是数字。"
 
-#: include/functions.inc:1541
-msgid "Apply filter"
-msgstr "应用过滤器"
+#: setup/class_setupStep_Migrate.inc:105 setup/class_setupStep_Migrate.inc:106
+#, fuzzy
+msgid "LDAP inspection"
+msgstr "PHP 安装检查"
 
-#: include/functions.inc:1793
-msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
-msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+#: setup/class_setupStep_Migrate.inc:107
+msgid "Analyze your current LDAP for GOsa compatibility"
+msgstr ""
 
-#: include/functions.inc:1837
-#, php-format
-msgid "GOsa development snapshot (Rev %s)"
-msgstr "GOsa 开发版(版本 %s)"
+#: setup/class_setupStep_Migrate.inc:113
+#, fuzzy
+msgid "Checking for root object"
+msgstr "检查 iconv 支持"
 
-#: include/functions.inc:1916
-#, php-format
-msgid "File '%s' could not be deleted."
+#: setup/class_setupStep_Migrate.inc:119
+msgid "Checking permissions on LDAP database"
 msgstr ""
 
-#: include/functions.inc:1950 include/functions.inc:1970
+#: setup/class_setupStep_Migrate.inc:125
 #, fuzzy
-msgid "Cannot write to revision file!"
-msgstr "æ\97 æ³\95å\88\9b建æ\96\87件 '%s'ã\80\82"
+msgid "Checking for invisible departments"
+msgstr "æ£\80æ\9f¥ iconv æ\94¯æ\8c\81"
 
-#: include/functions.inc:2212 include/functions.inc:2216
-#: include/functions.inc:2222
+#: setup/class_setupStep_Migrate.inc:131
 #, fuzzy
-msgid "'base_hook' is not available. Using default base."
-msgstr "警告: base_hook不可用。使用缺省 base。"
+msgid "Checking for invisible users"
+msgstr "检查 iconv 支持"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:137
 #, fuzzy
-msgid "LDAP warning"
-msgstr "LDAP 管理"
+msgid "Checking for super administrator"
+msgstr "检查一些附加程序"
 
-#: include/functions.inc:2244
+#: setup/class_setupStep_Migrate.inc:143
 #, fuzzy
-msgid "Cannot get schema information from server. No schema check possible!"
-msgstr "不能从服务器得到 schema 信息。无法对 schema 检查!"
+msgid "Checking for users outside the people tree"
+msgstr "检查 cups 模块"
 
-#: include/functions.inc:2270
-msgid "Used to store account specific informations."
+#: setup/class_setupStep_Migrate.inc:149
+#, fuzzy
+msgid "Checking for groups outside the groups tree"
+msgstr "检查 cups 模块"
+
+#: setup/class_setupStep_Migrate.inc:155
+msgid "Checking for windows workstations outside the winstation tree"
 msgstr ""
 
-#: include/functions.inc:2277
+#: setup/class_setupStep_Migrate.inc:161
+#, fuzzy
+msgid "Checking for duplicate uid numbers"
+msgstr "检查函数 %s"
+
+#: setup/class_setupStep_Migrate.inc:167
+#, fuzzy
+msgid "Checking for duplicate gid numbers"
+msgstr "检查函数 %s"
+
+#: setup/class_setupStep_Migrate.inc:190 setup/class_setupStep_Migrate.inc:239
+#: setup/class_setupStep_Migrate.inc:301 setup/class_setupStep_Migrate.inc:362
+#: setup/class_setupStep_Migrate.inc:429 setup/class_setupStep_Migrate.inc:503
+#: setup/class_setupStep_Migrate.inc:588 setup/class_setupStep_Migrate.inc:718
+#: setup/class_setupStep_Migrate.inc:807
+#, fuzzy
+msgid "LDAP query failed"
+msgstr "Mysql 查询失败。"
+
+#: setup/class_setupStep_Migrate.inc:191 setup/class_setupStep_Migrate.inc:240
+#: setup/class_setupStep_Migrate.inc:302 setup/class_setupStep_Migrate.inc:363
+#: setup/class_setupStep_Migrate.inc:430 setup/class_setupStep_Migrate.inc:504
+#: setup/class_setupStep_Migrate.inc:589 setup/class_setupStep_Migrate.inc:719
+#: setup/class_setupStep_Migrate.inc:808
+msgid "Possibly the 'root object' is missing."
+msgstr ""
+
+#: setup/class_setupStep_Migrate.inc:213
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'uidNumber'."
+msgstr "发现记录类型 '%s' 有重复。"
+
+#: setup/class_setupStep_Migrate.inc:262
+#, fuzzy, php-format
+msgid "Found %s duplicate values for attribute 'gidNumber'."
+msgstr "发现记录类型 '%s' 有重复。"
+
+#: setup/class_setupStep_Migrate.inc:317 setup/class_setupStep_Migrate.inc:518
+#: setup/class_setupStep_Migrate.inc:531 setup/class_setupStep_Migrate.inc:881
+#: setup/class_setupStep_Migrate.inc:1612
+#: setup/class_setupStep_Migrate.inc:1625
+msgid "Failed"
+msgstr "失败"
+
+#: setup/class_setupStep_Migrate.inc:319
+#, php-format
 msgid ""
-"Used to lock currently edited entries to avoid multiple changes at the same "
-"time."
+"Found %s winstations outside the predefined winstation department ou '%s'."
 msgstr ""
 
-#: include/functions.inc:2320
+#: setup/class_setupStep_Migrate.inc:320 setup/class_setupStep_Migrate.inc:599
+#: setup/class_setupStep_Migrate.inc:728
+#, fuzzy
+msgid "Migrate"
+msgstr "创建"
+
+#: setup/class_setupStep_Migrate.inc:387
 #, php-format
-msgid "Missing required object class '%s'!"
+msgid "Found %s groups outside the configured tree '%s'."
 msgstr ""
 
-#: include/functions.inc:2322
+#: setup/class_setupStep_Migrate.inc:388 setup/class_setupStep_Migrate.inc:463
+#, fuzzy
+msgid "Move"
+msgstr "模式"
+
+#: setup/class_setupStep_Migrate.inc:462
 #, php-format
-msgid "Missing optional object class '%s'!"
+msgid "Found %s user(s) outside the configured tree '%s'."
 msgstr ""
 
-#: include/functions.inc:2328
+#: setup/class_setupStep_Migrate.inc:520 setup/class_setupStep_Migrate.inc:533
 #, php-format
-msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgid ""
+"The specified user '%s' does not have full access to your ldap database."
 msgstr ""
 
-#: include/functions.inc:2330
+#: setup/class_setupStep_Migrate.inc:597
 #, php-format
-msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgid "Found %s user(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:2334
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
+#: setup/class_setupStep_Migrate.inc:945
+#, fuzzy
+msgid "Migration error"
+msgstr "创建"
+
+#: setup/class_setupStep_Migrate.inc:647 setup/class_setupStep_Migrate.inc:779
 #, fuzzy, php-format
-msgid "Class(es) available"
-msgstr "文件可用。"
+msgid "Cannot migrate department '%s':"
+msgstr "转到根部门"
 
-#: include/functions.inc:2356
-msgid ""
-"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
-"schema    configuration do not support this option."
+#: setup/class_setupStep_Migrate.inc:727
+#, php-format
+msgid "Found %s department(s) that will not be visible in GOsa."
 msgstr ""
 
-#: include/functions.inc:2357
-msgid ""
-"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
-"be      AUXILIARY"
+#: setup/class_setupStep_Migrate.inc:882
+msgid "There is no GOsa administrator account inside your LDAP."
 msgstr ""
 
-#: include/functions.inc:2361
-msgid ""
-"Your schema is configured to support the rfc2307bis group, but you have "
-"disabled this option on the 'ldap setup' step."
+#: setup/class_setupStep_Migrate.inc:945
+#, php-format
+msgid "Cannot add ACL for user '%s':"
 msgstr ""
 
-#: include/functions.inc:2362
-msgid "The objectClass 'posixGroup' must be STRUCTURAL"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Password error"
+msgstr "口令过期截止日"
 
-#: include/functions.inc:2385
-msgid "German"
-msgstr "德语"
-
-#: include/functions.inc:2386
-msgid "French"
-msgstr "法语"
-
-#: include/functions.inc:2387
-msgid "Italian"
-msgstr "意大利语"
+#: setup/class_setupStep_Migrate.inc:970
+#, fuzzy
+msgid "Provided passwords do not match!"
+msgstr "输入的新口令和重复口令不匹配!"
 
-#: include/functions.inc:2388
-msgid "Spanish"
-msgstr "西班牙语"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Input error"
+msgstr "PHP 错误"
 
-#: include/functions.inc:2389
-msgid "English"
-msgstr "英语"
+#: setup/class_setupStep_Migrate.inc:975
+#, fuzzy
+msgid "Specify a valid user ID!"
+msgstr "请输入一个有效的用户名!"
 
-#: include/functions.inc:2390
-msgid "Dutch"
-msgstr "荷兰语"
+#: setup/class_setupStep_Migrate.inc:1019
+#, fuzzy, php-format
+msgid "Adding an administrative user failed: object '%s' already exists!"
+msgstr "为对象 '%s' 设置动作状态(FAIstate) 失败,值为 '%s'。"
 
-#: include/functions.inc:2391
-msgid "Polish"
-msgstr "波兰语"
+#: setup/class_setupStep_Migrate.inc:1056
+#: setup/class_setupStep_Migrate.inc:1104
+#: setup/class_setupStep_Migrate.inc:1152
+#, fuzzy
+msgid "Cannot move users to the requested department!"
+msgstr "选择放置部门的子树"
 
-#: include/functions.inc:2392
-msgid "Swedish"
+#: setup/class_setupStep_Migrate.inc:1066
+msgid "Winstation will be moved from"
 msgstr ""
 
-#: include/functions.inc:2393
+#: setup/class_setupStep_Migrate.inc:1066
+#: setup/class_setupStep_Migrate.inc:1115
+#: setup/class_setupStep_Migrate.inc:1162 include/class_plugin.inc:1614
 #, fuzzy
-msgid "Chinese"
-msgstr "芯片组"
-
-#: include/functions.inc:2394
-msgid "Russian"
-msgstr "俄语"
-
-#: include/functions.inc:2544
-#, fuzzy, php-format
-msgid "Setting the password failed!"
-msgstr "设置口令失败。LDAP 服务器返回 '%s'。"
+msgid "to"
+msgstr "停止"
 
-#: include/functions.inc:2562
-#, php-format
-msgid ""
-"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
-msgstr "命令 '%s',作为插件 '%s' 的 POSTMODIFY 好像并不存在。"
+#: setup/class_setupStep_Migrate.inc:1077
+#: setup/class_setupStep_Migrate.inc:1125
+msgid "Updating following references too"
+msgstr ""
 
-#: include/functions.inc:2590
-msgid "Cannot generate samba hash!"
+#: setup/class_setupStep_Migrate.inc:1115
+msgid "Group will be moved from"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-msgid "Performance warning"
+#: setup/class_setupStep_Migrate.inc:1162
+msgid "User will be moved from"
 msgstr ""
 
-#: include/class_ldap.inc:220 include/class_ldap.inc:253
-#, php-format
-msgid "LDAP performance is poor: last query took about %.2fs!"
+#: setup/class_setupStep_Migrate.inc:1172
+msgid "The following references will be updated"
 msgstr ""
 
-#: include/class_ldap.inc:579
-#, php-format
+#: setup/class_setupStep_Migrate.inc:1613
 msgid ""
-"Cannot automatically create subtrees with RDN '%s': no object class found"
+"The LDAP root object is missing. It is required to use your LDAP service."
 msgstr ""
 
-#: include/class_ldap.inc:627
-#, php-format
-msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+#: setup/class_setupStep_Migrate.inc:1614
+#: setup/class_setupStep_Migrate.inc:1627
+msgid "Try to create root object"
 msgstr ""
 
-#: include/class_ldap.inc:711
-#, php-format
-msgid "while operating on '%s' using LDAP server '%s'"
-msgstr "当操作 '%s' 使用 LDAP 服务器 '%s' 时"
-
-#: include/class_ldap.inc:713
-#, php-format
-msgid "while operating on LDAP server %s"
-msgstr "当操作  LDAP 服务器 '%s' 时"
-
-#: include/class_ldap.inc:935
-#, php-format
-msgid ""
-"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
-"in line %s"
-msgstr "这不是一条有效的 DN: '%s'。导入数据应该以 'dn:...' 开始于行 %s"
-
-#: include/class_ldap.inc:964
-#, php-format
-msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
-msgstr "导入 dn: '%s' 时错误,请从行 %s 开始检查您的 LDIF!"
-
-#: plugins/personal/generic/paste_generic.tpl:1
-msgid "User settings"
-msgstr "用户设置"
+#: setup/class_setupStep_Migrate.inc:1626
+msgid "Root object couldn't be created, you should try it on your own."
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:7
-#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23
-msgid "Last name"
-msgstr ""
+#: setup/class_setupStep_Migrate.inc:1916
+#, fuzzy, php-format
+msgid "Copy '%s' to '%s' failed:"
+msgstr "移动 '%s' 到 '%s'"
 
-#: plugins/personal/generic/paste_generic.tpl:11
-#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27
-msgid "First name"
-msgstr ""
+#: setup/setup_frame.tpl:12
+#, fuzzy
+msgid "GOsa setup wizard"
+msgstr "GOsa 帮助浏览器"
 
-#: plugins/personal/generic/paste_generic.tpl:15
-#: plugins/personal/generic/class_user.inc:1127
-#: plugins/personal/generic/class_user.inc:1139
-#: plugins/personal/generic/class_user.inc:1153
-#: plugins/personal/generic/class_user.inc:1155
-#: plugins/personal/generic/generic.tpl:82 plugins/admin/users/template.tpl:32
-#: html/password.php:219
-msgid "Login"
-msgstr "登录名"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Installation"
+msgstr "Windows 工作站"
 
-#: plugins/personal/generic/paste_generic.tpl:23
-msgid "Clear password"
-msgstr "清除口令"
+#: setup/setup_frame.tpl:19
+#, fuzzy
+msgid "Steps"
+msgstr "系统设置"
 
-#: plugins/personal/generic/paste_generic.tpl:24
-msgid "Set new password"
-msgstr "设置新密码"
+#: setup/class_setupStep_Feedback.inc:91
+msgid "UNIX accounts/groups"
+msgstr ""
 
-#: plugins/personal/generic/paste_generic.tpl:37
-#: plugins/personal/generic/generic_picture.tpl:5
-#: plugins/personal/generic/generic_picture.tpl:15
-#: plugins/personal/generic/multiple_generic.tpl:13
-#: plugins/personal/generic/generic.tpl:20
-#: plugins/personal/generic/generic.tpl:22
-#: plugins/personal/generic/generic.tpl:38
-msgid "Personal picture"
-msgstr "个人图片"
+#: setup/class_setupStep_Feedback.inc:93
+#, fuzzy
+msgid "Samba management"
+msgstr "系统管理"
 
-#: plugins/personal/generic/paste_generic.tpl:47
-#: plugins/personal/generic/class_user.inc:1461
-msgid "User picture"
-msgstr "ç\94¨æ\88·å\9b¾ç\89\87"
+#: setup/class_setupStep_Feedback.inc:95
+#, fuzzy
+msgid "Mailsystem management"
+msgstr "ç³»ç»\9f管ç\90\86"
 
-#: plugins/personal/generic/paste_generic.tpl:52
-#: plugins/personal/generic/generic_picture.tpl:27
-msgid "Remove picture"
-msgstr "删除图片"
+#: setup/class_setupStep_Feedback.inc:97
+#, fuzzy
+msgid "FAX system administration"
+msgstr "用户管理"
 
-#: plugins/personal/generic/generic_certs.tpl:3
-#: plugins/personal/generic/multiple_generic.tpl:117
-#: plugins/personal/generic/generic.tpl:238
-msgid "Certificates"
-msgstr "证书"
+#: setup/class_setupStep_Feedback.inc:99
+#, fuzzy
+msgid "Asterisk administration"
+msgstr "用户管理"
 
-#: plugins/personal/generic/generic_certs.tpl:8
-msgid "Standard certificate"
-msgstr "标准证书"
+#: setup/class_setupStep_Feedback.inc:101
+#, fuzzy
+msgid "System inventory"
+msgstr "删除 inventory"
 
-#: plugins/personal/generic/generic_certs.tpl:21
-#: plugins/personal/generic/generic_certs.tpl:45
-#: plugins/personal/generic/generic_certs.tpl:69
-#: plugins/admin/users/class_divListUsers.inc:188
-#: plugins/admin/groups/class_divListGroup.inc:193
-#: plugins/admin/acl/class_divListACL.inc:173
-#: plugins/admin/departments/class_divListDepartment.inc:161
-#: plugins/admin/ogroups/class_divListOGroup.inc:205
-msgid "Remove"
-msgstr "删除"
+#: setup/class_setupStep_Feedback.inc:103
+#, fuzzy
+msgid "System-/Configmanagement"
+msgstr "系统管理"
 
-#: plugins/personal/generic/generic_certs.tpl:33
-msgid "S/MIME certificate"
-msgstr "S/MIME 证书"
+#: setup/class_setupStep_Feedback.inc:105
+msgid "Addressbook"
+msgstr "地址簿"
 
-#: plugins/personal/generic/generic_certs.tpl:57
-msgid "PKCS12 certificate"
-msgstr "PKCS12 证书"
+#: setup/class_setupStep_Feedback.inc:111
+#: setup/class_setupStep_Feedback.inc:113
+msgid "Notification and feedback"
+msgstr ""
 
-#: plugins/personal/generic/generic_certs.tpl:78
-#: plugins/personal/generic/class_user.inc:1424
-msgid "Certificate serial number"
-msgstr "证书系列号"
+#: setup/class_setupStep_Feedback.inc:112
+#, fuzzy
+msgid "Get notifications or send feedback"
+msgstr "主机通知命令"
 
-#: plugins/personal/generic/class_user.inc:38
+#: setup/class_setupStep_Feedback.inc:131 setup/class_setup.inc:76
 #, fuzzy
-msgid "Edit organizational user settings"
-msgstr "应用程序设置"
+msgid "Setup error"
+msgstr "PHP 错误"
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "female"
-msgstr "女"
+#: setup/class_setupStep_Feedback.inc:140
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Feedback error"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:297
-msgid "male"
-msgstr "男"
+#: setup/class_setupStep_Feedback.inc:140
+#, php-format
+msgid "Cannot send feedback to '%s': %s"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:395
-msgid "Cannot upload file!"
+#: setup/class_setupStep_Feedback.inc:147
+msgid "Cannot send feedback: service temporarily unavailable"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:492
-#, fuzzy
-msgid "Please enter a valid serial number!"
-msgstr "请输入一个有效的系列号"
+#: setup/class_setupStep_Feedback.inc:149
+msgid "Feedback sucessfully send"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:536
+#: setup/class_setupStep_Feedback.inc:179
+#, fuzzy
+msgid "Please specify a valid email address."
+msgstr "请输入一个有效的 iSerial。"
+
+#: setup/class_setupStep_Feedback.inc:183
 msgid ""
-"(Some types of certificates are currently not supported and may be displayed "
-"as 'invalid'.)"
-msgstr "(目前有的种类的证书不支持,可能显示为“无效”)"
+"You have to select at least one of both options, subscribe or send feedback."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:546
-#, php-format
-msgid "Certificate is valid from %s to %s and is currently %s."
-msgstr "è¯\81书ä»\8e %s å\88° %s æ\98¯æ\9c\89æ\95\88ç\9a\84ï¼\8cå½\93å\89\8d为 %sã\80\82"
+#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57
+#, fuzzy
+msgid "License"
+msgstr "è¡\8c"
 
-#: plugins/personal/generic/class_user.inc:549
-msgid "valid"
-msgstr "有效"
+#: setup/class_setupStep_License.inc:58
+msgid "Terms and conditions for usage"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:550
-msgid "invalid"
-msgstr "无效"
+#: setup/setup_config2.tpl:2
+msgid "Samba settings"
+msgstr "Samba 设置"
 
-#: plugins/personal/generic/class_user.inc:555
-msgid "No certificate installed"
-msgstr "未安装证书"
+#: setup/setup_config2.tpl:6
+msgid "Samba hash generator"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:575 html/password.php:163
+#: setup/setup_config2.tpl:31
 #, fuzzy
-msgid "Password method"
-msgstr "口令存储"
+msgid "RID base"
+msgstr "数据库"
 
-#: plugins/personal/generic/class_user.inc:575
+#: setup/setup_config2.tpl:46
 #, fuzzy
-msgid "The selected password method is no longer available."
-msgstr "此应用程序不再可用。"
+msgid "Workstation container"
+msgstr "工作站名称"
 
-#: plugins/personal/generic/class_user.inc:755
-#, fuzzy, php-format
-msgid "You have no permission to move this object to '%s'!"
-msgstr "您无权删除这个黑名单。"
+#: setup/setup_config2.tpl:61
+msgid "Samba SID mapping"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1136
-#: plugins/personal/generic/class_user.inc:1178
-#: plugins/personal/generic/class_user.inc:1444
-#: plugins/personal/generic/class_user.inc:1564
-#: plugins/admin/users/class_userManagement.inc:739
-#: plugins/admin/users/class_userManagement.inc:817 html/getxls.php:88
-#: html/getxls.php:225 html/getxls.php:283 html/getxls.php:299
-msgid "Given name"
-msgstr "名"
+#: setup/setup_config2.tpl:71
+#, fuzzy
+msgid "Timezone"
+msgstr "用户时区"
 
-#: plugins/personal/generic/class_user.inc:1159
-#: plugins/personal/generic/class_user.inc:1450
-#: plugins/personal/generic/class_user.inc:1549
-#: plugins/personal/generic/multiple_generic.tpl:88
-#: plugins/personal/generic/generic.tpl:210
-msgid "Homepage"
-msgstr "个人主页"
+#: setup/setup_config2.tpl:74
+#, fuzzy
+msgid "Please choose your preferred timezone here"
+msgstr "首选语种"
 
-#: plugins/personal/generic/class_user.inc:1164
-#: plugins/personal/generic/class_user.inc:1552
-#: plugins/personal/generic/multiple_generic.tpl:217
-#: plugins/personal/generic/multiple_generic.tpl:428
-#: plugins/personal/generic/generic.tpl:330
-#: plugins/personal/generic/generic.tpl:511
-#: plugins/admin/users/class_divListUsers.inc:275
-#: plugins/admin/groups/class_divListGroup.inc:265
-#: plugins/admin/departments/class_departmentGeneric.inc:273
-#: plugins/admin/departments/generic.tpl:83
-#: plugins/admin/ogroups/class_ogroupManagement.inc:508
-#: plugins/generic/references/class_reference.inc:60
-msgid "Phone"
-msgstr "电话"
+#: setup/setup_config2.tpl:96
+#, fuzzy
+msgid "Additional GOsa settings"
+msgstr "应用程序设置"
 
-#: plugins/personal/generic/class_user.inc:1167
-#: plugins/personal/generic/class_user.inc:1555
-#: plugins/personal/generic/multiple_generic.tpl:247
-#: plugins/personal/generic/multiple_generic.tpl:438
-#: plugins/personal/generic/generic.tpl:355
-#: plugins/personal/generic/generic.tpl:523
-#: plugins/admin/users/class_divListUsers.inc:277
-#: plugins/admin/departments/class_departmentGeneric.inc:276
-#: plugins/admin/departments/class_departmentGeneric.inc:587
-#: plugins/admin/departments/generic.tpl:91 html/getxls.php:224
-#: html/getxls.php:299
-msgid "Fax"
-msgstr "传真"
+#: setup/setup_config2.tpl:100
+msgid "Enable Copy & Paste"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1170
-#: plugins/personal/generic/class_user.inc:1558
-#: plugins/personal/generic/multiple_generic.tpl:227
-#: plugins/personal/generic/generic.tpl:339 html/getxls.php:301
-msgid "Mobile"
-msgstr "手机"
+#: setup/setup_config2.tpl:112
+#, fuzzy
+msgid "Enable DNS extension"
+msgstr "删除打印机扩展"
 
-#: plugins/personal/generic/class_user.inc:1173
-#: plugins/personal/generic/class_user.inc:1561
-#: plugins/personal/generic/multiple_generic.tpl:237
-#: plugins/personal/generic/generic.tpl:347 html/getxls.php:228
-#: html/getxls.php:302
-msgid "Pager"
-msgstr "呼机"
+#: setup/setup_config2.tpl:124
+#, fuzzy
+msgid "Enable DHCP extension"
+msgstr "删除打印机扩展"
 
-#: plugins/personal/generic/class_user.inc:1285
+#: setup/setup_config2.tpl:136
 #, fuzzy
-msgid "Cannot open certificate!"
-msgstr "无法打开指定证书!"
+msgid "Enable mime type management"
+msgstr "系统管理"
 
-#: plugins/personal/generic/class_user.inc:1416
-#: plugins/personal/generic/multiple_generic.tpl:371
-#: plugins/personal/generic/generic.tpl:463
-msgid "Unit"
-msgstr "单元"
+#: setup/setup_config2.tpl:148
+#, fuzzy
+msgid "Enable FAI release management"
+msgstr "Asterisk 管理"
 
-#: plugins/personal/generic/class_user.inc:1417
-#: plugins/personal/generic/multiple_generic.tpl:402
-#: plugins/personal/generic/generic.tpl:488
-msgid "House identifier"
-msgstr "家庭角色"
+#: setup/setup_config2.tpl:160
+#, fuzzy
+msgid "Enable user netatalk plugin"
+msgstr "管理 netatalk 账号"
 
-#: plugins/personal/generic/class_user.inc:1418
-#: plugins/personal/generic/multiple_generic.tpl:302
-#: plugins/personal/generic/generic.tpl:405
-msgid "Vocation"
-msgstr "行业"
+#: setup/setup_config2.tpl:171
+#, fuzzy
+msgid "Government mode"
+msgstr "部门名称"
 
-#: plugins/personal/generic/class_user.inc:1419
-#: plugins/personal/generic/multiple_generic.tpl:449
-#: plugins/personal/generic/generic.tpl:532
-msgid "Last delivery"
-msgstr "最后传递"
+#: setup/setup_config2.tpl:180
+msgid "Mail settings"
+msgstr "邮件选项"
 
-#: plugins/personal/generic/class_user.inc:1420
-#: plugins/personal/generic/multiple_generic.tpl:360
-#: plugins/personal/generic/generic.tpl:454
-msgid "Person locality"
+#: setup/setup_config2.tpl:184
+msgid "Mail method"
+msgstr "邮件方法"
+
+#: setup/setup_config2.tpl:200
+msgid "Account identification attribute"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1421
-#: plugins/personal/generic/multiple_generic.tpl:312
-#: plugins/personal/generic/generic.tpl:413
-msgid "Unit description"
-msgstr "单元描述"
+#: setup/setup_config2.tpl:214
+#, fuzzy
+msgid "Vacation templates"
+msgstr "工作站模板"
 
-#: plugins/personal/generic/class_user.inc:1422
-#: plugins/personal/generic/multiple_generic.tpl:323
-#: plugins/personal/generic/generic.tpl:422
-msgid "Subject area"
+#: setup/setup_config2.tpl:230
+msgid "Use Cyrus UNIX style"
 msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1423
-#: plugins/personal/generic/multiple_generic.tpl:334
-#: plugins/personal/generic/generic.tpl:431
-msgid "Functional title"
-msgstr "单位职称"
+#: setup/setup_config2.tpl:240
+msgid "Snapshots / Undo"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1425
-#: plugins/personal/generic/multiple_generic.tpl:460
-#: plugins/personal/generic/generic.tpl:541
-msgid "Public visible"
-msgstr "公开"
+#: setup/setup_config2.tpl:249 setup/setup_config2.tpl:294
+msgid "Enable snapshots"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1426
-#: plugins/personal/generic/multiple_generic.tpl:382
-#: plugins/personal/generic/generic.tpl:472
-msgid "Street"
-msgstr "街道"
+#: setup/setup_config2.tpl:255 setup/setup_config2.tpl:300
+msgid "Snapshot base"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1427
-#: plugins/personal/generic/multiple_generic.tpl:345
-#: plugins/personal/generic/generic.tpl:440
-#: plugins/admin/acl/class_divListACL.inc:167
-#: plugins/admin/acl/class_divListACL.inc:226
-#: plugins/admin/acl/class_aclRole.inc:694
-msgid "Role"
-msgstr "角色"
+#: setup/setup_feedback.tpl:6
+msgid "Subscribe to the gosa-announce mailinglist"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1428
-#: plugins/personal/generic/multiple_generic.tpl:392
-#: plugins/personal/generic/generic.tpl:480 html/getxls.php:229
-msgid "Postal code"
-msgstr "邮编"
+#: setup/setup_feedback.tpl:9
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to subscribe you to the gosa-announce mailing list. You've to confirm "
+"this by mail."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1432
-#, fuzzy
-msgid "Generic user settings"
-msgstr "通用队列设置"
+#: setup/setup_feedback.tpl:30 html/getxls.php:227
+msgid "Mail address"
+msgstr "邮件地址"
 
-#: plugins/personal/generic/class_user.inc:1436
-#: plugins/personal/password/class_password.inc:146
-#: plugins/personal/posix/class_posixAccount.inc:1500
-msgid "My account"
-msgstr "我的账号"
+#: setup/setup_feedback.tpl:41
+msgid "Send feedback to the GOsa project team"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1442
-#: plugins/personal/password/class_password.inc:79
-#: plugins/personal/password/class_password.inc:82
-#: plugins/personal/password/class_password.inc:85
-#: plugins/personal/password/class_password.inc:88
-#: plugins/personal/password/class_password.inc:91
-#: plugins/personal/password/class_password.inc:94
-#: plugins/personal/password/class_password.inc:108
-#: plugins/personal/password/class_password.inc:114
-#: plugins/personal/password/class_password.inc:142
-#, fuzzy
-msgid "User password"
-msgstr "清除口令"
+#: setup/setup_feedback.tpl:44
+msgid ""
+"When checking this option, GOsa will try to connect http://oss.gonicus.de in "
+"order to submit your form anonymously."
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1443 html/getxls.php:303
-msgid "Surename"
-msgstr ""
+#: setup/setup_feedback.tpl:50
+msgid "Did the setup procedure help you to get started?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1445
-#, fuzzy
-msgid "User identification"
-msgstr "用户信息"
+#: setup/setup_feedback.tpl:60
+msgid "If not, what problems did you encounter"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1446
-#: plugins/personal/generic/generic.tpl:98
-msgid "Personal title"
-msgstr "个人称谓"
+#: setup/setup_feedback.tpl:68
+msgid "Is this the first time you use GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1447
-#: plugins/personal/generic/multiple_generic.tpl:23
-#: plugins/personal/generic/generic.tpl:108
-msgid "Academic title"
-msgstr "学位头衔"
+#: setup/setup_feedback.tpl:74
+msgid "I use it since"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1448 html/getxls.php:226
-msgid "Home postal address"
-msgstr "住宅地址"
+#: setup/setup_feedback.tpl:75
+msgid "Select the year since when you are using GOsa"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1449
-#, fuzzy
-msgid "Home phone number"
-msgstr "电话号码"
+#: setup/setup_feedback.tpl:82
+msgid "What operating system / distribution do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1452
-#: plugins/personal/generic/multiple_generic.tpl:159
-#: plugins/personal/generic/generic.tpl:279
-#: plugins/admin/users/class_divListUsers.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:157
-#: plugins/admin/ogroups/class_ogroupManagement.inc:506
-#: plugins/generic/references/class_reference.inc:58
-msgid "Department"
-msgstr "部门"
+#: setup/setup_feedback.tpl:90
+msgid "What web server do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1453
-#: plugins/personal/generic/generic.tpl:119
-msgid "Date of birth"
-msgstr "生日"
+#: setup/setup_feedback.tpl:98
+msgid "What PHP version do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1454
-#, fuzzy
-msgid "Gender"
-msgstr "发送者"
+#: setup/setup_feedback.tpl:106
+msgid "LDAP"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1455
-#, fuzzy
-msgid "Preferred language"
-msgstr "首选语种"
+#: setup/setup_feedback.tpl:110
+msgid "What kind of LDAP server(s) do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1456
-#, fuzzy
-msgid "Department number"
-msgstr "部门名称"
+#: setup/setup_feedback.tpl:116
+msgid "How many objects are in your LDAP?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1457
+#: setup/setup_feedback.tpl:123
 #, fuzzy
-msgid "Employee number"
-msgstr "å\91\98工类å\88«"
+msgid "Features"
+msgstr "å\8a\9fè\83½"
 
-#: plugins/personal/generic/class_user.inc:1458
-#: plugins/personal/generic/multiple_generic.tpl:189
-#: plugins/personal/generic/generic.tpl:303
-msgid "Employee type"
-msgstr "员工类别"
+#: setup/setup_feedback.tpl:126
+msgid "What features of GOsa do you use?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1459
-#: plugins/personal/generic/multiple_generic.tpl:265
-#: plugins/personal/generic/generic.tpl:373
-#: plugins/admin/departments/class_departmentGeneric.inc:580
-#: plugins/admin/departments/generic.tpl:56
-#: plugins/admin/departments/generic.tpl:68 html/getxls.php:226
-msgid "Location"
-msgstr "位置"
+#: setup/setup_feedback.tpl:136
+msgid "What features do you want to see in future versions of GOsa?"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1460
-#: plugins/personal/generic/multiple_generic.tpl:275
-#: plugins/personal/generic/generic.tpl:381
-#: plugins/admin/departments/class_departmentGeneric.inc:584
-#: plugins/admin/departments/generic.tpl:60 html/getxls.php:230
-#: html/getxls.php:303
-msgid "State"
-msgstr "州/省"
+#: setup/setup_feedback.tpl:143
+msgid "Send feedback"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1462
+#: setup/setup_schema.tpl:3
 #, fuzzy
-msgid "Room number"
-msgstr "电话号码"
+msgid "Schema specific settings"
+msgstr "Samba 设置"
 
-#: plugins/personal/generic/class_user.inc:1463
-#, fuzzy
-msgid "Telefon number"
-msgstr "电话号码"
+#: setup/setup_schema.tpl:7
+msgid "Enable schema validation when logging in"
+msgstr ""
 
-#: plugins/personal/generic/class_user.inc:1464
+#: setup/setup_schema.tpl:16
 #, fuzzy
-msgid "Mobile number"
-msgstr "ç\94µè¯\9då\8f·ç \81"
+msgid "Check status"
+msgstr "å\85·æ\9c\89ç\8a¶æ\80\81"
 
-#: plugins/personal/generic/class_user.inc:1465
+#: setup/setup_schema.tpl:20
+msgid "Schema check succeeded"
+msgstr ""
+
+#: setup/setup_schema.tpl:23
 #, fuzzy
-msgid "Pager number"
-msgstr "电话号码"
+msgid "Schema check failed"
+msgstr "保存电话失败"
 
-#: plugins/personal/generic/class_user.inc:1466
+#: setup/setup_schema.tpl:31
+msgid ""
+"Could not read any schema informations, all checks skipped. Adjust your ldap "
+"acls."
+msgstr ""
+
+#: setup/setup_schema.tpl:35
+msgid ""
+"It seems that your ldap database wasn't initialized yet. This maybe the "
+"reason, why GOsa can't read your schema configuration!"
+msgstr ""
+
+#: setup/setup_license.tpl:8
+msgid "I have read the license and accept it"
+msgstr ""
+
+#: setup/class_setup.inc:196
 #, fuzzy
-msgid "User certificates"
-msgstr "编辑证书"
+msgid "Completed"
+msgstr "不完整"
 
-#: plugins/personal/generic/class_user.inc:1468 html/getxls.php:228
-#: html/getxls.php:300 html/getxls.php:302
-msgid "Postal address"
-msgstr "地址"
+#: setup/class_setupStep_Ldap.inc:53
+#, fuzzy
+msgid "LDAP setup"
+msgstr "LDAP 服务器"
 
-#: plugins/personal/generic/class_user.inc:1469
+#: setup/class_setupStep_Ldap.inc:54
 #, fuzzy
-msgid "Fax number"
-msgstr "系列号"
+msgid "LDAP connection setup"
+msgstr "断开"
 
-#: plugins/personal/generic/password.tpl:2
+#: setup/class_setupStep_Ldap.inc:55
 msgid ""
-"You have changed the method your password is stored in the ldap database. "
-"For that reason you've to enter your password at this point again. GOsa will "
-"then encode it with the selected method."
+"This dialog performs the basic configuration of the LDAP connectivity for "
+"GOsa."
 msgstr ""
-"您已经修改了口令在 LDAP 数据库中存储的方法。因此您需要再输入您的口令。GOsa 将"
-"会按照您选择的方法重新编码。"
 
-#: plugins/personal/generic/password.tpl:11
-#: plugins/personal/password/password.tpl:23
-#: plugins/admin/users/password.tpl:17
-msgid "Repeat new password"
-msgstr "重复新口令"
+#: setup/class_setupStep_Ldap.inc:105
+#, fuzzy, php-format
+msgid "Anonymous bind failed on server '%s'."
+msgstr "为服务器 '%s' 插入新宏失败。"
 
-#: plugins/personal/generic/password.tpl:17
-#: plugins/personal/password/password.tpl:39
-#: plugins/admin/users/password.tpl:30
-msgid "Set password"
-msgstr "设置口令"
+#: setup/class_setupStep_Ldap.inc:107
+#, fuzzy, php-format
+msgid "Bind as user '%s' failed on server '%s'."
+msgstr "为服务器 '%s' 插入新宏失败。"
 
-#: plugins/personal/generic/multiple_generic.tpl:5
-#: plugins/personal/generic/generic.tpl:6
-msgid "Personal information"
-msgstr "个人信息"
+#: setup/class_setupStep_Ldap.inc:112
+#, php-format
+msgid "Anonymous bind on server '%s' succeeded."
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:33
-#: plugins/personal/generic/generic.tpl:157
-msgid "Preferred langage"
-msgstr "首选语种"
+#: setup/class_setupStep_Ldap.inc:113
+#, fuzzy
+msgid "Please specify user and password."
+msgstr "请输入您的口令!"
 
-#: plugins/personal/generic/multiple_generic.tpl:53
-#: plugins/personal/generic/generic.tpl:175
-msgid "Choose subtree to place user in"
-msgstr "将用户放到所选择子树中"
+#: setup/class_setupStep_Ldap.inc:115
+#, fuzzy, php-format
+msgid "Bind as user '%s' on server '%s' succeeded."
+msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。"
 
-#: plugins/personal/generic/multiple_generic.tpl:56
-#: plugins/personal/generic/generic.tpl:180
-#: plugins/admin/groups/generic.tpl:49 plugins/admin/acl/acl_role.tpl:37
-#: plugins/admin/departments/generic.tpl:45
-#: plugins/admin/ogroups/generic.tpl:34
-msgid "Select a base"
-msgstr "选择一个位置"
+#: setup/setup_config1.tpl:2
+msgid "Look and feel"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:67
-#: plugins/personal/generic/multiple_generic.tpl:285
-#: plugins/personal/generic/generic.tpl:194
-#: plugins/personal/generic/generic.tpl:389
-#: plugins/admin/departments/class_departmentGeneric.inc:585
-#: plugins/admin/departments/generic.tpl:76 html/getxls.php:229
-msgid "Address"
-msgstr "住址"
+#: setup/setup_config1.tpl:6
+#, fuzzy
+msgid "Theme"
+msgstr "模板"
 
-#: plugins/personal/generic/multiple_generic.tpl:78
-#: plugins/personal/generic/generic.tpl:202
-msgid "Private phone"
-msgstr "ç§\81人ç\94µè¯\9d"
+#: setup/setup_config1.tpl:15
+#, fuzzy
+msgid "Apache"
+msgstr "ç¼\93å­\98"
 
-#: plugins/personal/generic/multiple_generic.tpl:105
-#: plugins/personal/generic/generic.tpl:223
-msgid "Password storage"
-msgstr "口令存储"
+#: setup/setup_config1.tpl:19
+msgid "Compress output send to browser"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:121
-#: plugins/personal/generic/generic.tpl:241
-msgid "Edit certificates"
-msgstr "编辑证书"
+#: setup/setup_config1.tpl:27
+#, fuzzy
+msgid "People and group storage"
+msgstr "People dn attribute"
 
-#: plugins/personal/generic/multiple_generic.tpl:137
-#: plugins/personal/generic/generic.tpl:259
-msgid "Organizational information"
-msgstr "组织信息"
+#: setup/setup_config1.tpl:30
+#, fuzzy
+msgid "People DN attribute"
+msgstr "People dn attribute"
 
-#: plugins/personal/generic/multiple_generic.tpl:169
-#: plugins/personal/generic/generic.tpl:287
-msgid "Department No."
-msgstr "部门编号"
+#: setup/setup_config1.tpl:41
+msgid "People storage subtree"
+msgstr ""
 
-#: plugins/personal/generic/multiple_generic.tpl:179
-#: plugins/personal/generic/generic.tpl:295
-msgid "Employee No."
-msgstr "å\91\98å·¥ç¼\96å\8f·"
+#: setup/setup_config1.tpl:50
+#, fuzzy
+msgid "Group storage subtree"
+msgstr "忽ç\95¥å­\90æ \91"
 
-#: plugins/personal/generic/multiple_generic.tpl:207
-#: plugins/personal/generic/multiple_generic.tpl:418
-#: plugins/personal/generic/generic.tpl:321
-#: plugins/personal/generic/generic.tpl:503
-msgid "Room No."
-msgstr "房间号"
+#: setup/setup_config1.tpl:59
+msgid "Include personal title in user DN"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:81
-#: plugins/personal/password/class_password.inc:83
-#: plugins/admin/users/class_userManagement.inc:241 html/password.php:197
-msgid ""
-"The passwords you've entered as 'New password' and 'Repeated new password' "
-"do not match."
-msgstr "您输入的“新口令”和“重复新口令”不匹配。"
+#: setup/setup_config1.tpl:70
+msgid "Relaxed naming policies"
+msgstr ""
 
-#: plugins/personal/generic/main.inc:104
+#: setup/setup_config1.tpl:81
 #, fuzzy
-msgid "You have no permission to set your password!"
-msgstr "您无权修改您的口令。"
+msgid "Automatic uids"
+msgstr "自动"
 
-#: plugins/personal/generic/main.inc:173
-#: plugins/admin/users/class_divListUsers.inc:184
-#: plugins/admin/groups/class_divListGroup.inc:191
-msgid "Edit"
-msgstr "编辑"
+#: setup/setup_config1.tpl:113
+#, fuzzy
+msgid "Number base for people/groups"
+msgstr "用户/组起始 ID"
 
-#: plugins/personal/generic/main.inc:195
-msgid "Generic user information"
-msgstr "用户一般信息"
+#: setup/setup_config1.tpl:121
+msgid "Hook for number base"
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:29
-#: plugins/personal/generic/generic.tpl:40
-msgid "Change picture"
-msgstr "更换图片"
+#: setup/setup_config1.tpl:140
+#, fuzzy
+msgid "Password encryption algorithm"
+msgstr "加密算法"
 
-#: plugins/personal/generic/generic.tpl:52
-#: plugins/personal/generic/generic.tpl:73
-#: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14
-msgid "Multiple edit"
+#: setup/setup_config1.tpl:151
+#, fuzzy
+msgid "Password restrictions"
+msgstr "口令过期截止日"
+
+#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162
+msgid "Password minimum length"
 msgstr ""
 
-#: plugins/personal/generic/generic.tpl:62
-msgid "Template name"
-msgstr "模板名称"
+#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173
+msgid "Different characters from old password"
+msgstr ""
 
-#: plugins/personal/generic/generic.tpl:144 html/getxls.php:88
-#: html/getxls.php:283
-msgid "Sex"
-msgstr "性别"
+#: setup/setup_config1.tpl:182
+#, fuzzy
+msgid "Password change hook"
+msgstr "不允许修改口令"
 
-#: plugins/personal/generic/generic.tpl:517
-msgid "Please use the phone tab"
-msgstr "请使用电话页面"
+#: setup/setup_config1.tpl:198
+msgid "Use SASL for kerberos"
+msgstr ""
 
-#: plugins/personal/password/nochange.tpl:2
-msgid "Password change not allowed"
-msgstr "不允许修改口令"
+#: setup/setup_config1.tpl:209
+#, fuzzy
+msgid "Use account expiration"
+msgstr "账号过期于"
 
-#: plugins/personal/password/nochange.tpl:6
-msgid "You are not allowed to change your password at this time"
-msgstr "现在您无权修改您的口令"
+#: setup/setup_config1.tpl:221
+msgid ""
+"GOsa supports several encryption types for your passwords. Normally this is "
+"adjustable via user templates, but you can specify a default method to be "
+"used here, too."
+msgstr ""
+"GOsa 支持好几种口令加密算法。通常可以通过用户模板调整算法,但是在这里您可以定"
+"义一个缺省方法。"
 
-#: plugins/personal/password/changed.tpl:3
+#: setup/setup_config1.tpl:222
+#, fuzzy
 msgid ""
-"You've successfully changed your password. Remember to change all programms "
-"configured to use it as well."
-msgstr "您已经成功更改口令。还要记住更改相关程序设定。"
+"GOsa always acts as admin and manages access rights internally. This is a "
+"workaround till OpenLDAP's in directory ACI's are    fully implemented. For "
+"this to work, we need the admin DN and the corresponding password."
+msgstr ""
+"GOsa 总是作为 LDAP 管理员,并且管理内部权限。这是一个临时方案直到 OpenLDAP 目"
+"录 ACI 被完全实现。为了让其实现,我们需要管理员 DN 和正确的口令。"
 
-#: plugins/personal/password/class_password.inc:27
+#: setup/setup_config1.tpl:223
+msgid ""
+"Some basic LDAP parameters are tunable and affect the locations where GOsa "
+"saves people and groups, including the way accounts get created. Check the "
+"values below if the fit your needs."
+msgstr ""
+"有的基本的 LDAP 参数是可调的,并影响位置Gosa 保存用户和组的地方。包括账号创建"
+"的方式。点击下面的值如果它们不符合您的需要。"
+
+#: setup/setup_config1.tpl:224
 #, fuzzy
-msgid "Change user passwords"
-msgstr "修改口令"
+msgid ""
+"GOsa has modular support for several mail methods. These methods provide "
+"interfaces to users mailboxes and general handling    for quotas. You can "
+"choose the dummy plugin to leave all your mail settings untouched."
+msgstr ""
+"GOsa 通过模组支持几种邮件方法。这些方法提供用户邮箱的界面以及管理用户空间。您"
+"可以选择选择 dummy 插件以保持您的邮件设置不被更改。"
 
-#: plugins/personal/password/class_password.inc:80
-msgid "You need to specify your current password in order to proceed."
-msgstr "您需要输入当前口令才能继续。"
+#: setup/setup_language.tpl:3
+#, fuzzy
+msgid "Please select the preferred language"
+msgstr "请选择一个打印机或者取消。"
 
-#: plugins/personal/password/class_password.inc:86
-msgid "The password you've entered as 'New password' is empty."
-msgstr "输入的“新口令”为空。"
+#: setup/setup_language.tpl:5
+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/personal/password/class_password.inc:89 html/password.php:208
-msgid "The password used as new and current are too similar."
-msgstr "输入的新口令和当前口令非常相似。"
+#: setup/setup_language.tpl:9
+#, fuzzy
+msgid "Please select your preferred language here"
+msgstr "首选语种"
 
-#: plugins/personal/password/class_password.inc:92 html/password.php:213
-msgid "The password used as new is to short."
-msgstr "输入的新口令太短了。"
+#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39
+msgid "Installation check"
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:95
-#, fuzzy, php-format
-msgid "External password changer reported a problem: %s."
-msgstr "外部口令更改程序报告错误:"
+#: setup/class_setupStep_Checks.inc:40
+msgid "Basic checks for PHP version and required extensions."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:109
+#: setup/class_setupStep_Checks.inc:64
+#, fuzzy
+msgid "Checking PHP version"
+msgstr "检查 PHP 版本 (>=4.1.0)"
+
+#: setup/class_setupStep_Checks.inc:65
+#, php-format
+msgid "PHP must be of version %s or above."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:66
 msgid ""
-"The password you've entered as your current password doesn't match the real "
-"one."
-msgstr "您输入的当前口令不正确。"
+"GOsa requires functionality that is not available (or buggy) in older PHP "
+"versions. Please update to a supported version."
+msgstr ""
 
-#: plugins/personal/password/class_password.inc:115
+#: setup/class_setupStep_Checks.inc:72
 #, fuzzy
-msgid "You have no permission to change your password."
-msgstr "æ\82¨æ\97 æ\9d\83ä¿®æ\94¹æ\82¨ç\9a\84å\8f£ä»¤ã\80\82"
+msgid "Checking for LDAP support"
+msgstr "æ£\80æ\9f¥ iconv æ\94¯æ\8c\81"
 
-#: plugins/personal/password/password.tpl:4
+#: setup/class_setupStep_Checks.inc:73
+#, fuzzy
+msgid "This is the main extension used by GOsa and therefore really required."
+msgstr "这是 GOsa 用到的主要模块,因此是必须的。"
+
+#: setup/class_setupStep_Checks.inc:74
 msgid ""
-"To change your personal password use the fields below. The changes take "
-"effect immediately. Please memorize the new password, because you wouldn't "
-"be able to login without it."
+"The ldap extension (php5-ldap) is required to communicate with your LDAP "
+"server."
 msgstr ""
-"用下面的表格更改个人口令。口令更改即时生效。请记住新口令,忘记口令将无法登"
-"录。"
 
-#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8
-msgid ""
-"Changing the password affects your authentification on mail, proxy, samba "
-"and unix services."
-msgstr "修改口令将影响邮件,代理,samba,unix等的登录。"
+#: setup/class_setupStep_Checks.inc:80
+msgid "Checking for gettext support"
+msgstr "检查 getteext 支持"
 
-#: plugins/personal/password/password.tpl:41
-msgid "Clear fields"
-msgstr "清除字段"
+#: setup/class_setupStep_Checks.inc:81
+#, fuzzy
+msgid "Gettext support is required for internationalization."
+msgstr "对于 GOsa 国际化需要 gettext 支持。"
 
-#: plugins/personal/posix/paste_generic.tpl:4
-msgid "Posix settings"
-msgstr "Posix 设置"
+#: setup/class_setupStep_Checks.inc:82 setup/class_setupStep_Checks.inc:90
+msgid "Please make sure that the extension is activated."
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:8
-#: plugins/personal/posix/class_posixAccount.inc:1005
-#: plugins/personal/posix/class_posixAccount.inc:1008
-#: plugins/personal/posix/class_posixAccount.inc:1078
-#: plugins/personal/posix/class_posixAccount.inc:1081
-#: plugins/personal/posix/class_posixAccount.inc:1506
-#: plugins/personal/posix/generic.tpl:7
-msgid "Home directory"
-msgstr "用户主目录"
+#: setup/class_setupStep_Checks.inc:88
+msgid "Checking for iconv support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/paste_generic.tpl:23
-#: plugins/personal/posix/generic.tpl:52
-msgid "Force UID/GID"
-msgstr "指定 UID/GID"
+#: setup/class_setupStep_Checks.inc:89
+#, fuzzy
+msgid ""
+"This module is used by GOsa to convert samba munged dial informations and is "
+"therefore required. "
+msgstr "GOsa 用这个模块来转换 samba 扩展信息,因此需要。"
 
-#: plugins/personal/posix/paste_generic.tpl:28
-#: plugins/personal/posix/class_posixAccount.inc:1016
-#: plugins/personal/posix/class_posixAccount.inc:1019
-#: plugins/personal/posix/generic.tpl:56 html/getxls.php:289
-msgid "UID"
-msgstr "UID"
+#: setup/class_setupStep_Checks.inc:96
+#, fuzzy
+msgid "Checking for mhash support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/paste_generic.tpl:37
-#: plugins/personal/posix/class_posixAccount.inc:1023
-#: plugins/personal/posix/class_posixAccount.inc:1026
-#: plugins/personal/posix/generic.tpl:67
-#: plugins/admin/groups/class_groupGeneric.inc:921
-#: plugins/admin/groups/class_groupGeneric.inc:924
-#: plugins/admin/groups/class_groupGeneric.inc:1030
-msgid "GID"
-msgstr "GID"
+#: setup/class_setupStep_Checks.inc:97
+msgid "You'll need this module to make use of SSHA encryption"
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:47
-#: plugins/personal/posix/generic.tpl:82
-msgid "Group membership"
-msgstr "组成员身份"
+#: setup/class_setupStep_Checks.inc:98
+msgid "The mhash module for PHP 5 is not available.Please install php5-mhash."
+msgstr ""
 
-#: plugins/personal/posix/paste_generic.tpl:54
-#: plugins/personal/posix/generic.tpl:84
-msgid "(Warning: more than 16 groups are not supported by NFS!)"
-msgstr "(警告:NFS不支持超过 16 个组!)"
+#: setup/class_setupStep_Checks.inc:104
+#, fuzzy
+msgid "Checking for IMAP support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/posix_groups.tpl:6
-msgid "Select groups to add"
-msgstr "选择要添加的组"
+#: setup/class_setupStep_Checks.inc:105
+#, fuzzy
+msgid ""
+"The IMAP module is needed to communicate with the IMAP server. GOsa "
+"retrieves status information, creates and deletes mail users, etc."
+msgstr "IMAP 模块用于和 IMAP 服务器通讯。它获取状态信息,创建和删除邮件账户。"
 
-#: plugins/personal/posix/posix_groups.tpl:32
-msgid "Display groups of department"
-msgstr "显示部门的组"
+#: setup/class_setupStep_Checks.inc:106
+msgid ""
+"This module is used to communicate with your mail server. Please install "
+"php5-imap."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:35
-#: plugins/personal/posix/trust_machines.tpl:27
-#: plugins/admin/groups/group_objects.tpl:40
-#: plugins/admin/ogroups/ogroup_objects.tpl:42
-msgid "Choose the department the search will be based on"
-msgstr "选择一个部门来做查询"
+#: setup/class_setupStep_Checks.inc:112
+#, fuzzy
+msgid "Checking for multi byte support"
+msgstr "检查 getteext 支持"
 
-#: plugins/personal/posix/posix_groups.tpl:44
-msgid "Display groups matching"
-msgstr "显示匹配的组"
+#: setup/class_setupStep_Checks.inc:113
+msgid "The multi byte string support is required by some plugins."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:48
-#: plugins/admin/groups/class_divListGroup.inc:96
-#: plugins/admin/ogroups/class_divListOGroup.inc:105
-msgid "Regular expression for matching group names"
-msgstr "用于匹配组名的正则表达式"
+#: setup/class_setupStep_Checks.inc:114
+msgid "Please compile php with enabled multi byte support '--enable-mbstring'."
+msgstr ""
 
-#: plugins/personal/posix/posix_groups.tpl:55
-msgid "Display groups of user"
-msgstr "显示用户组"
+#: setup/class_setupStep_Checks.inc:120
+#, fuzzy
+msgid "Checking for getacl in IMAP implementation"
+msgstr "检查 imap 中的 getacl"
 
-#: plugins/personal/posix/posix_groups.tpl:59
-#: plugins/admin/groups/class_divListGroup.inc:97
-msgid "User name of which groups are shown"
-msgstr "显示属于该组的用户名"
+#: setup/class_setupStep_Checks.inc:121
+#, fuzzy
+msgid ""
+"The getacl support is needed to handle shared folder permissions. Old IMAP "
+"extensions are not capable of reading acl's. You need a recent PHP version "
+"to use this feature."
+msgstr ""
+"共享目录需要 getacl 支持。 标准的 IMAP 模块不能访问 acl。需要这个功能,您需要"
+"一个最新版本的 PHP。"
 
-#: plugins/personal/posix/posix_groups.tpl:68
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
+#: setup/class_setupStep_Checks.inc:128
 #, fuzzy
-msgid "Search in subtrees"
-msgstr "在子树中查找"
+msgid "Checking for MySQL support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/posix_shadow.tpl:9
-msgid "User must change password on first login"
-msgstr "用户必须在第一次登录修改口令"
+#: setup/class_setupStep_Checks.inc:129
+#, fuzzy
+msgid ""
+"MySQL support is needed to communicate with several supported databases."
+msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。"
 
-#: plugins/personal/posix/posix_shadow.tpl:34
-msgid "Password expires on"
-msgstr "口令过期截止日"
+#: setup/class_setupStep_Checks.inc:130
+msgid ""
+"This module is required to communicate with database servers (GOfax, "
+"asterisk, GLPI, etc.). Please install php5-mysql"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:37
-#: plugins/generic/references/class_reference.inc:42
-msgid "UNIX"
-msgstr "UNIX"
+#: setup/class_setupStep_Checks.inc:136
+#, fuzzy
+msgid "Checking for kadm5 support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/class_posixAccount.inc:38
-msgid "Edit users POSIX extensions"
+#: setup/class_setupStep_Checks.inc:137
+msgid ""
+"Managing users in kerberos requires the kadm5 module which is downloadable "
+"via PEAR network."
+msgstr "在 kerberos 中管理用户需要 kadm5 模块,可以通过 PEAR 网络下载。"
+
+#: setup/class_setupStep_Checks.inc:138
+#, fuzzy
+msgid ""
+"This module is required to manage user in kerberos, it is downloadable via "
+"PEAR network"
+msgstr "在 kerberos 中管理用户需要 kadm5 模块,可以通过 PEAR 网络下载。"
+
+#: setup/class_setupStep_Checks.inc:144
+#, fuzzy
+msgid "Checking for SNMP support"
+msgstr "检查 iconv 支持"
+
+#: setup/class_setupStep_Checks.inc:145
+#, fuzzy
+msgid ""
+"The simple network management protocol is needed to get status information "
+"from clients."
+msgstr "简单网络管理协议 (SNMP) 需要来做客户端监视。"
+
+#: setup/class_setupStep_Checks.inc:146
+msgid ""
+"This module is required for client monitoring. Please install php5-snmp."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:154
-msgid "expired"
-msgstr "过期"
+#: setup/class_setupStep_Checks.inc:152
+#, fuzzy
+msgid "Checking for CUPS support"
+msgstr "检查 iconv 支持"
 
-#: plugins/personal/posix/class_posixAccount.inc:156
-msgid "grace time active"
-msgstr "时间限制激活"
+#: setup/class_setupStep_Checks.inc:153
+#, fuzzy
+msgid ""
+"In order to read available printers via the IPP protocol instead of printcap "
+"files, you've to install the CUPS module."
+msgstr ""
+"为了从 IPP 协议而非 printcap 文件中读取可用打印机,您必须安装 CUPS 模块。"
 
-#: plugins/personal/posix/class_posixAccount.inc:159
-msgid "active, password not changable"
-msgstr "æ´»å\8a¨ï¼\8cå\8f£ä»¤ä¸\8då\8f¯æ\9b´æ\94¹"
+#: setup/class_setupStep_Checks.inc:162
+msgid "Checking for fping utility"
+msgstr "æ£\80æ\9f¥ fping å·¥å\85·"
 
-#: plugins/personal/posix/class_posixAccount.inc:161
-msgid "active, password expired"
-msgstr "活动,口令过期"
+#: setup/class_setupStep_Checks.inc:163
+#, fuzzy
+msgid ""
+"The fping utility is used if you've got a thin client based terminal "
+"environment."
+msgstr "工具 fping 只有在您部署了基于瘦客户机的终端环境下被使用。"
 
-#: plugins/personal/posix/class_posixAccount.inc:163
-msgid "active"
-msgstr "活动"
+#: setup/class_setupStep_Checks.inc:164
+#, fuzzy
+msgid ""
+"The fping utility is only used in thin client based terminal environment."
+msgstr "工具 fping 只有在您部署了基于瘦客户机的终端环境下被使用。"
 
-#: plugins/personal/posix/class_posixAccount.inc:208
-msgid "unconfigured"
-msgstr "未配置"
+#: setup/class_setupStep_Checks.inc:179
+msgid "SAMBA password hash generation"
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:219
-msgid "automatic"
-msgstr "自动"
+#: setup/class_setupStep_Checks.inc:180
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 passwords, you've to install additional packages "
+"to generate password hashes."
+msgstr "为了使用 SAMBA 2/3, 您必须安装一些额外的软件包来创建口令。"
 
-#: plugins/personal/posix/class_posixAccount.inc:275
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/personal/posix/class_posixAccount.inc:297
-#: plugins/personal/posix/class_posixAccount.inc:300
-msgid "POSIX"
+#: setup/class_setupStep_Checks.inc:181
+#, fuzzy
+msgid ""
+"In order to use SAMBA 2/3 you've to install additional perl libraries. Take "
+"a look at mkntpasswd."
+msgstr "为了使用 SAMBA 2/3, 您必须安装一些额外的软件包来创建口令。"
+
+#: setup/class_setupStep_Checks.inc:191 setup/class_setupStep_Checks.inc:210
+#: setup/class_setupStep_Checks.inc:226 setup/class_setupStep_Checks.inc:242
+#: setup/class_setupStep_Checks.inc:258
+msgid "Off"
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:192
+#, fuzzy
+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 的一个不必修改范围就可以从脚本中访问所有全局变量的机"
+"制。这可能存在安全风险。GOsa 在两种情况下都可以运行。"
+
+#: setup/class_setupStep_Checks.inc:193
+#, fuzzy
+msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'."
+msgstr "检查 register_globals 是否设置为 'off'"
+
+#: setup/class_setupStep_Checks.inc:201
+msgid "PHP uses this value for the garbage collector to delete old sessions."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:202
+#, fuzzy
+msgid ""
+"Setting this value to one day will prevent loosing session and cookies "
+"before they really timeout."
+msgstr ""
+"PHP 用这个值来进行垃圾回收,删除旧的会话。设置这个值为一天,将会防止在真正超"
+"时之前的会话和 cookie 丢失。"
+
+#: setup/class_setupStep_Checks.inc:203
+msgid ""
+"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or "
+"higher."
+msgstr ""
+
+#: setup/class_setupStep_Checks.inc:211
+#, fuzzy
+msgid ""
+"In Order to use GOsa without any trouble, the session.auto_register option "
+"in your php.ini should be set to 'Off'."
 msgstr ""
+"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必"
+"须设置为 'Off'。"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:279
-#: plugins/admin/groups/class_divListGroup.inc:261
-#: plugins/generic/references/class_reference.inc:46
-#: plugins/generic/references/class_reference.inc:48
-msgid "Samba"
-msgstr "Samba"
+#: setup/class_setupStep_Checks.inc:212
+#, fuzzy
+msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'."
+msgstr ""
+"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必"
+"须设置为 'Off'。"
 
-#: plugins/personal/posix/class_posixAccount.inc:295
-#: plugins/admin/users/class_divListUsers.inc:271
-#: plugins/admin/groups/class_divListGroup.inc:267
-#: plugins/admin/ogroups/tabs_ogroups.inc:168
-msgid "Environment"
-msgstr "环境设置"
+#: setup/class_setupStep_Checks.inc:219
+#, fuzzy
+msgid ""
+"GOsa needs at least 32MB of memory. Setting it below this limit may cause "
+"errors that are not reproducable! Increase it for larger setups."
+msgstr "GOsa 需要至少 16MB 内存,太少会导致无法预料的错误!将其设置为更大。"
 
-#: plugins/personal/posix/class_posixAccount.inc:465
-#, php-format
-msgid "Password can't be changed up to %s days after last change"
-msgstr "自上次更改以来 %s 天,不能修改口令"
+#: setup/class_setupStep_Checks.inc:220
+msgid ""
+"Search for 'memory_limit' in your php.ini and set it to '32M' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:469
-#, php-format
-msgid "Password must be changed after %s days"
-msgstr "口令必须在 %s 天之后更改"
+#: setup/class_setupStep_Checks.inc:227
+#, fuzzy
+msgid ""
+"This option influences the PHP output handling. Turn this Option off, to "
+"increase performance."
+msgstr "这个选项影响输出处理。关闭这个选项,可以提高性能。"
 
-#: plugins/personal/posix/class_posixAccount.inc:473
-#, php-format
-msgid "Disable account after %s days of inactivity after password expiery"
-msgstr "口令过期 %s 天后,禁用账号"
+#: setup/class_setupStep_Checks.inc:228
+msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:477
-#, php-format
-msgid "Warn user %s days before password expiery"
-msgstr "在口令过期 %s 天之前警告用户"
+#: setup/class_setupStep_Checks.inc:235
+#, fuzzy
+msgid "The Execution time should be at least 30 seconds."
+msgstr "执行时间应该至少 30 秒,因为一些动作可能会花很多时间。"
 
-#: plugins/personal/posix/class_posixAccount.inc:608
-msgid "full access"
-msgstr "完全访问权限"
+#: setup/class_setupStep_Checks.inc:236
+msgid ""
+"Search for 'max_execution_time' in your php.ini and set it to '30' or higher."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:609
-msgid "allow access to these hosts"
-msgstr "允许访问这些主机"
+#: setup/class_setupStep_Checks.inc:243
+#, fuzzy
+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/personal/posix/class_posixAccount.inc:820
-msgid "Timeout while waiting for lock. Ignoring lock!"
+#: setup/class_setupStep_Checks.inc:244
+msgid "Search for 'expose_php' in your php.ini and set if to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:250
 #, fuzzy
-msgid "Uid number"
-msgstr "系列号"
+msgid "On"
+msgstr "打开"
 
-#: plugins/personal/posix/class_posixAccount.inc:914
+#: setup/class_setupStep_Checks.inc:251
 msgid ""
-"A duplicated uid number was written for this user, if this was not intended "
-"please verify all used uidNumbers."
+"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will "
+"escape all quotes in strings in this case."
 msgstr ""
+"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串"
+"中所有引号编码。"
 
-#: plugins/personal/posix/class_posixAccount.inc:949
-#: plugins/personal/posix/class_posixAccount.inc:1142
-msgid "Group of user"
-msgstr "用户组"
+#: setup/class_setupStep_Checks.inc:252
+msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'."
+msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1034
-#: plugins/personal/posix/class_posixAccount.inc:1087
+#: setup/class_setupStep_Checks.inc:259
 #, fuzzy
-msgid "shadowMin"
-msgstr "显示终端"
+msgid "Increase your server performance by setting magic_quotes_gpc to 'off'."
+msgstr ""
+"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串"
+"中所有引号编码。"
 
-#: plugins/personal/posix/class_posixAccount.inc:1039
-#: plugins/personal/posix/class_posixAccount.inc:1092
-msgid "shadowMax"
+#: setup/class_setupStep_Checks.inc:260
+msgid ""
+"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1044
-#: plugins/personal/posix/class_posixAccount.inc:1097
+#: setup/class_setupStep_Checks.inc:270
 #, fuzzy
-msgid "shadowWarning"
-msgstr "显示分区"
+msgid "Configuration writeable"
+msgstr "配置文件"
 
-#: plugins/personal/posix/class_posixAccount.inc:1058
-#: plugins/personal/posix/class_posixAccount.inc:1111
+#: setup/class_setupStep_Checks.inc:271
 #, fuzzy
-msgid "shadowInactive"
-msgstr "æ\98¾ç¤ºæ\89\93å\8d°æ\9cº"
+msgid "The configuration file can't be written"
+msgstr "æ\9f¥ç\9c\8bé\85\8d置信æ\81¯"
 
-#: plugins/personal/posix/class_posixAccount.inc:1321
-msgid "Cannot allocate a free ID: too many users!"
+#: setup/class_setupStep_Checks.inc:272
+#, php-format
+msgid ""
+"GOsa reads its configuration from a file located in (%s/%s). The setup can "
+"write the configuration directly if it is writeable."
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1496
+#: setup/setup_config3.tpl:2
 #, fuzzy
-msgid "POSIX account"
-msgstr "GLPI 账号"
+msgid "GOsa core settings"
+msgstr "用户设置"
 
-#: plugins/personal/posix/class_posixAccount.inc:1507
-#: plugins/personal/posix/generic.tpl:15
-msgid "Shell"
-msgstr "Shell"
+#: setup/setup_config3.tpl:6
+#, fuzzy
+msgid "Disable primary group filter"
+msgstr "显示用户组"
 
-#: plugins/personal/posix/class_posixAccount.inc:1509
+#: setup/setup_config3.tpl:18
 #, fuzzy
-msgid "Group ID"
-msgstr ""
+msgid "Display summary in listings"
+msgstr "显示匹配的宏"
 
-#: plugins/personal/posix/class_posixAccount.inc:1511
+#: setup/setup_config3.tpl:30
 #, fuzzy
-msgid "Force password change on login"
-msgstr "不允许修改口令"
+msgid "Honour administrative units"
+msgstr "组管理"
 
-#: plugins/personal/posix/class_posixAccount.inc:1512
+#: setup/setup_config3.tpl:42
 #, fuzzy
-msgid "Shadow min"
-msgstr "显示终端"
+msgid "Smarty compile directory"
+msgstr "用户主目录"
 
-#: plugins/personal/posix/class_posixAccount.inc:1513
-msgid "Shadow max"
+#: setup/setup_config3.tpl:51
+msgid "SNMP community"
 msgstr ""
 
-#: plugins/personal/posix/class_posixAccount.inc:1514
+#: setup/setup_config3.tpl:60
 #, fuzzy
-msgid "Shadow warning"
-msgstr "显示分区"
+msgid "Path for PPD storage"
+msgstr "口令存储"
 
-#: plugins/personal/posix/class_posixAccount.inc:1515
+#: setup/setup_config3.tpl:77
 #, fuzzy
-msgid "Shadow inactive"
-msgstr "显示打印机"
+msgid "Path for kiosk profile storage"
+msgstr "Kiosk profile 设置"
 
-#: plugins/personal/posix/class_posixAccount.inc:1516
+#: setup/setup_config3.tpl:96
 #, fuzzy
-msgid "Shadow expire"
-msgstr "显示人员"
+msgid "Enable system deployment"
+msgstr "系统管理"
 
-#: plugins/personal/posix/class_posixAccount.inc:1517
+#: setup/setup_config3.tpl:115
 #, fuzzy
-msgid "System trust model"
-msgstr "信赖的系统"
+msgid "Mail queue script"
+msgstr "邮件队列"
 
-#: plugins/personal/posix/main.inc:131
+#: setup/setup_config3.tpl:134
 #, fuzzy
-msgid "POSIX settings"
-msgstr "Posix 设置"
+msgid "Notification script"
+msgstr "主机通知周期"
 
-#: plugins/personal/posix/generic.tpl:25
-msgid "Primary group"
-msgstr "主要用户组"
+#: setup/setup_config3.tpl:153
+#, fuzzy
+msgid "Enable edit locking"
+msgstr "启用邮件扫描"
 
-#: plugins/personal/posix/generic.tpl:36
-msgid "Status"
-msgstr "状态"
+#: setup/setup_config3.tpl:172
+msgid "Login and session"
+msgstr ""
 
-#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:179
+#: setup/setup_config3.tpl:175
 #, fuzzy
-msgid "In all groups"
-msgstr "显示邮件组"
+msgid "Login attribute"
+msgstr "电话属性"
 
-#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:182
+#: setup/setup_config3.tpl:186
+msgid "Enforce register_globals to be deactivated"
+msgstr ""
+
+#: setup/setup_config3.tpl:198
 #, fuzzy
-msgid "Not in all groups"
-msgstr "显示邮件组"
+msgid "Enforce encrypted connections"
+msgstr "封锁加密归档"
 
-#: plugins/personal/posix/generic.tpl:118
-msgid "Account"
-msgstr "账户"
+#: setup/setup_config3.tpl:210
+#, fuzzy
+msgid "Warn if session is not encrypted"
+msgstr "会话不会被加密。"
 
-#: plugins/personal/posix/generic.tpl:125
-msgid "System trust"
-msgstr "信赖的系统"
+#: setup/setup_config3.tpl:222
+#, fuzzy
+msgid "Remember dialog filter settings"
+msgstr "通用队列设置"
 
-#: plugins/personal/posix/generic.tpl:127
-#: plugins/personal/posix/generic.tpl:155
-msgid "Trust mode"
-msgstr "信赖模式"
+#: setup/setup_config3.tpl:234
+#, fuzzy
+msgid "Session lifetime"
+msgstr "检测道会话冲突"
+
+#: setup/setup_config3.tpl:243
+#, fuzzy
+msgid "Debugging"
+msgstr "启用 debug"
 
-#: plugins/personal/posix/trust_machines.tpl:6
-msgid "Select systems to add"
-msgstr "选择要添加的系统"
+#: setup/setup_config3.tpl:247
+#, fuzzy
+msgid "Show PHP errors"
+msgstr "PHP 错误"
 
-#: plugins/personal/posix/trust_machines.tpl:26
-msgid "Display systems of department"
-msgstr "显示部门的系统"
+#: setup/setup_config3.tpl:259
+#, fuzzy
+msgid "Maximum LDAP query time"
+msgstr "最大文件大小"
 
-#: plugins/personal/posix/trust_machines.tpl:30
-msgid "Display systems matching"
-msgstr "显示匹配的系统"
+#: setup/setup_config3.tpl:277
+msgid "Log LDAP statistics"
+msgstr ""
 
-#: plugins/personal/posix/trust_machines.tpl:31
-msgid "Regular expression for matching addresses"
-msgstr "匹配地址的正则表达式"
+#: setup/setup_config3.tpl:289
+#, fuzzy
+msgid "Debug level"
+msgstr "日志级别"
 
-#: plugins/admin/users/template.tpl:2
-msgid "Creating a new user using templates"
-msgstr "用模板创建一个新用户"
+#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297
+#, fuzzy
+msgid "Disabled"
+msgstr "禁用"
 
-#: plugins/admin/users/template.tpl:6
-msgid ""
-"Creating a new user can be assisted by using templates. Many database "
-"records will be filled automatically. Choose 'none' to skip the usage of "
-"templates."
-msgstr ""
-"可以使用模板来辅助新用户的创建。很多数据记录可以被自动填充。选择“无”来跳过模"
-"板选择。"
+#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298
+#, fuzzy
+msgid "Enabled"
+msgstr "禁用"
 
-#: plugins/admin/users/template.tpl:15
-#: plugins/admin/users/class_divListUsers.inc:178
-#: plugins/admin/users/class_userManagement.inc:733
-msgid "Template"
-msgstr "模板"
+#: setup/class_setupStep_Welcome.inc:38
+#, fuzzy
+msgid "Welcome"
+msgstr "欢迎 %s!"
 
-#: plugins/admin/users/password.tpl:4
-msgid ""
-"To change the user password use the fields below. The changes take effect "
-"immediately. Please memorize the new password, because the user wouldn't be "
-"able to login without it."
-msgstr "用下面的字段修改用口令。修改即时生效。请记住新密码,否则无法登录。"
+#: setup/class_setupStep_Welcome.inc:39
+#, fuzzy
+msgid "The welcome message"
+msgstr "解除挂起的邮件"
 
-#: plugins/admin/users/password.tpl:21
+#: setup/class_setupStep_Welcome.inc:40
 #, fuzzy
-msgid "Strength"
-msgstr "街道"
+msgid "Welcome to GOsa setup wizard"
+msgstr "欢迎进入 Gosa 安装程序!"
 
-#: plugins/admin/users/class_divListUsers.inc:55
-#: plugins/admin/users/class_divListUsers.inc:56
-msgid "List of users"
-msgstr "用户列表"
+#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43
+msgid "LDAP schema check"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:60
-msgid ""
-"This menu allows you to create, edit and delete selected users. Having a "
-"great number of users, you may want to use the range selectors on top of the "
-"user list."
+#: setup/class_setupStep_Schema.inc:44
+msgid "Perform test on your current LDAP schema"
 msgstr ""
-"这个菜单允许您创建,删除和修改所选的用户。对于一个长列表,您可以通过列表上面"
-"的范围选择来调整。"
 
-#: plugins/admin/users/class_divListUsers.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:81
-#: plugins/admin/departments/generic.tpl:4
-#: plugins/admin/ogroups/class_divListOGroup.inc:85
-msgid "Properties"
-msgstr "属性"
+#: setup/setup_checks.tpl:9
+msgid "PHP module and extension checks"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:83
-#: plugins/admin/users/class_divListUsers.inc:169
-#: plugins/admin/groups/class_divListGroup.inc:82
-#: plugins/admin/groups/class_divListGroup.inc:177
-#: plugins/admin/acl/class_divListACL.inc:75
-#: plugins/admin/acl/class_divListACL.inc:160
-#: plugins/admin/departments/class_divListDepartment.inc:69
-#: plugins/admin/departments/class_divListDepartment.inc:150
-#: plugins/admin/ogroups/class_divListOGroup.inc:86
-#: plugins/admin/ogroups/class_divListOGroup.inc:189
-msgid "Actions"
-msgstr "动作"
+#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103
+msgid "GOsa will NOT run without fixing this."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Select to see template pseudo users"
-msgstr "选择查看伪用户模板"
+#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107
+msgid "GOsa will run without fixing this."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:85
-msgid "Show templates"
-msgstr "显示模板"
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "PHP setup configuration"
+msgstr "PHP 安装检查"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Select to see users that have only a GOsa object"
-msgstr "选择查看只拥有一个 GOsa 对象的用户"
+#: setup/setup_checks.tpl:67
+#, fuzzy
+msgid "show information"
+msgstr "个人信息"
 
-#: plugins/admin/users/class_divListUsers.inc:86
-msgid "Show functional users"
-msgstr "显示用户"
+#: setup/setup_finish.tpl:3
+#, fuzzy
+msgid "Create your configuration file"
+msgstr "配置文件"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Select to see users that have posix settings"
-msgstr "显示具有 posix 设置的用户"
+#: setup/setup_finish.tpl:13
+msgid "Download configuration"
+msgstr "下载配置"
 
-#: plugins/admin/users/class_divListUsers.inc:87
-msgid "Show unix users"
-msgstr "显示 unix 用户"
+#: setup/setup_finish.tpl:18
+#, fuzzy
+msgid "Status: "
+msgstr "状态"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Select to see users that have mail settings"
-msgstr "显示具有邮件设置的用户"
+#: setup/class_setupStep_Finish.inc:38
+#, fuzzy
+msgid "Write configuration file"
+msgstr "配置文件"
 
-#: plugins/admin/users/class_divListUsers.inc:88
-msgid "Show mail users"
-msgstr "显示邮件用户"
+#: setup/class_setupStep_Finish.inc:39
+#, fuzzy
+msgid "Finish - write the configuration file"
+msgstr "需要 XML 功能来解析配置文件。"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Select to see users that have samba settings"
-msgstr "显示具有 samba 设置的用户"
+#: setup/class_setupStep_Finish.inc:100
+#, fuzzy
+msgid ""
+"Your configuration file is currently world readable. Please update the file "
+"permissions!"
+msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
 
-#: plugins/admin/users/class_divListUsers.inc:89
-msgid "Show samba users"
-msgstr "显示 samba 用户"
+#: setup/class_setupStep_Finish.inc:102
+#, fuzzy
+msgid "The configuration is currently not readable or it does not exists."
+msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Select to see users that have proxy settings"
-msgstr "显示具有代理设置的用户"
+#: setup/class_setupStep_Finish.inc:111
+#, fuzzy, 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. You may want to execute these commands to achieve this "
+"requirement:"
+msgstr ""
+"将文件保存在 GOsa 配置文件目录中,确认 Web 服务器运行的账号能够读取 gosa."
+"conf,其他用户则无权访问。您可以执行如下命令来实现:"
 
-#: plugins/admin/users/class_divListUsers.inc:90
-msgid "Show proxy users"
-msgstr "显示代理用户"
+#: setup/class_setupStep_Config2.inc:85 setup/class_setupStep_Config2.inc:86
+#, fuzzy
+msgid "GOsa settings 2/3"
+msgstr "用户设置"
 
-#: plugins/admin/users/class_divListUsers.inc:94
-#: plugins/admin/groups/class_divListGroup.inc:93
-#: plugins/admin/acl/class_divListACL.inc:81
-#: plugins/admin/departments/class_divListDepartment.inc:73
-#: plugins/admin/ogroups/ogroup_objects.tpl:38
-#: plugins/admin/ogroups/class_divListOGroup.inc:102
-msgid "Select to search within subtrees"
-msgstr "选择在子树中查询"
+#: setup/class_setupStep_Config2.inc:87
+#, fuzzy
+msgid "Customize special parameters"
+msgstr "检查参数"
 
-#: plugins/admin/users/class_divListUsers.inc:97
-#: plugins/admin/groups/group_objects.tpl:46
-msgid "Display users matching"
-msgstr "显示匹配的用户"
+#: include/functions_helpviewer.inc:45
+#, php-format
+msgid "XML error in guide.xml: %s at line %d"
+msgstr "XML 出错于 guide.xml: %s ,行 %d"
 
-#: plugins/admin/users/class_divListUsers.inc:165
-#: plugins/admin/groups/class_divListGroup.inc:172
-#: plugins/admin/acl/class_divListACL.inc:156
-#: plugins/admin/departments/class_divListDepartment.inc:147
-#: plugins/admin/ogroups/class_divListOGroup.inc:185
-msgid "Submit department"
-msgstr "提交部门"
+#: include/functions_helpviewer.inc:88
+msgid "No help available for this plugin."
+msgstr "此插件没有可用帮助信息。"
 
-#: plugins/admin/users/class_divListUsers.inc:186
-#: plugins/admin/users/class_divListUsers.inc:340
-msgid "Change password"
-msgstr "修改口令"
+#: include/functions_helpviewer.inc:97 html/helpviewer.php:198
+msgid "previous"
+msgstr "上一个"
 
-#: plugins/admin/users/class_divListUsers.inc:205
-#: plugins/admin/groups/class_divListGroup.inc:210
-#: plugins/admin/acl/class_divListACL.inc:179
-#: plugins/admin/ogroups/class_divListOGroup.inc:222
-#, fuzzy
-msgid "Copy"
-msgstr "复制"
+#: include/functions_helpviewer.inc:101 html/helpviewer.php:202
+msgid "next"
+msgstr "下一个"
 
-#: plugins/admin/users/class_divListUsers.inc:207
-#: plugins/admin/groups/class_divListGroup.inc:212
-#: plugins/admin/acl/class_divListACL.inc:181
-#: plugins/admin/ogroups/class_divListOGroup.inc:224
-#, fuzzy
-msgid "Cut"
-msgstr "剪切"
+#: include/functions_helpviewer.inc:389
+#, php-format
+msgid "%s results for your search with the keyword %s"
+msgstr "%s 结果当您查找关键字 %s"
 
-#: plugins/admin/users/class_divListUsers.inc:267
-msgid "GOsa"
-msgstr "GOsa"
+#: include/functions_helpviewer.inc:463
+#, php-format
+msgid "%s%% hit rate in file %s"
+msgstr "%s%% 点击率于文件 %s"
 
-#: plugins/admin/users/class_divListUsers.inc:268
-msgid "Edit generic properties"
-msgstr "编辑通用属性"
+#: include/class_tabs.inc:216
+#, php-format
+msgid "Delete process has been canceled by plugin '%s': %s"
+msgstr "删除进程被插件 '%s' 取消: %s"
 
-#: plugins/admin/users/class_divListUsers.inc:269
-#: plugins/admin/groups/class_divListGroup.inc:257
-msgid "Posix"
-msgstr "Posix"
+#: include/class_tabs.inc:343 include/class_acl.inc:1114
+#: include/class_acl.inc:1115 include/class_acl.inc:1120
+msgid "ACL"
+msgstr "ACL"
 
-#: plugins/admin/users/class_divListUsers.inc:270
-msgid "Edit UNIX properties"
-msgstr "编辑 UNIX 属性"
+#: include/class_tabs.inc:346
+msgid "References"
+msgstr "参考"
 
-#: plugins/admin/users/class_divListUsers.inc:272
-msgid "Edit environment properties"
-msgstr "编辑环境属性"
+#: include/class_plugin.inc:492
+msgid ""
+"The object has changed since opened in GOsa. All changes that may be done by "
+"others get lost if you save this entry!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:273
-#: plugins/admin/groups/class_divListGroup.inc:259
-#: plugins/admin/ogroups/tabs_ogroups.inc:110
-#: plugins/admin/ogroups/tabs_ogroups.inc:256
-#: plugins/admin/ogroups/class_divListOGroup.inc:259
-#: plugins/generic/references/class_reference.inc:44
-msgid "Mail"
-msgstr "邮件"
+#: include/class_plugin.inc:1159 include/class_plugin.inc:1171
+#, php-format
+msgid ""
+"The snapshot functionality is enabled, but the required variable '%s' is not "
+"set."
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:274
-msgid "Edit mail properties"
-msgstr "编辑邮件属性"
+#: include/class_plugin.inc:1613
+msgid "Changing ACL dn"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:276
-msgid "Edit phone properties"
-msgstr "编辑电话属性"
+#: include/class_plugin.inc:1613
+msgid "from"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:278
-msgid "Edit fax properies"
-msgstr "编辑传真属性"
+#: include/class_MultiSelectWindow.inc:240
+msgid "Go to root department"
+msgstr "转到根部门"
 
-#: plugins/admin/users/class_divListUsers.inc:280
-msgid "Edit samba properties"
-msgstr "编辑 samba 属性"
+#: include/class_MultiSelectWindow.inc:240
+#: include/class_MultiSelectWindow.inc:242
+msgid "Root"
+msgstr "根"
 
-#: plugins/admin/users/class_divListUsers.inc:281
-msgid "Netatalk"
-msgstr "Netatalk"
+#: include/class_MultiSelectWindow.inc:248
+msgid "Go up one department"
+msgstr "向上跳转一个部门"
 
-#: plugins/admin/users/class_divListUsers.inc:282
-msgid "Edit netatalk properties"
-msgstr "编辑 netatalk 属性"
+#: include/class_MultiSelectWindow.inc:256
+msgid "Go to users department"
+msgstr "转到用户部门"
 
-#: plugins/admin/users/class_divListUsers.inc:283
-msgid "Create user from template"
-msgstr "从模板创建用户"
+#: include/class_MultiSelectWindow.inc:256
+#: include/class_MultiSelectWindow.inc:258
+msgid "Home"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:284
-msgid "Create user with this template"
-msgstr "创建使用该模板的用户"
+#: include/class_MultiSelectWindow.inc:263
+msgid "Reload list"
+msgstr "重新加载列表"
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "cut"
-msgstr "剪切"
+#: include/class_MultiSelectWindow.inc:529
+#, php-format
+msgid "Inconsistent DN encoding detected: '%s'"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:308
-#: plugins/admin/groups/class_divListGroup.inc:287
-#: plugins/admin/acl/class_divListACL.inc:236
-#: plugins/admin/ogroups/class_divListOGroup.inc:278
-msgid "Cut this entry"
-msgstr "剪切条目"
+#: include/class_MultiSelectWindow.inc:648
+#: include/class_MultiSelectWindow.inc:652
+#: include/class_MultiSelectWindow.inc:656
+#, fuzzy
+msgid "Restore"
+msgstr "仓库"
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "copy"
-msgstr "复制"
+#: include/class_MultiSelectWindow.inc:651
+msgid "Restore snapshopts of already deleted objects"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:310
-#: plugins/admin/groups/class_divListGroup.inc:289
-#: plugins/admin/acl/class_divListACL.inc:238
-#: plugins/admin/ogroups/class_divListOGroup.inc:280
-msgid "Copy this entry"
-msgstr "拷贝条目"
+#: include/class_MultiSelectWindow.inc:674
+#: include/class_SnapShotDialog.inc:133
+msgid "Restore snapshot"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:319
+#: include/class_MultiSelectWindow.inc:680
 #, fuzzy
-msgid "Deactivated"
-msgstr "活动"
+msgid "Create snapshot"
+msgstr "创建 nagios 账户"
 
-#: plugins/admin/users/class_divListUsers.inc:322
-msgid "Active"
-msgstr "活动"
+#: include/class_MultiSelectWindow.inc:680
+#, fuzzy
+msgid "Create a new snapshot from this object"
+msgstr "创建新 FAI 对象"
 
-#: plugins/admin/users/class_divListUsers.inc:330
-msgid "Edit user"
-msgstr "编辑用户"
+#: include/class_pluglist.inc:56
+msgid "All objects in this category"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:339
-msgid "password"
-msgstr "口令"
+#: include/class_pluglist.inc:150
+msgid "The configuration format has changed. Please re-run setup!"
+msgstr ""
 
-#: plugins/admin/users/class_divListUsers.inc:343
-#, fuzzy
-msgid "You are not allowed to change the password for this user."
-msgstr "现在您无权修改您的口令"
+#: include/class_pluglist.inc:167 include/class_pluglist.inc:168
+#: include/class_pluglist.inc:282
+msgid "Unknown"
+msgstr "未知"
 
-#: plugins/admin/users/class_divListUsers.inc:354
-#: plugins/admin/users/class_userManagement.inc:576
-msgid "Delete user"
-msgstr "删除用户"
+#: include/class_certificate.inc:55
+msgid "Can't open specified file, check accessibility and or existence"
+msgstr "无法打开特定文件,检查是否可以访问或者是否存在。"
 
-#: plugins/admin/users/class_divListUsers.inc:357
-#, fuzzy
-msgid "You are not allowed to remove this user."
-msgstr "您无权删除这个用户!"
+#: include/class_certificate.inc:73
+msgid "Can't read specified certificate / or empty string given"
+msgstr "无法读取特定证书或者提供了一个空字符串"
 
-#: plugins/admin/users/class_divListUsers.inc:443
-#, fuzzy
-msgid "Number of listed users"
-msgstr "部门名称"
+#: include/class_certificate.inc:100
+msgid "Can't load certificate, possibly unsupported format (use PEM/DER) "
+msgstr "无法加载证书,可能是不支持的格式(用 PEM/DER)。"
 
-#: plugins/admin/users/class_divListUsers.inc:444
-#: plugins/admin/groups/class_divListGroup.inc:361
-#: plugins/admin/departments/class_divListDepartment.inc:230
-#: plugins/admin/ogroups/class_divListOGroup.inc:342
-#, fuzzy
-msgid "Number of listed departments"
-msgstr "部门名称"
+#: include/class_certificate.inc:115
+msgid "The Format must be PEM, to output certificate informations"
+msgstr "要输出证书信息,格式必须是 PEM"
 
-#: plugins/admin/users/class_userManagement.inc:27
-#, fuzzy
-msgid "Manage users"
-msgstr "域用户"
+#: include/class_certificate.inc:212
+msgid "Can't create/open File"
+msgstr "无法创建/打开文件"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, fuzzy
-msgid "Daemon"
-msgstr "关闭"
+#: include/class_certificate.inc:219
+msgid "No valid certificate loaded"
+msgstr "无有效证书加载"
 
-#: plugins/admin/users/class_userManagement.inc:193
-#: plugins/admin/groups/class_groupManagement.inc:191
-#: plugins/admin/ogroups/class_ogroupManagement.inc:173
-#, php-format
-msgid "Something went wrong while talking to the daemon: %s."
+#: include/class_socketClient.inc:58
+msgid "The mcrypt module was not found. Please install php5-mcrypt."
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:293
+#: include/class_SnapShotDialog.inc:83
+#, fuzzy, php-format
+msgid "You're about to delete the snapshot '%s'."
+msgstr "您将要删除宏 '%s'。"
+
+#: include/class_SnapShotDialog.inc:135
 #, fuzzy
-msgid "Password change failed."
-msgstr "不允许修改口令"
+msgid "Remove snapshot"
+msgstr "删除记录"
 
-#: plugins/admin/users/class_userManagement.inc:293
-#: plugins/admin/users/class_userManagement.inc:348
-msgid "You are not allowed to set this users password!"
-msgstr "您无权设置这些用户口令!"
+#: include/class_SnapShotDialog.inc:137 include/class_SnapShotDialog.inc:157
+msgid "Y-m-d, H:i:s"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:456
-#, fuzzy, php-format
-msgid "You're about to delete the following entry: %s"
-msgstr "您将要删除条目 %s。"
+#: include/class_config.inc:106
+#, php-format
+msgid "XML error in gosa.conf: %s at line %d"
+msgstr "XML 出错于 gosa.conf: %s ,行 %d"
 
-#: plugins/admin/users/class_userManagement.inc:458
-#, fuzzy, php-format
-msgid "You're about to delete the following entries: %s"
-msgstr "您将要删除条目 %s。"
+#: include/class_config.inc:109
+msgid "Config file parsing"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:460
+#: include/class_config.inc:228
 #, fuzzy
-msgid "Delete users"
-msgstr "删除用户"
+msgid "Cannot bind to LDAP. Please contact the system administrator."
+msgstr "无法绑定 LDAP。请联系系统管理员。"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#: plugins/admin/users/class_userManagement.inc:608
+#: include/class_config.inc:561
 #, fuzzy
-msgid "User delete"
-msgstr "删除"
+msgid "SID and/or RIDBASE missing in the configuration!"
+msgstr "您的配置文件缺少 SID 和/或 RIDBASE!"
 
-#: plugins/admin/users/class_userManagement.inc:488
-#, fuzzy, php-format
-msgid "You are not allowed to delete the user '%s'!"
-msgstr "您无权删除这个用户!"
+#: include/class_log.inc:88 include/class_acl.inc:826
+#: include/functions.inc:450 include/functions.inc:595
+#: include/functions.inc:620 include/functions.inc:681
+#: include/functions.inc:1068 include/functions.inc:1916
+#: include/functions.inc:1950 include/functions.inc:1970
+#: include/class_ldap.inc:592 include/class_ldap.inc:640
+#: include/class_CopyPasteHandler.inc:159
+#: include/class_CopyPasteHandler.inc:269 html/getvcard.php:39
+#, fuzzy
+msgid "Internal error"
+msgstr "终端服务器"
 
-#: plugins/admin/users/class_userManagement.inc:576
-#, php-format
-msgid "You're about to delete the user %s."
-msgstr "您将删除用户 %s。"
+#: include/class_log.inc:88
+#, fuzzy, php-format
+msgid "Logging failed: %s"
+msgstr "Logging DB 用户"
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User deleted"
-msgstr "删除"
+#: include/class_log.inc:107
+msgid "Logging to MySQL disabled"
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:603
-#, fuzzy
-msgid "User successfully removed."
-msgstr "导入成功"
+#: include/class_log.inc:107
+msgid ""
+"The logging to a MySQL database is now disabled for this session of GOsa, "
+"due to communication errors with the specified logging database."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:608
-msgid "You are not allowed to delete this user!"
-msgstr "您无权删除这个用户!"
+#: include/class_log.inc:120
+#, php-format
+msgid "Invalid option '%s' specified."
+msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:714
-#: plugins/admin/ogroups/class_ogroup.inc:305
-msgid "none"
-msgstr "æ\97 "
+#: include/class_log.inc:124
+#, fuzzy
+msgid "Specified objectType is empty or invalid"
+msgstr "æ\8c\87å®\9aç\9a\84 branch å\90\8d称æ\97 æ\95\88ã\80\82"
 
-#: plugins/admin/users/remove.tpl:6
+#: include/class_log.inc:145
 msgid ""
-"This includes all account data, system access rules, imap settings, etc. for "
-"this user. Please double check if your really want to do this since there is "
-"no way for GOsa to get your data back."
+"You have enabled the logging into mysql database, but there are no logging "
+"servers available."
 msgstr ""
-"这包含该用户所有账号数据,系统访问规则,imap 设置等等。请再次检查您是否要这么"
-"做,因为 GOsa 没有办法将您的数据找回。"
 
-#: plugins/admin/users/main.inc:45 plugins/admin/users/main.inc:51
-msgid "User administration"
-msgstr "用户管理"
+#: include/class_log.inc:157
+#, fuzzy, php-format
+msgid "Cannot connect to logging server '%s'."
+msgstr "无法连接到数据库!"
 
-#: plugins/admin/groups/paste_generic.tpl:1
-msgid "Group settings"
-msgstr "组设置"
+#: include/class_log.inc:165
+#, fuzzy, php-format
+msgid "Cannot select database '%s' on server '%s': %s"
+msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。"
 
-#: plugins/admin/groups/paste_generic.tpl:5
-#: plugins/admin/groups/generic.tpl:11
-#: plugins/admin/ogroups/paste_generic.tpl:4
-#: plugins/admin/ogroups/generic.tpl:7
-msgid "Group name"
-msgstr "组名"
+#: include/class_log.inc:181
+#, php-format
+msgid "Missing logging table (%s.%s) update your GOsa logging database schema."
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:8
-#: plugins/admin/groups/generic.tpl:17
-msgid "Posix name of the group"
-msgstr "组的 posix 名称"
+#: include/class_log.inc:218
+#, php-format
+msgid "Couldn't add your location to the logging database, the error was: %s."
+msgstr ""
 
-#: plugins/admin/groups/paste_generic.tpl:13
-#: plugins/admin/groups/generic.tpl:65
-msgid "Normally IDs are autogenerated, select to specify manually"
-msgstr "一般 ID 是自动创建的,要手工设置请选择"
+#: include/class_log.inc:241
+#, fuzzy, php-format
+msgid "Cannot query database '%s' on server '%s': %s"
+msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。"
 
-#: plugins/admin/groups/paste_generic.tpl:15
-#: plugins/admin/groups/generic.tpl:68
-msgid "Force GID"
-msgstr "强制 GID"
+#: include/php_setup.inc:91
+msgid "Generating this page caused the PHP interpreter to raise some errors!"
+msgstr "生成这个页面导致 PHP 解析器发生一些错误!"
 
-#: plugins/admin/groups/paste_generic.tpl:18
-#: plugins/admin/groups/generic.tpl:71
-msgid "Forced ID number"
-msgstr "强制 ID 编号"
+#: include/php_setup.inc:96
+msgid "Send bug report to the GOsa Team"
+msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:6
-msgid "Select users to add"
-msgstr "选择要添加的用户"
+#: include/php_setup.inc:96
+#, fuzzy
+msgid "Send bugreport"
+msgstr "发送者"
 
-#: plugins/admin/groups/group_objects.tpl:30
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Select to see servers"
-msgstr "选择显示服务器"
+#: include/php_setup.inc:101
+msgid "Toggle information"
+msgstr "切换信息"
 
-#: plugins/admin/groups/group_objects.tpl:30
-msgid "Search within subtree"
-msgstr "在子树中查找"
+#: include/php_setup.inc:111
+msgid "PHP error"
+msgstr "PHP 错误"
 
-#: plugins/admin/groups/group_objects.tpl:37
-msgid "Display users of department"
-msgstr "显示部门的用户"
+#: include/php_setup.inc:130
+msgid "class"
+msgstr ""
 
-#: plugins/admin/groups/group_objects.tpl:47
-msgid "Regular expression for matching user names"
-msgstr "å\8c¹é\85\8dç\94¨æ\88·å\90\8dç\9a\84æ­£å\88\99表达å¼\8f"
+#: include/php_setup.inc:136
+msgid "function"
+msgstr "å\8a\9fè\83½"
 
-#: plugins/admin/groups/class_groupGeneric.inc:152
-#, fuzzy
-msgid "Cannot find group SID in your configuration!"
-msgstr "无法在 LDAP 或您的配置文件中查找这个组 SID。"
+#: include/php_setup.inc:141
+msgid "static"
+msgstr "静态"
 
-#: plugins/admin/groups/class_groupGeneric.inc:208
-msgid "This 'dn' is no group."
-msgstr "该 'dn' 不是一个组。"
+#: include/php_setup.inc:145
+msgid "method"
+msgstr "方法"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Samba group"
-msgstr "Samba 组"
+#: include/php_setup.inc:178
+msgid "Trace"
+msgstr "跟踪"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain admins"
-msgstr "域管理员"
+#: include/php_setup.inc:179
+msgid "File"
+msgstr "文件"
 
-#: plugins/admin/groups/class_groupGeneric.inc:349
-msgid "Domain users"
-msgstr "域用户"
+#: include/php_setup.inc:179
+msgid "Line"
+msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:350
-msgid "Domain guests"
-msgstr "域名 guests"
+#: include/php_setup.inc:179
+msgid "Type"
+msgstr "类型"
 
-#: plugins/admin/groups/class_groupGeneric.inc:355
-#, php-format
-msgid "Special group (%d)"
-msgstr "特殊组 (%d)"
+#: include/php_setup.inc:180
+msgid "Arguments"
+msgstr "参数"
 
-#: plugins/admin/groups/class_groupGeneric.inc:509
-msgid "! unknown id"
-msgstr "! 未知 id"
+#: include/class_acl.inc:26
+#, fuzzy
+msgid "Access control"
+msgstr "访问选项"
 
-#: plugins/admin/groups/class_groupGeneric.inc:547
-#, php-format
-msgid "Search returned too many results. Not displaying more than %s entries!"
+#: include/class_acl.inc:210 include/class_acl.inc:213
+msgid "Use ACL defined in role"
 msgstr ""
 
-#: plugins/admin/groups/class_groupGeneric.inc:728
-#, fuzzy, php-format
-msgid "Cannot find any SID for '%s'!"
-msgstr "无法创建文件 '%s'。"
-
-#: plugins/admin/groups/class_groupGeneric.inc:733
-#, fuzzy, php-format
-msgid "Cannot find any RIDBASE for '%s'!"
-msgstr "无法创建文件 '%s'。"
-
-#: plugins/admin/groups/class_groupGeneric.inc:966
+#: include/class_acl.inc:665 include/class_acl.inc:672
 #, fuzzy
-msgid "Cannot allocate a free ID!"
-msgstr "太多用户,无法分配一个可用的 ID!"
+msgid "Show/Hide Advanced Settings"
+msgstr "高级电话设置"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1015
+#: include/class_acl.inc:690
 #, fuzzy
-msgid "Generic group settings"
-msgstr "组设置"
+msgid "Create objects"
+msgstr "创建新 FAI 对象"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1027
+#: include/class_acl.inc:691
 #, fuzzy
-msgid "Phone pickup group"
-msgstr "æ\88\90å\91\98å±\9eäº\8eç\94µè¯\9dåº\94ç­\94ç»\84"
+msgid "Move objects"
+msgstr "æ\88\90å\91\98对象"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1028
+#: include/class_acl.inc:692
 #, fuzzy
-msgid "Nagios group"
-msgstr "Nagios 账号"
+msgid "Remove objects"
+msgstr "成员对象"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1031
+#: include/class_acl.inc:694 include/class_acl.inc:700
+msgid "Modifyable by owner"
+msgstr ""
+
+#: include/class_acl.inc:697
 #, fuzzy
-msgid "Group member"
-msgstr "组成员"
+msgid "Move object"
+msgstr "成员对象"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1032
+#: include/class_acl.inc:698
 #, fuzzy
-msgid "Samba group type"
-msgstr "Samba 组"
+msgid "Remove object"
+msgstr "成员对象"
 
-#: plugins/admin/groups/class_groupGeneric.inc:1033
+#: include/class_acl.inc:705 include/class_acl.inc:796
+msgid "read"
+msgstr "读"
+
+#: include/class_acl.inc:706 include/class_acl.inc:798
+msgid "write"
+msgstr "写"
+
+#: include/class_acl.inc:710
 #, fuzzy
-msgid "Samba domain name"
-msgstr "Samba 主目录"
+msgid "Complete object"
+msgstr "成员对象"
 
-#: plugins/admin/groups/class_divListGroup.inc:55
-#: plugins/admin/groups/class_divListGroup.inc:56
-msgid "List of groups"
-msgstr "组列表"
+#: include/class_acl.inc:826
+#, php-format
+msgid "Unkown ACL type '%s'. Don't know how to handle it."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:61
-msgid ""
-"This menu allows you to add, edit and remove selected groups. You may want "
-"to use the range selector on top of the group listbox, when working with a "
-"large number of groups."
+#: include/class_acl.inc:869
+#, fuzzy, php-format
+msgid "Unknown entry '%s'!"
+msgstr "未知 FAIstate %s"
+
+#: include/class_acl.inc:929 include/class_acl.inc:931
+#, fuzzy, php-format
+msgid "Role: %s"
+msgstr "角色"
+
+#: include/class_acl.inc:931
+msgid "Unknown role, possibly removed"
 msgstr ""
-"这个菜单允许您添加,编辑和删除所选的组。对于一个长列表,您可以通过选择框上面"
-"的范围选择来调整。"
 
-#: plugins/admin/groups/class_divListGroup.inc:80
-msgid "Groupname / Department"
-msgstr "组名 / 部门"
+#: include/class_acl.inc:939
+#, php-format
+msgid "Contains settings for these objects: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Select to see groups that are primary groups of users"
-msgstr "选择查看用户的主要组"
+#: include/class_acl.inc:948
+#, fuzzy
+msgid "Members:"
+msgstr "成员"
 
-#: plugins/admin/groups/class_divListGroup.inc:85
-msgid "Show primary groups"
-msgstr "显示主要组"
+#: include/class_acl.inc:954
+msgid "ACL is valid for all users"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Select to see groups that have samba groups mappings"
-msgstr "选择查看配置了 samba 映射的用户组"
+#: include/class_acl.inc:1115
+#, fuzzy
+msgid "Access control list"
+msgstr "访问选项"
 
-#: plugins/admin/groups/class_divListGroup.inc:86
-msgid "Show samba groups"
-msgstr "显示 samba 用户组"
+#: include/class_acl.inc:1123
+#, fuzzy
+msgid "Role name"
+msgstr "重命名"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Select to see groups that have applications configured"
-msgstr "选择查看配置了应用程序的组"
+#: include/class_acl.inc:1124
+#, fuzzy
+msgid "Role description"
+msgstr "单元描述"
 
-#: plugins/admin/groups/class_divListGroup.inc:87
-msgid "Show application groups"
-msgstr "显示应用程序组"
+#: include/class_msg_dialog.inc:122
+#, fuzzy
+msgid "Please fix the above error and reload the page."
+msgstr "请看一下 GOsa 日志文件。"
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Select to see groups that have mail settings"
-msgstr "选择查看配置了邮件设置的组"
+#: include/class_hostActionQueue.inc:69 include/class_hostActionQueue.inc:194
+#, fuzzy, php-format
+msgid "Can't locate gotomasses queue file '%s'."
+msgstr "无法创建文件 '%s'。"
 
-#: plugins/admin/groups/class_divListGroup.inc:88
-msgid "Show mail groups"
-msgstr "显示邮件组"
+#: include/class_hostActionQueue.inc:73
+#, fuzzy, php-format
+msgid "Can't read gotomasses queue file '%s'."
+msgstr "无法创建文件 '%s'。"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Select to see normal groups that have only functional aspects"
-msgstr "选择查看实用的普通组"
+#: include/class_hostActionQueue.inc:80
+#, fuzzy, php-format
+msgid "Can't read gotomasses storage file '%s'."
+msgstr "无法创建文件 '%s'。"
 
-#: plugins/admin/groups/class_divListGroup.inc:89
-msgid "Show functional groups"
-msgstr "显示实用组"
+#: include/class_hostActionQueue.inc:143
+msgid "GOsa infrastructure"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:185
-#: plugins/admin/ogroups/class_ogroupManagement.inc:504
-#: plugins/generic/references/class_reference.inc:56
-msgid "Group"
-msgstr "组"
+#: include/class_hostActionQueue.inc:143
+msgid "Cannot read broken entry - skipped!"
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:263
-#: plugins/admin/ogroups/tabs_ogroups.inc:153
-#: plugins/admin/ogroups/class_ogroupManagement.inc:505
-#: plugins/generic/references/class_reference.inc:62
-msgid "Application"
-msgstr "应用程序"
+#: include/class_hostActionQueue.inc:198 include/class_hostActionQueue.inc:207
+#, fuzzy, php-format
+msgid "Can't write gotomasses queue file '%s'."
+msgstr "无法创建文件 '%s'。"
 
-#: plugins/admin/groups/class_divListGroup.inc:294
-#: plugins/admin/departments/class_divListDepartment.inc:186
-#: plugins/admin/ogroups/class_divListOGroup.inc:284
-msgid "Edit this entry"
-msgstr "编辑这条记录"
+#: include/class_hostActionQueue.inc:202
+msgid "The queue file was modified since last reload. Can't save changes."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:303
-#: plugins/admin/departments/class_divListDepartment.inc:191
-#: plugins/admin/ogroups/class_divListOGroup.inc:292
-msgid "Delete this entry"
-msgstr "删除这个条目"
+#: include/class_hostActionQueue.inc:277
+#, php-format
+msgid "Entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_divListGroup.inc:360
-#, fuzzy
-msgid "Number of listed groups"
-msgstr "组名称"
+#: include/class_hostActionQueue.inc:287
+#, php-format
+msgid "Could not update entry, entry with id '%s' not found."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:27
-msgid "Manage POSIX groups"
+#: include/class_hostActionQueue.inc:298
+#, php-format
+msgid "Could not remove entry, entry with id '%s' not found."
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:352
-#: plugins/admin/departments/class_departmentManagement.inc:175
+#: include/class_hostActionQueue.inc:372 include/class_hostActionQueue.inc:390
+#: include/class_hostActionQueue.inc:421 include/class_hostActionQueue.inc:456
 #, fuzzy, php-format
-msgid "You're about to delete the following entry %s"
-msgstr "您将要删除条目 %s。"
+msgid "Can't set priority for ID '%s'. ID does not exist."
+msgstr "软件包文件 '%s' 不存在。"
 
-#: plugins/admin/groups/class_groupManagement.inc:354
-#: plugins/admin/departments/class_departmentManagement.inc:177
-#, fuzzy, php-format
-msgid "You're about to delete the following entries %s"
-msgstr "您将要删除条目 %s。"
+#: include/class_gosaSupportDaemon.inc:464
+msgid "Could not parse XML."
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:163
-#: plugins/admin/acl/class_aclManagement.inc:200
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "Permission error"
-msgstr "允许"
+#: include/class_gosaSupportDaemon.inc:745
+#, php-format
+msgid "Cannot send abort event for entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:388
-#: plugins/admin/groups/class_groupManagement.inc:441
-#: plugins/admin/groups/class_groupManagement.inc:472
-#: plugins/admin/acl/class_aclManagement.inc:253
-#: plugins/admin/acl/class_aclManagement.inc:277
-#: plugins/admin/acl/class_aclManagement.inc:316
-#: plugins/admin/acl/class_aclManagement.inc:340
-#: plugins/admin/departments/class_departmentManagement.inc:203
-#: plugins/admin/departments/class_departmentManagement.inc:251
-#: plugins/admin/departments/class_departmentManagement.inc:270
-#: plugins/admin/ogroups/class_ogroupManagement.inc:268
-#: plugins/admin/ogroups/class_ogroupManagement.inc:320
-#: plugins/admin/ogroups/class_ogroupManagement.inc:347
-#, fuzzy
-msgid "You have no permission to delete this entry!"
-msgstr "您无权删除这个部门。"
+#: include/class_gosaSupportDaemon.inc:765
+#, php-format
+msgid "Cannot remove entry: %s"
+msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:434
+#: include/functions.inc:101
 #, php-format
-msgid "You're about to delete the group '%s'."
-msgstr "您将要删除组 '%s'。"
+msgid "Fatal error: no class locations defined - please run '%s' to fix this"
+msgstr ""
 
-#: plugins/admin/groups/remove.tpl:6
+#: include/functions.inc:108
+#, php-format
 msgid ""
-"This may be a primary user group. Please double check if you really want to "
-"do this since there is no way for GOsa to get your data back."
+"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
-"这可能是一个主要的用户组。请再次检查您是否要这么做,因为 GOsa 没有办法将您的"
-"数据找回。"
-
-#: plugins/admin/groups/main.inc:42 plugins/admin/groups/main.inc:46
-msgid "Group administration"
-msgstr "组管理"
 
-#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18
-msgid "Descriptive text for this group"
-msgstr "组的描述文字"
+#: include/functions.inc:318
+#, php-format
+msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
+msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。"
 
-#: plugins/admin/groups/generic.tpl:43 plugins/admin/acl/acl_role.tpl:31
-#: plugins/admin/ogroups/generic.tpl:29
-msgid "Choose subtree to place group in"
-msgstr "选择来放置组的子树"
+#: include/functions.inc:380
+#, fuzzy
+msgid "Username / UID is not unique inside the LDAP tree!"
+msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。"
 
-#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110
-msgid "Select to create a samba conform group"
-msgstr "选择创建一个 samba 确认组"
+#: include/functions.inc:450
+#, fuzzy
+msgid ""
+"Username / UID is not unique inside the LDAP tree. Please contact your "
+"Administrator."
+msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。"
 
-#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118
-msgid "in domain"
-msgstr "于域"
+#: include/functions.inc:595 include/functions.inc:681
+msgid "Error while adding a lock. Contact the developers!"
+msgstr ""
 
-#: plugins/admin/groups/generic.tpl:140
-msgid "Members are in a phone pickup group"
-msgstr "成员属于电话应答组"
+#: include/functions.inc:605
+#, fuzzy, php-format
+msgid ""
+"Cannot create locking information in LDAP tree. Please contact your "
+"administrator!"
+msgstr "无法获得 LDAP 数据库的锁信息。检查 gosa.conf 中的 'config' 条目!"
 
-#: plugins/admin/groups/generic.tpl:155
-msgid "Members are in a nagios group"
-msgstr "成员属于 nagios 组"
+#: include/functions.inc:605 include/functions.inc:620
+#, fuzzy, php-format
+msgid "LDAP server returned: %s"
+msgstr "LDAP 服务器"
 
-#: plugins/admin/groups/generic.tpl:172
-msgid "Group members"
-msgstr "组成员"
+#: include/functions.inc:620
+#, fuzzy, php-format
+msgid "Adding a lock failed."
+msgstr "保存 FAI 钩子失败"
 
-#: plugins/admin/acl/tabs_acl_role.inc:28
+#: include/functions.inc:699
 #, fuzzy
-msgid "ACL Templates"
-msgstr "模板"
+msgid ""
+"Found multiple locks for object to be locked. This should not happen - "
+"cleaning up multiple references."
+msgstr "发现要锁定的对象由多个锁。这虽然不可能──清除多个引用。"
 
-#: plugins/admin/acl/tabs_acl.inc:28
-#: plugins/admin/acl/class_divListACL.inc:260
-#, fuzzy
-msgid "Acl"
-msgstr "全部"
+#: include/functions.inc:996
+#, php-format
+msgid "The size limit of %d entries is exceed!"
+msgstr "超过了 %d 个条目的大小限制!"
 
-#: plugins/admin/acl/class_aclManagement.inc:26
-#, fuzzy
-msgid "ACLs"
-msgstr "ACL"
+#: include/functions.inc:998
+#, php-format
+msgid ""
+"Set the new size limit to %s and show me this message if the limit still "
+"exceeds"
+msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。"
+
+#: include/functions.inc:1015
+msgid "incomplete"
+msgstr "不完整"
+
+#: include/functions.inc:1253
+msgid "LDAP error:"
+msgstr "LDAP 错误:"
+
+#: include/functions.inc:1254
+msgid ""
+"Problems with the LDAP server mean that you probably lost the last changes. "
+"Please check your LDAP setup for possible errors and try again."
+msgstr ""
+"LDAP 服务器发生错误,意味着您最后的修改可能丢失。请检查您 LDAP 安装可能的错误"
+"再重试。"
 
-#: plugins/admin/acl/class_aclManagement.inc:163
-#, fuzzy
-msgid "You have no permission to create a new role!"
-msgstr "您无权删除这个部门。"
+#: include/functions.inc:1260
+msgid ""
+"Please check your input and fix the error. Press 'OK' to close this message "
+"box."
+msgstr "请检查您的输入并修正错误。按“OK”关闭此对话框。"
 
-#: plugins/admin/acl/class_aclManagement.inc:200
-#, fuzzy
-msgid "You have no permission to edit this ACL!"
-msgstr "您无权删除这个部门。"
+#: include/functions.inc:1325
+msgid "Continue anyway"
+msgstr "仍然继续"
 
-#: plugins/admin/acl/class_aclManagement.inc:245
-#: plugins/admin/acl/class_aclManagement.inc:309
+#: include/functions.inc:1327
+msgid "Edit anyway"
+msgstr "仍然编辑"
+
+#: include/functions.inc:1329
 #, fuzzy, php-format
-msgid "You're about to delete the acl %s."
-msgstr "您将要删除宏 '%s'。"
+msgid "You're going to edit the LDAP entry/entries '%s'"
+msgstr "您将要拷贝条目 '%s'。"
 
-#: plugins/admin/acl/class_divListACL.inc:51
-#, fuzzy
-msgid "List of acl"
-msgstr "宏列表"
+#: include/functions.inc:1513
+msgid "Entries per page"
+msgstr "每页条目数"
 
-#: plugins/admin/acl/class_divListACL.inc:52
-#, fuzzy
-msgid "List of acls"
-msgstr "宏列表"
+#: include/functions.inc:1541
+msgid "Apply filter"
+msgstr "应用过滤器"
 
-#: plugins/admin/acl/class_divListACL.inc:56
-#, fuzzy
-msgid "This menu allows you to edit and delete selected acls."
-msgstr "这个菜单允许您创建,删除和修改 FAI 分类。"
+#: include/functions.inc:1793
+msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
+msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: plugins/admin/acl/class_divListACL.inc:74
-#: plugins/admin/ogroups/tabs_ogroups.inc:146
-msgid "Summary"
-msgstr "总结"
+#: include/functions.inc:1837
+#, php-format
+msgid "GOsa development snapshot (Rev %s)"
+msgstr "GOsa 开发版(版本 %s)"
 
-#: plugins/admin/acl/class_divListACL.inc:81
-msgid "Ignore subtrees"
-msgstr "忽略子树"
+#: include/functions.inc:1916
+#, php-format
+msgid "File '%s' could not be deleted."
+msgstr ""
 
-#: plugins/admin/acl/class_divListACL.inc:85
+#: include/functions.inc:1950 include/functions.inc:1970
 #, fuzzy
-msgid "Display acls matching"
-msgstr "æ\98¾ç¤ºå\8c¹é\85\8dç\9a\84å®\8f"
+msgid "Cannot write to revision file!"
+msgstr "æ\97 æ³\95å\88\9b建æ\96\87件 '%s'ã\80\82"
 
-#: plugins/admin/acl/class_divListACL.inc:244
+#: include/functions.inc:2212 include/functions.inc:2216
+#: include/functions.inc:2222
 #, fuzzy
-msgid "Edit acl role"
-msgstr "编辑宏"
+msgid "'base_hook' is not available. Using default base."
+msgstr "警告: base_hook不可用。使用缺省 base。"
 
-#: plugins/admin/acl/class_divListACL.inc:254
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Delete acl role"
-msgstr "删除宏"
+msgid "LDAP warning"
+msgstr "LDAP 管理"
 
-#: plugins/admin/acl/class_divListACL.inc:266
+#: include/functions.inc:2244
 #, fuzzy
-msgid "Edit acl"
-msgstr "编辑宏"
+msgid "Cannot get schema information from server. No schema check possible!"
+msgstr "不能从服务器得到 schema 信息。无法对 schema 检查!"
 
-#: plugins/admin/acl/class_divListACL.inc:270
-#, fuzzy
-msgid "Delete acl"
-msgstr "删除宏"
+#: include/functions.inc:2270
+msgid "Used to store account specific informations."
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:26
-msgid "Access control list templates"
+#: include/functions.inc:2277
+msgid ""
+"Used to lock currently edited entries to avoid multiple changes at the same "
+"time."
 msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:27
-#, fuzzy
-msgid "Edit ACL roles"
-msgstr "MAC 地址"
+#: include/functions.inc:2320
+#, php-format
+msgid "Missing required object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
-#, fuzzy
-msgid "Object in use"
-msgstr "对象名称"
+#: include/functions.inc:2322
+#, php-format
+msgid "Missing optional object class '%s'!"
+msgstr ""
 
-#: plugins/admin/acl/class_aclRole.inc:618
+#: include/functions.inc:2328
+#, php-format
+msgid "Version mismatch for required object class '%s' (!=%s)!"
+msgstr ""
+
+#: include/functions.inc:2330
+#, php-format
+msgid "Version mismatch for optional object class '%s' (!=%s)!"
+msgstr ""
+
+#: include/functions.inc:2334
 #, fuzzy, php-format
-msgid "This role cannot be removed while it is in use by these objects:"
-msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:"
+msgid "Class(es) available"
+msgstr "文件可用。"
 
-#: plugins/admin/acl/class_aclRole.inc:700
-msgid "Acl roles"
+#: include/functions.inc:2356
+msgid ""
+"You have enabled the rfc2307bis option on the 'ldap setup' step, but your "
+"schema    configuration do not support this option."
 msgstr ""
 
-#: plugins/admin/acl/remove.tpl:6
-#, fuzzy
+#: include/functions.inc:2357
 msgid ""
-"This includes all system and setup informations. Please double check if your "
-"really want to do this since there is no way for GOsa to get your data back."
+"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must "
+"be      AUXILIARY"
 msgstr ""
-"这包含所有系统和设置信息。请再次检查您是否要这么做,因为 GOsa 没有办法将您的"
-"数据找回。"
 
-#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10
+#: include/functions.inc:2361
 msgid ""
-"Best thing to do before performing this action would be to save the current "
-"contents of your LDAP tree in a file. So - if you've done so - press "
-"'Delete' to continue or 'Cancel' to abort."
+"Your schema is configured to support the rfc2307bis group, but you have "
+"disabled this option on the 'ldap setup' step."
 msgstr ""
-"最好在执行这个操作之前,保存当前 LDAP 树中的内容到一个文件。所以,如果您已经"
-"这么做了,按“删除”继续或者按“取消”退出。"
 
-#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47
-#, fuzzy
-msgid "ACL management"
-msgstr "管理"
+#: include/functions.inc:2362
+msgid "The objectClass 'posixGroup' must be STRUCTURAL"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:257
-msgid "Required field 'Name' is not set."
-msgstr "需要的“姓名”字段没有设置"
+#: include/functions.inc:2385
+msgid "German"
+msgstr "德语"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:261
-msgid "Required field 'Description' is not set."
-msgstr "需要的字段“描述”没有设置。"
+#: include/functions.inc:2386
+msgid "French"
+msgstr "法语"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318 html/main.php:152
-#, fuzzy
-msgid "Fatal error"
-msgstr "终端服务器"
+#: include/functions.inc:2387
+msgid "Italian"
+msgstr "意大利语"
+
+#: include/functions.inc:2388
+msgid "Spanish"
+msgstr "西班牙语"
+
+#: include/functions.inc:2389
+msgid "English"
+msgstr "英语"
+
+#: include/functions.inc:2390
+msgid "Dutch"
+msgstr "荷兰语"
+
+#: include/functions.inc:2391
+msgid "Polish"
+msgstr "波兰语"
+
+#: include/functions.inc:2392
+msgid "Swedish"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:318
+#: include/functions.inc:2393
 #, fuzzy
-msgid "Cannot find an unused tag for this administrative unit!"
-msgstr "è\87´å\91½é\94\99误ï¼\9aæ\97 æ³\95æ\89¾å\88°ä¸\80个æ\9cªä½¿ç\94¨ç\9a\84æ \87å¿\97æ\9d¥æ \87记管ç\90\86å\8d\95å\85\83ï¼\81"
+msgid "Chinese"
+msgstr "è\8a¯ç\89\87ç»\84"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:411
-#, php-format
-msgid "Tagging '%s'."
-msgstr "标记 '%s'。"
+#: include/functions.inc:2394
+msgid "Russian"
+msgstr "俄语"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:496
+#: include/functions.inc:2562
 #, php-format
-msgid "Moving '%s' to '%s'"
-msgstr "移动 '%s' 到 '%s'"
+msgid ""
+"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist."
+msgstr "命令 '%s',作为插件 '%s' 的 POSTMODIFY 好像并不存在。"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:537
-#, php-format
-msgid "FAILED to copy %s, aborting operation"
-msgstr "拷贝 %s 失败,退出操作"
+#: include/functions.inc:2590
+msgid "Cannot generate samba hash!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:569
-#: plugins/admin/departments/class_departmentGeneric.inc:574
-#: plugins/admin/departments/class_departmentManagement.inc:26
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Departments"
-msgstr "部门"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+msgid "Performance warning"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:578
-msgid "Country"
-msgstr "国家"
+#: include/class_ldap.inc:233 include/class_ldap.inc:266
+#, php-format
+msgid "LDAP performance is poor: last query took about %.2fs!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:581
-msgid "Telephone"
-msgstr "电话"
+#: include/class_ldap.inc:592
+#, php-format
+msgid ""
+"Cannot automatically create subtrees with RDN '%s': no object class found"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:582
-#: plugins/admin/departments/class_divListDepartment.inc:68
-msgid "Department name"
-msgstr "部门名称"
+#: include/class_ldap.inc:640
+#, php-format
+msgid "Cannot automatically create subtrees with RDN '%s': not supported"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:583
-#: plugins/admin/departments/generic.tpl:24
-msgid "Category"
-msgstr "å\88\86ç±»"
+#: include/class_ldap.inc:724
+#, php-format
+msgid "while operating on '%s' using LDAP server '%s'"
+msgstr "å½\93æ\93\8dä½\9c '%s' ä½¿ç\94¨ LDAP æ\9c\8då\8a¡å\99¨ '%s' æ\97"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:586
-#: plugins/admin/departments/generic.tpl:109
-msgid "Administrative settings"
-msgstr "管理设置"
+#: include/class_ldap.inc:726
+#, php-format
+msgid "while operating on LDAP server %s"
+msgstr "当操作  LDAP 服务器 '%s' 时"
+
+#: include/class_ldap.inc:948
+#, php-format
+msgid ""
+"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' "
+"in line %s"
+msgstr "这不是一条有效的 DN: '%s'。导入数据应该以 'dn:...' 开始于行 %s"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:638
+#: include/class_ldap.inc:977
 #, php-format
-msgid "Object '%s' is already tagged"
-msgstr "对象 '%s' å·²ç»\8få\81\9aæ \87è®°"
+msgid "Error while importing dn: '%s', please check your LDIF from line %s on!"
+msgstr "导å\85¥ dn: '%s' æ\97¶é\94\99误ï¼\8c请ä»\8eè¡\8c %s å¼\80å§\8bæ£\80æ\9f¥æ\82¨ç\9a\84 LDIFï¼\81"
 
-#: plugins/admin/departments/class_departmentGeneric.inc:645
+#: include/class_CopyPasteHandler.inc:118
 #, php-format
-msgid "Adding tag (%s) to object '%s'"
-msgstr "添加标识(%s)到对象 '%s'"
+msgid "Cannot cleanup copy & paste queue: setting permissions for '%s' failed!"
+msgstr ""
 
-#: plugins/admin/departments/class_departmentGeneric.inc:677
+#: include/class_CopyPasteHandler.inc:126
 #, php-format
-msgid "Removing tag from object '%s'"
-msgstr "从对象 '%s' 删除标记"
+msgid "Cannot cleanup copy & paste queue: no write permission inside '%s'!"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:2
-#, fuzzy
-msgid "You are currently moving/renaming this department."
-msgstr "您无权删除这个部门。"
+#: include/class_CopyPasteHandler.inc:158
+#, php-format
+msgid "Copy and paste failed: object '%s' is not a valid ldap object!"
+msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:5
-msgid ""
-"Modifying a departments naming attribute 'ou' or base may corrupt acls and "
-"snapshot entries for all entire objects."
+#: include/class_CopyPasteHandler.inc:175
+#, php-format
+msgid "Cannot save LDAP dump: no write permission inside '%s'!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:8
-msgid "GOsa can NOT fix this for you, yet."
+#: include/class_CopyPasteHandler.inc:183
+#, php-format
+msgid "Cannot save LDAP dump: setting permissions for '%s' failed!"
 msgstr ""
 
-#: plugins/admin/departments/dep_move_confirm.tpl:11
-msgid ""
-"Before you confirm this action, ensure that everything will be as expected, "
-"possibly the best solution is a backup."
+#: include/class_CopyPasteHandler.inc:192
+#, php-format
+msgid "Cannot save LDAP dump: no write permission to '%s/%s'!"
 msgstr ""
 
-#: plugins/admin/departments/tabs_department.inc:54
-#, fuzzy
-msgid "Moving LDAP tree failed: destination tree is a subtree of the source!"
-msgstr "移动树失败。目标树是源树的子树。"
+#: include/class_CopyPasteHandler.inc:268
+#, fuzzy, php-format
+msgid "Cannot load dumped file '%s'!"
+msgstr "无法打开文件 '%s'。"
 
-#: plugins/admin/departments/dep_iframe.tpl:1
-msgid "Processing the requested operation"
-msgstr "处理请求的操作"
+#: include/class_CopyPasteHandler.inc:368
+#, fuzzy, php-format
+msgid "You are going to paste the following entries '%s'."
+msgstr "您将要拷贝条目 '%s'。"
 
-#: plugins/admin/departments/dep_iframe.tpl:7
-msgid ""
-"Your browser doesn't support iframes, please use this link to perform the "
-"requested operation."
-msgstr "您的浏览器不支持 iframe,请使用这个链接来执行请求的操作。"
+#: include/class_CopyPasteHandler.inc:391
+#, fuzzy, php-format
+msgid "You are going to paste the following entry '%s'."
+msgstr "您将要拷贝条目 '%s'。"
 
-#: plugins/admin/departments/class_divListDepartment.inc:47
-#: plugins/admin/departments/class_divListDepartment.inc:48
-msgid "List of departments"
-msgstr "部门列表"
+#: include/class_CopyPasteHandler.inc:485
+msgid "Can't paste"
+msgstr "无法粘贴"
 
-#: plugins/admin/departments/class_divListDepartment.inc:53
+#: include/utils/class_msgPool.inc:14
 #, fuzzy
-msgid ""
-"This menu allows you to create, delete and edit selected departments. Having "
-"a large number of departments, you might prefer the range selectors on top "
-"of the department list."
-msgstr ""
-"这个菜单允许您创建,删除和修改所选的部门。对于一个长列表,您可以通过列表上面"
-"的范围选择来调整。"
+msgid "You have no permission to delete this object!"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/class_divListDepartment.inc:76
+#: include/utils/class_msgPool.inc:18 include/utils/class_msgPool.inc:23
 #, fuzzy
-msgid "Regular expression for matching department names"
-msgstr "匹配附件名称的正则表达式"
-
-#: plugins/admin/departments/class_divListDepartment.inc:220
-msgid "department"
-msgstr "部门"
+msgid "You have no permission to delete the object:"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/class_departmentManagement.inc:27
+#: include/utils/class_msgPool.inc:26
 #, fuzzy
-msgid "Manage Departments"
-msgstr "部门"
+msgid "You have no permission to delete these objects:"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/class_departmentManagement.inc:245
-#, php-format
-msgid "You're about to delete the whole LDAP subtree placed under '%s'."
-msgstr "您将要删除 '%s' 下的整个 LDAP 子树。"
+#: include/utils/class_msgPool.inc:33
+#, fuzzy
+msgid "You have no permission to create this object!"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/remove.tpl:6
-msgid ""
-"This includes 'all' accounts, systems, etc. in this subtree. Please double "
-"check if your really want to do this since there is no way for GOsa to get "
-"your data back."
-msgstr ""
-"在这个子树中包含了所有账号,系统等等。请再次检查您是否要这么做,因为 GOsa 没"
-"有办法将您的数据找回。"
+#: include/utils/class_msgPool.inc:37 include/utils/class_msgPool.inc:41
+#, fuzzy
+msgid "You have no permission to create the object:"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/main.inc:43 plugins/admin/departments/main.inc:45
-msgid "Department management"
-msgstr "部门管理"
+#: include/utils/class_msgPool.inc:44
+#, fuzzy
+msgid "You have no permission to create these objects:"
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/departments/generic.tpl:8
-msgid "Name of department"
-msgstr "部门名称"
+#: include/utils/class_msgPool.inc:51
+#, fuzzy
+msgid "You have no permission to modify this object!"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:11
-msgid "Name of subtree to create"
-msgstr "要创建子树的名称"
+#: include/utils/class_msgPool.inc:55 include/utils/class_msgPool.inc:59
+#, fuzzy
+msgid "You have no permission to modify the object:"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:19
-msgid "Descriptive text for department"
-msgstr "部门描述文件"
+#: include/utils/class_msgPool.inc:62
+#, fuzzy
+msgid "You have no permission to modify these objects:"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:27
-msgid "Category for this subtree"
-msgstr "这个子树的分类"
+#: include/utils/class_msgPool.inc:69
+#, fuzzy
+msgid "You have no permission to view this object!"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:39
-msgid "Choose subtree to place department in"
-msgstr "选择放置部门的子树"
+#: include/utils/class_msgPool.inc:73 include/utils/class_msgPool.inc:77
+#, fuzzy
+msgid "You have no permission to view the object:"
+msgstr "您无权在此 'Base' 下创建一个电话"
 
-#: plugins/admin/departments/generic.tpl:63
-msgid "State where this subtree is located"
-msgstr "这个子树位于的状态"
+#: include/utils/class_msgPool.inc:80
+#, fuzzy
+msgid "You have no permission to view these objects:"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:71
-msgid "Location of this subtree"
-msgstr "这个子树的位置"
+#: include/utils/class_msgPool.inc:87
+#, fuzzy
+msgid "You have no permission to move this object!"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:79
-msgid "Postal address of this subtree"
-msgstr "这个子树的地址"
+#: include/utils/class_msgPool.inc:91 include/utils/class_msgPool.inc:95
+#, fuzzy
+msgid "You have no permission to move the object:"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:86
-msgid "Base telephone number of this subtree"
-msgstr "这个子树的电话号码"
+#: include/utils/class_msgPool.inc:98
+#, fuzzy
+msgid "You have no permission to move these objects:"
+msgstr "您无权删除这个黑名单。"
 
-#: plugins/admin/departments/generic.tpl:94
-msgid "Base facsimile telephone number of this subtree"
-msgstr "这个子树的传真号码"
+#: include/utils/class_msgPool.inc:108 include/utils/class_msgPool.inc:120
+#: include/utils/class_msgPool.inc:138
+#, fuzzy
+msgid "Connection information"
+msgstr "个人信息"
 
-#: plugins/admin/departments/generic.tpl:111
-msgid "Tag department as an independent administrative unit"
-msgstr "将部门标记为独立的管理单元"
+#: include/utils/class_msgPool.inc:110
+#, fuzzy, php-format
+msgid "Cannot connect to %s database!"
+msgstr "无法连接到数据库!"
 
-#: plugins/admin/ogroups/paste_generic.tpl:7
-msgid "Please enter the new object group name"
-msgstr "请输入新对象组名称"
+#: include/utils/class_msgPool.inc:122
+#, fuzzy, php-format
+msgid "Cannot select %s database!"
+msgstr "无法选择数据库!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:96
-#: plugins/admin/ogroups/tabs_ogroups.inc:248
-msgid "Phone queue"
-msgstr "电话队列"
+#: include/utils/class_msgPool.inc:128
+#, php-format
+msgid "No %s server defined!"
+msgstr ""
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:120
-msgid "System"
-msgstr "系统"
+#: include/utils/class_msgPool.inc:140
+#, fuzzy, php-format
+msgid "Cannot query %s database!"
+msgstr "无法选择数据库!"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:128
-#: plugins/admin/ogroups/tabs_ogroups.inc:135
-#: plugins/admin/ogroups/tabs_ogroups.inc:228
-msgid "Devices"
-msgstr "设备"
+#: include/utils/class_msgPool.inc:146
+#, fuzzy, php-format
+msgid "The field '%s' contains a reserved keyword!"
+msgstr "“传真”字段包含一个无效电话号码"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:142
-msgid "Startup"
-msgstr "启动"
+#: include/utils/class_msgPool.inc:152
+#, fuzzy, php-format
+msgid "Command specified as %s hook for plugin '%s' does not exist!"
+msgstr "命令 '%s',作为插件 '%s' 的 CHECK hook 好像并不存在。"
 
-#: plugins/admin/ogroups/tabs_ogroups.inc:224
-msgid "Terminals"
-msgstr "终端"
+#: include/utils/class_msgPool.inc:159
+#, fuzzy, php-format
+msgid "Value for '%s' is too large!"
+msgstr "'UID' 赋值太小。"
 
-#: plugins/admin/ogroups/class_ogroup.inc:169
-msgid "You cannot combine terminals and workstations in one object group!"
+#: include/utils/class_msgPool.inc:161
+#, php-format
+msgid "'%s' must be smaller than %d!"
 msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:190
-msgid "This 'dn' is no object group."
-msgstr "这个 'dn' 不是对象组。"
-
-#: plugins/admin/ogroups/class_ogroup.inc:307
-msgid "too many different objects!"
-msgstr "太多不同对象!"
+#: include/utils/class_msgPool.inc:169
+#, fuzzy, php-format
+msgid "Value for '%s' is too small!"
+msgstr "'UID' 赋值太小。"
 
-#: plugins/admin/ogroups/class_ogroup.inc:309
-msgid "users"
-msgstr "用户"
+#: include/utils/class_msgPool.inc:171
+#, php-format
+msgid "'%s' must be %d or above!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:310
-msgid "groups"
-msgstr "组"
+#: include/utils/class_msgPool.inc:178
+#, php-format
+msgid "'%s' depends on '%s' - please provide both values!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:311
-msgid "applications"
-msgstr "应用程序"
+#: include/utils/class_msgPool.inc:184
+#, fuzzy, php-format
+msgid "There is already an entry with this '%s' attribute in the system!"
+msgstr "数据库中已经有同样登录名的用户。"
 
-#: plugins/admin/ogroups/class_ogroup.inc:312
-msgid "departments"
-msgstr "部门"
+#: include/utils/class_msgPool.inc:190
+#, fuzzy, php-format
+msgid "The required field '%s' is empty!"
+msgstr "需要的“姓名”字段没有设置"
 
-#: plugins/admin/ogroups/class_ogroup.inc:313
-msgid "servers"
-msgstr "服务器"
+#: include/utils/class_msgPool.inc:198
+msgid "Example"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:314
-msgid "workstations"
-msgstr "工作站"
+#: include/utils/class_msgPool.inc:215 include/utils/class_msgPool.inc:219
+#, fuzzy, php-format
+msgid "The Field '%s' contains invalid characters"
+msgstr "“姓名”字段包含无效字符。"
 
-#: plugins/admin/ogroups/class_ogroup.inc:315
-#, fuzzy
-msgid "winstations"
-msgstr "Windows 工作站"
+#: include/utils/class_msgPool.inc:216
+#, php-format
+msgid "'%s' is not allowed:"
+msgstr ""
 
-#: plugins/admin/ogroups/class_ogroup.inc:316
-msgid "terminals"
-msgstr "终端"
+#: include/utils/class_msgPool.inc:216
+#, fuzzy, php-format
+msgid "'%s' are not allowed."
+msgstr "不允许修改口令"
 
-#: plugins/admin/ogroups/class_ogroup.inc:317
-msgid "phones"
-msgstr "电话"
+#: include/utils/class_msgPool.inc:226
+#, fuzzy, php-format
+msgid "Missing %s PHP extension!"
+msgstr "删除打印机扩展"
 
-#: plugins/admin/ogroups/class_ogroup.inc:318
-msgid "printers"
-msgstr "打印机"
+#: include/utils/class_msgPool.inc:256
+#, php-format
+msgid "Add"
+msgstr "添加"
 
-#: plugins/admin/ogroups/class_ogroup.inc:325
-msgid "and"
-msgstr "和"
+#: include/utils/class_msgPool.inc:256
+#, fuzzy, php-format
+msgid "Add %s"
+msgstr "添加"
 
-#: plugins/admin/ogroups/class_ogroup.inc:470
-msgid "Non existing dn:"
-msgstr "不存在的 dn:"
+#: include/utils/class_msgPool.inc:262
+#, php-format
+msgid "Delete"
+msgstr "删除"
 
-#: plugins/admin/ogroups/class_ogroup.inc:629
-#, fuzzy
-msgid "You can combine two different object types at maximum, only!"
-msgstr "您最多只能组合两个不同的对象类!"
+#: include/utils/class_msgPool.inc:262
+#, fuzzy, php-format
+msgid "Delete %s"
+msgstr "删除"
 
-#: plugins/admin/ogroups/class_ogroup.inc:763
-#, fuzzy
-msgid "Object group generic"
-msgstr "对象组"
+#: include/utils/class_msgPool.inc:268
+#, fuzzy, php-format
+msgid "Set %s"
+msgstr "设置"
 
-#: plugins/admin/ogroups/class_ogroup.inc:768
-#: plugins/admin/ogroups/class_ogroupManagement.inc:26
-#: plugins/admin/ogroups/main.inc:37 plugins/admin/ogroups/main.inc:42
-msgid "Object groups"
-msgstr "对象组"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit..."
+msgstr "编辑"
 
-#: plugins/admin/ogroups/class_ogroup.inc:774
-#, fuzzy
-msgid "Member"
-msgstr "成员"
+#: include/utils/class_msgPool.inc:274
+#, fuzzy, php-format
+msgid "Edit %s..."
+msgstr "编辑用户"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:27
-#, fuzzy
-msgid "Manage object groups"
-msgstr "对象组名称"
+#: include/utils/class_msgPool.inc:280
+#, fuzzy, php-format
+msgid "Back..."
+msgstr "返回"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:236
+#: include/utils/class_msgPool.inc:280
 #, fuzzy, php-format
-msgid "You're about to delete the following object entry %s"
-msgstr "您将要删除条目 %s。"
+msgid "Back %s..."
+msgstr "编辑用户"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:238
+#: include/utils/class_msgPool.inc:298
 #, fuzzy, php-format
-msgid "You're about to delete the following object entries %s"
-msgstr "您将要删除这个对象组 '%s'。"
+msgid "This account has no valid %s extensions!"
+msgstr "该账户没有有效的 Gosa 扩展。"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:313
-#, php-format
-msgid "You're about to delete the object group '%s'."
-msgstr "您将要删除这个对象组 '%s'。"
+#: include/utils/class_msgPool.inc:304
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. You can disable them by clicking below."
+msgstr "这个账户已经启用 posix 功能。要禁用请点击下面按钮。"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:509
-#: plugins/generic/references/class_reference.inc:68
-msgid "Workstation"
-msgstr "工作站"
+#: include/utils/class_msgPool.inc:307 include/utils/class_msgPool.inc:314
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings enabled. To disable them, you'll need to remove "
+"the %s settings first!"
+msgstr ""
+"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:510
-#, fuzzy
-msgid "Windows Install"
-msgstr "Windows 工作站"
+#: include/utils/class_msgPool.inc:323
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. You can enable them by clicking below."
+msgstr "这个账户已经启用 posix 功能。要启用请点击下面按钮。"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:511
-msgid "Terminal"
-msgstr "终端"
+#: include/utils/class_msgPool.inc:326
+#, fuzzy, php-format
+msgid ""
+"This account has %s settings disabled. To enable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
 
-#: plugins/admin/ogroups/class_ogroupManagement.inc:512
-#: plugins/generic/references/class_reference.inc:72
-msgid "Printer"
-msgstr "打印机"
+#: include/utils/class_msgPool.inc:333
+#, fuzzy, php-format
+msgid ""
+"This account has %s features settings. To disable them, you'll need to add "
+"the %s settings first!"
+msgstr ""
+"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:6
-msgid "Select objects to add"
-msgstr "选择要添加的对象"
+#: include/utils/class_msgPool.inc:341
+#, fuzzy, php-format
+msgid "Add %s settings"
+msgstr "应用程序设置"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Select to see departments"
-msgstr "选择查看部门"
+#: include/utils/class_msgPool.inc:347
+#, fuzzy, php-format
+msgid "Remove %s settings"
+msgstr "Posix 设置"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:27
-msgid "Show departments"
-msgstr "显示部门"
+#: include/utils/class_msgPool.inc:353
+msgid "Click the 'Edit' button below to change informations in this dialog"
+msgstr "点击下面的“编辑”按钮修改该对话框内的信息"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Select to see GOsa accounts"
-msgstr "选择查看 Gosa 账号"
+#: include/utils/class_msgPool.inc:359
+msgid "January"
+msgstr "一月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:28
-msgid "Show people"
-msgstr "显示人员"
+#: include/utils/class_msgPool.inc:359
+msgid "February"
+msgstr "二月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Select to see GOsa groups"
-msgstr "选择查看 GOsa 组"
+#: include/utils/class_msgPool.inc:359
+msgid "March"
+msgstr "三月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:29
-msgid "Show groups"
-msgstr "显示组"
+#: include/utils/class_msgPool.inc:359
+msgid "April"
+msgstr "四月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Select to see applications"
-msgstr "选择查看应用程序"
+#: include/utils/class_msgPool.inc:360
+msgid "May"
+msgstr "五月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:30
-msgid "Show applications"
-msgstr "显示应用程序"
+#: include/utils/class_msgPool.inc:360
+msgid "June"
+msgstr "六月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:31
-msgid "Show servers"
-msgstr "显示服务器"
+#: include/utils/class_msgPool.inc:360
+msgid "July"
+msgstr "七月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Select to see workstations"
-msgstr "选择查看工作站"
+#: include/utils/class_msgPool.inc:360
+msgid "August"
+msgstr "八月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:32
-msgid "Show workstations"
-msgstr "显示工作站"
+#: include/utils/class_msgPool.inc:360
+msgid "September"
+msgstr "九月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Select to see terminals"
-msgstr "选择查看终端"
+#: include/utils/class_msgPool.inc:361
+msgid "October"
+msgstr "十月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:33
-msgid "Show terminals"
-msgstr "显示终端"
+#: include/utils/class_msgPool.inc:361
+msgid "November"
+msgstr "十一月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Select to see printers"
-msgstr "选择查看打印机"
+#: include/utils/class_msgPool.inc:361
+msgid "December"
+msgstr "十二月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:34
-msgid "Show printers"
-msgstr "显示打印机"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Sunday"
+msgstr "姓"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Select to see phones"
-msgstr "选择查看电话"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Monday"
+msgstr "月"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:35
-msgid "Show phones"
-msgstr "显示电话"
+#: include/utils/class_msgPool.inc:367
+msgid "Tuesday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:41
-msgid "Display objects of department"
-msgstr "选择查看部门对象"
+#: include/utils/class_msgPool.inc:367
+#, fuzzy
+msgid "Wednesday"
+msgstr "星期三"
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:45
-msgid "Display objects matching"
-msgstr "显示匹配对象"
+#: include/utils/class_msgPool.inc:367
+msgid "Thursday"
+msgstr ""
 
-#: plugins/admin/ogroups/ogroup_objects.tpl:46
-msgid "Regular expression for matching object names"
-msgstr "匹配对象名的正则表达式"
+#: include/utils/class_msgPool.inc:367
+msgid "Friday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:59
-#: plugins/admin/ogroups/class_divListOGroup.inc:60
-msgid "List of object groups"
-msgstr "对象组列表"
+#: include/utils/class_msgPool.inc:367
+msgid "Saturday"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:65
-msgid ""
-"This menu allows you to add, edit or remove selected groups. You may want to "
-"use the range selector on top of the group listbox, when working with  a "
-"large number of groups."
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "read operation"
+msgstr "邮件选项"
+
+#: include/utils/class_msgPool.inc:374
+msgid "add operation"
 msgstr ""
-"这个菜单允许您添加,编辑和删除所选的组。对于一个长列表,您可以通过选择框上面"
-"的范围选择来调整。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:84
-msgid "Name of object groups"
-msgstr "对象组名称"
+#: include/utils/class_msgPool.inc:374
+#, fuzzy
+msgid "modify operation"
+msgstr "个人信息"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Select to see groups containing users"
-msgstr "选择查看包含用户的组"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "delete operation"
+msgstr "选择查看工作站"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:89
-msgid "Show groups containing users"
-msgstr "显示包含用户的组"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "search operation"
+msgstr "账号过期于"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Select to see groups containing groups"
-msgstr "选择查看包含组的组"
+#: include/utils/class_msgPool.inc:375
+#, fuzzy
+msgid "authentication"
+msgstr "Nagios 鉴权"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:90
-msgid "Show groups containing groups"
-msgstr "显示包含组的组"
+#: include/utils/class_msgPool.inc:378
+#, fuzzy, php-format
+msgid "LDAP %s failed!"
+msgstr "Mysql 查询失败。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Select to see groups containing applications"
-msgstr "选择查看包含应用程序的组"
+#: include/utils/class_msgPool.inc:380
+#, fuzzy
+msgid "LDAP operation failed!"
+msgstr "Mysql 查询失败。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:91
-msgid "Show groups containing applications"
-msgstr "显示包含应用程序的组"
+#: include/utils/class_timezone.inc:51
+#, php-format
+msgid ""
+"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate "
+"correct timezone offset."
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Select to see groups containing departments"
-msgstr "选择查看包含部门的组"
+#: include/class_multi_plug.inc:362
+#, fuzzy
+msgid "You are currently editing mutliple entries."
+msgstr "您无权删除这个部门。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:92
-msgid "Show groups containing departments"
-msgstr "显示包含组织的组"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "Password reset"
+msgstr "口令过期截止日"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Select to see groups containing servers"
-msgstr "选择查看包含服务器的组"
+#: include/class_multi_plug.inc:391
+#, fuzzy
+msgid "The user password was resetted, please set a new password value!"
+msgstr "您的口令已经过期 !! 选择一个新口令"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:93
-msgid "Show groups containing servers"
-msgstr "显示包含服务器的组"
+#: html/getvcard.php:39
+#, fuzzy
+msgid "Missing parameters!"
+msgstr "应用程序名称"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Select to see groups containing workstations"
-msgstr "选择查看包含工作站的组"
+#: html/getldif.php:82 html/getxls.php:493
+#, fuzzy
+msgid "Permission denied!"
+msgstr "允许"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:94
-msgid "Show groups containing workstations"
-msgstr "显示包含工作站的组"
+#: html/getldif.php:82
+#, fuzzy
+msgid "You are not allowed to create ldap dumps."
+msgstr "您无权删除这个用户!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/getldif.php:107
 #, fuzzy
-msgid "Select to see groups containing windows workstations"
-msgstr "选择查看包含工作站的组"
+msgid "Error in ivbb parameter!"
+msgstr "检查参数"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:95
+#: html/password.php:58 html/index.php:141
+#, fuzzy, php-format
+msgid "GOsa configuration %s/%s is not readable. Aborted."
+msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
+
+#: html/password.php:78
 #, fuzzy
-msgid "Show groups containing windows workstations"
-msgstr "显示包含工作站的组"
+msgid "Accessibility"
+msgstr "配置文件"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Select to see groups containing terminals"
-msgstr "选择查看包含终端的组"
+#: html/password.php:78 html/setup.php:66 html/index.php:166
+#, php-format
+msgid "Directory '%s' specified as compile directory is not accessible!"
+msgstr "目录 '%s' 作为编译目录无法访问!"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:96
-msgid "Show groups containing terminals"
-msgstr "显示包含终端的组"
+#: html/password.php:163
+msgid "Error: Password method not available!"
+msgstr ""
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Select to see groups containing printer"
-msgstr "选择查看包含打印机的组"
+#: html/password.php:228 html/index.php:325
+msgid "Please check the username/password combination."
+msgstr "请检查用户名/口令。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:97
-msgid "Show groups containing printer"
-msgstr "æ\98¾ç¤ºå\8c\85å\90«æ\89\93å\8d°æ\9cºç\9a\84ç»\84"
+#: html/password.php:232
+msgid "You have no permissions to change your password."
+msgstr "æ\82¨æ\97 æ\9d\83ä¿®æ\94¹æ\82¨ç\9a\84å\8f£ä»¤ã\80\82"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Select to see groups containing phones"
-msgstr "选择查看包含电话的组"
+#: html/password.php:253
+msgid "External password changer reported a problem: "
+msgstr "外部口令更改程序报告错误:"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:98
-msgid "Show groups containing phones"
-msgstr "显示包含电话的组"
+#: html/password.php:284 html/index.php:419
+msgid "Session will not be encrypted."
+msgstr "会话不会被加密。"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:196
-#: plugins/admin/ogroups/class_divListOGroup.inc:325
-#: plugins/generic/references/class_reference.inc:70
-msgid "Object group"
-msgstr "对象组"
+#: html/password.php:284 html/index.php:419
+msgid "Enter SSL session"
+msgstr "进入 SSL 会话"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:295
+#: html/setup.php:66 html/index.php:166
 #, fuzzy
-msgid "You are not allowed to remove this entry."
-msgstr "æ\82¨æ\97 æ\9d\83å\88 é\99¤è¿\99个æ\9d¡ç\9b®ï¼\81"
+msgid "Smarty"
+msgstr "æ\80»ç»\93"
 
-#: plugins/admin/ogroups/class_divListOGroup.inc:341
+#: html/index.php:57
 #, fuzzy
-msgid "Number of listed object groups"
-msgstr "对象组名称"
+msgid "Session is not encrypted!"
+msgstr "会话不会被加密。"
 
-#: plugins/admin/ogroups/remove.tpl:7
+#: html/index.php:64
 msgid ""
-"Please double check if you really want to do this since there is no way for "
-"GOsa to get your data back."
-msgstr "请再次检查您是否要这么做,因为 GOsa 没有办法将您的数据找回。"
+"The session lifetime configured in your gosa.conf will be overridden by php."
+"ini settings."
+msgstr ""
 
-#: plugins/admin/ogroups/generic.tpl:10
-msgid "Name of the group"
-msgstr "组名称"
+#: html/index.php:141
+#, fuzzy
+msgid "Configuration accessibility"
+msgstr "配置文件"
 
-#: plugins/admin/ogroups/generic.tpl:42
-msgid "Member objects"
-msgstr "成员对象"
+#: html/index.php:217
+msgid "There is a problem with the authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Object name"
-msgstr "对象名称"
+#: html/index.php:225
+msgid "Cannot find a valid user for the current authentication setup!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:11
-msgid "Contents"
-msgstr "内容"
+#: html/index.php:229
+msgid "User information is not unique accross the configured LDAP trees!"
+msgstr ""
 
-#: plugins/generic/references/contents.tpl:18
-msgid "This object has no relationship to other objects."
-msgstr "这个对象和其他对象没有关系。"
+#: html/index.php:269
+msgid "Cannot detect information about the installed LDAP schema!"
+msgstr ""
 
-#: plugins/generic/references/class_reference.inc:50
-msgid "FAX"
-msgstr "传真"
+#: html/index.php:282
+#, fuzzy
+msgid "Your ldap setup contains old schema definitions:"
+msgstr "您 LDAP 的设置包含老的 schema 定义。请重新执行安装。"
 
-#: plugins/generic/references/class_reference.inc:52
-msgid "Proxy"
-msgstr "代理"
+#: html/index.php:303
+msgid "Please specify a valid username!"
+msgstr "请输入一个有效的用户名!"
 
-#: plugins/generic/references/class_reference.inc:54
-msgid "FTP"
-msgstr "FTP"
+#: html/index.php:306
+msgid "Please specify your password!"
+msgstr "请输入您的口令!"
 
-#: plugins/generic/references/class_reference.inc:66
-msgid "Thin Client"
-msgstr "瘦客户机"
+#: html/index.php:318
+#, fuzzy
+msgid "Authentication error"
+msgstr "Nagios 鉴权"
 
-#: plugins/generic/welcome/welcome.tpl:4
-msgid ""
-"This is the GOsa main menu. You can select your tasks from the menu on the "
-"left, or by choosing one of the pictograms below. All changes apply directly "
-"to your companies LDAP server."
+#: html/index.php:318
+msgid "Cannot retrieve user information for htaccess authentication!"
 msgstr ""
-"这是 Gosa 主菜单。您可以从左侧的菜单中选择,或者点击下面的图标。所有改变都将"
-"直接修改您公司的 LDAP 服务器。"
 
-#: plugins/generic/welcome/welcome.tpl:8
-msgid ""
-"Use 'Sign out' on the upper left to close the connection and 'Main' to get "
-"back to the pictogram view."
-msgstr "选择上方左侧的“退出”按钮断开链接,选择“首页”回到图标程序界面。"
+#: html/index.php:374
+msgid "Account locked. Please contact your system administrator."
+msgstr "账户锁定。请联系管理员。"
 
-#: plugins/generic/welcome/welcome.tpl:15
-msgid "The GOsa team"
-msgstr "GOsa 团队"
+#: html/index.php:425
+msgid ""
+"Your browser has cookies disabled. Please enable cookies and reload this "
+"page before logging in!"
+msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!"
 
-#: plugins/generic/welcome/main.inc:26
+#: html/main.php:153
 #, php-format
-msgid "Welcome %s!"
-msgstr "欢迎 %s!"
-
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25
-msgid "Bug submitter"
+msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
 
-#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26
+#: html/main.php:171
+#, fuzzy
+msgid "PHP configuration"
+msgstr "PHP 安装检查"
+
+#: html/main.php:172
 msgid ""
-"<a\thref='https://oss.gonicus.de/labs/gosa/"
-"newticket'\ttarget='_blank'>Bugsubmitter</a>"
+"FATAL: Register globals is on. GOsa will refuse to login unless this is "
+"fixed by an administrator."
+msgstr "致命错误:全局注册已打开。GOsa 将拒绝登录直到被管理修正。"
+
+#: html/main.php:217
+#, fuzzy
+msgid "Configuration warning"
+msgstr "配置文件"
+
+#: html/main.php:217
+msgid "Running out of memory!"
 msgstr ""
 
+#: html/main.php:356
+#, fuzzy
+msgid "Password reminder"
+msgstr "口令过期截止日"
+
+#: html/main.php:356
+#, fuzzy
+msgid "Your password is about to expire, please change your password!"
+msgstr "您的口令就要过期,请修改您的口令"
+
+#: html/main.php:365
+#, fuzzy
+msgid "Plugin"
+msgstr "于"
+
+#: html/main.php:366
+#, php-format
+msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
+msgstr "警告: 没有发现针对插件 '%s' 的任何插件定义!"
+
 #: html/getxls.php:88
 msgid "Birthday"
 msgstr "生日"
@@ -6583,11 +6644,6 @@ msgstr "%s 用户列表于 %s"
 msgid "Computers of %s on %s"
 msgstr "%s计算机于%s"
 
-#: html/getxls.php:493 html/getldif.php:82
-#, fuzzy
-msgid "Permission denied!"
-msgstr "允许"
-
 #: html/getxls.php:493
 #, fuzzy
 msgid "You are not allowed to perform this action."
@@ -6605,21 +6661,6 @@ msgstr "无法选择数据库!"
 msgid "Database query failed!"
 msgstr "数据库查询失败!"
 
-#: html/getldif.php:82
-#, fuzzy
-msgid "You are not allowed to create ldap dumps."
-msgstr "您无权删除这个用户!"
-
-#: html/getldif.php:107
-#, fuzzy
-msgid "Error in ivbb parameter!"
-msgstr "检查参数"
-
-#: html/getvcard.php:39
-#, fuzzy
-msgid "Missing parameters!"
-msgstr "应用程序名称"
-
 #: html/helpviewer.php:70
 msgid "Help browser"
 msgstr "帮助浏览器"
@@ -6633,162 +6674,65 @@ msgstr "此类没有帮助文件"
 msgid "Helpdir '%s' is not accessible, can't read any helpfiles."
 msgstr "帮助目录 '%s' 不能访问,无法读取任何帮助文件。"
 
-#: html/password.php:58 html/index.php:141
-#, fuzzy, php-format
-msgid "GOsa configuration %s/%s is not readable. Aborted."
-msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。"
-
-#: html/password.php:78
-#, fuzzy
-msgid "Accessibility"
-msgstr "配置文件"
-
-#: html/password.php:78 html/setup.php:66 html/index.php:166
-#, php-format
-msgid "Directory '%s' specified as compile directory is not accessible!"
-msgstr "目录 '%s' 作为编译目录无法访问!"
-
-#: html/password.php:163
-msgid "Error: Password method not available!"
-msgstr ""
-
-#: html/password.php:228 html/index.php:325
-msgid "Please check the username/password combination."
-msgstr "请检查用户名/口令。"
-
-#: html/password.php:232
-msgid "You have no permissions to change your password."
-msgstr "您无权修改您的口令。"
-
-#: html/password.php:253
-msgid "External password changer reported a problem: "
-msgstr "外部口令更改程序报告错误:"
-
-#: html/password.php:284 html/index.php:419
-msgid "Session will not be encrypted."
-msgstr "会话不会被加密。"
-
-#: html/password.php:284 html/index.php:419
-msgid "Enter SSL session"
-msgstr "进入 SSL 会话"
-
-#: html/setup.php:66 html/index.php:166
-#, fuzzy
-msgid "Smarty"
-msgstr "总结"
-
-#: html/main.php:153
-#, php-format
-msgid "Cannot locate file '%s' - please run '%s' to fix this"
-msgstr ""
-
-#: html/main.php:171
-#, fuzzy
-msgid "PHP configuration"
-msgstr "PHP 安装检查"
-
-#: html/main.php:172
-msgid ""
-"FATAL: Register globals is on. GOsa will refuse to login unless this is "
-"fixed by an administrator."
-msgstr "致命错误:全局注册已打开。GOsa 将拒绝登录直到被管理修正。"
-
-#: html/main.php:217
-#, fuzzy
-msgid "Configuration warning"
-msgstr "配置文件"
-
-#: html/main.php:217
-msgid "Running out of memory!"
-msgstr ""
-
-#: html/main.php:356
 #, fuzzy
-msgid "Password reminder"
-msgstr "口令过期截止日"
+#~ msgid "User login failed."
+#~ msgstr "用户登录失败。LDAP 服务器返回 '%s'。"
 
-#: html/main.php:356
 #, fuzzy
-msgid "Your password is about to expire, please change your password!"
-msgstr "您的口令就要过期,请修改您的口令"
+#~ msgid "Removing a lock failed."
+#~ msgstr "删除 FAI 钩子失败"
 
-#: html/main.php:365
 #, fuzzy
-msgid "Plugin"
-msgstr "于"
-
-#: html/main.php:366
-#, php-format
-msgid "FATAL: Can't find any plugin definitions for plugin '%s'!"
-msgstr "警告: 没有发现针对插件 '%s' 的任何插件定义!"
+#~ msgid "Setting the password failed!"
+#~ msgstr "设置口令失败。LDAP 服务器返回 '%s'。"
 
-#: html/index.php:57
 #, fuzzy
-msgid "Session is not encrypted!"
-msgstr "会话不会被加密。"
-
-#: html/index.php:64
-msgid ""
-"The session lifetime configured in your gosa.conf will be overridden by php."
-"ini settings."
-msgstr ""
+#~ msgid "Please enter a valid serial number!"
+#~ msgstr "请输入一个有效的系列号"
 
-#: html/index.php:141
 #, fuzzy
-msgid "Configuration accessibility"
-msgstr "配置文件"
-
-#: html/index.php:217
-msgid "There is a problem with the authentication setup!"
-msgstr ""
-
-#: html/index.php:225
-msgid "Cannot find a valid user for the current authentication setup!"
-msgstr ""
-
-#: html/index.php:229
-msgid "User information is not unique accross the configured LDAP trees!"
-msgstr ""
+#~ msgid "You have no permission to move this object to '%s'!"
+#~ msgstr "您无权删除这个黑名单。"
 
-#: html/index.php:255
-msgid "Can't bind to LDAP. Please contact the system administrator."
-msgstr "无法绑定 LDAP。请联系系统管理员。"
+#~ msgid ""
+#~ "This menu allows you to create, edit and delete selected users. Having a "
+#~ "great number of users, you may want to use the range selectors on top of "
+#~ "the user list."
+#~ msgstr ""
+#~ "这个菜单允许您创建,删除和修改所选的用户。对于一个长列表,您可以通过列表上"
+#~ "面的范围选择来调整。"
 
-#: html/index.php:269
-msgid "Cannot detect information about the installed LDAP schema!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to add, edit and remove selected groups. You may "
+#~ "want to use the range selector on top of the group listbox, when working "
+#~ "with a large number of groups."
+#~ msgstr ""
+#~ "这个菜单允许您添加,编辑和删除所选的组。对于一个长列表,您可以通过选择框上"
+#~ "面的范围选择来调整。"
 
-#: html/index.php:282
 #, fuzzy
-msgid "Your ldap setup contains old schema definitions:"
-msgstr "您 LDAP 的设置包含老的 schema 定义。请重新执行安装。"
-
-#: html/index.php:303
-msgid "Please specify a valid username!"
-msgstr "请输入一个有效的用户名!"
-
-#: html/index.php:306
-msgid "Please specify your password!"
-msgstr "请输入您的口令!"
+#~ msgid "This menu allows you to edit and delete selected acls."
+#~ msgstr "这个菜单允许您创建,删除和修改 FAI 分类。"
 
-#: html/index.php:318
 #, fuzzy
-msgid "Authentication error"
-msgstr "Nagios 鉴权"
-
-#: html/index.php:318
-msgid "Cannot retrieve user information for htaccess authentication!"
-msgstr ""
+#~ msgid ""
+#~ "This menu allows you to create, delete and edit selected departments. "
+#~ "Having a large number of departments, you might prefer the range "
+#~ "selectors on top of the department list."
+#~ msgstr ""
+#~ "这个菜单允许您创建,删除和修改所选的部门。对于一个长列表,您可以通过列表上"
+#~ "面的范围选择来调整。"
 
-#: html/index.php:374
-msgid "Account locked. Please contact your system administrator."
-msgstr "账户锁定。请联系管理员。"
+#~ msgid ""
+#~ "This menu allows you to add, edit or remove selected groups. You may want "
+#~ "to use the range selector on top of the group listbox, when working with  "
+#~ "a large number of groups."
+#~ msgstr ""
+#~ "这个菜单允许您添加,编辑和删除所选的组。对于一个长列表,您可以通过选择框上"
+#~ "面的范围选择来调整。"
 
-#: html/index.php:425
-msgid ""
-"Your browser has cookies disabled. Please enable cookies and reload this "
-"page before logging in!"
-msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!"
+#~ msgid "Can't bind to LDAP. Please contact the system administrator."
+#~ msgstr "无法绑定 LDAP。请联系系统管理员。"
 
 #, fuzzy
 #~ msgid "Removing of user/generic account with dn '%s' failed."
index 422b06aa651d519cd07a2da1426407494288b40b..de2b1c312db1c5e9f05d1123a701036d4befa9bc 100644 (file)
@@ -256,7 +256,7 @@ class divListACL extends MultiSelectWindow
 
         /* Acl handling */
         $editlink       = "<a href='?plug=".$_GET['plug']."&amp;id=%s&amp;act=list_edit_entry'>%s</a>";
-        $list_left_icon = "<img src='images/select_acl.png' alt='"._("Acl")."'>";
+        $list_left_icon = "<img src='images/select_acl.png' alt='"._("ACL")."'>";
         $cn = htmlentities(utf8_decode($acl_entry['dn'])); 
 
         /* Add actions depending on acls */
index 30aa5eec8d965783cdc9a1446cdc6dc65e53a87f..a427e1d5451f8d4d3e853633261084bc4804d31e 100644 (file)
@@ -25,7 +25,7 @@ class acltab extends tabs
 
   function acltab($config, $data, $dn)
   {
-    $data = array(array("CLASS" => "acl" , "NAME" => _("Acl")));
+    $data = array(array("CLASS" => "acl" , "NAME" => _("ACL")));
 
     /* Save dn */
     $this->dn= $dn;