From 32773158b08eea656d62ea3206fe9e9e69fb6500 Mon Sep 17 00:00:00 2001 From: cajus Date: Tue, 3 Jun 2008 18:58:51 +0000 Subject: [PATCH] * Script updates * Locales regeneration git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11182 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/README | 8 +- gosa-core/contrib/make-gosa-package | 86 +- gosa-core/dh-make-gosa | 21 +- .../locale/core/de/LC_MESSAGES/messages.po | 9293 ++++++++-------- .../locale/core/es/LC_MESSAGES/messages.po | 8437 +++++++-------- .../locale/core/fr/LC_MESSAGES/messages.po | 9199 ++++++++-------- .../locale/core/it/LC_MESSAGES/messages.po | 8883 ++++++++-------- gosa-core/locale/core/messages.po | 6705 ++++++------ .../locale/core/nl/LC_MESSAGES/messages.po | 9321 +++++++++-------- .../locale/core/pl/LC_MESSAGES/messages.po | 9145 ++++++++-------- .../locale/core/ru/LC_MESSAGES/messages.po | 9069 ++++++++-------- .../locale/core/zh/LC_MESSAGES/messages.po | 9091 ++++++++-------- 12 files changed, 39682 insertions(+), 39576 deletions(-) diff --git a/gosa-core/README b/gosa-core/README index c24df4c24..21f670f34 100644 --- a/gosa-core/README +++ b/gosa-core/README @@ -20,19 +20,21 @@ GOsa infrastructure howto is work in progress and not released yet. * Translations GOsa is not available in your native language? Just take the message.po -file out of the locales directory and put your translations into the +file out of the locales/core directory and put your translations into the msgstr fields. You may look at the de/LC_MESSAGES for the way how it works. If you're ready with that, create a directory for your language using the ISO shortcuts (i.e. es for spain) with a subdirectory LC_MESSAGES. -Put your messages.po in there and run "msgfmt messages.po" from that -directory. Make sure your apache has locale support or, in case of debian, +Make sure your apache has locale support or, in case of debian, that the specific locale will be generated (via dpkg-reconfigure locales). You may want your translations to be included in the main GOsa repository, then just send the .po file to me. +Run update-gosa after you've added translations in order to let GOsa +compile and re-sync the translations. + * NOTES diff --git a/gosa-core/contrib/make-gosa-package b/gosa-core/contrib/make-gosa-package index 461b4f135..ffdf3c9ff 100755 --- a/gosa-core/contrib/make-gosa-package +++ b/gosa-core/contrib/make-gosa-package @@ -1,13 +1,78 @@ -#!/bin/sh - -# TODO: getopts ########################################################### +#!/bin/bash +# This code is part of GOsa (http://www.gosa-project.org) +# Copyright (C) 2008 GONICUS GmbH +# +# ID: $$Id$$ +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +# Define defaults RELEASE_REASON="GOsa svn snapshot" BRANCH="trunk" SECTION="web" SI_SECTION="utils" TARGET_RELEASE="etch" MAKE_PLUGINS="" -########################################################################### + +usage() { + cat <<-EOF + GOsa Debian package build tool. Build snapshots from selected SVN locations. + Usage: ${0##*/} [options] + + Options: + -b|--branch Branch to export [$BRANCH] + -p|--plugins Comma seperate list of plugins to build. Leave empty to build all. + -r|--release Debian release to build for [$TARGET_RELEASE] + -c|--changelog Debian changelog entry [$RELEASE_REASON] + -s|--section Debian section to place GOsa in [$SECTION] + -i|--si-section Debian section to place GOsa-SI in [$SI_SECTION] + -h|--help this help + + EOF + exit 1 +} + +# Import command line parameters +PARMS=`getopt -o brscip:,h --long branch,changelog,plugins,section,si-section,release:,help -n "${0##*/}" -- "$@"` +eval set -- "$PARMS" + +while true; do + case "$1" in + -b|--branch) + BRANCH=$2; shift 2 ;; + -r|--release) + TARGET_RELEASE=$2; shift 2 ;; + -c|--changelog) + RELEASE_REASON=$2; shift 2 ;; + -p|--plugins) + MAKE_PLUGINS=${2//,/ }; shift 2 ;; + -s|--section) + SECTION=$2; shift 2 ;; + -i|--si-section) + SI_SECTION=$2; shift 2 ;; + -h|--help) + usage ;; + --) + shift; break ;; + *) + echo "getopt error" ;; + esac +done + +echo $BRANCH +exit 0 [ $BRANCH = "trunk" ] || BRANCH="branches/$BRANCH" echo "Loading svn information for '${BRANCH}'..." @@ -119,14 +184,7 @@ else fi echo "Removing gosa snapshot..." -#for dir in $GOSA_DIR $GOSA_SI_DIR $GOSA_PLUGIN_DIRS; do -# rm -rf "$dir" -#done - -echo -echo "Moving result to 'dest'" -[ -d dest ] && rm -rf dest -mkdir dest - -mv *.deb *.changes *.dsc *.gz dest/ +for dir in $GOSA_DIR $GOSA_SI_DIR $GOSA_PLUGIN_DIRS; do + rm -rf "$dir" +done diff --git a/gosa-core/dh-make-gosa b/gosa-core/dh-make-gosa index 4d9dfb705..f23f87c64 100755 --- a/gosa-core/dh-make-gosa +++ b/gosa-core/dh-make-gosa @@ -1,4 +1,22 @@ #!/bin/bash +# This code is part of GOsa (http://www.gosa-project.org) +# Copyright (C) 2008 GONICUS GmbH +# +# ID: $$Id$$ +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA usage() { echo "Usage: ${0##*/} [--download] [--section section name] [-b|--branch branch] [-e|--email mail] [--depends] plugin-dir|plugin.tar.gz" >&2 @@ -63,7 +81,8 @@ while true; do shift 2 ;; --download) DOWNLOAD=yes - shift 1 + echo "Download is not implemented yet" + exit 1 ;; --) shift break diff --git a/gosa-core/locale/core/de/LC_MESSAGES/messages.po b/gosa-core/locale/core/de/LC_MESSAGES/messages.po index cefcd2acd..7056c8e6c 100644 --- a/gosa-core/locale/core/de/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/de/LC_MESSAGES/messages.po @@ -13,19 +13,96 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2008-05-30 08:41+0200\n" "Last-Translator: Cajus Pollmeier \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit" +"Content-Transfer-Encoding: 8bit\n" + +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "Passwort-Änderung ist nicht erlaubt" + +#: plugins/personal/password/nochange.tpl:6 +msgid "You have no permission to change your password at this time" +msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern" + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +msgid "Password settings" +msgstr "Passwort-Einstellungen" + +#: 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." + +#: 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." + +#: 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." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Momentanes Passwort" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Neues Passwort" + +#: 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)" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +msgid "Password strength" +msgstr "Passwort-Stärke" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "Passwort setzen" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Felder löschen" #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Passwort" @@ -43,8 +120,8 @@ msgstr "Benutzer-Passwort ändern" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 msgid "Password change" msgstr "Passwort-Änderung" @@ -99,1027 +176,203 @@ msgid "User password" msgstr "Benutzerpasswort" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Mein Konto" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "Passwort-Änderung ist nicht erlaubt" - -#: plugins/personal/password/nochange.tpl:6 -msgid "You have no permission to change your password at this time" -msgstr "Sie haben keine Berechtigung Ihr Passwort zu ändern" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Bild" -#: 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." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Bild entfernen" -#: 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." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Allgemein" -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Momentanes Passwort" +#: plugins/personal/generic/class_user.inc:38 +msgid "Edit organizational user settings" +msgstr "Organisationsbezogene Benutzereinstellungen bearbeiten" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Neues Passwort" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "weiblich" -#: 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)" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "männlich" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -msgid "Password strength" -msgstr "Passwort-Stärke" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "Fehler" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "Passwort setzen" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "Kann Datei nicht hochladen!" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Felder löschen" +#: plugins/personal/generic/class_user.inc:503 +msgid "Serial number" +msgstr "Seriennummer" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" msgstr "" -"Sie haben erfolgreich Ihr Passwort geändert. Bitte denken Sie daran alle " -"Programme anzupassen, die dieses Passwort auch benutzen." - -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -msgid "Password settings" -msgstr "Passwort-Einstellungen" - -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Wählen Sie die hinzuzufügenden Gruppen" +"(Manche Zertifikate werden momentan nicht unterstützt und werden daher als " +"'ungültig' angezeigt)." -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Filter" +#: plugins/personal/generic/class_user.inc:558 +#, 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)." -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "Zeige Gruppen der Abteilung" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "gültig" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "Wählen Sie die Abteilung, auf die die Suchfunktion angewandt wird" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "ungültig" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "Zeige Gruppen, auf die zutrifft" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "Kein Zertifikat eingerichtet" -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "Regulärer Ausdruck zum Erkennen von Gruppennamen" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +msgid "Password method" +msgstr "Passwort-Methode" -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "Zeige Gruppen des Benutzers" +#: plugins/personal/generic/class_user.inc:592 +msgid "The selected password method is no longer available." +msgstr "Die gewählte Passwort-Methode ist nicht mehr verfügbar." -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" -msgstr "Benutzername, dessen Gruppen angezeigt werden" - -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -msgid "Search in subtrees" -msgstr "Suche in Teilbäumen" - -#: 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" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "Passwort läuft ab am" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" -msgstr "UNIX-Einstellungen" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Basisverzeichnis" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "Erzwinge UID/GID" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -msgstr "Gruppenmitgliedschaft" - -#: 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!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Wählen Sie die hinzuzufügenden Systeme" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Zeige die Systeme der Abteilung" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Zeige die Systeme, auf die das Folgende passt" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Regulärer Ausdruck zum Erkennen von Mail-Adressen" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Allgemein" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Primäre Gruppe" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Status" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -msgid "In all groups" -msgstr "In allen Gruppen" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -msgid "Not in all groups" -msgstr "Nicht in allen Gruppen" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "Konto" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "System-Vertrauen" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "Vertrauens-Modus" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "UNIX" - -#: plugins/personal/posix/class_posixAccount.inc:38 -msgid "Edit users POSIX settings" -msgstr "Benutzer POSIX-Einstellungen bearbeiten" - -#: plugins/personal/posix/class_posixAccount.inc:154 -msgid "expired" -msgstr "abgelaufen" - -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" -msgstr "Nachfrist aktiv" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" -msgstr "aktiv" - -#: plugins/personal/posix/class_posixAccount.inc:159 -msgid "password not changable" -msgstr "Passwort kann nicht geändert werden" - -#: plugins/personal/posix/class_posixAccount.inc:161 -msgid "password expired" -msgstr "Passwort abgelaufen" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "unkonfiguriert" - -#: 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 "POSIX" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" -msgstr "Umgebung" - -#: plugins/personal/posix/class_posixAccount.inc:465 -#, php-format -msgid "Password can't be changed up to %s days after last change" -msgstr "" -"Passwort kann bis zu %s Tage nach der letzten Änderung nicht geändert werden" - -#: 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" - -#: 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" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "deaktiviert" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "Vollzugriff" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "erlaube Zugriff auf diese Hosts" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -msgid "LDAP error" -msgstr "LDAP-Fehler" - -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Warnung" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "Wartezeit für Sperre abgelaufen. Ignoriere Sperre!" - -#: plugins/personal/posix/class_posixAccount.inc:910 -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." - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Gruppe des Benutzers" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -msgid "shadowMin" -msgstr "shadowMin" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -msgid "shadowMax" -msgstr "shadowMax" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -msgid "shadowWarning" -msgstr "shadowWarning" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -msgid "shadowInactive" -msgstr "shadowInactive" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "Fehler" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -msgid "Cannot allocate a free ID!" -msgstr "Konnte keine freie ID allozieren!" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -msgid "POSIX account" -msgstr "POSIX-Konto" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "Benutzer-ID" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -msgid "Group ID" -msgstr "Gruppen-ID" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -msgid "Force password change on login" -msgstr "Erzwinge Änderung des Passwort bei Anmeldung" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -msgid "Shadow min" -msgstr "Shadow min" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "Shadow max" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -msgid "Shadow warning" -msgstr "Shadow warning" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -msgid "Shadow inactive" -msgstr "Shadow inactive" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -msgid "Shadow expire" -msgstr "Shadow expire" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -msgid "System trust model" -msgstr "Modell des System-Vertrauens" - -#: plugins/personal/posix/main.inc:131 -msgid "POSIX settings" -msgstr "POSIX-Einstellungen" - -#: 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 "" -"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/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Bild" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Bild entfernen" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Persönliche Informationen" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Akademischer Titel" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "Bevorzugte Sprache" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Basis" - -#: 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" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -msgstr "Wählen Sie eine Basis" - -#: 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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Adresse" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Privat-Telefon" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Homepage" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Passwort-Speicherung" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Zertifikate" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Zertifikate bearbeiten" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Angabe zur Organisationseinheit" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Organisation" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Abteilung" - -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "Abteilungs-Nr." - -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "Angestellten-Nr." - -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Anstellungsart" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "Zimmer-Nr." - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Telefon" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "Mobiltelefon" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "Pager" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Ort" - -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Land" - -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Anrede" - -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Aufgabengebiet" - -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Sachgebiet" - -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Amts-/Dienstbezeichnung" - -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Rolle" - -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Dienstort" - -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Referat" - -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Straße" - -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Postleitzahl" - -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Hausbezeichnung" - -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "letzte Übermittlung" - -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Öffentlich sichtbar" - -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "Benutzer-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" - -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" -msgstr "Vorname" - -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Kennung" - -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "Passwort löschen" - -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "Neues Passwort setzen" - -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "Benutzerbild" - -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" -msgstr "Bild ändern" - -#: 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" - -#: plugins/personal/generic/generic.tpl:62 -msgid "Template name" -msgstr "Name der Vorlage" - -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Titel" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Geburtsdatum" - -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" -msgstr "Setzen" - -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" -msgstr "Geschlecht" - -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "Konfigurieren" - -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -msgstr "Verwenden sie den Telefon-Reiter" - -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" -msgstr "Standard-Zertifikat" - -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Entfernen" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "S/MIME-Zertifikat" - -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "PKCS12-Zertifikat" - -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "Zertifikat-Seriennummer" - -#: plugins/personal/generic/class_user.inc:38 -msgid "Edit organizational user settings" -msgstr "Organisationsbezogene Benutzereinstellungen bearbeiten" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "weiblich" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "männlich" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "Kann Datei nicht hochladen!" - -#: plugins/personal/generic/class_user.inc:503 -msgid "Serial number" -msgstr "Seriennummer" - -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "" -"(Manche Zertifikate werden momentan nicht unterstützt und werden daher als " -"'ungültig' angezeigt)." - -#: plugins/personal/generic/class_user.inc:558 -#, 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)." - -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "gültig" - -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "ungültig" - -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "Kein Zertifikat eingerichtet" - -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -msgid "Password method" -msgstr "Passwort-Methode" - -#: plugins/personal/generic/class_user.inc:592 -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:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 +msgid "LDAP error" +msgstr "LDAP-Fehler" #: plugins/personal/generic/class_user.inc:1149 msgid "The selected password method requires initial configuration!" msgstr "Die gewählte Passwort-Methode benötigt eine initiale Konfiguration!" +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Kennung" + #: plugins/personal/generic/class_user.inc:1184 #: plugins/personal/generic/class_user.inc:1195 #: plugins/personal/generic/class_user.inc:1232 #: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 #: plugins/admin/departments/class_departmentGeneric.inc:239 #: plugins/admin/departments/class_departmentGeneric.inc:241 #: plugins/admin/departments/class_departmentGeneric.inc:246 #: plugins/admin/departments/class_departmentGeneric.inc:253 #: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 #: plugins/admin/ogroups/class_ogroup.inc:857 #: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 msgid "Name" msgstr "Name" @@ -1132,10 +385,140 @@ msgstr "Name" msgid "Given name" msgstr "Vorname" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Homepage" + +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Telefon" + +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" + +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" +msgstr "Mobiltelefon" + +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "Pager" + #: plugins/personal/generic/class_user.inc:1336 msgid "Cannot open certificate!" msgstr "Kann Zertifikat nicht öffnen!" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Referat" + +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Hausbezeichnung" + +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Anrede" + +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "letzte Übermittlung" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Dienstort" + +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Aufgabengebiet" + +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Sachgebiet" + +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Amts-/Dienstbezeichnung" + +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Zertifikat-Seriennummer" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Öffentlich sichtbar" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Straße" + +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Rolle" + +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Postleitzahl" + #: plugins/personal/generic/class_user.inc:1487 msgid "Generic user settings" msgstr "Allgemeine Benutzereinstellungen" @@ -1145,6 +528,25 @@ msgstr "Allgemeine Benutzereinstellungen" msgid "Users" msgstr "Benutzer" +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Basis" + #: plugins/personal/generic/class_user.inc:1498 msgid "Surename" msgstr "Nachname" @@ -1153,6 +555,17 @@ msgstr "Nachname" msgid "User identification" msgstr "Benutzerkennung" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Titel" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Akademischer Titel" + #: plugins/personal/generic/class_user.inc:1503 msgid "Home postal address" msgstr "Private Adresse" @@ -1161,6 +574,30 @@ msgstr "Private Adresse" msgid "Home phone number" msgstr "Telefonnummer (privat)" +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Organisation" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Abteilung" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Geburtsdatum" + #: plugins/personal/generic/class_user.inc:1509 msgid "Gender" msgstr "Geschlecht" @@ -1177,6 +614,34 @@ msgstr "Abteilungsnummer" msgid "Employee number" msgstr "Personalnummer" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Anstellungsart" + +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Ort" + +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Land" + +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "Benutzerbild" + #: plugins/personal/generic/class_user.inc:1517 msgid "Room number" msgstr "Raumnummer" @@ -1191,955 +656,894 @@ msgstr "Mobiltelefon" #: plugins/personal/generic/class_user.inc:1520 msgid "Pager number" -msgstr "Pagernummer" - -#: plugins/personal/generic/class_user.inc:1521 -msgid "User certificates" -msgstr "Benutzer-Zertifikate" - -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "Adresse" - -#: plugins/personal/generic/class_user.inc:1524 -msgid "Fax number" -msgstr "Faxnummer" - -#: plugins/personal/generic/main.inc:104 -msgid "You have no permission to set your password!" -msgstr "Sie haben keine Berechtigung ihr Passwort zu speichern!" - -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Generische Benutzer-Information" - -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "Bug-Melder" - -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" -"Bugsubmitter" - -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "Zugriffsregeln" - -#: plugins/admin/acl/tabs_acl_role.inc:28 -msgid "ACL Templates" -msgstr "ACL Vorlagen" - -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -msgid "Manage access control lists" -msgstr "Zugriffskontrolllisten verwalten" - -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -msgid "Permission error" -msgstr "Berechtigungsfehler" - -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -msgid "Permission" -msgstr "Berechtigung" - -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -msgid "List of acls" -msgstr "Liste der ACLs" - -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "Übersicht" - -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Aktionen" - -#: plugins/admin/acl/class_divListACL.inc:84 -msgid "Display acls matching" -msgstr "Zeige ACLs, auf die zutrifft" - -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Aktualisieren" - -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "Übertragen" - -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Anlegen" - -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "Bearbeiten" - -#: plugins/admin/acl/class_divListACL.inc:215 -msgid "Edit acl role" -msgstr "ACL-Rolle bearbeiten" - -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "Entfernen" - -#: plugins/admin/acl/class_divListACL.inc:223 -msgid "Delete acl role" -msgstr "ACL-Rolle entfernen" - -#: plugins/admin/acl/class_divListACL.inc:242 -msgid "Edit acl" -msgstr "ACL bearbeiten" - -#: plugins/admin/acl/class_divListACL.inc:246 -msgid "Delete acl" -msgstr "ACL entfernen" +msgstr "Pagernummer" -#: 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 "" -"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. " +#: plugins/personal/generic/class_user.inc:1521 +msgid "User certificates" +msgstr "Benutzer-Zertifikate" -#: 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." -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." +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "Adresse" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 -msgid "ACL management" -msgstr "ACL-Verwaltung" +#: plugins/personal/generic/class_user.inc:1524 +msgid "Fax number" +msgstr "Faxnummer" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" -msgstr "Zugewiesene ACL für aktuellen Eintrag" +#: plugins/personal/generic/main.inc:104 +msgid "You have no permission to set your password!" +msgstr "Sie haben keine Berechtigung ihr Passwort zu speichern!" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Beschreibung" +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Generische Benutzer-Information" -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: 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" +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Persönliche Informationen" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -msgid "New ACL" -msgstr "Neue ACL" +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" +msgstr "Bild ändern" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -msgid "ACL type" -msgstr "ACL-Typ" +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +msgstr "Nachname" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -msgid "Select an acl type" -msgstr "Wählen Sie einen ACL-Typ" +#: 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" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -msgid "List of available ACL categories" -msgstr "Liste verfügbarer ACL-Kategorien" +#: plugins/personal/generic/generic.tpl:62 +msgid "Template name" +msgstr "Name der Vorlage" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -msgid "Access control roles" -msgstr "Rollen für die Zugriffskontrolle" +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "Vorname" -#: plugins/admin/acl/class_aclRole.inc:27 -msgid "Edit AC roles" -msgstr "ACL-Rollen bearbeiten" +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" +msgstr "Setzen" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -msgid "All categories" -msgstr "Alle Kategorien" +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" +msgstr "Geschlecht" -#: plugins/admin/acl/class_aclRole.inc:131 -msgid "Reset ACL" -msgstr "ACL zurücksetzen" +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "Bevorzugte Sprache" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -msgid "One level" -msgstr "Diese Ebene" +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Wählen Sie den Teilbaum, in den der Benutzer eingepflegt werden soll" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -msgid "Current object" -msgstr "Aktuelles Objekt" +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "Wählen Sie eine Basis" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -msgid "Complete subtree" -msgstr "Vollständiger Teilbaum" +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Adresse" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "Vollständiger Teilbaum (permanent)" +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Privat-Telefon" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "Auf" +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "Passwort-Speicherung" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" -msgstr "Ab" +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "Konfigurieren" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Bearbeiten" +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Zertifikate" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" -msgstr "Entfernen" +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Zertifikate bearbeiten" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" -msgstr "Keine ACL-Einstellungen für diese Kategorie" +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Angabe zur Organisationseinheit" -#: plugins/admin/acl/class_aclRole.inc:403 -#, php-format -msgid "ACL for these objects: %s" -msgstr "Enthält ACL für diese Objekte: %s" +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "Abteilungs-Nr." -#: plugins/admin/acl/class_aclRole.inc:408 -msgid "Edit category ACL" -msgstr "ACL Kategorie bearbeiten" +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "Angestellten-Nr." -#: plugins/admin/acl/class_aclRole.inc:409 -msgid "Reset category ACL" -msgstr "ACL-Kategorie zurücksetzen" +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "Zimmer-Nr." -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "ACL für '%s' bearbeiten, Bereich ist '%s'" +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "Verwenden sie den Telefon-Reiter" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "Alle Objekte im aktuellen Teilbaum" +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "Standard-Zertifikat" -#: plugins/admin/acl/class_aclRole.inc:621 -msgid "Object in use" -msgstr "Objekt in Verwendung" +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Entfernen" -#: plugins/admin/acl/class_aclRole.inc:621 -#, 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/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "S/MIME-Zertifikat" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Wählen Sie die hinzuzufügenden Benutzer" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "PKCS12-Zertifikat" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Wählen um Server anzuzeigen" +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" +msgstr "Benutzer-Einstellungen" + +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" +msgstr "Passwort löschen" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" -msgstr "Suche im Teilbaum" +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "Neues Passwort setzen" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "Zeige die Benutzer der Abteilung" +#: 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 "" +"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/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Zeige die Benutzer, auf die Folgendes passt" +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Wählen Sie die hinzuzufügenden Gruppen" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "Regulärer Ausdruck zum Erkennen von Benutzernamen" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Filter" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -msgid "Configuration error" -msgstr "Konfigurationsfehler" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Zeige Gruppen der Abteilung" -#: plugins/admin/groups/class_groupGeneric.inc:163 -msgid "Cannot find group SID in your configuration!" -msgstr "Kann keine Gruppen-SID in Ihrer Konfiguration finden!" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: 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" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Samba-Gruppe" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Zeige Gruppen, auf die zutrifft" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Domänen-Administratoren" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Regulärer Ausdruck zum Erkennen von Gruppennamen" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Domänen-Benutzer" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "Zeige Gruppen des Benutzers" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Domänen-Gäste" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Benutzername, dessen Gruppen angezeigt werden" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Spezielle Gruppe (%d)" +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 +msgid "Search in subtrees" +msgstr "Suche in Teilbäumen" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "! unbekannte id" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Wählen Sie die hinzuzufügenden Systeme" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -msgstr "" -"Die Suche ergab zu viele Treffer. Es werden nicht mehr als %s Einträge " -"angezeigt!" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Zeige die Systeme der Abteilung" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Kann keine SID für '%s' finden!" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Zeige die Systeme, auf die das Folgende passt" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Kann keine RIDBASE für '%s' finden!" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Regulärer Ausdruck zum Erkennen von Mail-Adressen" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -msgid "Generic group settings" -msgstr "Allgemeine Gruppeneinstellungen" +#: plugins/personal/posix/main.inc:131 +msgid "POSIX settings" +msgstr "POSIX-Einstellungen" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Gruppen" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Basisverzeichnis" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -msgid "Phone pickup group" -msgstr "Gesprächs-Annahme Gruppe" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -msgid "Nagios group" -msgstr "Nagios-Gruppe" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Primäre Gruppe" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -msgid "Group member" -msgstr "Gruppenmitglieder" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Status" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -msgid "Samba group type" -msgstr "Samba-Gruppentyp" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "Erzwinge UID/GID" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -msgid "Samba domain name" -msgstr "Samba Domänen-Name" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -msgid "Samba SID" -msgstr "Samba SID" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" -msgstr "POSIX-Gruppen verwalten" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "Gruppenmitgliedschaft" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -msgid "Infrastructure error" -msgstr "Infrastruktur Fehler" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "(Warnung: mehr als 16 Gruppen werden von NFS nicht unterstützt!)" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -msgid "group" -msgstr "Gruppe" +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 +msgid "In all groups" +msgstr "In allen Gruppen" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" -msgstr "Gruppen-Einstellungen" +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 +msgid "Not in all groups" +msgstr "Nicht in allen Gruppen" -#: 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" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "Konto" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" -msgstr "UNIX-Name der Gruppe" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "System-Vertrauen" -#: 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" +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" +msgstr "Vertrauens-Modus" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Erzwinge GID" +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "UNIX" -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Erzwungene ID-Nummer" +#: plugins/personal/posix/class_posixAccount.inc:38 +msgid "Edit users POSIX settings" +msgstr "Benutzer POSIX-Einstellungen bearbeiten" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Liste der Gruppen" +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" +msgstr "abgelaufen" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 -#: plugins/admin/departments/generic.tpl:4 -#: plugins/admin/ogroups/class_divListOGroup.inc:84 -msgid "Properties" -msgstr "Eigenschaften" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "Nachfrist aktiv" -#: plugins/admin/groups/class_divListGroup.inc:84 -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" +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" +msgstr "aktiv" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, php-format -msgid "Show %s" -msgstr "Zeige %s" +#: plugins/personal/posix/class_posixAccount.inc:159 +msgid "password not changable" +msgstr "Passwort kann nicht geändert werden" -#: plugins/admin/groups/class_divListGroup.inc:85 -msgid "primary groups" -msgstr "primäre Gruppen" +#: plugins/personal/posix/class_posixAccount.inc:161 +msgid "password expired" +msgstr "Passwort abgelaufen" -#: plugins/admin/groups/class_divListGroup.inc:86 -msgid "samba groups mappings" -msgstr "Samba Group-Mapping" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "unkonfiguriert" -#: plugins/admin/groups/class_divListGroup.inc:87 -msgid "samba groups" -msgstr "Samba Gruppen" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "automatisch" -#: plugins/admin/groups/class_divListGroup.inc:88 -msgid "application settings" -msgstr "Anwendungseinstellungen" +#: 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 "POSIX" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -msgid "application groups" -msgstr "Anwendungsgruppen" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/groups/class_divListGroup.inc:90 -msgid "mail settings" -msgstr "Mail-Einstellungen" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "Umgebung" -#: plugins/admin/groups/class_divListGroup.inc:91 -msgid "mail groups" -msgstr "Mail Gruppen" +#: plugins/personal/posix/class_posixAccount.inc:465 +#, php-format +msgid "Password can't be changed up to %s days after last change" +msgstr "" +"Passwort kann bis zu %s Tage nach der letzten Änderung nicht geändert werden" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "Auswählen, um die \"normalen\" Gruppen zu sehen" +#: 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" -#: plugins/admin/groups/class_divListGroup.inc:93 -msgid "functional groups" -msgstr "funktionelle Gruppen" +#: 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" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Gruppe" +#: 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" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "deaktiviert" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Mail" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "Vollzugriff" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Anwendung" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "erlaube Zugriff auf diese Hosts" -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "Edit this entry" -msgstr "Diesen Eintrag bearbeiten" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Warnung" -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "Delete this entry" -msgstr "Diesen Eintrag entfernen" +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" +msgstr "Wartezeit für Sperre abgelaufen. Ignoriere Sperre!" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -msgid "Not allowed" -msgstr "Nicht erlaubt" +#: plugins/personal/posix/class_posixAccount.inc:910 +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." -#: plugins/admin/groups/class_divListGroup.inc:359 -msgid "Number of listed groups" -msgstr "Anzahl der angezeigten Gruppen" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Gruppe des Benutzers" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 -#: plugins/admin/departments/class_divListDepartment.inc:229 -#: plugins/admin/ogroups/class_divListOGroup.inc:326 -msgid "Number of listed departments" -msgstr "Anzahl der angezeigten Abteilungen" +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 +msgid "shadowMin" +msgstr "shadowMin" -#: 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" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +msgid "shadowMax" +msgstr "shadowMax" -#: 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" +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 +msgid "shadowWarning" +msgstr "shadowWarning" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "in der Domain" +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 +msgid "shadowInactive" +msgstr "shadowInactive" -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" -msgstr "Mitglieder sind in einer Telefon-Gruppe" +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +msgid "Cannot allocate a free ID!" +msgstr "Konnte keine freie ID allozieren!" -#: plugins/admin/groups/generic.tpl:155 -msgid "Members are in a nagios group" -msgstr "Mitglieder sind in einer Nagios-Gruppe" +#: plugins/personal/posix/class_posixAccount.inc:1494 +msgid "POSIX account" +msgstr "POSIX-Konto" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "Gruppenmitglieder" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "Benutzer-ID" -#: 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 "" -"Bitte prüfen Sie, ob Sie die Aktion wirklich durchführen möchten, da GOsa " -"die Daten nicht wiederherstellen kann." +#: plugins/personal/posix/class_posixAccount.inc:1507 +msgid "Group ID" +msgstr "Gruppen-ID" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -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/personal/posix/class_posixAccount.inc:1509 +msgid "Force password change on login" +msgstr "Erzwinge Änderung des Passwort bei Anmeldung" -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Gruppenverwaltung" +#: plugins/personal/posix/class_posixAccount.inc:1510 +msgid "Shadow min" +msgstr "Shadow min" -#: 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/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" +msgstr "Shadow max" -#: plugins/admin/users/password.tpl:21 -msgid "Strength" -msgstr "Stärke" +#: plugins/personal/posix/class_posixAccount.inc:1512 +msgid "Shadow warning" +msgstr "Shadow warning" -#: plugins/admin/users/class_userManagement.inc:27 -msgid "Manage users" -msgstr "Benutzer verwalten" +#: plugins/personal/posix/class_posixAccount.inc:1513 +msgid "Shadow inactive" +msgstr "Shadow inactive" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -msgid "You have no permission to change this users password!" -msgstr "Sie haben keine Berechtigung dieses Passwort zu ändern!" +#: plugins/personal/posix/class_posixAccount.inc:1514 +msgid "Shadow expire" +msgstr "Shadow expire" -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "keine" +#: plugins/personal/posix/class_posixAccount.inc:1515 +msgid "System trust model" +msgstr "Modell des System-Vertrauens" -#: plugins/admin/users/class_userManagement.inc:544 -#, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "Sie sind nicht berechtigt das Objekt '%s' zu verändern!" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "UNIX-Einstellungen" -#: plugins/admin/users/class_userManagement.inc:548 -msgid "You have no permission to use this template!" -msgstr "Sie sind nicht berechtigt diese Vorlage zu nutzen!" +#: 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" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 -msgid "user" -msgstr "Benutzer" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "Passwort läuft ab am" -#: plugins/admin/users/class_userManagement.inc:655 -msgid "You have no permission to change the lock status for this user!" -msgstr "" -"Sie haben keine Berechtigung den Bearbeitungs-Status dieses Benutzers zu " -"ändern!" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "Objektname" -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "Vorlage" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Beschreibung" -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "Erzeugen eines neuen Benutzer aus einer Vorlage" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "Inhalt" -#: 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." +#: plugins/generic/references/contents.tpl:18 +msgid "This object has no relationship to other objects." +msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten." -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Fortsetzen" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Mail" -#: 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. " +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "Fax" -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Benutzerverwaltung" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Liste der Benutzer" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Benutzername" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Gruppe" -#: plugins/admin/users/class_divListUsers.inc:84 -msgid "templates" -msgstr "Vorlagen" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Anwendung" -#: plugins/admin/users/class_divListUsers.inc:85 -msgid "GOsa object" -msgstr "GOsa Objekt" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Server" -#: plugins/admin/users/class_divListUsers.inc:85 -msgid "functional users" -msgstr "funktionale Benutzer" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "Thin Client" -#: plugins/admin/users/class_divListUsers.inc:86 -msgid "POSIX users" -msgstr "POSIX Benutzer" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Arbeitsstation" -#: plugins/admin/users/class_divListUsers.inc:87 -msgid "mail users" -msgstr "Mail Benutzer" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Objektgruppe" -#: plugins/admin/users/class_divListUsers.inc:88 -msgid "samba users" -msgstr "Samba Benutzer" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Drucker" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" +#: 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." -#: plugins/admin/users/class_divListUsers.inc:89 -msgid "proxy users" -msgstr "Proxy Benutzer" +#: 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." -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Benutzer" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "Das GOsa Team" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Passwort ändern" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Willkommen %s!" -#: plugins/admin/users/class_divListUsers.inc:189 -msgid "Apply template" -msgstr "Vorlage anwenden" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +msgstr "Bug-Melder" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" +"Bugsubmitter" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "Allgemeine Einstellungen bearbeiten" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Abteilungsverwaltung" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "UNIX-Einstellungen bearbeiten" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "Gewünschte Operation wird durchgeführt" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "Umgebungs-Einstellungen bearbeiten" +#: 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/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "Mail-Einstellungen bearbeiten" +#: 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. " -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "Telefon-Einstellungen bearbeiten" +#: 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 "" +"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." -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "Fax-Einstellungen bearbeiten" +#: plugins/admin/departments/generic.tpl:4 +#: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 +msgid "Properties" +msgstr "Eigenschaften" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "Samba-Einstellungen bearbeiten" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "Name der Abteilung" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "Netatalk" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "Name des zu erzeugenden Teilbaums" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "Netatalk-Einstellungen bearbeiten" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "Beschreibender Text zu dieser Abteilung" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "Neuen Benutzer aus Vorlage erstellen" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Kategorie" -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "Neuen Benutzer aus dieser Vorlage erstellen" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "Kategorie dieses Teilbaums" -#: plugins/admin/users/class_divListUsers.inc:297 -msgid "inactive" -msgstr "inaktiv" +#: 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" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "Passwort" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "Land, in dem dieser Teilbaum anzusiedeln ist" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "Benutzer entfernen" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "Ort dieses Teilbaums" -#: plugins/admin/users/class_divListUsers.inc:421 -msgid "Number of listed users" -msgstr "Anzahl der angezeigten Benutzer" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "Postalische Anschrift dieses Teilbaums" -#: plugins/admin/users/templatize.tpl:2 -msgid "Applying a template" -msgstr "Vorlage anwenden" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "Einleitende Telefonnummer dieses Teilbaums" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." -msgstr "" -"Das Anwenden einer Vorlage ersetzt alle in der Vorlage definierten Attribute " -"des Benutzers." +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "Einleitende Fax-Nummer dieses Teilbaums" -#: plugins/admin/users/templatize.tpl:33 -msgid "No templates available!" -msgstr "Keine Vorlagen verfügbar!" +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "Administrative Einstellungen" + +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "Abteilung als eigenständige administrative Einheit kennzeichnen" #: plugins/admin/departments/class_divListDepartment.inc:47 #: plugins/admin/departments/class_divListDepartment.inc:48 msgid "List of departments" msgstr "Liste der Abteilungen" +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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/admin/departments/class_divListDepartment.inc:67 #: plugins/admin/departments/class_departmentGeneric.inc:548 msgid "Department name" msgstr "Name der Abteilung" +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Aktionen" + #: plugins/admin/departments/class_divListDepartment.inc:75 msgid "Regular expression for matching department names" msgstr "Regulärer Ausdruck zum Erkennen von Abteilungs-Namen" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "Abteilung" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Aktualisieren" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "Gewünschte Operation wird durchgeführt" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "Übertragen" -#: 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/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Anlegen" + +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "Bearbeiten" + +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "Edit this entry" +msgstr "Diesen Eintrag bearbeiten" + +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "Entfernen" + +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "Delete this entry" +msgstr "Diesen Eintrag entfernen" + +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "Abteilung" + +#: plugins/admin/departments/class_divListDepartment.inc:229 +#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 +msgid "Number of listed departments" +msgstr "Anzahl der angezeigten Abteilungen" #: plugins/admin/departments/dep_move_confirm.tpl:2 msgid "You are currently moving/renaming this department." @@ -2168,76 +1572,8 @@ msgstr "" "erwartet sein wird, vielleicht ist die beste Lösung, vorher ein Backup zu " "erstellen." -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "Name der Abteilung" - -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "Name des zu erzeugenden Teilbaums" - -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "Beschreibender Text zu dieser Abteilung" - -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Kategorie" - -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "Kategorie dieses Teilbaums" - -#: 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" - -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "Land, in dem dieser Teilbaum anzusiedeln ist" - -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "Ort dieses Teilbaums" - -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "Postalische Anschrift dieses Teilbaums" - -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "Einleitende Telefonnummer dieses Teilbaums" - -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "Einleitende Fax-Nummer dieses Teilbaums" - -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "Administrative Einstellungen" - -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "Abteilung als eigenständige administrative Einheit kennzeichnen" - -#: 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. " - -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Abteilungsverwaltung" - -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 msgid "Fatal error" msgstr "Schwerer Fehler" @@ -2250,6 +1586,13 @@ msgstr "Kann keinen unbenutzten Tag für diese administrative Einheit finden!" msgid "Tagging '%s'." msgstr "Markiere '%s'." +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Fortsetzen" + #: plugins/admin/departments/class_departmentGeneric.inc:463 #, php-format msgid "Moving '%s' to '%s'" @@ -2268,120 +1611,283 @@ msgstr "Objekt" msgid "FAILED to copy %s, aborting operation" msgstr "Fehler beim kopieren von %s, breche ab" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Abteilungen" +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Abteilungen" + +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Land" + +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Telefon" + +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "Objekt '%s' ist bereits markiert" + +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "Füge Markierung (%s) zu Objekt '%s' hinzu" + +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "Entferne Markierung von Objekt '%s'" + +#: plugins/admin/departments/class_departmentManagement.inc:27 +msgid "Manage Departments" +msgstr "Abteilungen verwalten" + +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 +msgid "Permission error" +msgstr "Berechtigungsfehler" + +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, 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." + +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" +"Sobald der Verschiebe-Vorgang abgeschlossen wurde, können Sie zum Ende der " +"Seite scrollen und auf den 'Fortfahren'-Knopf drücken, um mit der " +"Abteilungsverwaltung fort zu fahren." + +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" +"Sobald die Tag-Operation abgeschlossen wurde, können Sie zum Ende der Seite " +"scrollen und auf den 'Fortfahren'-Knopf drücken, um mit der " +"Abteilungsverwaltung fort zu fahren." + +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "Zugriffsregeln" + +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +msgid "Manage access control lists" +msgstr "Zugriffskontrolllisten verwalten" + +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +msgid "Permission" +msgstr "Berechtigung" + +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +msgid "ACL management" +msgstr "ACL-Verwaltung" + +#: 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 "" +"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. " + +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +msgid "List of acls" +msgstr "Liste der ACLs" + +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "Übersicht" + +#: plugins/admin/acl/class_divListACL.inc:84 +msgid "Display acls matching" +msgstr "Zeige ACLs, auf die zutrifft" + +#: plugins/admin/acl/class_divListACL.inc:215 +msgid "Edit acl role" +msgstr "ACL-Rolle bearbeiten" + +#: plugins/admin/acl/class_divListACL.inc:223 +msgid "Delete acl role" +msgstr "ACL-Rolle entfernen" + +#: plugins/admin/acl/class_divListACL.inc:242 +msgid "Edit acl" +msgstr "ACL bearbeiten" + +#: plugins/admin/acl/class_divListACL.inc:246 +msgid "Delete acl" +msgstr "ACL entfernen" + +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 +msgid "Access control roles" +msgstr "Rollen für die Zugriffskontrolle" + +#: plugins/admin/acl/class_aclRole.inc:27 +msgid "Edit AC roles" +msgstr "ACL-Rollen bearbeiten" + +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +msgid "All categories" +msgstr "Alle Kategorien" + +#: plugins/admin/acl/class_aclRole.inc:131 +msgid "Reset ACL" +msgstr "ACL zurücksetzen" + +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +msgid "One level" +msgstr "Diese Ebene" + +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +msgid "Current object" +msgstr "Aktuelles Objekt" + +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +msgid "Complete subtree" +msgstr "Vollständiger Teilbaum" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Land" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" +msgstr "Vollständiger Teilbaum (permanent)" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Telefon" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "Auf" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "Objekt '%s' ist bereits markiert" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" +msgstr "Ab" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "Füge Markierung (%s) zu Objekt '%s' hinzu" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Bearbeiten" -#: plugins/admin/departments/class_departmentGeneric.inc:643 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 #, php-format -msgid "Removing tag from object '%s'" -msgstr "Entferne Markierung von Objekt '%s'" +msgid "Delete" +msgstr "Entfernen" -#: plugins/admin/departments/class_departmentManagement.inc:27 -msgid "Manage Departments" -msgstr "Abteilungen verwalten" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" +msgstr "Keine ACL-Einstellungen für diese Kategorie" -#: plugins/admin/departments/class_departmentManagement.inc:243 +#: plugins/admin/acl/class_aclRole.inc:403 #, 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." - -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" -"Sobald der Verschiebe-Vorgang abgeschlossen wurde, können Sie zum Ende der " -"Seite scrollen und auf den 'Fortfahren'-Knopf drücken, um mit der " -"Abteilungsverwaltung fort zu fahren." +msgid "ACL for these objects: %s" +msgstr "Enthält ACL für diese Objekte: %s" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" -"Sobald die Tag-Operation abgeschlossen wurde, können Sie zum Ende der Seite " -"scrollen und auf den 'Fortfahren'-Knopf drücken, um mit der " -"Abteilungsverwaltung fort zu fahren." +#: plugins/admin/acl/class_aclRole.inc:408 +msgid "Edit category ACL" +msgstr "ACL Kategorie bearbeiten" -#: plugins/admin/ogroups/tabs_ogroups.inc:112 -#: plugins/admin/ogroups/tabs_ogroups.inc:298 -msgid "Phone queue" -msgstr "Warteschlange" +#: plugins/admin/acl/class_aclRole.inc:409 +msgid "Reset category ACL" +msgstr "ACL-Kategorie zurücksetzen" -#: plugins/admin/ogroups/tabs_ogroups.inc:140 -msgid "Systems" -msgstr "Systeme" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "ACL für '%s' bearbeiten, Bereich ist '%s'" -#: plugins/admin/ogroups/tabs_ogroups.inc:150 -#: plugins/admin/ogroups/tabs_ogroups.inc:167 -#: plugins/admin/ogroups/tabs_ogroups.inc:275 -msgid "Devices" -msgstr "Geräte" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "Alle Objekte im aktuellen Teilbaum" -#: plugins/admin/ogroups/tabs_ogroups.inc:159 -msgid "Startup" -msgstr "Start" +#: plugins/admin/acl/class_aclRole.inc:621 +msgid "Object in use" +msgstr "Objekt in Verwendung" -#: plugins/admin/ogroups/tabs_ogroups.inc:176 -msgid "FAI summary" -msgstr "FAI-Übersicht" +#: plugins/admin/acl/class_aclRole.inc:621 +#, 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/ogroups/tabs_ogroups.inc:204 -msgid "Applications" -msgstr "Anwendungen" +#: plugins/admin/acl/tabs_acl_role.inc:28 +msgid "ACL Templates" +msgstr "ACL Vorlagen" -#: plugins/admin/ogroups/tabs_ogroups.inc:269 -msgid "Terminals" -msgstr "Arbeitsplätze" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" +msgstr "Zugewiesene ACL für aktuellen Eintrag" -#: plugins/admin/ogroups/ogroup_objects.tpl:6 -msgid "Select objects to add" -msgstr "Wählen Sie die hinzuzufügenden Objekte" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: 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" -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:21 -msgid "Select to search within subtrees" -msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen" +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +msgid "New ACL" +msgstr "Neue ACL" -#: plugins/admin/ogroups/ogroup_objects.tpl:36 -msgid "Display objects of department" -msgstr "Zeige die Objekte der Abteilung" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +msgid "ACL type" +msgstr "ACL-Typ" -#: plugins/admin/ogroups/ogroup_objects.tpl:40 -msgid "Display objects matching" -msgstr "Zeige die Objekte, auf die Folgendes passt" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +msgid "Select an acl type" +msgstr "Wählen Sie einen ACL-Typ" -#: plugins/admin/ogroups/ogroup_objects.tpl:41 -msgid "Regular expression for matching object names" -msgstr "Regulärer Ausdruck zum Erkennen von Objekt-Namen" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +msgid "List of available ACL categories" +msgstr "Liste verfügbarer ACL-Kategorien" #: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 #: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 msgid "Object groups" msgstr "Objektgruppen" @@ -2389,21 +1895,22 @@ msgstr "Objektgruppen" msgid "Manage object groups" msgstr "Objektgruppen verwalten" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +msgid "Infrastructure error" +msgstr "Infrastruktur Fehler" + #: plugins/admin/ogroups/class_ogroupManagement.inc:255 #: plugins/admin/ogroups/class_ogroupManagement.inc:331 msgid "object group" msgstr "Objektgruppe" -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Server" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Arbeitsstation" +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Benutzer" #: plugins/admin/ogroups/class_ogroupManagement.inc:533 msgid "Windows Install" @@ -2413,26 +1920,69 @@ msgstr "Windows Installation" msgid "Terminal" msgstr "Terminal" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Drucker" +#: 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 "" +"Bitte überprüfen Sie genau was Sie tun, weil GOsa keine Möglichkeit hat, die " +"Daten wiederherzustellen." -#: 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" +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +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/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Gruppenname" + +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Name der Gruppe" + +#: 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" + +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Zusammengefasste Objekte" #: plugins/admin/ogroups/class_divListOGroup.inc:59 #: plugins/admin/ogroups/class_divListOGroup.inc:60 msgid "List of object groups" msgstr "Liste von Objektgruppen" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Objektgruppe" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, php-format +msgid "Show %s" +msgstr "Zeige %s" #: plugins/admin/ogroups/class_divListOGroup.inc:89 #: plugins/admin/ogroups/class_divListOGroup.inc:90 @@ -2444,6 +1994,12 @@ msgstr "Benutzergruppen" msgid "nested groups" msgstr "verschachtelte Gruppen" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +msgid "application groups" +msgstr "Anwendungsgruppen" + #: plugins/admin/ogroups/class_divListOGroup.inc:95 #: plugins/admin/ogroups/class_divListOGroup.inc:96 msgid "department groups" @@ -2553,1687 +2109,2005 @@ msgstr "Telefone" msgid "applications" msgstr "Anwendungen" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" -msgstr "zu viele unterschiedliche Objekte!" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "keine" + +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" +msgstr "zu viele unterschiedliche Objekte!" + +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "Benutzer" + +#: plugins/admin/ogroups/class_ogroup.inc:479 +msgid "winstations" +msgstr "Windows-Arbeitsstationen" + +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "Unbekannte dn:" + +#: plugins/admin/ogroups/class_ogroup.inc:872 +msgid "You can combine two different object types at maximum, only!" +msgstr "" +"Sie können maximal zwei verschiedene Objekttypen miteinander kombinieren!" + +#: plugins/admin/ogroups/class_ogroup.inc:1056 +msgid "Object group generic" +msgstr "Objektgruppe (Allgemein)" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +msgid "Member" +msgstr "Mitglied" + +#: plugins/admin/ogroups/tabs_ogroups.inc:112 +#: plugins/admin/ogroups/tabs_ogroups.inc:298 +msgid "Phone queue" +msgstr "Warteschlange" + +#: plugins/admin/ogroups/tabs_ogroups.inc:140 +msgid "Systems" +msgstr "Systeme" + +#: plugins/admin/ogroups/tabs_ogroups.inc:150 +#: plugins/admin/ogroups/tabs_ogroups.inc:167 +#: plugins/admin/ogroups/tabs_ogroups.inc:275 +msgid "Devices" +msgstr "Geräte" + +#: plugins/admin/ogroups/tabs_ogroups.inc:159 +msgid "Startup" +msgstr "Start" + +#: plugins/admin/ogroups/tabs_ogroups.inc:176 +msgid "FAI summary" +msgstr "FAI-Übersicht" + +#: plugins/admin/ogroups/tabs_ogroups.inc:204 +msgid "Applications" +msgstr "Anwendungen" + +#: plugins/admin/ogroups/tabs_ogroups.inc:269 +msgid "Terminals" +msgstr "Arbeitsplätze" + +#: 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" + +#: plugins/admin/ogroups/ogroup_objects.tpl:6 +msgid "Select objects to add" +msgstr "Wählen Sie die hinzuzufügenden Objekte" + +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:21 +msgid "Select to search within subtrees" +msgstr "Wählen Sie diese Option um auch in Teilbäumen zu suchen" + +#: plugins/admin/ogroups/ogroup_objects.tpl:36 +msgid "Display objects of department" +msgstr "Zeige die Objekte der Abteilung" + +#: plugins/admin/ogroups/ogroup_objects.tpl:40 +msgid "Display objects matching" +msgstr "Zeige die Objekte, auf die Folgendes passt" + +#: plugins/admin/ogroups/ogroup_objects.tpl:41 +msgid "Regular expression for matching object names" +msgstr "Regulärer Ausdruck zum Erkennen von Objekt-Namen" + +#: plugins/admin/users/class_userManagement.inc:27 +msgid "Manage users" +msgstr "Benutzer verwalten" + +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 +msgid "You have no permission to change this users password!" +msgstr "Sie haben keine Berechtigung dieses Passwort zu ändern!" + +#: plugins/admin/users/class_userManagement.inc:544 +#, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "Sie sind nicht berechtigt das Objekt '%s' zu verändern!" + +#: plugins/admin/users/class_userManagement.inc:548 +msgid "You have no permission to use this template!" +msgstr "Sie sind nicht berechtigt diese Vorlage zu nutzen!" + +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 +msgid "user" +msgstr "Benutzer" + +#: plugins/admin/users/class_userManagement.inc:655 +msgid "You have no permission to change the lock status for this user!" +msgstr "" +"Sie haben keine Berechtigung den Bearbeitungs-Status dieses Benutzers zu " +"ändern!" + +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "Vorlage" + +#: 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 "" +"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." + +#: plugins/admin/users/templatize.tpl:2 +msgid "Applying a template" +msgstr "Vorlage anwenden" + +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" +"Das Anwenden einer Vorlage ersetzt alle in der Vorlage definierten Attribute " +"des Benutzers." + +#: plugins/admin/users/templatize.tpl:33 +msgid "No templates available!" +msgstr "Keine Vorlagen verfügbar!" + +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Benutzerverwaltung" + +#: 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. " + +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Liste der Benutzer" + +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Benutzername" + +#: plugins/admin/users/class_divListUsers.inc:84 +msgid "templates" +msgstr "Vorlagen" + +#: plugins/admin/users/class_divListUsers.inc:85 +msgid "GOsa object" +msgstr "GOsa Objekt" + +#: plugins/admin/users/class_divListUsers.inc:85 +msgid "functional users" +msgstr "funktionale Benutzer" + +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" + +#: plugins/admin/users/class_divListUsers.inc:86 +msgid "POSIX users" +msgstr "POSIX Benutzer" + +#: plugins/admin/users/class_divListUsers.inc:87 +msgid "mail users" +msgstr "Mail Benutzer" + +#: plugins/admin/users/class_divListUsers.inc:88 +msgid "samba users" +msgstr "Samba Benutzer" + +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "proxy users" +msgstr "Proxy Benutzer" + +#: 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" + +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Passwort ändern" + +#: plugins/admin/users/class_divListUsers.inc:189 +msgid "Apply template" +msgstr "Vorlage anwenden" + +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" + +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "Allgemeine Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "UNIX-Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "Umgebungs-Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "Mail-Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "Telefon-Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "Fax-Einstellungen bearbeiten" + +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "Samba-Einstellungen bearbeiten" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "Benutzer" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" +msgstr "Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:479 -msgid "winstations" -msgstr "Windows-Arbeitsstationen" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "Netatalk-Einstellungen bearbeiten" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "Unbekannte dn:" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "Neuen Benutzer aus Vorlage erstellen" -#: plugins/admin/ogroups/class_ogroup.inc:872 -msgid "You can combine two different object types at maximum, only!" -msgstr "" -"Sie können maximal zwei verschiedene Objekttypen miteinander kombinieren!" +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "Neuen Benutzer aus dieser Vorlage erstellen" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -msgid "Object group generic" -msgstr "Objektgruppe (Allgemein)" +#: plugins/admin/users/class_divListUsers.inc:297 +msgid "inactive" +msgstr "inaktiv" -#: plugins/admin/ogroups/class_ogroup.inc:1067 -msgid "Member" -msgstr "Mitglied" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "Passwort" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "Name der Gruppe" +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 +msgid "Not allowed" +msgstr "Nicht erlaubt" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Zusammengefasste Objekte" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "Benutzer entfernen" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/users/class_divListUsers.inc:421 +msgid "Number of listed users" +msgstr "Anzahl der angezeigten Benutzer" + +#: plugins/admin/users/password.tpl:4 msgid "" -"Please double check if you really want to do this since there is no way for " -"GOsa to get your data back." +"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 "" -"Bitte überprüfen Sie genau was Sie tun, weil GOsa keine Möglichkeit hat, die " -"Daten wiederherzustellen." +"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/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "Fax" +#: plugins/admin/users/password.tpl:21 +msgid "Strength" +msgstr "Stärke" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Gruppenverwaltung" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "Thin Client" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Wählen Sie die hinzuzufügenden Benutzer" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Objektname" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Wählen um Server anzuzeigen" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "Inhalt" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "Suche im Teilbaum" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." -msgstr "Dieses Objekt hat keine Referenzen zu anderen Objekten." +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Zeige die Benutzer der Abteilung" -#: plugins/generic/welcome/welcome.tpl:4 +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "Regulärer Ausdruck zum Erkennen von Benutzernamen" + +#: plugins/admin/groups/remove.tpl:6 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." +"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 "" -"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." +"Bitte prüfen Sie, ob Sie die Aktion wirklich durchführen möchten, da GOsa " +"die Daten nicht wiederherstellen kann." -#: 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." +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "UNIX-Name der Gruppe" + +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" msgstr "" -"Benutzen Sie 'Abmelden' oben links, um die Arbeit mit GOsa zu beenden und " -"'Hauptmenü', um wieder in diese Ansicht zurückzugelangen." +"Normalerweise werden IDs automatisch generiert. Auswählen um dies zu umgehen" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "Das GOsa Team" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Erzwinge GID" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Willkommen %s!" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Erzwungene ID-Nummer" -#: 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/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/utils/class_msgPool.inc:15 -#, php-format -msgid "Select to list objects of type '%s'." -msgstr "Auswählen um Objekte des Typs '%s' aufzulisten." +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "in der Domain" -#: include/utils/class_msgPool.inc:17 -#, php-format -msgid "Select to list objects containig '%s'." -msgstr "Wählen Sie dies um Objekte aufzulisten die '%s' enthalten." +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "Mitglieder sind in einer Telefon-Gruppe" -#: include/utils/class_msgPool.inc:19 -#, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Auswählen um Objekte des Typs '%s' aufzulisten" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" +msgstr "Mitglieder sind in einer Nagios-Gruppe" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "Dieses objekt wird gelöscht!" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Gruppenmitglieder" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "Dieses '%s'-Objekt wird gelöscht!" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +msgid "Configuration error" +msgstr "Konfigurationsfehler" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" -msgstr "Dieses Objekt wird gelöscht: %s" +#: plugins/admin/groups/class_groupGeneric.inc:163 +msgid "Cannot find group SID in your configuration!" +msgstr "Kann keine Gruppen-SID in Ihrer Konfiguration finden!" -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "Dieses '%s'-Objekt wird gelöscht: %s" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Samba-Gruppe" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "Dieses Objekt wird gelöscht:" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Domänen-Administratoren" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "Dieses '%s'-Objekt wird gelöscht:" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Domänen-Benutzer" -#: include/utils/class_msgPool.inc:53 -#, php-format -msgid "These objects will be deleted: %s" -msgstr "Diese Objekte werden gelöscht: %s" +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Domänen-Gäste" -#: include/utils/class_msgPool.inc:55 +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "Diese '%s'-Objekte werden gelöscht: %s" +msgid "Special group (%d)" +msgstr "Spezielle Gruppe (%d)" -#: include/utils/class_msgPool.inc:63 -msgid "You have no permission to delete this object!" -msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen!" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "! unbekannte id" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -msgid "You have no permission to delete the object:" -msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen:" +#: plugins/admin/groups/class_groupGeneric.inc:692 +#, php-format +msgid "Search returned too many results. Not displaying more than %s entries!" +msgstr "" +"Die Suche ergab zu viele Treffer. Es werden nicht mehr als %s Einträge " +"angezeigt!" -#: include/utils/class_msgPool.inc:74 -msgid "You have no permission to delete these objects:" -msgstr "Sie sind nicht berechtigt dieses Objekte zu löschen:" +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "Kann keine SID für '%s' finden!" -#: include/utils/class_msgPool.inc:81 -msgid "You have no permission to create this object!" -msgstr "Sie sind nicht berechtigt diese Objekt anzulegen!" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Kann keine RIDBASE für '%s' finden!" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -msgid "You have no permission to create the object:" -msgstr "Sie sind nicht berechtigt dieses Objekt anzulegen:" +#: plugins/admin/groups/class_groupGeneric.inc:1213 +msgid "Generic group settings" +msgstr "Allgemeine Gruppeneinstellungen" -#: include/utils/class_msgPool.inc:92 -msgid "You have no permission to create these objects:" -msgstr "Sie sind nicht berechtigt diese Objekte anzulegen:" +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Gruppen" -#: include/utils/class_msgPool.inc:99 -msgid "You have no permission to modify this object!" -msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern!" +#: plugins/admin/groups/class_groupGeneric.inc:1225 +msgid "Phone pickup group" +msgstr "Gesprächs-Annahme Gruppe" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -msgid "You have no permission to modify the object:" -msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern:" +#: plugins/admin/groups/class_groupGeneric.inc:1226 +msgid "Nagios group" +msgstr "Nagios-Gruppe" -#: include/utils/class_msgPool.inc:110 -msgid "You have no permission to modify these objects:" -msgstr "Sie sind nicht berechtigt diese Objekte zu verändern:" +#: plugins/admin/groups/class_groupGeneric.inc:1229 +msgid "Group member" +msgstr "Gruppenmitglieder" -#: include/utils/class_msgPool.inc:117 -msgid "You have no permission to view this object!" -msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen!" +#: plugins/admin/groups/class_groupGeneric.inc:1230 +msgid "Samba group type" +msgstr "Samba-Gruppentyp" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 -msgid "You have no permission to view the object:" -msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen:" +#: plugins/admin/groups/class_groupGeneric.inc:1231 +msgid "Samba domain name" +msgstr "Samba Domänen-Name" -#: include/utils/class_msgPool.inc:128 -msgid "You have no permission to view these objects:" -msgstr "Sie sind nicht berechtigt diese Objekte zu öffnen:" +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +msgid "Samba SID" +msgstr "Samba SID" -#: include/utils/class_msgPool.inc:135 -msgid "You have no permission to move this object!" -msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben!" +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "POSIX-Gruppen verwalten" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 -msgid "You have no permission to move the object:" -msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben:" +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 +msgid "group" +msgstr "Gruppe" -#: include/utils/class_msgPool.inc:146 -msgid "You have no permission to move these objects:" -msgstr "Sie sind nicht berechtigt diese Objekte zu verschieben:" +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" +msgstr "Liste der Gruppen" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 -msgid "Connection information" -msgstr "Verbindungs-Information" +#: plugins/admin/groups/class_divListGroup.inc:84 +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/utils/class_msgPool.inc:158 -#, php-format -msgid "Cannot connect to %s database!" -msgstr "Kann keine Verbindung zur %s Datenbank aufbauen!" +#: plugins/admin/groups/class_divListGroup.inc:85 +msgid "primary groups" +msgstr "primäre Gruppen" -#: include/utils/class_msgPool.inc:170 -#, php-format -msgid "Cannot select %s database!" -msgstr "Kann die Datenbank %s nicht auswählen!" +#: plugins/admin/groups/class_divListGroup.inc:86 +msgid "samba groups mappings" +msgstr "Samba Group-Mapping" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "Kein %s Server definiert!" +#: plugins/admin/groups/class_divListGroup.inc:87 +msgid "samba groups" +msgstr "Samba Gruppen" -#: include/utils/class_msgPool.inc:188 -#, php-format -msgid "Cannot query %s database!" -msgstr "Kann die Datenbank %s nicht abfragen!" +#: plugins/admin/groups/class_divListGroup.inc:88 +msgid "application settings" +msgstr "Anwendungseinstellungen" -#: include/utils/class_msgPool.inc:194 -#, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "Das Feld '%s' enthält ein reserviertes Schlüsselwort!" +#: plugins/admin/groups/class_divListGroup.inc:90 +msgid "mail settings" +msgstr "Mail-Einstellungen" -#: include/utils/class_msgPool.inc:200 -#, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" -msgstr "" -"Das als '%s'-Erweiterung angegebene Kommando für Modul '%s' existiert nicht!" +#: plugins/admin/groups/class_divListGroup.inc:91 +msgid "mail groups" +msgstr "Mail Gruppen" -#: include/utils/class_msgPool.inc:207 -#, php-format -msgid "'%s' command is invalid!" -msgstr "'%s'-Kommando ist ungültig!" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "Auswählen, um die \"normalen\" Gruppen zu sehen" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "'%s' Kommando (%s) für Modul %s ist ungültig!" +#: plugins/admin/groups/class_divListGroup.inc:93 +msgid "functional groups" +msgstr "funktionelle Gruppen" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "'%s' Kommando für Modul %s ist ungültig!" +#: plugins/admin/groups/class_divListGroup.inc:359 +msgid "Number of listed groups" +msgstr "Anzahl der angezeigten Gruppen" -#: include/utils/class_msgPool.inc:213 -#, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "'%s' Kommando (%s) ist ungültig!" +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" +msgstr "Gruppen-Einstellungen" -#: include/utils/class_msgPool.inc:221 -#, php-format -msgid "Cannot execute '%s' command!" -msgstr "Kann '%s' Kommando nicht ausführen!" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +msgid "GOsa settings 2/3" +msgstr "GOsa-Einstellungen 2/3" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "Kann '%s' Kommando (%s) für Modul %s nicht ausführen!" +#: setup/class_setupStep_Config2.inc:88 +msgid "Customize special parameters" +msgstr "Anpassen von Spezialparametern" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "Kann '%s' Kommando für Modul %s nicht ausführen!" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "nein" -#: include/utils/class_msgPool.inc:227 -#, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "Kann '%s' Kommando (%s) nicht ausführen!" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "ja" -#: include/utils/class_msgPool.inc:235 -#, php-format -msgid "Value for '%s' is too large!" -msgstr "Der Wert für '%s' ist zu groß!" +#: setup/setup_frame.tpl:12 +msgid "GOsa setup wizard" +msgstr "GOsa Einrichtungsassistent" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "'%s' muß kleiner sein als %d!" +#: setup/setup_frame.tpl:19 +msgid "Installation" +msgstr "Installation" -#: include/utils/class_msgPool.inc:245 -#, php-format -msgid "Value for '%s' is too small!" -msgstr "Der Wert für '%s' ist zu kein!" +#: setup/setup_frame.tpl:19 +msgid "Steps" +msgstr "Schritte" -#: include/utils/class_msgPool.inc:247 -#, php-format -msgid "'%s' must be %d or above!" -msgstr "'%s' muß größer oder gleich %d sein!" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Speichern" -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "'%s' hängt von '%s' ab - bitte geben Sie beide Werte an!" +#: setup/class_setupStep_Finish.inc:38 +msgid "Write configuration file" +msgstr "Schreibe Konfigurationsdatei" -#: include/utils/class_msgPool.inc:260 -#, php-format -msgid "There is already an entry with this '%s' attribute in the system!" -msgstr "Es existiert bereits ein Eintrag mit diesem '%s' Attribut im System!" +#: setup/class_setupStep_Finish.inc:39 +msgid "Finish - write the configuration file" +msgstr "Abschluß - Schreiben der Konfigurationsdatei" -#: include/utils/class_msgPool.inc:266 -#, php-format -msgid "The required field '%s' is empty!" -msgstr "Das Pflicht-Feld '%s' ist leer!" +#: setup/class_setupStep_Finish.inc:101 +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!" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "Beispiel" +#: setup/class_setupStep_Finish.inc:103 +msgid "The configuration is currently not readable or it does not exists." +msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht." -#: include/utils/class_msgPool.inc:291 +#: setup/class_setupStep_Finish.inc:112 #, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "Das Feld '%s' enthält ungültige Zeichen" +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 "" +"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:" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" -msgstr "'%s' ist nicht erlaubt:" +#: setup/setup_finish.tpl:3 +msgid "Create your configuration file" +msgstr "Erzeugen Ihrer Konfigurationsdatei" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' are not allowed!" -msgstr "'%s' sind nicht erlaubt!" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "Konfiguration herunterladen" -#: include/utils/class_msgPool.inc:295 -#, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "Das Feld '%s' enthält ungültige Zeichen!" +#: setup/setup_finish.tpl:18 +msgid "Status: " +msgstr "Status: " -#: include/utils/class_msgPool.inc:302 +#: 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" + +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Suchen" + +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 #, php-format -msgid "Missing %s PHP extension!" -msgstr "Fehlenden %s PHP-Erweiterung!" +msgid "Apply" +msgstr "Anwenden" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "Abbrechen" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "Ok" +#: setup/setup_ldap.tpl:25 +msgid "LDAP connection" +msgstr "LDAP-Verbindung" -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Anwenden" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Name des Standortes:" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Speichern" +#: setup/setup_ldap.tpl:37 +msgid "Connection URL" +msgstr "Verbindungs-URL" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Hinzufügen" +#: setup/setup_ldap.tpl:45 +msgid "TLS connection" +msgstr "TLS-Verbindung" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add %s" -msgstr "%s hinzufügen" +#: setup/setup_ldap.tpl:65 +msgid "Reload" +msgstr "Neu laden" -#: include/utils/class_msgPool.inc:338 -#, php-format -msgid "Delete %s" -msgstr "%s löschen" +#: setup/setup_ldap.tpl:69 +msgid "Authentication" +msgstr "Authentisierung" -#: include/utils/class_msgPool.inc:344 -#, php-format -msgid "Set %s" -msgstr "%s einstellen" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "Administrator-DN:" -#: include/utils/class_msgPool.inc:350 -#, php-format -msgid "Edit..." -msgstr "Bearbeiten..." +#: setup/setup_ldap.tpl:78 +msgid "Select user" +msgstr "Benutzer wählen" -#: include/utils/class_msgPool.inc:350 -#, php-format -msgid "Edit %s..." -msgstr "%s bearbeiten..." +#: 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/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Zurück" +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Administrator-Passwort:" -#: include/utils/class_msgPool.inc:375 -#, php-format -msgid "This account has no valid %s extensions!" -msgstr "Dieses Konto besitzt keine gültigen %s-Einstellungen." +#: setup/setup_ldap.tpl:101 +msgid "Schema based settings" +msgstr "Schema-basierte Einstellungen" -#: include/utils/class_msgPool.inc:381 -#, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." -msgstr "" -"Dieses Konto besitzt aktivierte %s-Einstellungen. Sie können diese durch " -"einen Klick auf die untere Schaltfläche deaktivieren." +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" +msgstr "Verwende rfc2307bis-konforme Gruppen" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" -msgstr "" -"Dieses Konto besitzt aktivierte %s-Erweiterungen. Um sie zu deaktivieren, " -"müssen Sie zunächst die %s Einstellungen entfernen!" +#: setup/setup_ldap.tpl:117 +msgid "Current status" +msgstr "Momentaner Status" -#: include/utils/class_msgPool.inc:400 -#, php-format -msgid "" -"This account has %s settings disabled. You can enable them by clicking below." -msgstr "" -"Dieses Konto hat keine %s-Einstellungen aktiviert. Sie können Sie durch " -"einen Klick auf die Schaltfläche aktivieren." +#: setup/setup_language.tpl:3 +msgid "Please select the preferred language" +msgstr "Bitte wählen Sie Ihre bevorzugte Sprache" -#: include/utils/class_msgPool.inc:403 -#, php-format +#: setup/setup_language.tpl:5 msgid "" -"This account has %s settings disabled. To enable them, you'll need to add " -"the %s settings first!" +"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 "" -"Dieses Konto besitzt aktuell keine aktivierten %s-Einstellungen. Um sie zu " -"aktivieren, müssen Sie zunächst die %s Erweiterungen hinzufügen!" +"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." -#: include/utils/class_msgPool.inc:410 -#, 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 %s-Einstellungen. Um sie zu deaktivieren, " -"müssen Sie zunächst die %s Einstellungen deaktivieren!" +#: setup/setup_language.tpl:9 +msgid "Please select your preferred language here" +msgstr "Bitte wählen Sie hier Ihre bevorzugte Sprache" -#: include/utils/class_msgPool.inc:418 -#, php-format -msgid "Add %s settings" -msgstr "%s Einstellungen hinzufügen" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +msgid "Language setup" +msgstr "Sprachauswahl" -#: include/utils/class_msgPool.inc:424 -#, php-format -msgid "Remove %s settings" -msgstr "%s Einstellungen entfernen" +#: 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/utils/class_msgPool.inc:430 -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" +#: setup/class_setupStep_Language.inc:47 +msgid "Automatic" +msgstr "Automatisch" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Januar" +#: setup/setup_config3.tpl:2 +msgid "GOsa core settings" +msgstr "GOsa-Grundeinstellungen" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Februar" +#: setup/setup_config3.tpl:6 +msgid "Disable primary group filter" +msgstr "Abschalten des Filters für primäre Gruppen" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "März" +#: setup/setup_config3.tpl:18 +msgid "Display summary in listings" +msgstr "Zeige Zusammenfassung in Listen" + +#: setup/setup_config3.tpl:30 +msgid "Honour administrative units" +msgstr "Beachte administrative Einheiten" + +#: setup/setup_config3.tpl:42 +msgid "Smarty compile directory" +msgstr "Smarty Arbeitsverzeichnis" + +#: setup/setup_config3.tpl:51 +msgid "SNMP community" +msgstr "SNMP Gemeinschaft" + +#: setup/setup_config3.tpl:60 +msgid "Path for PPD storage" +msgstr "Pfad für PPD-Ablage" + +#: setup/setup_config3.tpl:77 +msgid "Path for kiosk profile storage" +msgstr "Pfad für Kioskprofil-Ablage" + +#: setup/setup_config3.tpl:96 +msgid "Override sudo role ou" +msgstr "Sudo-Rolle ignorieren" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "April" +#: setup/setup_config3.tpl:115 +msgid "Mail queue script" +msgstr "Mail-Queue Skript" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Mai" +#: setup/setup_config3.tpl:134 +msgid "Notification script" +msgstr "Benachrichtigungsskript" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Juni" +#: setup/setup_config3.tpl:153 +msgid "Enable edit locking" +msgstr "Aktiviere Bearbeitungssperre" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Juli" +#: setup/setup_config3.tpl:172 +msgid "Login and session" +msgstr "Anmeldung und Sitzung" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "August" +#: setup/setup_config3.tpl:175 +msgid "Login attribute" +msgstr "Anmeldeattribut" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "September" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" +msgstr "Erzwinge das Deaktivieren von register_globals" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Oktober" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" +msgstr "Erzwinge verschlüsselte Verbindungen" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "November" +#: setup/setup_config3.tpl:210 +msgid "Warn if session is not encrypted" +msgstr "Warnen wenn die Sitzung nicht verschlüsselt ist" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Dezember" +#: setup/setup_config3.tpl:222 +msgid "Remember dialog filter settings" +msgstr "Merken der Dialogfilter-Einstellungen" -#: include/utils/class_msgPool.inc:444 -msgid "Sunday" -msgstr "Sonntag" +#: setup/setup_config3.tpl:234 +msgid "Session lifetime" +msgstr "Lebenszeit der Sitzung" -#: include/utils/class_msgPool.inc:444 -msgid "Monday" -msgstr "Montag" +#: setup/setup_config3.tpl:243 +msgid "Debugging" +msgstr "Debugging" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" -msgstr "Dienstag" +#: setup/setup_config3.tpl:247 +msgid "Show PHP errors" +msgstr "Zeige PHP Fehler" -#: include/utils/class_msgPool.inc:444 -msgid "Wednesday" -msgstr "Mittwoch" +#: setup/setup_config3.tpl:259 +msgid "Maximum LDAP query time" +msgstr "Maximale LDAP Abfragedauer" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" -msgstr "Donnerstag" +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" +msgstr "Protokolliere LDAP-Statistiken" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" -msgstr "Freitag" +#: setup/setup_config3.tpl:289 +msgid "Debug level" +msgstr "Debug Level" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" -msgstr "Samstag" +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +msgid "Disabled" +msgstr "Deaktiviert" -#: include/utils/class_msgPool.inc:451 -msgid "read operation" -msgstr "Lese-Operation" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +msgid "Enabled" +msgstr "Aktiviert" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" -msgstr "Hinzufügeoperation" +#: setup/class_setupStep_Welcome.inc:38 +msgid "Welcome" +msgstr "Willkommen" -#: include/utils/class_msgPool.inc:451 -msgid "modify operation" -msgstr "Änderungs-Operation" +#: setup/class_setupStep_Welcome.inc:39 +msgid "The welcome message" +msgstr "Die Willkommensnachricht" -#: include/utils/class_msgPool.inc:452 -msgid "delete operation" -msgstr "Lösch-Operation" +#: setup/class_setupStep_Welcome.inc:40 +msgid "Welcome to GOsa setup wizard" +msgstr "Willkommen beim GOsa Einrichtungsassistent" -#: include/utils/class_msgPool.inc:452 -msgid "search operation" -msgstr "Such-Operation" +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +msgid "GOsa settings 1/3" +msgstr "GOsa-Einstellungen 1/3" -#: include/utils/class_msgPool.inc:452 -msgid "authentication" -msgstr "Authentifizierung" +#: setup/class_setupStep_Config1.inc:76 +msgid "GOsa generic settings" +msgstr "Allgemeine GOsa-Einstellungen" -#: include/utils/class_msgPool.inc:455 +#: setup/class_setupStep_Config1.inc:118 #, php-format -msgid "LDAP %s failed!" -msgstr "LDAP %s fehlgeschlagen!" - -#: include/utils/class_msgPool.inc:457 -msgid "LDAP operation failed!" -msgstr "LDAP-Operation fehlgeschlagen" +msgid "The specified value for '%s' must be a numeric value" +msgstr "Der angegebene Wert für '%s' muss numerisch sein." -#: include/utils/class_msgPool.inc:472 -msgid "Upload failed!" -msgstr "Übertragung fehlgeschlagen!" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" +msgstr "GID / UID min id" -#: include/utils/class_msgPool.inc:475 +#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 #, php-format -msgid "Upload failed: %s" -msgstr "Übertragung fehlgeschlagen: %s" +msgid "Don't add a trailing comma to '%s'." +msgstr "Fügen Sie kein Komma an das Ende von '%s'." -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" -msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst!" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "Ablage-OU für Benutzer:" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" -msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst: %s" +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "Ablage-OU für Gruppen:" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" -msgstr "Dieses '%s' ist noch in Gebrauch dieses Objekts: %s" +#: setup/class_setupStep_Config1.inc:130 +msgid "Uid base must be numeric" +msgstr "Der Wert für 'UID Base' muss numerisch sein" -#: include/utils/class_msgPool.inc:497 -#, php-format -msgid "This '%s' is still in use." -msgstr "Dieses '%s' ist noch in Benutzung." +#: 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/utils/class_msgPool.inc:499 -#, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "Dieses '%s' ist noch in Gebrauch dieser Objekte: %s" +#: setup/class_setupStep_Config1.inc:137 +msgid "The given password differ value is not numeric." +msgstr "Die angegebene Passwort-Differenz ist nicht numerisch." -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" -msgstr "Die Datei '%s' existiert nicht!" +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +msgid "LDAP schema check" +msgstr "LDAP Schemaprüfung" -#: include/utils/class_msgPool.inc:511 -#, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Kann Datei '%s' nicht zum Lesen öffnen!" +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" +msgstr "Führe Test auf Ihrem aktuellen LDAP Schema durch" -#: include/utils/class_msgPool.inc:517 -#, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Kann Datei '%s' nicht zum Schreiben öffnen!" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Samba-Einstellungen" -#: include/utils/class_msgPool.inc:523 -#, php-format -msgid "Cannot delete file '%s'!" -msgstr "Kann Datei '%s' nicht löschen!" +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" +msgstr "Samba Hash-Generator" -#: include/utils/class_msgPool.inc:529 -#, php-format -msgid "Cannot create folder '%s'!" -msgstr "Kann den Ordner '%s' nicht anlegen!" +#: setup/setup_config2.tpl:31 +msgid "RID base" +msgstr "RID Basis" -#: include/utils/class_msgPool.inc:535 -#, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Kann den Ordner '%s' nicht löschen!" +#: setup/setup_config2.tpl:46 +msgid "Workstation container" +msgstr "Container für Arbeitsstationen" -#: include/utils/class_msgPool.inc:541 -#, php-format -msgid "Checking for %s support" -msgstr "Prüfe auf %s-Unterstützung" +#: setup/setup_config2.tpl:61 +msgid "Samba SID mapping" +msgstr "Samba SID Abbildung" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." -msgstr "Installieren und aktivieren Sie das %s PHP-Modul." +#: setup/setup_config2.tpl:71 +msgid "Timezone" +msgstr "Zeitzone" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" -msgstr "" -"Es konnte keine passende Passwort-Methode für den aktuellen Hash gefunden " -"werden!" +#: setup/setup_config2.tpl:74 +msgid "Please choose your preferred timezone here" +msgstr "Bitte wählen Sie hier Ihre bevorzugte Zeitzone" + +#: setup/setup_config2.tpl:96 +msgid "Additional GOsa settings" +msgstr "Zusätzliche GOsa-Einstellungen" -#: include/class_certificate.inc:73 -msgid "Certificate is empty!" -msgstr "Zertifikat ist leer!" +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" +msgstr "Ermögliche Kopieren & Einfügen" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" -msgstr "Zertifikat kann nicht geladen werden - nur PEM/DER sind unterstützt!" +#: setup/setup_config2.tpl:112 +msgid "Enable DNS extension" +msgstr "Aktiviere DNS-Erweiterung" -#: include/class_certificate.inc:115 -msgid "Cannot extract information for non PEM certificates!" -msgstr "" -"Zertifikatinformationen können nur für PEM Zertifikate ermittelt werden!" +#: setup/setup_config2.tpl:124 +msgid "Enable DHCP extension" +msgstr "Aktiviere DHCP-Erweiterung" -#: include/class_certificate.inc:219 -msgid "No valid certificate loaded!" -msgstr "Kein gültiges Zertifikat geladen!" +#: setup/setup_config2.tpl:136 +msgid "Enable mime type management" +msgstr "Aktiviere MIME-Typen Verwaltung" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" -msgstr "Schliessen" +#: setup/setup_config2.tpl:148 +msgid "Enable FAI release management" +msgstr "Aktiviere FAI Release-Verwaltung" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Gehe zur Wurzel-Abteilung" +#: setup/setup_config2.tpl:160 +msgid "Enable user netatalk plugin" +msgstr "Aktiviere Netatalk-Erweiterung für Benutzer" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Wurzel" +#: setup/setup_config2.tpl:171 +msgid "Government mode" +msgstr "Behörden-Modus" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Eine Abteilung nach oben" +#: setup/setup_config2.tpl:182 +msgid "Logging options" +msgstr "Protokollierungs-Optionen" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Gehe zur Abteilung des Benutzers" +#: setup/setup_config2.tpl:186 +msgid "Syslog" +msgstr "Syslog" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Heimat" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +msgid "MySQL" +msgstr "MySQL" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "Liste neu laden" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "Mail-Einstellungen" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" -msgstr "Inkonsistente Enkodierung der DN erkannt: '%s'" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "Zustellungs-Methode" -#: include/php_setup.inc:95 -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!" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" +msgstr "Attribut für Kontoidentifikation" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" -msgstr "Sende Fehlerbericht an das GOsa Team" +#: setup/setup_config2.tpl:227 +msgid "Vacation templates" +msgstr "Urlaubsvorlagen" -#: include/php_setup.inc:100 -msgid "Send bugreport" -msgstr "Fehlerbericht senden" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" +msgstr "Verwenden Cyrus UNIX-Stil" -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "Zeige/Verstecke Informationen" +#: setup/setup_config2.tpl:253 +msgid "Snapshots / Undo" +msgstr "Snapshots / Rückgängig" -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "PHP Fehler" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +msgid "Enable snapshots" +msgstr "Snapshots ermöglichen" -#: include/php_setup.inc:134 -msgid "class" -msgstr "Klasse" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +msgid "Snapshot base" +msgstr "Basis für Snapshots" -#: include/php_setup.inc:140 -msgid "function" -msgstr "Funktion" +#: 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/php_setup.inc:145 -msgid "static" -msgstr "statisch" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "Was wird der Assistent für Sie erledigen?" -#: include/php_setup.inc:149 -msgid "method" -msgstr "Methode" +#: setup/setup_welcome.tpl:11 +msgid "Create a basic, single site configuration" +msgstr "Erstellen einer einfachen Konfiguration für einen Standort" -#: include/php_setup.inc:182 -msgid "Trace" -msgstr "Ablaufverfolgung" +#: 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/php_setup.inc:183 -msgid "File" -msgstr "Datei" +#: 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/php_setup.inc:183 -msgid "Line" -msgstr "Zeile" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" +msgstr "Geführte Migration existierende LDAP-Bäume" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Typ" +#: 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/php_setup.inc:184 -msgid "Arguments" -msgstr "Argumente" +#: setup/setup_welcome.tpl:20 +msgid "Find every possible configuration error" +msgstr "Finde jeden möglichen Konfigurationsfehler" -#: 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/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/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:25 +msgid "To continue..." +msgstr "Wird fortgesetzt..." + +#: setup/setup_welcome.tpl:28 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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 "" -"Schwerer Fehler: Kann Klasse '%s' nicht instanziieren - bitte führen Sie '%" -"s' aus um das Problem zu beheben" +"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/functions.inc:318 -#, 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'." +#: 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/functions.inc:380 -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum." +#: setup/class_setupStep_Ldap.inc:53 +msgid "LDAP setup" +msgstr "LDAP-Einrichtung" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 -msgid "Internal error" -msgstr "Interner Fehler" +#: setup/class_setupStep_Ldap.inc:54 +msgid "LDAP connection setup" +msgstr "Einrichten der LDAP-Verbindung" -#: include/functions.inc:450 +#: setup/class_setupStep_Ldap.inc:55 msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." +"This dialog performs the basic configuration of the LDAP connectivity for " +"GOsa." msgstr "" -"Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum. Bitte " -"kontaktieren Sie Ihren Administrator." +"Dieser Dialog richtet die grundlegende Konfiguration der LDAP-Verbindung für " +"GOsa ein." -#: 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_Ldap.inc:105 +#, php-format +msgid "Anonymous bind to server '%s' failed!" +msgstr "Anonyme Anmeldung an server '%s' ist fehlgeschlagen!" + +#: setup/class_setupStep_Ldap.inc:107 +#, php-format +msgid "Bind as user '%s' failed!" +msgstr "Verbindung als Benutzer '%s' ist fehlgeschlagen!" -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:112 #, php-format -msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" -msgstr "" -"Kann Sperrinformation für LDAP-Baum nicht erzeugen. Bitte kontaktieren Sie " -"Ihren Administrator!" +msgid "Anonymous bind to server '%s' succeeded." +msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich." + +#: setup/class_setupStep_Ldap.inc:113 +msgid "Please specify user and password!" +msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein!" -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:115 #, php-format -msgid "LDAP server returned: %s" -msgstr "Der LDAP-Server meldete: %s" +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich!" -#: include/functions.inc:699 +#: setup/setup_migrate.tpl:5 msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +"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 "" -"Mehrere Sperren für das zu sperrende Objekt gefunden. Dies sollte nicht " -"passieren - räume mehrere Referenzen auf." +"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/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!" +#: setup/setup_migrate.tpl:33 +msgid "Check again" +msgstr "Erneut prüfen" -#: include/functions.inc:998 -#, php-format +#: 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" + +#: setup/setup_migrate.tpl:39 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -"Verwende eine neue Größenbeschränkung von %s Einträgen und zeige diese " -"Meldung bei Überschreitung wieder an" +"Dieser Dialog ermöglicht es Ihnen, die angezeigten Windows-Arbeitsstationen " +"in eine gültige Abteilung zu verschieben" -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "unvollständig" +#: 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/functions.inc:1294 -msgid "Continue anyway" -msgstr "Trotzdem Fortsetzen" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" +msgstr "" +"Verschiebe die ausgewählten Windows-Arbeitsstationen in die folgende GOsa-" +"Abteilung" -#: include/functions.inc:1296 -msgid "Edit anyway" -msgstr "Trotzdem bearbeiten" +#: setup/setup_migrate.tpl:72 +msgid "Move selected workstations" +msgstr "Die gewählten Arbeitsstationen verschieben" -#: include/functions.inc:1298 -#, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge %s" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" +msgstr "Was wird hier durchgeführt" -#: include/functions.inc:1482 -msgid "Entries per page" -msgstr "Einträge pro Seite" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" +msgstr "Schliessen" -#: include/functions.inc:1510 -msgid "Apply filter" -msgstr "Filter anwenden" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" +msgstr "Verschiebe Gruppen in den konfigurierten Gruppenbaum" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: 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/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "GOsa Entwicklerversion (Rev %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/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." -msgstr "Die Datei '%s' konnte nicht entfernt werden." +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" +msgstr "Verschiebe die ausgewählten Gruppen in diesen Gruppenbaum" -#: include/functions.inc:1919 include/functions.inc:1939 -msgid "Cannot write to revision file!" -msgstr "Kann nicht in Revisions-Datei schreiben!" +#: 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/functions.inc:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" -msgstr "'base_hook' ist nicht verfügbar. Verwende die Standard-Basis!" +#: 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/functions.inc:2213 -msgid "LDAP warning" -msgstr "LDAP-Warnung" +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" +msgstr "Verschiebe Benutzer in den konfigurierten Benutzerbaum" -#: include/functions.inc:2213 -msgid "Cannot get schema information from server. No schema check possible!" +#: 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 "" -"Kann die Schema-Informationen nicht vom Server beziehen. Keine Schemaprüfung " -"möglich!" - -#: include/functions.inc:2239 -msgid "Used to store account specific informations." -msgstr "Verwendet, um kontenbezogene Informationen zu speichern." +"Dieser Dialol ermöglicht Ihnen das Verschieben einer Zahl von Nutzern in den " +"konfigurierten Benutzerbaum. Dies kann Ihren LDAP-Dienst aufräumen." -#: include/functions.inc:2246 +#: setup/setup_migrate.tpl:145 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"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 "" -"Verwenden, um die momentan bearbeiteten Einträge für andere zu sperren (um " -"gleichzeitige Änderungen zu verhindern)." +"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.inc:2289 -#, php-format -msgid "Missing required object class '%s'!" -msgstr "Die benötigte Objektklasse '%s' fehlt!" +#: setup/setup_migrate.tpl:148 +msgid "Move selected users into this people tree" +msgstr "Verschiebe die ausgewählten Benutzer in diesen Benutzerbaum" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" -msgstr "Die optionale Objektklasse '%s' fehlt!" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +msgid "Next" +msgstr "Vor" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "Falsche·Version·der·benötigten·Objektklasse·'%s'·(!=%s)!" +#: setup/setup_migrate.tpl:199 +msgid "Abort" +msgstr "Abbrechen" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" -msgstr "Falsche Version der optionalen Objektklasse '%s' (!=%s)!" +#: setup/setup_migrate.tpl:201 +msgid "Create a new GOsa administrator account" +msgstr "Erzeuge ein neues GOsa Administratorkonto" -#: include/functions.inc:2303 -#, php-format -msgid "Class(es) available" -msgstr "Verfügbare Klasse(n)" +#: 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." + +#: setup/setup_migrate.tpl:233 +msgid "Password (again)" +msgstr "Passwort (erneut)" -#: include/functions.inc:2325 +#: setup/setup_migrate.tpl:258 msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +"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 "" -"Sie haben die rfc2307bis-Option in der LDAP-Einrichtung aktiviert, aber Ihre " -"Schema-Konfiguration unterstützt dies nicht." +"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." -#: include/functions.inc:2326 +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"If you want to know what will be done when migrating the selected entries, " +"use the 'Show changes' button to see the LDIF." msgstr "" -"Um rfc2307bis-konforme Gruppen verwenden zu können, muss die Objektklasse " -"'posixGroup' AUXILIARY sein" +"Wenn Sie erfahren möchten, was bei der Migration der gewählten Einträge " +"erfolgen wird, verwenden Sie den 'Zeige Änderungen'-Knopf um das LDIF zu " +"sehen." + +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +msgid "Current" +msgstr "Aktuell" + +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +msgid "After migration" +msgstr "Nach der Migration" -#: include/functions.inc:2330 +#: setup/setup_migrate.tpl:313 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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 "" -"Ihre Schemakonfiguration ist für rfc2307bis-Gruppen eingerichtet, aber Sie " -"haben die Unterstützung im LDAP-Einrichtungsschritt ausgeschaltet." +"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/functions.inc:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" -msgstr "Die Objektklasse 'posixGroup' muss STRUCTURAL sein" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +msgid "LDAP inspection" +msgstr "LDAP-Inspektion" -#: include/functions.inc:2354 -msgid "German" -msgstr "Deutsch" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" +msgstr "Untersuche Ihr LDAP-Verzeichnis auf GOsa-Kompatibilität" + +#: setup/class_setupStep_Migrate.inc:114 +msgid "Checking for root object" +msgstr "Prüfe auf Wurzelobjekt" + +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank" + +#: setup/class_setupStep_Migrate.inc:126 +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" + +#: setup/class_setupStep_Migrate.inc:149 +msgid "Checking for groups outside the groups tree" +msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums" -#: include/functions.inc:2355 -msgid "French" -msgstr "Französisch" +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" +msgstr "Prüfe auf Windows-Arbeitsstationen ausserhalb des Winstation-Baums" -#: include/functions.inc:2356 -msgid "Italian" -msgstr "Italienisch" +#: setup/class_setupStep_Migrate.inc:162 +msgid "Checking for duplicated UID numbers" +msgstr "Prüfe auf doppelte UID Nummern" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Spanisch" +#: setup/class_setupStep_Migrate.inc:168 +msgid "Checking for duplicate GID numbers" +msgstr "Prüfe auf doppelte GID Nummern" -#: include/functions.inc:2358 -msgid "English" -msgstr "Englisch" +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +msgid "LDAP query failed" +msgstr "LDAP-Abfrage fehlgeschlagen." -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "Niederländisch" +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "Wahrscheinlich fehlt das Wurzelobjekt." -#: include/functions.inc:2360 -msgid "Polish" -msgstr "Polnisch" +#: setup/class_setupStep_Migrate.inc:217 +#, php-format +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "Es wurden %s doppelte Werte für das Attribute 'uidNumber' gefunden." -#: include/functions.inc:2361 -msgid "Swedish" -msgstr "Schwedisch" +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 +#, php-format +msgid "Ok" +msgstr "Ok" -#: include/functions.inc:2362 -msgid "Chinese" -msgstr "Chinesisch" +#: setup/class_setupStep_Migrate.inc:269 +#, php-format +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "Es wurden %s doppelte Werte für das Attribute 'gidNumber' gefunden." -#: include/functions.inc:2363 -msgid "Russian" -msgstr "Russisch" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Fehlgeschlagen" -#: include/functions.inc:2544 +#: setup/class_setupStep_Migrate.inc:329 #, php-format msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +"Found %s winstations outside the predefined winstation department ou '%s'." msgstr "" -"Das in POSTMODIFY angegebene Kommando '%s' (Modul '%s') scheint nicht zu " -"existieren." +"Es wurden %s Windows-Arbeitsstationen ausserhalb der für diese Abteilung " +"vordefinierten Winstation Organisationseinheit '%s' gefunden." -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" -msgstr "Kann Samba-Hash nicht erzeugen!" +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +msgid "Migrate" +msgstr "Migrieren" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." +#: setup/class_setupStep_Migrate.inc:402 +#, php-format +msgid "Found %s groups outside the configured tree '%s'." msgstr "" -"Das mcrypt-Modul wurde nicht gefunden. Bitte installieren Sie php5-mcrypt." +"Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden." -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "Die Socket-Verbindung zum Host '%s:%s' ist fehlgeschlagen: %s" +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +msgid "Move" +msgstr "Verschieben" -#: include/class_socketClient.inc:191 +#: setup/class_setupStep_Migrate.inc:479 #, php-format -msgid "Socket timeout of %s seconds reached." -msgstr "Socket-Timeout von %s Sekunden erreicht." +msgid "Found %s user(s) outside the configured tree '%s'." +msgstr "" +"Es wurde(n) %s Benutzer ausserhalb des konfigurierten Baums '%s' gefunden." -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 #, php-format -msgid "Delete process has been canceled by plugin '%s': %s" -msgstr "Der Lösch-Vorgang wurde durch das plugin '%s' beendet: %s" - -#: include/class_tabs.inc:373 -msgid "References" -msgstr "Referenzen" - -#: include/class_plugin.inc:497 msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"The specified user '%s' does not have full access to your ldap database." 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!" +"Der angegebene Benutzer '%s' hat keinen Vollzugriff auf Ihre LDAP-Datenbank." -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: setup/class_setupStep_Migrate.inc:617 #, php-format -msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +msgid "Found %s user(s) that will not be visible in GOsa." msgstr "" -"Die Snapshot-Funktionalität ist aktiviert, aber die erforderliche Variable '%" -"s' ist nicht gesetzt." +"Es wurde(n) %s Benutzer gefunden, die in GOsa nicht sichtbar sein werden." -#: include/class_plugin.inc:1527 -#, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s zu erstellen." +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +msgid "Migration error" +msgstr "Migrationsfehler" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 #, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s wiederherzustellen." - -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" -msgstr "Ändere ACL dn" - -#: include/class_plugin.inc:1786 -msgid "from" -msgstr "von" - -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -msgid "to" -msgstr "an" - -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 -msgid "Restore" -msgstr "Wiederherstellen" - -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" -msgstr "Abzug wiederherstellen" - -#: include/class_plugin.inc:1993 -msgid "Create snapshot" -msgstr "Snapshot erstellen" - -#: include/class_plugin.inc:1994 -msgid "Create a new snapshot from this object" -msgstr "Erstelle einen neuen Snapshot dieses Objekts" - -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "Ausschneiden" - -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "Diesen Eintrag ausschneiden" - -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "Kopieren" - -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "Diesen Eintrag kopieren" +msgid "Cannot migrate department '%s':" +msgstr "Die Abteilung '%s' kann nicht migriert werden:" -#: include/class_plugin.inc:2053 -msgid "Copy" -msgstr "Kopieren" +#: setup/class_setupStep_Migrate.inc:758 +#, 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/class_plugin.inc:2057 -msgid "Cut" -msgstr "Ausschneiden" +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." +msgstr "Es gibt keinen GOsa Administrator in Ihrem LDAP." -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "Einfügen" +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" +msgstr "Kann ACL für Benutzer '%s' nicht hinzufügen:" -#: include/class_acl.inc:26 -msgid "Access control" -msgstr "Zugriffskontrolle" +#: setup/class_setupStep_Migrate.inc:1004 +msgid "Password error" +msgstr "Passwortfehler" -#: include/class_acl.inc:207 -msgid "Reset ACLs" -msgstr "ACLs zurücksetzen" +#: setup/class_setupStep_Migrate.inc:1004 +msgid "Provided passwords do not match!" +msgstr "Die angegebenen Passwörter stimmen nicht überein!" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" -msgstr "Verwende ACL aus Rollendefinition" +#: setup/class_setupStep_Migrate.inc:1009 +msgid "Input error" +msgstr "Eingabefehler" -#: include/class_acl.inc:489 -msgid "No ACL settings for this category!" -msgstr "Keine ACL-Einstellungen für diese Kategorie!" +#: setup/class_setupStep_Migrate.inc:1009 +msgid "Specify a valid user ID!" +msgstr "Geben Sie eine gültige Benutzer ID an!" -#: include/class_acl.inc:491 +#: setup/class_setupStep_Migrate.inc:1051 #, php-format -msgid "Contains ACLs for these objects: %s" -msgstr "Enthält ACLs für diese Objekte: %s" - -#: include/class_acl.inc:496 include/class_acl.inc:497 -msgid "category ACL" -msgstr "ACL Kategorie" +msgid "Adding an administrative user failed: object '%s' already exists!" +msgstr "" +"Hinzufügen eines administrativen Benutzers fehlgeschlagen: Objekt '%s' " +"existiert bereits!" -#: include/class_acl.inc:543 -#, php-format -msgid "Edit ACL for '%s' - scope is '%s'" -msgstr "ACL für '%s' bearbeiten - Gültigkeitsbereich ist '%s'" +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +msgid "Cannot move users to the requested department!" +msgstr "Kann Benutzer nicht in die geforderte Abteilung verschieben!" -#: include/class_acl.inc:698 include/class_acl.inc:705 -msgid "Show/hide advanced settings" -msgstr "Zeige/verstecke erweiterte Einstellungen" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "Die Windows-Arbeitsstation wird verschoben von" -#: include/class_acl.inc:723 -msgid "Create objects" -msgstr "Erstelle Objekte" +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 +msgid "to" +msgstr "an" -#: include/class_acl.inc:724 -msgid "Move objects" -msgstr "Objekte verschieben" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "Aktualisiere ebenfalls die folgenden Referenzen" -#: include/class_acl.inc:725 -msgid "Remove objects" -msgstr "Objekte entfernen" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" +msgstr "Die Gruppe wird verschoben von" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" -msgstr "Änderbar vom Eigentümer" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" +msgstr "Der Benutzer wird verschoben von" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "lesen" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "Die folgenden Referenzen werden aktualisiert" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "schreiben" +#: setup/class_setupStep_Migrate.inc:1651 +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." -#: include/class_acl.inc:743 -msgid "Complete object" -msgstr "Vollständiges Objekt" +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 +msgid "Try to create root object" +msgstr "Versuche, das Wurzelobjekt zu erzeugen" -#: include/class_acl.inc:879 -#, php-format -msgid "Unkown ACL type '%s'!" -msgstr "Unbekannter ACL-Typ '%s'!" +#: setup/class_setupStep_Migrate.inc:1664 +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." -#: include/class_acl.inc:922 +#: setup/class_setupStep_Migrate.inc:1955 #, php-format -msgid "Unknown entry '%s'!" -msgstr "Unbekannter Eintrag '%s'!" +msgid "Copy '%s' to '%s' failed:" +msgstr "Kopieren von '%s' nach '%s' fehlgeschlagen:" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, php-format -msgid "Role: %s" -msgstr "Rolle: %s" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "Ich habe die Lizenz gelesen und akzeptiere diese" -#: include/class_acl.inc:984 -msgid "unknown role" -msgstr "unbekannte rolle" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "PHP Modul- und Erweiterungsprüfung" -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" -msgstr "Enthält Einstellungen für diese Objekte: %s" +#: 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." -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "Mitglieder" +#: 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." -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" -msgstr "ACL wirkt für alle Benutzer" +#: setup/setup_checks.tpl:67 +msgid "PHP setup configuration" +msgstr "Konfiguration der PHP-Umgebung" -#: include/class_acl.inc:1177 -msgid "Access control list" -msgstr "Zugriffskontrollliste" +#: setup/setup_checks.tpl:67 +msgid "show information" +msgstr "zeige Information" -#: include/class_acl.inc:1182 -msgid "ACL roles" -msgstr "ACL-Rollen" +#: setup/setup_schema.tpl:3 +msgid "Schema specific settings" +msgstr "Schemaspezifische Einstellungen" -#: include/class_acl.inc:1185 -msgid "Role name" -msgstr "Rollenname" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "Ermögliche Schema-Validierung bei der Anmeldung" -#: include/class_acl.inc:1186 -msgid "Role description" -msgstr "Rollenbeschreibung" +#: setup/setup_schema.tpl:16 +msgid "Check status" +msgstr "Status prüfen" -#: include/class_pluglist.inc:56 -msgid "All objects in this category" -msgstr "Keine Objekte dieser Kategorie" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" +msgstr "Schema-Prüfung erfolgreich" -#: include/class_pluglist.inc:152 -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_schema.tpl:23 +msgid "Schema check failed" +msgstr "Schema-Prüfung fehlgeschlagen" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" -msgstr "Unbekannt" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." +msgstr "" +"Konnte keine Schema-Informationen beziehen, alle Prüfungen wurden " +"übersprungen. Passen Sie Ihre LDAP-ACLs an." -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/setup_schema.tpl:35 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +"It seems that your ldap database wasn't initialized yet. This maybe the " +"reason, why GOsa can't read your schema configuration!" msgstr "" -"Sie bearbeiten gerade einen Datenbankeintrag. Sollen die Daten verworfen " -"werden?" +"Es scheint so, dass Ihre LDAP-Datenbank noch nicht initialisiert wurde. Dies " +"könnte der Grund sein, weshalb GOsa die Schema-Konfiguration nicht lesen " +"konnte!" -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." -msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu." +#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 +msgid "GOsa settings 3/3" +msgstr "GOsa-Einstellungen 3/3" -#: include/class_config.inc:107 -#, 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_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" +msgstr "Einstellen von grundlegendem GOsa Verhalten" -#: include/class_config.inc:242 -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_Config3.inc:198 +msgid "Session lifetime must be a numeric value!" +msgstr "Lebenszeit der Sitzung muss ein numerischer Wert sein!" -#: include/class_config.inc:574 -msgid "SID and/or RIDBASE missing in the configuration!" -msgstr "SID und/oder RIDBASE fehlen in der Konfiguration!" +#: setup/class_setupStep_Config3.inc:202 +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Die maximale LDAP-Abfragedauer muß ein numerischer Wert sein!" -#: include/class_config.inc:878 -msgid "Configuration" -msgstr "Konfiguration" +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +msgid "License" +msgstr "Lizenz" -#: include/class_config.inc:878 -msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." -msgstr "" -"Die von Ihnen verwendete Konfigurationsdatei scheint veraltet zu sein. Bitte " -"entfernen Sie diese Datei und starten Sie das GOsa-Setup." +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" +msgstr "Bedingungen und Auflagen für den Gebrauch" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, php-format -msgid "Copy and paste failed!" -msgstr "Kopieren & Einfügen ist fehlgeschlagen!" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" +msgstr "Installationsprüfung" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, php-format -msgid "Cannot set permission for '%s'" -msgstr "Kann Berechtigungen für '%s' nicht setzen" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" +msgstr "Grundlegende Überprüfungen der PHP-Version und Erweiterungen." -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" -msgstr "'%s' ist kein gültiges LDAP-Objekt" +#: setup/class_setupStep_Checks.inc:64 +msgid "Checking PHP version" +msgstr "Prüfe PHP-Version" -#: include/class_CopyPasteHandler.inc:175 +#: setup/class_setupStep_Checks.inc:65 #, php-format -msgid "No write permission in '%s'" -msgstr "Keine Schreibberechtigung in '%s'" +msgid "PHP must be of version %s or above." +msgstr "PHP muß in Version %s oder höher vorliegen." -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" -msgstr "Diese Objekte werden eingefügt: %s" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." +msgstr "Bitte aktualisieren Sie auf eine unterstützte Version." -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" -msgstr "Dieses Objekt wird eingefügt: %s" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "GOsa benötigt dieses Modul für die Kommunikation mit dem LDAP-Server." -#: include/class_CopyPasteHandler.inc:508 -msgid "Cannot paste" -msgstr "Kann nicht einfügen" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." +msgstr "GOsa benötigt dieses Modul für eine lokalisierte Oberfläche." -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" -msgstr "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." +msgstr "GOsa benötigt dieses Modul für die Samba-Einbindung." -#: include/class_gosaSupportDaemon.inc:851 -msgid "Cannot not parse XML!" -msgstr "XML-Nachricht kann nicht ausgewertet werden!" +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "GOsa benötigt dieses Modul um die SSHA-Verschlüsselung zu verwenden." -#: include/class_gosaSupportDaemon.inc:1177 -#, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Kann keine Abbruch-Nachricht für den Eintrag %s versenden!" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." +msgstr "" +"GOsa benötigt dieses Modul für die Kommunikation mit einem IMAP-Server." -#: include/class_gosaSupportDaemon.inc:1197 -#, php-format -msgid "Cannot remove entry %s!" -msgstr "Kann Eintrag %s nicht entfernen!" +#: setup/class_setupStep_Checks.inc:112 +msgid "mbstring" +msgstr "mbstring" -#: 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/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." +msgstr "GOsa benötigt dieses Modul um Unicode-Zeichenketten zu verarbeiten." -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." -msgstr "Für dieses Modul ist keine Hilfe verfügbar." +#: setup/class_setupStep_Checks.inc:121 +msgid "" +"GOsa requires this module to communicate with several supported databases." +msgstr "" +"GOsa benötigt dieses Modul, um mit verschiedenen unterstützten Datenbanken " +"zu kommunizieren." -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" -msgstr "Vorherige" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" +msgstr "CUPS" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "Nächste" +#: setup/class_setupStep_Checks.inc:129 +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." +msgstr "" +"GOsa benötigt dieses Modul um Drucker anzuzeigen die nicht innerhalb Ihrer " +"LDAP-Datenbank definiert sind." -#: 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/class_setupStep_Checks.inc:146 +msgid "samba hash generator" +msgstr "Samba Hash-Generator" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" -msgstr "%s%% Trefferquote in Datei %s" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." +msgstr "" +"GOsa benötigt dieses Kommando für den Abgleich der POSIX und Samba-" +"Passwörter." -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." -msgstr "Sie sind dabei den Snapshot '%s' zu entfernen." +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +msgstr "" +"Nutzen Sie eine GOsa-SI-Installation oder installieren Sie das Perl-Modul " +"Crypt::SmbHash." -#: include/class_SnapShotDialog.inc:145 -msgid "Remove snapshot" -msgstr "Snapshot entfernen." +#: setup/class_setupStep_Checks.inc:158 +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." -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" -msgstr "Y-m-d, H:i:s" +#: setup/class_setupStep_Checks.inc:159 +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'." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" -msgstr "Leistungswarnung" +#: setup/class_setupStep_Checks.inc:167 +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." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:168 +msgid "" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -"Die LDAP-Leistung ist mangelhaft: Die letzte Abfrage dauerte etwa %.2f " -"Sekunden!" +"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." -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:169 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " +"higher." msgstr "" -"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: keine Objektklasse " -"gefunden!" +"Suchen Sie in Ihrer php.ini nach 'session.gc_maxlifetime' und setzen Sie es " +"auf 84600 oder höher." -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" +msgstr "Aus" + +#: setup/class_setupStep_Checks.inc:177 +msgid "" +"In Order to use GOsa without any trouble, the session.auto_register option " +"in your php.ini should be set to 'Off'." msgstr "" -"Kann Teilbäume mit RDN '%s' nicht automatisch erzeugen: nicht unterstützt" +"Um GOsa fehlerfrei benutzen zu können, muß die Option session.auto_register " +"in Ihrer php.ini auf 'Off' stehen." -#: include/class_ldap.inc:768 -#, php-format -msgid "while operating on '%s' using LDAP server '%s'" -msgstr "während der Arbeit mit '%s' auf dem LDAP-Server '%s'" +#: setup/class_setupStep_Checks.inc:178 +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'." -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" -msgstr "während der Arbeit auf LDAP-Server '%s'" +#: setup/class_setupStep_Checks.inc:185 +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." -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:186 msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." msgstr "" -"Dies ist keine valide DN: '%s'. Ein Block für den Import sollte mit " -"'dn:...' beginnen in Zeile %s" +"Suchen Sie in Ihrer php.ini nach 'memory_limit' und setzen Sie es auf '32M' " +"oder höher." -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/class_setupStep_Checks.inc:193 +msgid "" +"This option influences the PHP output handling. Turn this Option off, to " +"increase performance." msgstr "" -"Fehler beim Importieren von dn: '%s', bitte überprüfen Sie die LDIF-Datei ab " -"Zeile %s!" +"Diese Einstellung beeinflusst die Verarbeitung der Ausgabe. Stellen Sie " +"diese auf 'off', um die Leistung zu erhöhen." -#: include/class_multi_plug.inc:362 -msgid "You are currently editing mutliple entries." -msgstr "Sie bearbeiten momentan mehrere Einträge." +#: setup/class_setupStep_Checks.inc:194 +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'." -#: include/class_multi_plug.inc:391 -msgid "Password reset" -msgstr "Passwort Rücksetzung" +#: setup/class_setupStep_Checks.inc:201 +msgid "The Execution time should be at least 30 seconds." +msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen." -#: 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/class_setupStep_Checks.inc:202 +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." -#: include/class_log.inc:88 -#, php-format -msgid "Logging failed: %s" -msgstr "Protokollieren fehlgeschlagen: %s" +#: setup/class_setupStep_Checks.inc:209 +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." -#: include/class_log.inc:107 -msgid "MySQL error" -msgstr "MySQL-Fehler" +#: setup/class_setupStep_Checks.inc:210 +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'." -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:216 +msgid "On" +msgstr "An" + +#: setup/class_setupStep_Checks.inc:217 +msgid "" +"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " +"escape all quotes in strings in this case." msgstr "" -"Protokollierung in die MySQL-Datenkbank wird für diese Sitzung abgeschaltet!" +"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." -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" -msgstr "Ungültige Option '%s' angegeben!" +#: setup/class_setupStep_Checks.inc:218 +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'." -#: include/class_log.inc:124 -msgid "Specified objectType is empty or invalid!" -msgstr "Der angegebene Objekt-Typ ist leer oder ungültig!" +#: setup/class_setupStep_Checks.inc:225 +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." -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" -msgstr "MySQL Protokollierung" +#: setup/class_setupStep_Checks.inc:226 +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'." -#: include/class_log.inc:205 -#, php-format -msgid "Cannot add location to the database!" -msgstr "Kann Standort nicht in die Datenbank einfügen!" +#: setup/class_setupStep_Checks.inc:236 +msgid "Configuration writeable" +msgstr "Konfigurationsdatei schreibbar" -#: include/class_baseSelectDialog.inc:44 -msgid "Choose a base" -msgstr "Wählen Sie eine Basis" +#: setup/class_setupStep_Checks.inc:237 +msgid "The configuration file can't be written" +msgstr "Die Konfigurationsdatei kann nicht geschrieben werden" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:238 +#, php-format msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"GOsa reads its configuration from a file located in (%s/%s). The setup can " +"write the configuration directly if it is writeable." msgstr "" -"Navigieren Sie in den gewünschten Baum und drücken Sie 'Speichern' um diesen " -"Teilbaum aus Basis zu verwenden. Oder drücken Sie auf das Icon, das sich am " -"Ende jedes Eintrags befindet." +"GOsa liest sein Konfiguration von einer Datei in (%s/%s). Die Einrichtung " +"kann die Konfiguration direkt schreiben, wenn diese schreibbar ist." -#: include/class_baseSelectDialog.inc:61 -msgid "Use" -msgstr "Verwenden" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "Aussehen und Verhalten" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Aktion" +#: setup/setup_config1.tpl:6 +msgid "Theme" +msgstr "Thema" -#: include/class_baseSelectDialog.inc:72 -msgid "Filter entries with this syntax" -msgstr "Filtere Einträge mit dieser Syntax" +#: setup/setup_config1.tpl:15 +msgid "Apache" +msgstr "Apache" -#: include/class_baseSelectDialog.inc:136 -#, php-format -msgid "Select this base" -msgstr "Diese Basis auswählen" +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" +msgstr "Sende komprimierte Ausgabe an den Browser" -#: setup/class_setupStep_Ldap.inc:53 -msgid "LDAP setup" -msgstr "LDAP-Einrichtung" +#: setup/setup_config1.tpl:27 +msgid "People and group storage" +msgstr "Ablage für Personen und Gruppen" -#: setup/class_setupStep_Ldap.inc:54 -msgid "LDAP connection setup" -msgstr "Einrichten der LDAP-Verbindung" +#: setup/setup_config1.tpl:30 +msgid "People DN attribute" +msgstr "DN-Attribut für Personen" -#: 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." +#: setup/setup_config1.tpl:41 +msgid "People storage subtree" +msgstr "Teilbaum für Benutzerablage" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "nein" +#: setup/setup_config1.tpl:50 +msgid "Group storage subtree" +msgstr "Teilbaum für Gruppenablage" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "ja" +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" +msgstr "Persönlichen Titel in der Benutzer-DN mitführen" -#: setup/class_setupStep_Ldap.inc:105 -#, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "Anonyme Anmeldung an server '%s' ist fehlgeschlagen!" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "Gelockerte Namensvorgaben" -#: setup/class_setupStep_Ldap.inc:107 -#, php-format -msgid "Bind as user '%s' failed!" -msgstr "Verbindung als Benutzer '%s' ist fehlgeschlagen!" +#: setup/setup_config1.tpl:81 +msgid "Automatic UIDs" +msgstr "Automatische UIDs" -#: setup/class_setupStep_Ldap.inc:112 -#, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "Verbindung als anonymer Benutzer zu Server '%s' war erfolgreich." +#: setup/setup_config1.tpl:113 +msgid "Number base for people/groups" +msgstr "Zählbasis für Benutzer/Gruppen" -#: setup/class_setupStep_Ldap.inc:113 -msgid "Please specify user and password!" -msgstr "Bitte geben Sie Ihren Benutzer und das zugehörige Passwort ein!" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "Hook für Zählbasis" -#: setup/class_setupStep_Ldap.inc:115 -#, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "Verbindung als Benutzer '%s' zu Server '%s' war erfolgreich!" +#: setup/setup_config1.tpl:140 +msgid "Password encryption algorithm" +msgstr "Passwort-Verschlüsselungsalgorithmus" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Speichern" +#: setup/setup_config1.tpl:151 +msgid "Password restrictions" +msgstr "Passwort-Einschränkungen" -#: setup/class_setupStep_Finish.inc:38 -msgid "Write configuration file" -msgstr "Schreibe Konfigurationsdatei" +#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 +msgid "Password minimum length" +msgstr "Minimale Passwortlänge" -#: setup/class_setupStep_Finish.inc:39 -msgid "Finish - write the configuration file" -msgstr "Abschluß - Schreiben der Konfigurationsdatei" +#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 +msgid "Different characters from old password" +msgstr "Verschiedene Zeichen vom vorherigen Kennwort" -#: setup/class_setupStep_Finish.inc:101 -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!" +#: setup/setup_config1.tpl:182 +msgid "Password change hook" +msgstr "Hook für Passwort-Änderung" -#: setup/class_setupStep_Finish.inc:103 -msgid "The configuration is currently not readable or it does not exists." -msgstr "Die Konfiguration ist momentan nicht lesbar oder existiert nicht." +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "Verwende SASL für Kerberos." -#: setup/class_setupStep_Finish.inc:112 -#, php-format +#: setup/setup_config1.tpl:209 +msgid "Use account expiration" +msgstr "Verwende verfallende Konten" + +#: setup/setup_config1.tpl:221 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:" +"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 "" -"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:" +"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." -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 -msgid "License" -msgstr "Lizenz" +#: 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." -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" -msgstr "Bedingungen und Auflagen für den Gebrauch" +#: 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." -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 -msgid "Language setup" -msgstr "Sprachauswahl" +#: 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." -#: 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." +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 +msgid "Setup error" +msgstr "Einrichtungsfehler" -#: setup/class_setupStep_Language.inc:47 -msgid "Automatic" -msgstr "Automatisch" +#: setup/class_setup.inc:197 +msgid "Completed" +msgstr "Abgeschlossen" #: setup/class_setupStep_Feedback.inc:92 msgid "UNIX accounts/groups" @@ -4276,10 +4150,6 @@ msgstr "Benachrichtigung und Rückmeldung" msgid "Get notifications or send feedback" msgstr "Erhalte Benachrichtungen oder sende Rückmeldung" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -msgid "Setup error" -msgstr "Einrichtungsfehler" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" @@ -4310,1552 +4180,1713 @@ msgstr "" "Sie müssen mindestens eine der beiden Optionen auswählen, Abonnement der " "Mailingliste oder Senden einer Rückmeldung." -#: setup/class_setup.inc:197 -msgid "Completed" -msgstr "Abgeschlossen" - -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -msgid "Next" -msgstr "Vor" - -#: setup/setup_finish.tpl:3 -msgid "Create your configuration file" -msgstr "Erzeugen Ihrer Konfigurationsdatei" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" +msgstr "Abonnieren der GOsa-Announce Mailingliste" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "Konfiguration herunterladen" +#: 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." -#: setup/setup_finish.tpl:18 -msgid "Status: " -msgstr "Status: " +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "Mail-Adresse" -#: 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" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "Sende Feedback an das GOsa Projektteam." -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Suchen" +#: 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 "" +"Bei Auswahl dieser Option wird GOsa versuchen, sich zu http://oss.gonicus.de " +"zu verbinden, um Ihr Formular anonym abzusenden." -#: setup/setup_ldap.tpl:25 -msgid "LDAP connection" -msgstr "LDAP-Verbindung" +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" +msgstr "Hat Ihnen die Setup-Prozedur weitergeholfen?" -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Name des Standortes:" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" +msgstr "Falls nicht, welche Probleme sind Ihnen aufgefallen" -#: setup/setup_ldap.tpl:37 -msgid "Connection URL" -msgstr "Verbindungs-URL" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" +msgstr "Ist dies die erstmalige Verwendung von GOsa?" -#: setup/setup_ldap.tpl:45 -msgid "TLS connection" -msgstr "TLS-Verbindung" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" +msgstr "Ich verwende es seit" -#: setup/setup_ldap.tpl:65 -msgid "Reload" -msgstr "Neu laden" +#: 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" -#: setup/setup_ldap.tpl:69 -msgid "Authentication" -msgstr "Authentisierung" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" +msgstr "Welches Betriebssystem / welche Distribution verwenden Sie?" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "Administrator-DN:" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" +msgstr "Welchen Webserver verwenden Sie?" -#: setup/setup_ldap.tpl:78 -msgid "Select user" -msgstr "Benutzer wählen" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "Welche PHP-Version verwenden Sie?" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" -msgstr "Automatisch die LDAP-Basis an die Admin DN anhängen" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" +msgstr "LDAP" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Administrator-Passwort:" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" +msgstr "Welche(n) LDAP-Server verwenden Sie?" -#: setup/setup_ldap.tpl:101 -msgid "Schema based settings" -msgstr "Schema-basierte Einstellungen" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" +msgstr "Wie viele Objekte befinden sich in Ihrem LDAP-Verzeichnis?" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" -msgstr "Verwende rfc2307bis-konforme Gruppen" +#: setup/setup_feedback.tpl:123 +msgid "Features" +msgstr "Fähigkeiten" -#: setup/setup_ldap.tpl:117 -msgid "Current status" -msgstr "Momentaner Status" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "Welche Funktionen von GOsa verwenden Sie?" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 -msgid "GOsa settings 1/3" -msgstr "GOsa-Einstellungen 1/3" +#: 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?" -#: setup/class_setupStep_Config1.inc:76 -msgid "GOsa generic settings" -msgstr "Allgemeine GOsa-Einstellungen" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" +msgstr "Feedback senden" -#: setup/class_setupStep_Config1.inc:118 +#: include/class_SnapShotDialog.inc:90 #, php-format -msgid "The specified value for '%s' must be a numeric value" -msgstr "Der angegebene Wert für '%s' muss numerisch sein." +msgid "You're about to delete the snapshot '%s'." +msgstr "Sie sind dabei den Snapshot '%s' zu entfernen." -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" -msgstr "GID / UID min id" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "Abzug wiederherstellen" -#: 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_SnapShotDialog.inc:145 +msgid "Remove snapshot" +msgstr "Snapshot entfernen." -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "Ablage-OU für Benutzer:" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" +msgstr "Y-m-d, H:i:s" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "Ablage-OU für Gruppen:" +#: include/class_plugin.inc:497 +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!" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" -msgstr "Der Wert für 'UID Base' muss numerisch sein" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, 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." -#: 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_plugin.inc:1527 +#, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s zu erstellen." -#: 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_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "Ihnen ist es nicht erlaubt, einen Snapshot für %s wiederherzustellen." -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -msgid "GOsa settings 2/3" -msgstr "GOsa-Einstellungen 2/3" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" +msgstr "Ändere ACL dn" -#: setup/class_setupStep_Config2.inc:88 -msgid "Customize special parameters" -msgstr "Anpassen von Spezialparametern" +#: include/class_plugin.inc:1786 +msgid "from" +msgstr "von" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" -msgstr "Ich habe die Lizenz gelesen und akzeptiere diese" +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +msgid "Restore" +msgstr "Wiederherstellen" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -msgid "LDAP inspection" -msgstr "LDAP-Inspektion" +#: include/class_plugin.inc:1994 +msgid "Create snapshot" +msgstr "Snapshot erstellen" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "Untersuche Ihr LDAP-Verzeichnis auf GOsa-Kompatibilität" +#: include/class_plugin.inc:1995 +msgid "Create a new snapshot from this object" +msgstr "Erstelle einen neuen Snapshot dieses Objekts" -#: setup/class_setupStep_Migrate.inc:114 -msgid "Checking for root object" -msgstr "Prüfe auf Wurzelobjekt" +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "Ausschneiden" -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "Prüfe Berechtigungen auf die LDAP-Datenbank" +#: include/class_plugin.inc:2013 +msgid "Cut this entry" +msgstr "Diesen Eintrag ausschneiden" -#: setup/class_setupStep_Migrate.inc:126 -msgid "Checking for invisible departments" -msgstr "Prüfe auf unsichtbare Abteilungen" +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "Kopieren" -#: setup/class_setupStep_Migrate.inc:131 -msgid "Checking for invisible users" -msgstr "Prüfe auf unsichtbare Benutzer" +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "Diesen Eintrag kopieren" -#: setup/class_setupStep_Migrate.inc:137 -msgid "Checking for super administrator" -msgstr "Prüfe auf Superadministrator" +#: include/class_plugin.inc:2055 +msgid "Copy" +msgstr "Kopieren" -#: setup/class_setupStep_Migrate.inc:143 -msgid "Checking for users outside the people tree" -msgstr "Prüfe auf Benutzer ausserhalb des Benutzerbaums" +#: include/class_plugin.inc:2059 +msgid "Cut" +msgstr "Ausschneiden" -#: setup/class_setupStep_Migrate.inc:149 -msgid "Checking for groups outside the groups tree" -msgstr "Prüfe auf Gruppen ausserhalb des Gruppenbaums" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "Einfügen" -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" -msgstr "Prüfe auf Windows-Arbeitsstationen ausserhalb des Winstation-Baums" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, php-format +msgid "Copy and paste failed!" +msgstr "Kopieren & Einfügen ist fehlgeschlagen!" -#: setup/class_setupStep_Migrate.inc:162 -msgid "Checking for duplicated UID numbers" -msgstr "Prüfe auf doppelte UID Nummern" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, php-format +msgid "Cannot set permission for '%s'" +msgstr "Kann Berechtigungen für '%s' nicht setzen" -#: setup/class_setupStep_Migrate.inc:168 -msgid "Checking for duplicate GID numbers" -msgstr "Prüfe auf doppelte GID Nummern" +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" +msgstr "'%s' ist kein gültiges LDAP-Objekt" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 -msgid "LDAP query failed" -msgstr "LDAP-Abfrage fehlgeschlagen." +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +msgid "Internal error" +msgstr "Interner Fehler" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "Wahrscheinlich fehlt das Wurzelobjekt." +#: include/class_CopyPasteHandler.inc:175 +#, php-format +msgid "No write permission in '%s'" +msgstr "Keine Schreibberechtigung in '%s'" -#: setup/class_setupStep_Migrate.inc:217 +#: include/class_CopyPasteHandler.inc:386 #, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Es wurden %s doppelte Werte für das Attribute 'uidNumber' gefunden." +msgid "These objects will be pasted: %s" +msgstr "Diese Objekte werden eingefügt: %s" -#: setup/class_setupStep_Migrate.inc:269 +#: include/class_CopyPasteHandler.inc:410 #, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Es wurden %s doppelte Werte für das Attribute 'gidNumber' gefunden." +msgid "This object will be pasted: %s" +msgstr "Dieses Objekt wird eingefügt: %s" -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Fehlgeschlagen" +#: include/class_CopyPasteHandler.inc:508 +msgid "Cannot paste" +msgstr "Kann nicht einfügen" -#: setup/class_setupStep_Migrate.inc:329 +#: include/utils/class_msgPool.inc:15 #, 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." +msgid "Select to list objects of type '%s'." +msgstr "Auswählen um Objekte des Typs '%s' aufzulisten." -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 -msgid "Migrate" -msgstr "Migrieren" +#: include/utils/class_msgPool.inc:17 +#, php-format +msgid "Select to list objects containig '%s'." +msgstr "Wählen Sie dies um Objekte aufzulisten die '%s' enthalten." -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:19 #, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "" -"Es wurden %s Gruppen ausserhalb des konfigurierten Baums '%s' gefunden." +msgid "Select to list objects that have '%s' enabled" +msgstr "Auswählen um Objekte des Typs '%s' aufzulisten" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -msgid "Move" -msgstr "Verschieben" +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" +msgstr "Dieses objekt wird gelöscht!" -#: setup/class_setupStep_Migrate.inc:479 +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "Found %s user(s) outside the configured tree '%s'." -msgstr "" -"Es wurde(n) %s Benutzer ausserhalb des konfigurierten Baums '%s' gefunden." +msgid "This '%s' object will be deleted!" +msgstr "Dieses '%s'-Objekt wird gelöscht!" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:40 #, php-format -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." +msgid "This object will be deleted: %s" +msgstr "Dieses Objekt wird gelöscht: %s" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:42 #, 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." +msgid "This '%s' object will be deleted: %s" +msgstr "Dieses '%s'-Objekt wird gelöscht: %s" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -msgid "Migration error" -msgstr "Migrationsfehler" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "Dieses Objekt wird gelöscht:" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Cannot migrate department '%s':" -msgstr "Die Abteilung '%s' kann nicht migriert werden:" +msgid "This '%s' object will be deleted:" +msgstr "Dieses '%s'-Objekt wird gelöscht:" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:53 #, 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." - -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." -msgstr "Es gibt keinen GOsa Administrator in Ihrem LDAP." +msgid "These objects will be deleted: %s" +msgstr "Diese Objekte werden gelöscht: %s" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:55 #, php-format -msgid "Cannot add ACL for user '%s':" -msgstr "Kann ACL für Benutzer '%s' nicht hinzufügen:" +msgid "These '%s' objects will be deleted: %s" +msgstr "Diese '%s'-Objekte werden gelöscht: %s" -#: setup/class_setupStep_Migrate.inc:1004 -msgid "Password error" -msgstr "Passwortfehler" +#: include/utils/class_msgPool.inc:63 +msgid "You have no permission to delete this object!" +msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen!" -#: setup/class_setupStep_Migrate.inc:1004 -msgid "Provided passwords do not match!" -msgstr "Die angegebenen Passwörter stimmen nicht überein!" +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 +msgid "You have no permission to delete the object:" +msgstr "Sie sind nicht berechtigt dieses Objekt zu löschen:" -#: setup/class_setupStep_Migrate.inc:1009 -msgid "Input error" -msgstr "Eingabefehler" +#: include/utils/class_msgPool.inc:74 +msgid "You have no permission to delete these objects:" +msgstr "Sie sind nicht berechtigt dieses Objekte zu löschen:" -#: setup/class_setupStep_Migrate.inc:1009 -msgid "Specify a valid user ID!" -msgstr "Geben Sie eine gültige Benutzer ID an!" +#: include/utils/class_msgPool.inc:81 +msgid "You have no permission to create this object!" +msgstr "Sie sind nicht berechtigt diese Objekt anzulegen!" -#: setup/class_setupStep_Migrate.inc:1051 -#, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "" -"Hinzufügen eines administrativen Benutzers fehlgeschlagen: Objekt '%s' " -"existiert bereits!" +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +msgid "You have no permission to create the object:" +msgstr "Sie sind nicht berechtigt dieses Objekt anzulegen:" -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -msgid "Cannot move users to the requested department!" -msgstr "Kann Benutzer nicht in die geforderte Abteilung verschieben!" +#: include/utils/class_msgPool.inc:92 +msgid "You have no permission to create these objects:" +msgstr "Sie sind nicht berechtigt diese Objekte anzulegen:" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "Die Windows-Arbeitsstation wird verschoben von" +#: include/utils/class_msgPool.inc:99 +msgid "You have no permission to modify this object!" +msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern!" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "Aktualisiere ebenfalls die folgenden Referenzen" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +msgid "You have no permission to modify the object:" +msgstr "Sie sind nicht berechtigt dieses Objekt zu verändern:" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "Die Gruppe wird verschoben von" +#: include/utils/class_msgPool.inc:110 +msgid "You have no permission to modify these objects:" +msgstr "Sie sind nicht berechtigt diese Objekte zu verändern:" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" -msgstr "Der Benutzer wird verschoben von" +#: include/utils/class_msgPool.inc:117 +msgid "You have no permission to view this object!" +msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen!" + +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +msgid "You have no permission to view the object:" +msgstr "Sie sind nicht berechtigt dieses Objekt zu öffnen:" + +#: include/utils/class_msgPool.inc:128 +msgid "You have no permission to view these objects:" +msgstr "Sie sind nicht berechtigt diese Objekte zu öffnen:" + +#: include/utils/class_msgPool.inc:135 +msgid "You have no permission to move this object!" +msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben!" + +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +msgid "You have no permission to move the object:" +msgstr "Sie sind nicht berechtigt dieses Objekt zu verschieben:" + +#: include/utils/class_msgPool.inc:146 +msgid "You have no permission to move these objects:" +msgstr "Sie sind nicht berechtigt diese Objekte zu verschieben:" + +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +msgid "Connection information" +msgstr "Verbindungs-Information" + +#: include/utils/class_msgPool.inc:158 +#, php-format +msgid "Cannot connect to %s database!" +msgstr "Kann keine Verbindung zur %s Datenbank aufbauen!" + +#: include/utils/class_msgPool.inc:170 +#, php-format +msgid "Cannot select %s database!" +msgstr "Kann die Datenbank %s nicht auswählen!" + +#: include/utils/class_msgPool.inc:176 +#, php-format +msgid "No %s server defined!" +msgstr "Kein %s Server definiert!" + +#: include/utils/class_msgPool.inc:188 +#, php-format +msgid "Cannot query %s database!" +msgstr "Kann die Datenbank %s nicht abfragen!" -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" -msgstr "Die folgenden Referenzen werden aktualisiert" +#: include/utils/class_msgPool.inc:194 +#, php-format +msgid "The field '%s' contains a reserved keyword!" +msgstr "Das Feld '%s' enthält ein reserviertes Schlüsselwort!" -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." +#: include/utils/class_msgPool.inc:200 +#, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -"Das LDAP Wurzelobjekt fehlt. Es wird für den Betrieb des LDAP-Dienstes " -"benötigt." +"Das als '%s'-Erweiterung angegebene Kommando für Modul '%s' existiert nicht!" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -msgid "Try to create root object" -msgstr "Versuche, das Wurzelobjekt zu erzeugen" +#: include/utils/class_msgPool.inc:207 +#, php-format +msgid "'%s' command is invalid!" +msgstr "'%s'-Kommando ist ungültig!" -#: setup/class_setupStep_Migrate.inc:1664 -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." +#: include/utils/class_msgPool.inc:209 +#, php-format +msgid "'%s' command (%s) for plugin %s is invalid!" +msgstr "'%s' Kommando (%s) für Modul %s ist ungültig!" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:211 #, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Kopieren von '%s' nach '%s' fehlgeschlagen:" +msgid "'%s' command for plugin %s is invalid!" +msgstr "'%s' Kommando für Modul %s ist ungültig!" -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -msgid "GOsa settings 3/3" -msgstr "GOsa-Einstellungen 3/3" +#: include/utils/class_msgPool.inc:213 +#, php-format +msgid "'%s' command (%s) is invalid!" +msgstr "'%s' Kommando (%s) ist ungültig!" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" -msgstr "Einstellen von grundlegendem GOsa Verhalten" +#: include/utils/class_msgPool.inc:221 +#, php-format +msgid "Cannot execute '%s' command!" +msgstr "Kann '%s' Kommando nicht ausführen!" -#: setup/class_setupStep_Config3.inc:198 -msgid "Session lifetime must be a numeric value!" -msgstr "Lebenszeit der Sitzung muss ein numerischer Wert sein!" +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" +msgstr "Kann '%s' Kommando (%s) für Modul %s nicht ausführen!" -#: setup/class_setupStep_Config3.inc:202 -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Die maximale LDAP-Abfragedauer muß ein numerischer Wert sein!" +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" +msgstr "Kann '%s' Kommando für Modul %s nicht ausführen!" -#: setup/setup_language.tpl:3 -msgid "Please select the preferred language" -msgstr "Bitte wählen Sie Ihre bevorzugte Sprache" +#: include/utils/class_msgPool.inc:227 +#, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "Kann '%s' Kommando (%s) nicht ausführen!" -#: 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." +#: include/utils/class_msgPool.inc:235 +#, php-format +msgid "Value for '%s' is too large!" +msgstr "Der Wert für '%s' ist zu groß!" -#: setup/setup_language.tpl:9 -msgid "Please select your preferred language here" -msgstr "Bitte wählen Sie hier Ihre bevorzugte Sprache" +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" +msgstr "'%s' muß kleiner sein als %d!" -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" -msgstr "Abonnieren der GOsa-Announce Mailingliste" +#: include/utils/class_msgPool.inc:245 +#, php-format +msgid "Value for '%s' is too small!" +msgstr "Der Wert für '%s' ist zu kein!" -#: 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." +#: include/utils/class_msgPool.inc:247 +#, php-format +msgid "'%s' must be %d or above!" +msgstr "'%s' muß größer oder gleich %d sein!" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "Mail-Adresse" +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" +msgstr "'%s' hängt von '%s' ab - bitte geben Sie beide Werte an!" -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" -msgstr "Sende Feedback an das GOsa Projektteam." +#: include/utils/class_msgPool.inc:260 +#, php-format +msgid "There is already an entry with this '%s' attribute in the system!" +msgstr "Es existiert bereits ein Eintrag mit diesem '%s' Attribut im System!" -#: 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 "" -"Bei Auswahl dieser Option wird GOsa versuchen, sich zu http://oss.gonicus.de " -"zu verbinden, um Ihr Formular anonym abzusenden." +#: include/utils/class_msgPool.inc:266 +#, php-format +msgid "The required field '%s' is empty!" +msgstr "Das Pflicht-Feld '%s' ist leer!" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" -msgstr "Hat Ihnen die Setup-Prozedur weitergeholfen?" +#: include/utils/class_msgPool.inc:274 +msgid "Example" +msgstr "Beispiel" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" -msgstr "Falls nicht, welche Probleme sind Ihnen aufgefallen" +#: include/utils/class_msgPool.inc:291 +#, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "Das Feld '%s' enthält ungültige Zeichen" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" -msgstr "Ist dies die erstmalige Verwendung von GOsa?" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" +msgstr "'%s' ist nicht erlaubt:" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "Ich verwende es seit" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' are not allowed!" +msgstr "'%s' sind nicht erlaubt!" -#: 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" +#: include/utils/class_msgPool.inc:295 +#, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "Das Feld '%s' enthält ungültige Zeichen!" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "Welches Betriebssystem / welche Distribution verwenden Sie?" +#: include/utils/class_msgPool.inc:302 +#, php-format +msgid "Missing %s PHP extension!" +msgstr "Fehlenden %s PHP-Erweiterung!" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "Welchen Webserver verwenden Sie?" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Speichern" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "Welche PHP-Version verwenden Sie?" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Hinzufügen" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" -msgstr "LDAP" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add %s" +msgstr "%s hinzufügen" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "Welche(n) LDAP-Server verwenden Sie?" +#: include/utils/class_msgPool.inc:338 +#, php-format +msgid "Delete %s" +msgstr "%s löschen" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "Wie viele Objekte befinden sich in Ihrem LDAP-Verzeichnis?" +#: include/utils/class_msgPool.inc:344 +#, php-format +msgid "Set %s" +msgstr "%s einstellen" -#: setup/setup_feedback.tpl:123 -msgid "Features" -msgstr "Fähigkeiten" +#: include/utils/class_msgPool.inc:350 +#, php-format +msgid "Edit..." +msgstr "Bearbeiten..." -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "Welche Funktionen von GOsa verwenden Sie?" +#: include/utils/class_msgPool.inc:350 +#, php-format +msgid "Edit %s..." +msgstr "%s bearbeiten..." -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Zurück" + +#: include/utils/class_msgPool.inc:375 +#, php-format +msgid "This account has no valid %s extensions!" +msgstr "Dieses Konto besitzt keine gültigen %s-Einstellungen." + +#: include/utils/class_msgPool.inc:381 +#, php-format +msgid "" +"This account has %s settings enabled. You can disable them by clicking below." msgstr "" -"Welche Funktionen würden Sie gerne in zukünftigen Versionen von GOsa sehen?" +"Dieses Konto besitzt aktivierte %s-Einstellungen. Sie können diese durch " +"einen Klick auf die untere Schaltfläche deaktivieren." + +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, php-format +msgid "" +"This account has %s settings enabled. To disable them, you'll need to remove " +"the %s settings first!" +msgstr "" +"Dieses Konto besitzt aktivierte %s-Erweiterungen. Um sie zu deaktivieren, " +"müssen Sie zunächst die %s Einstellungen entfernen!" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" -msgstr "Feedback senden" +#: include/utils/class_msgPool.inc:400 +#, php-format +msgid "" +"This account has %s settings disabled. You can enable them by clicking below." +msgstr "" +"Dieses Konto hat keine %s-Einstellungen aktiviert. Sie können Sie durch " +"einen Klick auf die Schaltfläche aktivieren." -#: setup/class_setupStep_Welcome.inc:38 -msgid "Welcome" -msgstr "Willkommen" +#: include/utils/class_msgPool.inc:403 +#, 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 aktuell keine aktivierten %s-Einstellungen. Um sie zu " +"aktivieren, müssen Sie zunächst die %s Erweiterungen hinzufügen!" -#: setup/class_setupStep_Welcome.inc:39 -msgid "The welcome message" -msgstr "Die Willkommensnachricht" +#: include/utils/class_msgPool.inc:410 +#, 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 %s-Einstellungen. Um sie zu deaktivieren, " +"müssen Sie zunächst die %s Einstellungen deaktivieren!" -#: setup/class_setupStep_Welcome.inc:40 -msgid "Welcome to GOsa setup wizard" -msgstr "Willkommen beim GOsa Einrichtungsassistent" +#: include/utils/class_msgPool.inc:418 +#, php-format +msgid "Add %s settings" +msgstr "%s Einstellungen hinzufügen" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" -msgstr "Aussehen und Verhalten" +#: include/utils/class_msgPool.inc:424 +#, php-format +msgid "Remove %s settings" +msgstr "%s Einstellungen entfernen" -#: setup/setup_config1.tpl:6 -msgid "Theme" -msgstr "Thema" +#: include/utils/class_msgPool.inc:430 +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" -#: setup/setup_config1.tpl:15 -msgid "Apache" -msgstr "Apache" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Januar" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" -msgstr "Sende komprimierte Ausgabe an den Browser" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Februar" -#: setup/setup_config1.tpl:27 -msgid "People and group storage" -msgstr "Ablage für Personen und Gruppen" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "März" -#: setup/setup_config1.tpl:30 -msgid "People DN attribute" -msgstr "DN-Attribut für Personen" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "April" -#: setup/setup_config1.tpl:41 -msgid "People storage subtree" -msgstr "Teilbaum für Benutzerablage" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Mai" -#: setup/setup_config1.tpl:50 -msgid "Group storage subtree" -msgstr "Teilbaum für Gruppenablage" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Juni" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "Persönlichen Titel in der Benutzer-DN mitführen" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Juli" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" -msgstr "Gelockerte Namensvorgaben" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "August" -#: setup/setup_config1.tpl:81 -msgid "Automatic UIDs" -msgstr "Automatische UIDs" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "September" -#: setup/setup_config1.tpl:113 -msgid "Number base for people/groups" -msgstr "Zählbasis für Benutzer/Gruppen" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Oktober" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "Hook für Zählbasis" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "November" -#: setup/setup_config1.tpl:140 -msgid "Password encryption algorithm" -msgstr "Passwort-Verschlüsselungsalgorithmus" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Dezember" -#: setup/setup_config1.tpl:151 -msgid "Password restrictions" -msgstr "Passwort-Einschränkungen" +#: include/utils/class_msgPool.inc:444 +msgid "Sunday" +msgstr "Sonntag" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "Minimale Passwortlänge" +#: include/utils/class_msgPool.inc:444 +msgid "Monday" +msgstr "Montag" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "Verschiedene Zeichen vom vorherigen Kennwort" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" +msgstr "Dienstag" -#: setup/setup_config1.tpl:182 -msgid "Password change hook" -msgstr "Hook für Passwort-Änderung" +#: include/utils/class_msgPool.inc:444 +msgid "Wednesday" +msgstr "Mittwoch" -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "Verwende SASL für Kerberos." +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" +msgstr "Donnerstag" -#: setup/setup_config1.tpl:209 -msgid "Use account expiration" -msgstr "Verwende verfallende Konten" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" +msgstr "Freitag" -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" +msgstr "Samstag" -#: 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." +#: include/utils/class_msgPool.inc:451 +msgid "read operation" +msgstr "Lese-Operation" -#: 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." +#: include/utils/class_msgPool.inc:451 +msgid "add operation" +msgstr "Hinzufügeoperation" -#: 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." +#: include/utils/class_msgPool.inc:451 +msgid "modify operation" +msgstr "Änderungs-Operation" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Samba-Einstellungen" +#: include/utils/class_msgPool.inc:452 +msgid "delete operation" +msgstr "Lösch-Operation" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" -msgstr "Samba Hash-Generator" +#: include/utils/class_msgPool.inc:452 +msgid "search operation" +msgstr "Such-Operation" -#: setup/setup_config2.tpl:31 -msgid "RID base" -msgstr "RID Basis" +#: include/utils/class_msgPool.inc:452 +msgid "authentication" +msgstr "Authentifizierung" -#: setup/setup_config2.tpl:46 -msgid "Workstation container" -msgstr "Container für Arbeitsstationen" +#: include/utils/class_msgPool.inc:455 +#, php-format +msgid "LDAP %s failed!" +msgstr "LDAP %s fehlgeschlagen!" -#: setup/setup_config2.tpl:61 -msgid "Samba SID mapping" -msgstr "Samba SID Abbildung" +#: include/utils/class_msgPool.inc:457 +msgid "LDAP operation failed!" +msgstr "LDAP-Operation fehlgeschlagen" -#: setup/setup_config2.tpl:71 -msgid "Timezone" -msgstr "Zeitzone" +#: include/utils/class_msgPool.inc:472 +msgid "Upload failed!" +msgstr "Übertragung fehlgeschlagen!" -#: setup/setup_config2.tpl:74 -msgid "Please choose your preferred timezone here" -msgstr "Bitte wählen Sie hier Ihre bevorzugte Zeitzone" +#: include/utils/class_msgPool.inc:475 +#, php-format +msgid "Upload failed: %s" +msgstr "Übertragung fehlgeschlagen: %s" -#: setup/setup_config2.tpl:96 -msgid "Additional GOsa settings" -msgstr "Zusätzliche GOsa-Einstellungen" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst!" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" -msgstr "Ermögliche Kopieren & Einfügen" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" +msgstr "Kommunikationsfehler mit dem Infrastruktur Dienst: %s" -#: setup/setup_config2.tpl:112 -msgid "Enable DNS extension" -msgstr "Aktiviere DNS-Erweiterung" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" +msgstr "Dieses '%s' ist noch in Gebrauch dieses Objekts: %s" -#: setup/setup_config2.tpl:124 -msgid "Enable DHCP extension" -msgstr "Aktiviere DHCP-Erweiterung" +#: include/utils/class_msgPool.inc:497 +#, php-format +msgid "This '%s' is still in use." +msgstr "Dieses '%s' ist noch in Benutzung." -#: setup/setup_config2.tpl:136 -msgid "Enable mime type management" -msgstr "Aktiviere MIME-Typen Verwaltung" +#: include/utils/class_msgPool.inc:499 +#, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "Dieses '%s' ist noch in Gebrauch dieser Objekte: %s" -#: setup/setup_config2.tpl:148 -msgid "Enable FAI release management" -msgstr "Aktiviere FAI Release-Verwaltung" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" +msgstr "Die Datei '%s' existiert nicht!" -#: setup/setup_config2.tpl:160 -msgid "Enable user netatalk plugin" -msgstr "Aktiviere Netatalk-Erweiterung für Benutzer" +#: include/utils/class_msgPool.inc:511 +#, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Kann Datei '%s' nicht zum Lesen öffnen!" -#: setup/setup_config2.tpl:171 -msgid "Government mode" -msgstr "Behörden-Modus" +#: include/utils/class_msgPool.inc:517 +#, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Kann Datei '%s' nicht zum Schreiben öffnen!" -#: setup/setup_config2.tpl:182 -msgid "Logging options" -msgstr "Protokollierungs-Optionen" +#: include/utils/class_msgPool.inc:523 +#, php-format +msgid "Cannot delete file '%s'!" +msgstr "Kann Datei '%s' nicht löschen!" -#: setup/setup_config2.tpl:186 -msgid "Syslog" -msgstr "Syslog" +#: include/utils/class_msgPool.inc:529 +#, php-format +msgid "Cannot create folder '%s'!" +msgstr "Kann den Ordner '%s' nicht anlegen!" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -msgid "MySQL" -msgstr "MySQL" +#: include/utils/class_msgPool.inc:535 +#, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Kann den Ordner '%s' nicht löschen!" -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "Mail-Einstellungen" +#: include/utils/class_msgPool.inc:541 +#, php-format +msgid "Checking for %s support" +msgstr "Prüfe auf %s-Unterstützung" -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "Zustellungs-Methode" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." +msgstr "Installieren und aktivieren Sie das %s PHP-Modul." -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" -msgstr "Attribut für Kontoidentifikation" +#: 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." -#: setup/setup_config2.tpl:227 -msgid "Vacation templates" -msgstr "Urlaubsvorlagen" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." +msgstr "Bitte beheben Sie obigen Fehler und laden die Seite neu." -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" -msgstr "Verwenden Cyrus UNIX-Stil" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Gehe zur Wurzel-Abteilung" -#: setup/setup_config2.tpl:253 -msgid "Snapshots / Undo" -msgstr "Snapshots / Rückgängig" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Wurzel" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -msgid "Enable snapshots" -msgstr "Snapshots ermöglichen" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Eine Abteilung nach oben" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -msgid "Snapshot base" -msgstr "Basis für Snapshots" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Gehe zur Abteilung des Benutzers" -#: setup/setup_config3.tpl:2 -msgid "GOsa core settings" -msgstr "GOsa-Grundeinstellungen" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Heimat" -#: setup/setup_config3.tpl:6 -msgid "Disable primary group filter" -msgstr "Abschalten des Filters für primäre Gruppen" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "Liste neu laden" -#: setup/setup_config3.tpl:18 -msgid "Display summary in listings" -msgstr "Zeige Zusammenfassung in Listen" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" +msgstr "Inkonsistente Enkodierung der DN erkannt: '%s'" -#: setup/setup_config3.tpl:30 -msgid "Honour administrative units" -msgstr "Beachte administrative Einheiten" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" +"Das mcrypt-Modul wurde nicht gefunden. Bitte installieren Sie php5-mcrypt." -#: setup/setup_config3.tpl:42 -msgid "Smarty compile directory" -msgstr "Smarty Arbeitsverzeichnis" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" +msgstr "Die Socket-Verbindung zum Host '%s:%s' ist fehlgeschlagen: %s" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" -msgstr "SNMP Gemeinschaft" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "Socket-Timeout von %s Sekunden erreicht." -#: setup/setup_config3.tpl:60 -msgid "Path for PPD storage" -msgstr "Pfad für PPD-Ablage" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" +msgstr "Leistungswarnung" -#: setup/setup_config3.tpl:77 -msgid "Path for kiosk profile storage" -msgstr "Pfad für Kioskprofil-Ablage" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, 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_config3.tpl:96 -msgid "Override sudo role ou" -msgstr "Sudo-Rolle ignorieren" +#: include/class_ldap.inc:636 +#, 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_config3.tpl:115 -msgid "Mail queue script" -msgstr "Mail-Queue Skript" +#: include/class_ldap.inc:684 +#, 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_config3.tpl:134 -msgid "Notification script" -msgstr "Benachrichtigungsskript" +#: include/class_ldap.inc:768 +#, 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_config3.tpl:153 -msgid "Enable edit locking" -msgstr "Aktiviere Bearbeitungssperre" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" +msgstr "während der Arbeit auf LDAP-Server '%s'" -#: setup/setup_config3.tpl:172 -msgid "Login and session" -msgstr "Anmeldung und Sitzung" +#: include/class_ldap.inc:992 +#, 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_config3.tpl:175 -msgid "Login attribute" -msgstr "Anmeldeattribut" +#: include/class_ldap.inc:1021 +#, 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_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" -msgstr "Erzwinge das Deaktivieren von register_globals" +#: include/class_config.inc:107 +#, 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/setup_config3.tpl:198 -msgid "Enforce encrypted connections" -msgstr "Erzwinge verschlüsselte Verbindungen" +#: include/class_config.inc:242 +msgid "Cannot bind to LDAP. Please contact the system administrator." +msgstr "" +"Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den " +"Administrator." -#: setup/setup_config3.tpl:210 -msgid "Warn if session is not encrypted" -msgstr "Warnen wenn die Sitzung nicht verschlüsselt ist" +#: include/class_config.inc:574 +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "SID und/oder RIDBASE fehlen in der Konfiguration!" -#: setup/setup_config3.tpl:222 -msgid "Remember dialog filter settings" -msgstr "Merken der Dialogfilter-Einstellungen" +#: include/class_config.inc:878 +msgid "Configuration" +msgstr "Konfiguration" -#: setup/setup_config3.tpl:234 -msgid "Session lifetime" -msgstr "Lebenszeit der Sitzung" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." +msgstr "" +"Die von Ihnen verwendete Konfigurationsdatei scheint veraltet zu sein. Bitte " +"entfernen Sie diese Datei und starten Sie das GOsa-Setup." -#: setup/setup_config3.tpl:243 -msgid "Debugging" -msgstr "Debugging" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" +msgstr "" +"Es konnte keine passende Passwort-Methode für den aktuellen Hash gefunden " +"werden!" -#: setup/setup_config3.tpl:247 -msgid "Show PHP errors" -msgstr "Zeige PHP Fehler" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" +msgstr "GOsa support daemon" -#: setup/setup_config3.tpl:259 -msgid "Maximum LDAP query time" -msgstr "Maximale LDAP Abfragedauer" +#: include/class_gosaSupportDaemon.inc:851 +msgid "Cannot not parse XML!" +msgstr "XML-Nachricht kann nicht ausgewertet werden!" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" -msgstr "Protokolliere LDAP-Statistiken" +#: include/class_gosaSupportDaemon.inc:1177 +#, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Kann keine Abbruch-Nachricht für den Eintrag %s versenden!" -#: setup/setup_config3.tpl:289 -msgid "Debug level" -msgstr "Debug Level" +#: include/class_gosaSupportDaemon.inc:1197 +#, php-format +msgid "Cannot remove entry %s!" +msgstr "Kann Eintrag %s nicht entfernen!" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -msgid "Disabled" -msgstr "Deaktiviert" +#: include/class_multi_plug.inc:362 +msgid "You are currently editing mutliple entries." +msgstr "Sie bearbeiten momentan mehrere Einträge." -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 -msgid "Enabled" -msgstr "Aktiviert" +#: include/class_multi_plug.inc:391 +msgid "Password reset" +msgstr "Passwort Rücksetzung" -#: 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." +#: 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:33 -msgid "Check again" -msgstr "Erneut prüfen" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" +msgstr "Der Lösch-Vorgang wurde durch das plugin '%s' beendet: %s" -#: 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_tabs.inc:373 +msgid "References" +msgstr "Referenzen" -#: 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" +#: include/class_baseSelectDialog.inc:44 +msgid "Choose a base" +msgstr "Wählen Sie eine Basis" -#: setup/setup_migrate.tpl:41 +#: include/class_baseSelectDialog.inc:55 msgid "" -"Be careful with this tool, there may be references pointing to this " -"workstations that can't be migrated." +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -"Seien Sie vorsichtig mit diesem Werkzeug, es könnte Referenzen geben, die " -"auf diese Arbeitsstationen zeigen, die nicht migriert werden können." +"Navigieren Sie in den gewünschten Baum und drücken Sie 'Speichern' um diesen " +"Teilbaum aus Basis zu verwenden. Oder drücken Sie auf das Icon, das sich am " +"Ende jedes Eintrags befindet." -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" -msgstr "" -"Verschiebe die ausgewählten Windows-Arbeitsstationen in die folgende GOsa-" -"Abteilung" +#: include/class_baseSelectDialog.inc:61 +msgid "Use" +msgstr "Verwenden" -#: setup/setup_migrate.tpl:72 -msgid "Move selected workstations" -msgstr "Die gewählten Arbeitsstationen verschieben" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Aktion" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "Was wird hier durchgeführt" +#: include/class_baseSelectDialog.inc:72 +msgid "Filter entries with this syntax" +msgstr "Filtere Einträge mit dieser Syntax" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "Verschiebe Gruppen in den konfigurierten Gruppenbaum" +#: include/class_baseSelectDialog.inc:136 +#, php-format +msgid "Select this base" +msgstr "Diese Basis auswählen" -#: 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/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: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/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:94 -msgid "Move selected groups into this group tree" -msgstr "Verschiebe die ausgewählten Gruppen in diesen Gruppenbaum" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" +msgstr "Vorherige" -#: 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/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" +msgstr "Nächste" -#: 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/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:140 -msgid "Move users into configured user tree" -msgstr "Verschiebe Benutzer in den konfigurierten Benutzerbaum" +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" +msgstr "%s%% Trefferquote in Datei %s" -#: 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." +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" msgstr "" -"Dieser Dialol ermöglicht Ihnen das Verschieben einer Zahl von Nutzern in den " -"konfigurierten Benutzerbaum. Dies kann Ihren LDAP-Dienst aufräumen." +"Der PHP-Interpreter meldete einen oder mehrere Fehler beim Erzeugen dieser " +"Seite!" -#: 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/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" +msgstr "Sende Fehlerbericht an das GOsa Team" -#: setup/setup_migrate.tpl:148 -msgid "Move selected users into this people tree" -msgstr "Verschiebe die ausgewählten Benutzer in diesen Benutzerbaum" +#: include/php_setup.inc:100 +msgid "Send bugreport" +msgstr "Fehlerbericht senden" -#: setup/setup_migrate.tpl:199 -msgid "Abort" -msgstr "Abbrechen" +#: include/php_setup.inc:105 +msgid "Toggle information" +msgstr "Zeige/Verstecke Informationen" -#: setup/setup_migrate.tpl:201 -msgid "Create a new GOsa administrator account" -msgstr "Erzeuge ein neues GOsa Administratorkonto" +#: include/php_setup.inc:115 +msgid "PHP error" +msgstr "PHP Fehler" -#: 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/php_setup.inc:134 +msgid "class" +msgstr "Klasse" + +#: include/php_setup.inc:140 +msgid "function" +msgstr "Funktion" -#: setup/setup_migrate.tpl:233 -msgid "Password (again)" -msgstr "Passwort (erneut)" +#: include/php_setup.inc:145 +msgid "static" +msgstr "statisch" -#: 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." +#: include/php_setup.inc:149 +msgid "method" +msgstr "Methode" -#: 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/php_setup.inc:182 +msgid "Trace" +msgstr "Ablaufverfolgung" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -msgid "Current" -msgstr "Aktuell" +#: include/php_setup.inc:183 +msgid "File" +msgstr "Datei" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -msgid "After migration" -msgstr "Nach der Migration" +#: include/php_setup.inc:183 +msgid "Line" +msgstr "Zeile" -#: 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/php_setup.inc:183 +msgid "Type" +msgstr "Typ" -#: setup/setup_frame.tpl:12 -msgid "GOsa setup wizard" -msgstr "GOsa Einrichtungsassistent" +#: include/php_setup.inc:184 +msgid "Arguments" +msgstr "Argumente" -#: setup/setup_frame.tpl:19 -msgid "Installation" -msgstr "Installation" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" +msgstr "Keine Objekte dieser Kategorie" -#: setup/setup_frame.tpl:19 -msgid "Steps" -msgstr "Schritte" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" +msgstr "" +"Das Konfigurationsformat hat sich geändert. Bitte durchlaufen Sie erneut die " +"Einrichtung!" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -msgid "LDAP schema check" -msgstr "LDAP Schemaprüfung" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" +msgstr "Unbekannt" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" -msgstr "Führe Test auf Ihrem aktuellen LDAP Schema durch" +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +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?" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" -msgstr "Installationsprüfung" +#: include/class_log.inc:88 +#, php-format +msgid "Logging failed: %s" +msgstr "Protokollieren fehlgeschlagen: %s" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" -msgstr "Grundlegende Überprüfungen der PHP-Version und Erweiterungen." +#: include/class_log.inc:107 +msgid "MySQL error" +msgstr "MySQL-Fehler" -#: setup/class_setupStep_Checks.inc:64 -msgid "Checking PHP version" -msgstr "Prüfe PHP-Version" +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" +msgstr "" +"Protokollierung in die MySQL-Datenkbank wird für diese Sitzung abgeschaltet!" -#: setup/class_setupStep_Checks.inc:65 +#: include/class_log.inc:120 #, php-format -msgid "PHP must be of version %s or above." -msgstr "PHP muß in Version %s oder höher vorliegen." - -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." -msgstr "Bitte aktualisieren Sie auf eine unterstützte Version." +msgid "Invalid option '%s' specified!" +msgstr "Ungültige Option '%s' angegeben!" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." -msgstr "GOsa benötigt dieses Modul für die Kommunikation mit dem LDAP-Server." +#: include/class_log.inc:124 +msgid "Specified objectType is empty or invalid!" +msgstr "Der angegebene Objekt-Typ ist leer oder ungültig!" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." -msgstr "GOsa benötigt dieses Modul für eine lokalisierte Oberfläche." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" +msgstr "MySQL Protokollierung" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." -msgstr "GOsa benötigt dieses Modul für die Samba-Einbindung." +#: include/class_log.inc:205 +#, php-format +msgid "Cannot add location to the database!" +msgstr "Kann Standort nicht in die Datenbank einfügen!" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." -msgstr "GOsa benötigt dieses Modul um die SSHA-Verschlüsselung zu verwenden." +#: include/functions.inc:118 +#, 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_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/functions.inc:125 +#, php-format +msgid "" +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -"GOsa benötigt dieses Modul für die Kommunikation mit einem IMAP-Server." +"Schwerer Fehler: Kann Klasse '%s' nicht instanziieren - bitte führen Sie '%" +"s' aus um das Problem zu beheben" -#: setup/class_setupStep_Checks.inc:112 -msgid "mbstring" -msgstr "mbstring" +#: include/functions.inc:335 +#, 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'." -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." -msgstr "GOsa benötigt dieses Modul um Unicode-Zeichenketten zu verarbeiten." +#: include/functions.inc:397 +msgid "Username / UID is not unique inside the LDAP tree!" +msgstr "Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum." -#: setup/class_setupStep_Checks.inc:121 +#: include/functions.inc:467 msgid "" -"GOsa requires this module to communicate with several supported databases." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -"GOsa benötigt dieses Modul, um mit verschiedenen unterstützten Datenbanken " -"zu kommunizieren." +"Der Benutzername / die UID ist nicht eindeutig für den LDAP-Baum. Bitte " +"kontaktieren Sie Ihren Administrator." -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" -msgstr "CUPS" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" +msgstr "" +"Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!" -#: setup/class_setupStep_Checks.inc:129 +#: include/functions.inc:622 +#, php-format msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" msgstr "" -"GOsa benötigt dieses Modul um Drucker anzuzeigen die nicht innerhalb Ihrer " -"LDAP-Datenbank definiert sind." +"Kann Sperrinformation für LDAP-Baum nicht erzeugen. Bitte kontaktieren Sie " +"Ihren Administrator!" -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" -msgstr "Samba Hash-Generator" +#: include/functions.inc:622 +#, php-format +msgid "LDAP server returned: %s" +msgstr "Der LDAP-Server meldete: %s" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:716 +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." msgstr "" -"GOsa benötigt dieses Kommando für den Abgleich der POSIX und Samba-" -"Passwörter." +"Mehrere Sperren für das zu sperrende Objekt gefunden. Dies sollte nicht " +"passieren - räume mehrere Referenzen auf." -#: setup/class_setupStep_Checks.inc:148 +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!" + +#: include/functions.inc:1015 +#, php-format msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" msgstr "" -"Nutzen Sie eine GOsa-SI-Installation oder installieren Sie das Perl-Modul " -"Crypt::SmbHash." +"Verwende eine neue Größenbeschränkung von %s Einträgen und zeige diese " +"Meldung bei Überschreitung wieder an" + +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "unvollständig" + +#: include/functions.inc:1311 +msgid "Continue anyway" +msgstr "Trotzdem Fortsetzen" + +#: include/functions.inc:1313 +msgid "Edit anyway" +msgstr "Trotzdem bearbeiten" + +#: include/functions.inc:1315 +#, 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:1499 +msgid "Entries per page" +msgstr "Einträge pro Seite" + +#: include/functions.inc:1527 +msgid "Apply filter" +msgstr "Filter anwenden" + +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "GOsa Entwicklerversion (Rev %s)" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." +msgstr "Die Datei '%s' konnte nicht entfernt werden." + +#: include/functions.inc:1936 include/functions.inc:1956 +msgid "Cannot write to revision file!" +msgstr "Kann nicht in Revisions-Datei schreiben!" -#: setup/class_setupStep_Checks.inc:158 -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." +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" +msgstr "'base_hook' ist nicht verfügbar. Verwende die Standard-Basis!" -#: setup/class_setupStep_Checks.inc:159 -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'." +#: include/functions.inc:2230 +msgid "LDAP warning" +msgstr "LDAP-Warnung" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:2230 +msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -"PHP verwendet diese Einstellungen für den Garbage Collector, um alte " -"Sessions zu entfernen." +"Kann die Schema-Informationen nicht vom Server beziehen. Keine Schemaprüfung " +"möglich!" -#: setup/class_setupStep_Checks.inc:168 -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." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." +msgstr "Verwendet, um kontenbezogene Informationen zu speichern." -#: setup/class_setupStep_Checks.inc:169 +#: include/functions.inc:2263 msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." msgstr "" -"Suchen Sie in Ihrer php.ini nach 'session.gc_maxlifetime' und setzen Sie es " -"auf 84600 oder höher." +"Verwenden, um die momentan bearbeiteten Einträge für andere zu sperren (um " +"gleichzeitige Änderungen zu verhindern)." -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" -msgstr "Aus" +#: include/functions.inc:2306 +#, php-format +msgid "Missing required object class '%s'!" +msgstr "Die benötigte Objektklasse '%s' fehlt!" -#: setup/class_setupStep_Checks.inc:177 -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." +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" +msgstr "Die optionale Objektklasse '%s' fehlt!" -#: setup/class_setupStep_Checks.inc:178 -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'." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" +msgstr "Falsche·Version·der·benötigten·Objektklasse·'%s'·(!=%s)!" -#: setup/class_setupStep_Checks.inc:185 -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." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" +msgstr "Falsche Version der optionalen Objektklasse '%s' (!=%s)!" -#: setup/class_setupStep_Checks.inc:186 +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" +msgstr "Verfügbare Klasse(n)" + +#: include/functions.inc:2342 msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." msgstr "" -"Suchen Sie in Ihrer php.ini nach 'memory_limit' und setzen Sie es auf '32M' " -"oder höher." +"Sie haben die rfc2307bis-Option in der LDAP-Einrichtung aktiviert, aber Ihre " +"Schema-Konfiguration unterstützt dies nicht." -#: setup/class_setupStep_Checks.inc:193 +#: include/functions.inc:2343 msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -"Diese Einstellung beeinflusst die Verarbeitung der Ausgabe. Stellen Sie " -"diese auf 'off', um die Leistung zu erhöhen." +"Um rfc2307bis-konforme Gruppen verwenden zu können, muss die Objektklasse " +"'posixGroup' AUXILIARY sein" -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2347 +msgid "" +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." msgstr "" -"Suchen Sie in Ihrer php.ini nach 'implicit_flush' und setzen Sie es auf " -"'Off'." +"Ihre Schemakonfiguration ist für rfc2307bis-Gruppen eingerichtet, aber Sie " +"haben die Unterstützung im LDAP-Einrichtungsschritt ausgeschaltet." -#: setup/class_setupStep_Checks.inc:201 -msgid "The Execution time should be at least 30 seconds." -msgstr "Die Ausführungszeit sollte mindestens 30 Sekunden betragen." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" +msgstr "Die Objektklasse 'posixGroup' muss STRUCTURAL sein" -#: setup/class_setupStep_Checks.inc:202 -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." +#: include/functions.inc:2371 +msgid "German" +msgstr "Deutsch" -#: setup/class_setupStep_Checks.inc:209 -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." +#: include/functions.inc:2372 +msgid "French" +msgstr "Französisch" -#: setup/class_setupStep_Checks.inc:210 -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'." +#: include/functions.inc:2373 +msgid "Italian" +msgstr "Italienisch" -#: setup/class_setupStep_Checks.inc:216 -msgid "On" -msgstr "An" +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Spanisch" -#: setup/class_setupStep_Checks.inc:217 -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." +#: include/functions.inc:2375 +msgid "English" +msgstr "Englisch" -#: setup/class_setupStep_Checks.inc:218 -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'." +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Niederländisch" -#: setup/class_setupStep_Checks.inc:225 -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." +#: include/functions.inc:2377 +msgid "Polish" +msgstr "Polnisch" -#: setup/class_setupStep_Checks.inc:226 -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'." +#: include/functions.inc:2378 +msgid "Swedish" +msgstr "Schwedisch" -#: setup/class_setupStep_Checks.inc:236 -msgid "Configuration writeable" -msgstr "Konfigurationsdatei schreibbar" +#: include/functions.inc:2379 +msgid "Chinese" +msgstr "Chinesisch" -#: setup/class_setupStep_Checks.inc:237 -msgid "The configuration file can't be written" -msgstr "Die Konfigurationsdatei kann nicht geschrieben werden" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Russisch" -#: setup/class_setupStep_Checks.inc:238 +#: include/functions.inc:2561 #, 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." +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." msgstr "" -"GOsa liest sein Konfiguration von einer Datei in (%s/%s). Die Einrichtung " -"kann die Konfiguration direkt schreiben, wenn diese schreibbar ist." +"Das in POSTMODIFY angegebene Kommando '%s' (Modul '%s') scheint nicht zu " +"existieren." -#: 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/functions.inc:2594 +msgid "Cannot generate samba hash!" +msgstr "Kann Samba-Hash nicht erzeugen!" -#: 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:26 +msgid "Access control" +msgstr "Zugriffskontrolle" -#: 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:207 +msgid "Reset ACLs" +msgstr "ACLs zurücksetzen" -#: 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:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" +msgstr "Verwende ACL aus Rollendefinition" -#: 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:489 +msgid "No ACL settings for this category!" +msgstr "Keine ACL-Einstellungen für diese Kategorie!" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "Geführte Migration existierende LDAP-Bäume" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" +msgstr "Enthält ACLs für diese Objekte: %s" -#: 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:496 include/class_acl.inc:497 +msgid "category ACL" +msgstr "ACL Kategorie" -#: setup/setup_welcome.tpl:20 -msgid "Find every possible configuration error" -msgstr "Finde jeden möglichen Konfigurationsfehler" +#: include/class_acl.inc:543 +#, php-format +msgid "Edit ACL for '%s' - scope is '%s'" +msgstr "ACL für '%s' bearbeiten - Gültigkeitsbereich ist '%s'" -#: 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:698 include/class_acl.inc:705 +msgid "Show/hide advanced settings" +msgstr "Zeige/verstecke erweiterte Einstellungen" -#: setup/setup_welcome.tpl:25 -msgid "To continue..." -msgstr "Wird fortgesetzt..." +#: include/class_acl.inc:723 +msgid "Create objects" +msgstr "Erstelle Objekte" -#: 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:724 +msgid "Move objects" +msgstr "Objekte verschieben" -#: 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:725 +msgid "Remove objects" +msgstr "Objekte entfernen" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "PHP Modul- und Erweiterungsprüfung" +#: include/class_acl.inc:727 +msgid "Modifyable by owner" +msgstr "Änderbar vom Eigentümer" -#: 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." +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "lesen" -#: 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." +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "schreiben" -#: setup/setup_checks.tpl:67 -msgid "PHP setup configuration" -msgstr "Konfiguration der PHP-Umgebung" +#: include/class_acl.inc:743 +msgid "Complete object" +msgstr "Vollständiges Objekt" -#: setup/setup_checks.tpl:67 -msgid "show information" -msgstr "zeige Information" +#: include/class_acl.inc:879 +#, php-format +msgid "Unkown ACL type '%s'!" +msgstr "Unbekannter ACL-Typ '%s'!" -#: setup/setup_schema.tpl:3 -msgid "Schema specific settings" -msgstr "Schemaspezifische Einstellungen" +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" +msgstr "Unbekannter Eintrag '%s'!" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "Ermögliche Schema-Validierung bei der Anmeldung" +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, php-format +msgid "Role: %s" +msgstr "Rolle: %s" -#: setup/setup_schema.tpl:16 -msgid "Check status" -msgstr "Status prüfen" +#: include/class_acl.inc:984 +msgid "unknown role" +msgstr "unbekannte rolle" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" -msgstr "Schema-Prüfung erfolgreich" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" +msgstr "Enthält Einstellungen für diese Objekte: %s" -#: setup/setup_schema.tpl:23 -msgid "Schema check failed" -msgstr "Schema-Prüfung fehlgeschlagen" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "Mitglieder" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" -"Konnte keine Schema-Informationen beziehen, alle Prüfungen wurden " -"übersprungen. Passen Sie Ihre LDAP-ACLs an." +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" +msgstr "ACL wirkt für alle Benutzer" -#: 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 "" -"Es scheint so, dass Ihre LDAP-Datenbank noch nicht initialisiert wurde. Dies " -"könnte der Grund sein, weshalb GOsa die Schema-Konfiguration nicht lesen " -"konnte!" +#: include/class_acl.inc:1177 +msgid "Access control list" +msgstr "Zugriffskontrollliste" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "Hilfe-Browser" +#: include/class_acl.inc:1182 +msgid "ACL roles" +msgstr "ACL-Rollen" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "Für diese Klasse wurde keine Hilfedatei angegeben" +#: include/class_acl.inc:1185 +msgid "Role name" +msgstr "Rollenname" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." -msgstr "" -"Auf das Hilfeverzeichnis '%s' kann nicht zugegriffen werden - kann daher " -"keine Hilfedateien lesen." +#: include/class_acl.inc:1186 +msgid "Role description" +msgstr "Rollenbeschreibung" -#: html/setup.php:66 -msgid "Smarty" -msgstr "Smarty" +#: include/class_certificate.inc:73 +msgid "Certificate is empty!" +msgstr "Zertifikat ist leer!" -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, 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!" +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" +msgstr "Zertifikat kann nicht geladen werden - nur PEM/DER sind unterstützt!" -#: html/password.php:58 html/index.php:142 -#, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "Die GOsa-Konfigurationsdatei %s/%s ist nicht lesbar. Abgebrochen." +#: include/class_certificate.inc:115 +msgid "Cannot extract information for non PEM certificates!" +msgstr "" +"Zertifikatinformationen können nur für PEM Zertifikate ermittelt werden!" -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "Fehler: Passwort-Methode ist nicht verfügbar!" +#: include/class_certificate.inc:219 +msgid "No valid certificate loaded!" +msgstr "Kein gültiges Zertifikat geladen!" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort." +#: ihtml/themes/default/accountexpired.tpl:15 +msgid "Your password has expired. Please choose a new one!" +msgstr "Ihr Passwort ist abgelaufen. Geben Sie bitte ein neues ein!" -#: html/password.php:232 -msgid "You have no permissions to change your password." -msgstr "Sie haben keine Berechtigung ihr Passwort zu ändern." +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +msgid "Old password" +msgstr "Altes Passwort" -#: html/password.php:253 -msgid "External password changer reported a problem: " -msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet:" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +msgid "Verify password" +msgstr "Passwort überprüfen" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -msgstr "Die Sitzung ist nicht verschlüsselt." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +msgid "Click here to change your password" +msgstr "Hier klicken, um Ihr Passwort zu ändern" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "SSL Sitzung" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "Ein Zugriffskonflikt wurde festgestellt" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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 "" -"Konnte Datei '%s' nicht finden - bitte führen Sie '%s' aus um das Problem zu " -"beseitigen" +"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." -#: html/main.php:172 -msgid "PHP configuration" -msgstr "PHP-Konfiguration" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "Die Gültigkeit ihrer GOsa-Sitzung ist abgelaufen!" -#: html/main.php:173 +#: ihtml/themes/default/logout.tpl:7 msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." +"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 "" -"FATAL: 'Register globals' ist im PHP aktiviert. GOsa läßt keine Anmeldung " -"zu, bis dies von einem Administrator behoben wurde." +"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." -#: html/main.php:218 -msgid "Running out of memory!" -msgstr "Der verfügbare Arbeitsspeicher wird knapp!" +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" +msgstr "Erneut anmelden" -#: html/main.php:292 -msgid "User ACL checks disabled" -msgstr "Prüfung der Benutzer-ACLs deaktiviert" +#: ihtml/themes/default/acl.tpl:31 +msgid "Additional filter options" +msgstr "Zusätzliche Filteroptionen" + +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" +msgstr "Verwende Mitglieder von" + +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" +msgstr "Verfügbare Mitglieder" + +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" +msgstr "Zeige mögliche Empfänger dieser Nachricht" + +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "Zeige Nachrichtenempfänger" + +#: ihtml/themes/default/acl.tpl:107 +msgid "ACL for this object" +msgstr "ACL für dieses Objekt" -#: html/main.php:361 -msgid "Your password is about to expire, please change your password!" -msgstr "Ihr Passwort ist fast abgelaufen, bitte setzen Sie ein neues!" +#: ihtml/themes/default/acl.tpl:113 +msgid "Available roles" +msgstr "Verfügbare Rollen" -#: html/main.php:370 -msgid "Plugin" -msgstr "Erweiterung" +#: 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." -#: html/main.php:371 -#, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "FATAL: Es kann kein Plugin für die Definition '%s' gefunden werden!" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" +msgstr "Stelle Objekt-Snapshots wieder her" -#: html/index.php:57 -msgid "Session is not encrypted!" -msgstr "Die Sitzung ist nicht verschlüsselt!" +#: 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." -#: html/index.php:64 +#: ihtml/themes/default/snapshotdialog.tpl:9 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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 "" -"Die Konfiguration der Gültigkeitsdauer einer Sitzung in Ihrer gosa.conf wird " -"von der Einstellung in der php.ini überschrieben." +"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)." -#: html/index.php:167 -msgid "Smarty error" -msgstr "Smarty-Fehler" +#: 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 "" +"Vergessen Sie nicht, Verweise auf andere Objekte zu überprüfen, bspw. ob der " +"gewählte Drucker noch existiert." -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" -msgstr "Es gab ein Problem mit der Authentisierungseinrichtung!" +#: 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" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -"Es konnte kein gültiger Benutzer für die aktuell eingerichtete " -"Authentisierung gefunden werden!" +"Wählen Sie einen Snapshot und klicken Sie auf das Ordner-Bild, um diesen " +"wiederherzustellen." -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: ihtml/themes/default/snapshotdialog.tpl:49 +msgid "Creating object snapshots" +msgstr "Erstelle Objekte-Snapshots" + +#: 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 "" -"Die Benutzerinformation ist für die konfigurierten LDAP-Bäume nicht " -"eindeutig!" +"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." -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" -msgstr "Kann Information über das installierte LDAP-Schema nicht ermitteln!" +#: 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." -#: html/index.php:283 -msgid "Your LDAP setup contains old schema definitions:" -msgstr "Ihre LDAP-Einrichtung enthält veraltete Schema-Definitionen:" +#: ihtml/themes/default/snapshotdialog.tpl:70 +msgid "Timestamp" +msgstr "Zeitstempel" -#: html/index.php:304 -msgid "Please specify a valid username!" -msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" +msgstr "Grund für das Erzeugen dieses Snapshots" -#: html/index.php:307 -msgid "Please specify your password!" -msgstr "Bitte geben Sie Ihr Passwort ein!" +#: 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." -#: html/index.php:319 -msgid "Authentication error" -msgstr "Authentifizierungsfehler" +#: 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" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" msgstr "" -"Konnte Benutzerinformation für htaccess-Authentisierung nicht beziehen!" - -#: html/index.php:375 -msgid "Account locked. Please contact your system administrator!" -msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator!" +"Ignoriere diesen Fehler und zeige alle vom LDAP-Server gelieferten Einträge" -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" -"Ihr Browser hat Cookies deaktiviert. Bitte aktivieren Sie zunächst Cookies " -"und laden anschliessend diese Seite neu, bevor Sie sich anmelden!" +"Ignoriere diesen Fehler und zeige alle Einträge, die innerhalb der " +"Größenbeschränkung liegen" #: ihtml/themes/default/copyPasteDialog.tpl:1 msgid "Copy & paste wizard" @@ -5903,21 +5934,6 @@ msgstr "GOsa Hilfe-Browser" msgid "Index" msgstr "Index" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -msgstr "Ein Zugriffskonflikt wurde festgestellt" - -#: 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." - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Hauptmenü" @@ -5938,42 +5954,47 @@ msgstr "Angemeldet:" msgid "GOsa main menu" msgstr "GOsa Hauptmenü" -#: ihtml/themes/default/remove.tpl:6 +#: ihtml/themes/default/logout-close.tpl:5 +msgid "Your GOsa session has been closed!" +msgstr "Ihre GOsa-Sitzung wurde geschlossen!" + +#: ihtml/themes/default/logout-close.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." +"Please close this browser window and clean the authentication caches to " +"avoid an automatic re-authentication by your browser." 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." - -#: ihtml/themes/default/acl.tpl:31 -msgid "Additional filter options" -msgstr "Zusätzliche Filteroptionen" +"Bitte schliessen Sie dieses Browserfenster und leeren den " +"Authentisierungscache um eine automatische Wiederanmeldung des Browsers zu " +"verhindern." -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" -msgstr "Verwende Mitglieder von" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" +msgstr "GOsa Anmeldefenster" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" -msgstr "Verfügbare Mitglieder" +#: ihtml/themes/default/login.tpl:27 +msgid "Login screen" +msgstr "Anmeldefenster" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" -msgstr "Zeige mögliche Empfänger dieser Nachricht" +#: 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." -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" -msgstr "Zeige Nachrichtenempfänger" +#: 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" -#: ihtml/themes/default/acl.tpl:107 -msgid "ACL for this object" -msgstr "ACL für dieses Objekt" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Anmelden" -#: ihtml/themes/default/acl.tpl:113 -msgid "Available roles" -msgstr "Verfügbare Rollen" +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Hier klicken zum Anmelden" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6027,195 +6048,177 @@ msgstr "" "Geben Sie das aktuelle Passwort und zweimal das neue Passwort in den Feldern " "unterhalb ein und drücken Sie den 'Ändern'-Knopf." -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Verzeichnis" +#: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 +msgid "New password repeated" +msgstr "Neues Passwort (Wiederholung)" + +#: ihtml/themes/default/password.tpl:100 +msgid "Change" +msgstr "Ändern" + +#: html/main.php:154 +#, 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:172 +msgid "PHP configuration" +msgstr "PHP-Konfiguration" + +#: html/main.php:173 +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:218 +msgid "Running out of memory!" +msgstr "Der verfügbare Arbeitsspeicher wird knapp!" -#: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 -msgid "New password repeated" -msgstr "Neues Passwort (Wiederholung)" +#: html/main.php:292 +msgid "User ACL checks disabled" +msgstr "Prüfung der Benutzer-ACLs deaktiviert" -#: ihtml/themes/default/password.tpl:100 -msgid "Change" -msgstr "Ändern" +#: html/main.php:361 +msgid "Your password is about to expire, please change your password!" +msgstr "Ihr Passwort ist fast abgelaufen, bitte setzen Sie ein neues!" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -msgid "Click here to change your password" -msgstr "Hier klicken, um Ihr Passwort zu ändern" +#: html/main.php:370 +msgid "Plugin" +msgstr "Erweiterung" -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" -msgstr "GOsa Anmeldefenster" +#: html/main.php:371 +#, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "FATAL: Es kann kein Plugin für die Definition '%s' gefunden werden!" -#: ihtml/themes/default/login.tpl:27 -msgid "Login screen" -msgstr "Anmeldefenster" +#: html/index.php:57 +msgid "Session is not encrypted!" +msgstr "Die Sitzung ist nicht verschlüsselt!" -#: ihtml/themes/default/login.tpl:34 +#: html/index.php:64 msgid "" -"Please use your username and your password to log into the site " -"administration system." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -"Verwenden Sie bitte Ihren Benutzernamen und Ihr Passwort, um sich an der " -"Verwaltung des Standorts anzumelden." - -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Anmelden" +"Die Konfiguration der Gültigkeitsdauer einer Sitzung in Ihrer gosa.conf wird " +"von der Einstellung in der php.ini überschrieben." -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Hier klicken zum Anmelden" +#: html/index.php:142 html/password.php:58 +#, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "Die GOsa-Konfigurationsdatei %s/%s ist nicht lesbar. Abgebrochen." -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" -msgstr "Die Gültigkeit ihrer GOsa-Sitzung ist abgelaufen!" +#: html/index.php:167 +msgid "Smarty error" +msgstr "Smarty-Fehler" -#: 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." +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" 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." +"Auf das als Compile-Verzeichnis angegegebene Verzeichnis '%s' kann nicht " +"zugegriffen werden!" -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" -msgstr "Erneut anmelden" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" +msgstr "Es gab ein Problem mit der Authentisierungseinrichtung!" -#: 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." +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" msgstr "" -"Die Größenbeschränkung sorgt dafür, daß die LDAP-Operationen schneller " -"durchgeführt werden können und verringern die Last auf dem LDAP-Server. Der " -"einfachste Weg, große Datenbanken ohne große Zeitüberschreitungen zu " -"bearbeiten ist es Filter zu verwenden und die Größenbeschränkungen auf einen " -"sinnvollen Wert einzustellen." - -#: ihtml/themes/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" +"Es konnte kein gültiger Benutzer für die aktuell eingerichtete " +"Authentisierung gefunden werden!" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" msgstr "" -"Ignoriere diesen Fehler und zeige alle vom LDAP-Server gelieferten Einträge" +"Die Benutzerinformation ist für die konfigurierten LDAP-Bäume nicht " +"eindeutig!" -#: 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" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" +msgstr "Kann Information über das installierte LDAP-Schema nicht ermitteln!" -#: ihtml/themes/default/logout-close.tpl:5 -msgid "Your GOsa session has been closed!" -msgstr "Ihre GOsa-Sitzung wurde geschlossen!" +#: html/index.php:283 +msgid "Your LDAP setup contains old schema definitions:" +msgstr "Ihre LDAP-Einrichtung enthält veraltete Schema-Definitionen:" -#: 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." +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!" -#: ihtml/themes/default/accountexpired.tpl:15 -msgid "Your password has expired. Please choose a new one!" -msgstr "Ihr Passwort ist abgelaufen. Geben Sie bitte ein neues ein!" +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "Bitte geben Sie Ihr Passwort ein!" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 -msgid "Old password" -msgstr "Altes Passwort" +#: html/index.php:319 +msgid "Authentication error" +msgstr "Authentifizierungsfehler" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 -msgid "Verify password" -msgstr "Passwort überprüfen" +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" +msgstr "" +"Konnte Benutzerinformation für htaccess-Authentisierung nicht beziehen!" -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" -msgstr "Stelle Objekt-Snapshots wieder her" +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort." -#: 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." +#: html/index.php:375 +msgid "Account locked. Please contact your system administrator!" +msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator!" -#: 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)." +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "Die Sitzung ist nicht verschlüsselt." -#: ihtml/themes/default/snapshotdialog.tpl:12 +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "SSL Sitzung" + +#: html/index.php:426 msgid "" -"Don't forget to check references to other objects, for example does the " -"selected printer still exists ?" +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" msgstr "" -"Vergessen Sie nicht, Verweise auf andere Objekte zu überprüfen, bspw. ob der " -"gewählte Drucker noch existiert." +"Ihr Browser hat Cookies deaktiviert. Bitte aktivieren Sie zunächst Cookies " +"und laden anschliessend diese Seite neu, bevor Sie sich anmelden!" -#: 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" +#: html/password.php:163 +msgid "Error: Password method not available!" +msgstr "Fehler: Passwort-Methode ist nicht verfügbar!" -#: 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." +#: html/password.php:232 +msgid "You have no permissions to change your password." +msgstr "Sie haben keine Berechtigung ihr Passwort zu ändern." -#: ihtml/themes/default/snapshotdialog.tpl:49 -msgid "Creating object snapshots" -msgstr "Erstelle Objekte-Snapshots" +#: html/password.php:253 +msgid "External password changer reported a problem: " +msgstr "Das externe Passwort-Änderungsprogramm hat einen Fehler gemeldet:" -#: 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." +#: html/helpviewer.php:70 +msgid "Help browser" +msgstr "Hilfe-Browser" -#: 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." +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "Für diese Klasse wurde keine Hilfedatei angegeben" -#: ihtml/themes/default/snapshotdialog.tpl:70 -msgid "Timestamp" -msgstr "Zeitstempel" +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +msgstr "" +"Auf das Hilfeverzeichnis '%s' kann nicht zugegriffen werden - kann daher " +"keine Hilfedateien lesen." -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" -msgstr "Grund für das Erzeugen dieses Snapshots" +#: html/setup.php:66 +msgid "Smarty" +msgstr "Smarty" #~ msgid "Restore snapshopts of already deleted objects" #~ msgstr "Stelle Abzüge von bereits entfernten Objekten her" diff --git a/gosa-core/locale/core/es/LC_MESSAGES/messages.po b/gosa-core/locale/core/es/LC_MESSAGES/messages.po index 08648c100..4ebb3f7d4 100644 --- a/gosa-core/locale/core/es/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/es/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: admin\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2007-07-24 00:26+0200\n" "Last-Translator: ALEJANDRO ESCANERO BLANCO\n" "Language-Team: \n" @@ -17,11 +17,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "No tiene permisos para cambiar su contraseña." + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +msgid "Password settings" +msgstr "Parámetros de Contraseña" + +#: 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/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 "" + +#: 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 "" + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "" + +#: plugins/personal/password/password.tpl:23 +#: plugins/personal/generic/password.tpl:11 +#: plugins/admin/users/password.tpl:17 +msgid "Repeat new password" +msgstr "" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "La contraseña expira en" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Contraseña" @@ -40,8 +112,8 @@ msgstr "Cambiar contraseña" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "Contraseña" @@ -95,1050 +167,355 @@ msgid "User password" msgstr "Contraseña del usuario" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Mi cuenta" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "" - -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -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." -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 "" - -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" msgstr "" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" msgstr "" -#: plugins/personal/password/password.tpl:23 -#: plugins/personal/generic/password.tpl:11 -#: plugins/admin/users/password.tpl:17 -msgid "Repeat new password" -msgstr "" +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Genérico" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 +#: plugins/personal/generic/class_user.inc:38 #, fuzzy -msgid "Password strength" -msgstr "La contraseña expira en" - -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "" - -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "" +msgid "Edit organizational user settings" +msgstr "Parámetros administrativos" -#: 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/generic/class_user.inc:304 +msgid "female" +msgstr "mujer" -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -msgid "Password settings" -msgstr "Parámetros de Contraseña" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "hombre" -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "" +#: plugins/personal/generic/class_user.inc:503 +#, fuzzy +msgid "Serial number" +msgstr "Número del busca" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" +#: plugins/personal/generic/class_user.inc:548 +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.)" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "" +#: plugins/personal/generic/class_user.inc:558 +#, 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." -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "Expresión regular para buscar nombres de grupos" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "válido" -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "no válido" -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" -msgstr "Nombre de usuario de los grupos que se muestran" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "No hay certificados instalados" -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -msgid "Search in subtrees" -msgstr "Buscar en subárboles" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "Contraseña" -#: plugins/personal/posix/posix_shadow.tpl:9 -msgid "User must change password on first login" -msgstr "" +#: plugins/personal/generic/class_user.inc:592 +#, fuzzy +msgid "The selected password method is no longer available." +msgstr "La aplicación ya no está disponible." -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" -msgstr "" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Directorio de usuario" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -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 "" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Mostrar sistemas que coincidan con" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Genérico" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Estado" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "Mostrar grupos de correo" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, fuzzy -msgid "Not in all groups" -msgstr "Mostrar grupos de correo" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Parametros de samba" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" -msgstr "activo" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "activo, no puede cambiar la contraseña" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "activo, la contraseña expiró" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "Sin configurar" - -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" -msgstr "automático" - -#: 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 "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -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" - -#: 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" - -#: 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" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "desactivado" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "Acceso sin restricciones" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "Permitir el acceso a estos equipos" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/personal/generic/class_user.inc:702 #: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/admin/departments/class_departmentGeneric.inc:185 #: plugins/admin/departments/class_departmentGeneric.inc:358 #: plugins/admin/departments/class_departmentGeneric.inc:626 #: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 #: plugins/admin/ogroups/class_ogroup.inc:968 #: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 #: setup/class_setupStep_Migrate.inc:1090 #: setup/class_setupStep_Migrate.inc:1139 #: setup/class_setupStep_Migrate.inc:1188 #: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 #: html/index.php:270 html/index.php:283 #, fuzzy msgid "LDAP error" -msgstr "Servicio LDAP" - -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Aviso" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Grupo de usuarios" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "Shadow min" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -#, fuzzy -msgid "shadowMax" -msgstr "Shadow max" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "Shadow warning" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "Shadow inactive" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -msgid "POSIX account" -msgstr "Cuenta POSIX" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "Identificador (ID) de usuario" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -msgid "Group ID" -msgstr "Identificador (ID) de Grupo" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -msgid "Force password change on login" -msgstr "Forzar el cambio de contraseña al iniciar" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -msgid "Shadow min" -msgstr "Shadow min" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "Shadow max" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -msgid "Shadow warning" -msgstr "Shadow warning" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -msgid "Shadow inactive" -msgstr "Shadow inactive" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -msgid "Shadow expire" -msgstr "Shadow expire" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -msgid "System trust model" -msgstr "Sistema de confianza" - -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Parametros de samba" - -#: 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 "" - -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Títulos académicos" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Base" - -#: plugins/personal/generic/multiple_generic.tpl:53 -#: plugins/personal/generic/generic.tpl:175 -msgid "Choose subtree to place user in" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Dirección" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Página Web" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Organización" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Departamento" - -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Funciones laborales" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Teléfono" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Localización" - -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Provincia" - -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Profesión" - -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Descripción de la unidad" - -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Área de desarrollo" - -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Función" - -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Rol" - -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Lugar de residencia" - -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Unidad" - -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Calle" - -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Código Postal" - -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Tipo de Vía" - -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Última dirección conocida" - -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Visible por todos" - -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 -msgid "Last name" -msgstr "" - -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" -msgstr "" +msgstr "Servicio LDAP" + +#: plugins/personal/generic/class_user.inc:1149 +#, fuzzy +msgid "The selected password method requires initial configuration!" +msgstr "La aplicación ya no está disponible." -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 #: plugins/personal/generic/class_user.inc:1178 #: plugins/personal/generic/class_user.inc:1190 #: plugins/personal/generic/class_user.inc:1204 #: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 #: plugins/admin/users/template.tpl:32 html/password.php:219 msgid "Login" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "" +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" +msgstr "Nombre" -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "" +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" +msgstr "Nombre de pila" -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "Foto del usuario" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Página Web" -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" -msgstr "" +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Teléfono" -#: 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 "" +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" -#: plugins/personal/generic/generic.tpl:62 -msgid "Template name" +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" msgstr "" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Título Personal" +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "" -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Fecha de nacimiento" +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "¡No puedo abrir el certificado especificado!" -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" -msgstr "" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Unidad" -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" -msgstr "" +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Tipo de Vía" -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "" +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Profesión" -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -msgstr "" +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Última dirección conocida" -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" -msgstr "" +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Lugar de residencia" -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Eliminar" +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Descripción de la unidad" -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "" +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Área de desarrollo" -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "" +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Función" -#: plugins/personal/generic/generic_certs.tpl:78 #: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 msgid "Certificate serial number" msgstr "Número de serie del certificado" -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Parámetros administrativos" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "mujer" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "hombre" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Número del busca" - -#: plugins/personal/generic/class_user.inc:548 -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.)" - -#: plugins/personal/generic/class_user.inc:558 -#, 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." - -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "válido" - -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "no válido" - -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "No hay certificados instalados" - -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" -msgstr "Contraseña" - -#: plugins/personal/generic/class_user.inc:592 -#, fuzzy -msgid "The selected password method is no longer available." -msgstr "La aplicación ya no está disponible." - -#: plugins/personal/generic/class_user.inc:1149 -#, fuzzy -msgid "The selected password method requires initial configuration!" -msgstr "La aplicación ya no está disponible." +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Visible por todos" -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "Name" -msgstr "Nombre" +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Calle" -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" -msgstr "Nombre de pila" +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Rol" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "¡No puedo abrir el certificado especificado!" +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Código Postal" #: plugins/personal/generic/class_user.inc:1487 msgid "Generic user settings" @@ -1149,6 +526,25 @@ msgstr "Parámetros genéricos del usuario" msgid "Users" msgstr "Usuarios" +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Base" + #: plugins/personal/generic/class_user.inc:1498 msgid "Surename" msgstr "Apellidos" @@ -1157,6 +553,17 @@ msgstr "Apellidos" msgid "User identification" msgstr "Identificación de Usuario" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Título Personal" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Títulos académicos" + #: plugins/personal/generic/class_user.inc:1503 msgid "Home postal address" msgstr "Dirección Postal personal" @@ -1165,6 +572,30 @@ msgstr "Dirección Postal personal" msgid "Home phone number" msgstr "Número de teléfono personal" +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Organización" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Departamento" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Fecha de nacimiento" + #: plugins/personal/generic/class_user.inc:1509 msgid "Gender" msgstr "Sexo" @@ -1181,6 +612,34 @@ msgstr "Número del departamento" msgid "Employee number" msgstr "Número de empleado" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Funciones laborales" + +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Localización" + +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Provincia" + +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "Foto del usuario" + #: plugins/personal/generic/class_user.inc:1517 msgid "Room number" msgstr "Número de habitación" @@ -1197,1136 +656,1490 @@ msgstr "Teléfono móvil" msgid "Pager number" msgstr "Número del busca" -#: plugins/personal/generic/class_user.inc:1521 -msgid "User certificates" -msgstr "Certificados de usuario" +#: plugins/personal/generic/class_user.inc:1521 +msgid "User certificates" +msgstr "Certificados de usuario" + +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "Código Postal" + +#: plugins/personal/generic/class_user.inc:1524 +msgid "Fax number" +msgstr "Número de Fax" + +#: 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." + +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Información genérica del usuario" + +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "" + +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" +msgstr "" + +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +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" +msgstr "" + +#: plugins/personal/generic/generic.tpl:62 +msgid "Template name" +msgstr "" + +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "" + +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" +msgstr "" + +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" +msgstr "" + +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "" + +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "" + +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "" + +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Dirección" + +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "" + +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "" + +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "" + +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "" + +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "" + +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "" + +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "" + +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "" + +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "" + +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "Código Postal" +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "" -#: plugins/personal/generic/class_user.inc:1524 -msgid "Fax number" -msgstr "Número de Fax" +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Eliminar" -#: 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." +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Información genérica del usuario" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" msgstr "" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" msgstr "" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "ACL" +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "" -#: plugins/admin/acl/tabs_acl_role.inc:28 -msgid "ACL Templates" -msgstr "Plantillas ACL" +#: 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 "" -#: 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/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "Permisos" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -#, fuzzy -msgid "Permission" -msgstr "Permisos" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -msgid "List of acls" -msgstr "Lista de acls" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: plugins/admin/groups/group_objects.tpl:40 +msgid "Choose the department the search will be based on" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix_groups.tpl:44 +msgid "Display groups matching" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "Sumario" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Expresión regular para buscar nombres de grupos" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Acciones" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:84 -msgid "Display acls matching" -msgstr "Mostrar las acl que coincidan con" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Nombre de usuario de los grupos que se muestran" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Enviar departamento" +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 +msgid "Search in subtrees" +msgstr "Buscar en subárboles" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "Enviar" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Crear" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "editar" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Mostrar sistemas que coincidan con" -#: plugins/admin/acl/class_divListACL.inc:215 -msgid "Edit acl role" -msgstr "Editar rol" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "eliminar" +#: plugins/personal/posix/main.inc:131 +#, fuzzy +msgid "POSIX settings" +msgstr "Parametros de samba" -#: plugins/admin/acl/class_divListACL.inc:223 -msgid "Delete acl role" -msgstr "Eliminar rol" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Directorio de usuario" -#: plugins/admin/acl/class_divListACL.inc:242 -msgid "Edit acl" -msgstr "Editar acl" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/admin/acl/class_divListACL.inc:246 -msgid "Delete acl" -msgstr "Eliminar acl" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +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." +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Estado" + +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" 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." +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" msgstr "" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 -msgid "ACL management" -msgstr "Administración de ACL" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" msgstr "" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Descripción" - -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" msgstr "" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -msgid "New ACL" +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 +#, fuzzy +msgid "In all groups" +msgstr "Mostrar grupos de correo" + +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 +#, fuzzy +msgid "Not in all groups" +msgstr "Mostrar grupos de correo" + +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" msgstr "" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -msgid "ACL type" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" msgstr "" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -msgid "Select an acl type" +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" msgstr "" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -msgid "List of available ACL categories" +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "Access control roles" -msgstr "Lista de control de acceso" +msgid "Edit users POSIX settings" +msgstr "Parametros de samba" -#: plugins/admin/acl/class_aclRole.inc:27 -#, fuzzy -msgid "Edit AC roles" -msgstr "Rol" +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" +msgstr "expiró" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -msgid "All categories" -msgstr "Todas las categorías" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "Periodo de gracia activado" -#: plugins/admin/acl/class_aclRole.inc:131 +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" +msgstr "activo" + +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "Reset ACL" -msgstr "Eliminar ACLs" +msgid "password not changable" +msgstr "activo, no puede cambiar la contraseña" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -msgid "One level" -msgstr "Un nivel" +#: plugins/personal/posix/class_posixAccount.inc:161 +#, fuzzy +msgid "password expired" +msgstr "activo, la contraseña expiró" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -msgid "Current object" -msgstr "Objeto actual" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "Sin configurar" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -msgid "Complete subtree" -msgstr "Subárbol completo" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "automático" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "Subárbol completo (permanente)" +#: 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 "" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "Arriba" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" -msgstr "Abajo" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "Entorno" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Editar" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 +#: plugins/personal/posix/class_posixAccount.inc:469 #, php-format -msgid "Delete" -msgstr "Eliminar" +msgid "Password must be changed after %s days" +msgstr "La contraseñas deben ser cambiadas despues de %s días" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" -msgstr "No hay ACL configuradas en esta categoría" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "ACLs que tienen estos objetos: %s" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "desactivado" + +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "Acceso sin restricciones" + +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "Permitir el acceso a estos equipos" + +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Aviso" + +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" +msgstr "" + +#: plugins/personal/posix/class_posixAccount.inc:910 +msgid "" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" +msgstr "" + +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Grupo de usuarios" + +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 #, fuzzy -msgid "Edit category ACL" -msgstr "Editar las categorías ACLs" +msgid "shadowMin" +msgstr "Shadow min" -#: plugins/admin/acl/class_aclRole.inc:409 +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 #, fuzzy -msgid "Reset category ACL" -msgstr "Categoría" +msgid "shadowMax" +msgstr "Shadow max" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "Editar ACL para '%s', el ámbito es '%s'" +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 +#, fuzzy +msgid "shadowWarning" +msgstr "Shadow warning" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "Todos los objetos en el subárbol actual" +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 +#, fuzzy +msgid "shadowInactive" +msgstr "Shadow inactive" -#: plugins/admin/acl/class_aclRole.inc:621 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy -msgid "Object in use" -msgstr "Objeto" +msgid "Cannot allocate a free ID!" +msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres" -#: plugins/admin/acl/class_aclRole.inc:621 -#, 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/personal/posix/class_posixAccount.inc:1494 +msgid "POSIX account" +msgstr "Cuenta POSIX" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "Identificador (ID) de usuario" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Seleccione para ver los servidores" +#: plugins/personal/posix/class_posixAccount.inc:1507 +msgid "Group ID" +msgstr "Identificador (ID) de Grupo" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1509 +msgid "Force password change on login" +msgstr "Forzar el cambio de contraseña al iniciar" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1510 +msgid "Shadow min" +msgstr "Shadow min" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Mostrar usuarios que coincidan con" +#: plugins/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" +msgstr "Shadow max" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1512 +msgid "Shadow warning" +msgstr "Shadow warning" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -#, fuzzy -msgid "Configuration error" -msgstr "Se puede escribir en la configuración" +#: plugins/personal/posix/class_posixAccount.inc:1513 +msgid "Shadow inactive" +msgstr "Shadow inactive" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#, 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/personal/posix/class_posixAccount.inc:1514 +msgid "Shadow expire" +msgstr "Shadow expire" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Grupo de samba" +#: plugins/personal/posix/class_posixAccount.inc:1515 +msgid "System trust model" +msgstr "Sistema de confianza" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Administradores del dominio" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Usuarios del dominio" +#: plugins/personal/posix/posix_shadow.tpl:9 +msgid "User must change password on first login" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Invitados del dominio" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Grupo especial (%d)" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "¡id desconocido!" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Descripción" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, php-format -msgid "Cannot find any SID for '%s'!" +#: plugins/generic/references/contents.tpl:18 +msgid "This object has no relationship to other objects." msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "No hay ningún RIDBASE configurado para '%s'." +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Correo Electrónico" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -msgid "Generic group settings" -msgstr "Parámetros genéricos del grupo" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Grupos" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -msgid "Phone pickup group" -msgstr "Miembros de grupo de salto telefónico" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -msgid "Nagios group" -msgstr "Grupo Nagios" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Grupo" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -msgid "Group member" -msgstr "Miembro del grupo" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Aplicación" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -msgid "Samba group type" -msgstr "Tipo de grupo de samba" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Servidor" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -msgid "Samba domain name" -msgstr "Nombre de dominio samba" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -msgid "Samba SID" -msgstr "Samba SID" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Estación de trabajo" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -#, fuzzy -msgid "Infrastructure error" -msgstr "Buscar en subárboles" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Impresora" + +#: 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 "" + +#: 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 "" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -#, fuzzy -msgid "group" -msgstr "Grupo" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" 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" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" msgstr "" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" msgstr "" -#: plugins/admin/groups/paste_generic.tpl:13 -#: plugins/admin/groups/generic.tpl:65 -msgid "Normally IDs are autogenerated, select to specify manually" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Administración de departamento" + +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" msgstr "" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"Your browser doesn't support iframes, please use this link to perform the " +"requested operation." msgstr "" -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" +#: 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 "" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Lista de grupos" +#: 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 "" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 #: plugins/admin/departments/generic.tpl:4 #: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 msgid "Properties" msgstr "Propiedades" -#: 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/departments/generic.tpl:8 +msgid "Name of department" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "Mostrar teléfonos" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "Mostrar grupos primarios" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "Tipo de grupo de samba" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Categoría" -#: plugins/admin/groups/class_divListGroup.inc:87 -#, fuzzy -msgid "samba groups" -msgstr "Grupo de samba" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "Aplicaciones" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Mostrar los grupos de aplicaciones" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:90 -#, fuzzy -msgid "mail settings" -msgstr "Parámetros de correo" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:91 -#, fuzzy -msgid "mail groups" -msgstr "Mostrar grupos de correo" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "Seleccione para ver que grupos tienen solo aspectos funcionales" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:93 -#, fuzzy -msgid "functional groups" -msgstr "Mostrar grupos funcionales" +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Grupo" +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "Parámetros administrativos" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Correo Electrónico" +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "Lista de Departamentos" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Aplicación" +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "" + +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" +msgstr "Nombre de departamento" + +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Acciones" + +#: 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:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Enviar departamento" + +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "Enviar" + +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Crear" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 #: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "editar" + #: plugins/admin/departments/class_divListDepartment.inc:186 #: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 msgid "Edit this entry" msgstr "Editar esta entrada" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 #: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "eliminar" + #: plugins/admin/departments/class_divListDepartment.inc:190 #: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 msgid "Delete this entry" msgstr "Eliminar esta entrada" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -msgid "Not allowed" -msgstr "" - -#: plugins/admin/groups/class_divListGroup.inc:359 -#, fuzzy -msgid "Number of listed groups" -msgstr "Eliminar grupo seleccionado" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "departamento" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 #: plugins/admin/departments/class_divListDepartment.inc:229 #: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 #, fuzzy msgid "Number of listed departments" msgstr "Eliminar departamentos seleccionados" -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" +#: plugins/admin/departments/dep_move_confirm.tpl:2 +msgid "You are currently moving/renaming this department." msgstr "" -#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 -msgid "Select to create a samba conform group" +#: 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 "" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." msgstr "" -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" +#: 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/groups/generic.tpl:155 -msgid "Members are in a nagios group" -msgstr "" +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 +#, fuzzy +msgid "Fatal error" +msgstr "Insertar separador" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" +#: plugins/admin/departments/class_departmentGeneric.inc:313 +#, 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!" -#: 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 "" +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "Etiquetando '%s'." -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Continuar" -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Administración de grupo" +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "Moviendo '%s' a '%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 "" +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Objeto" -#: plugins/admin/users/password.tpl:21 -#, fuzzy -msgid "Strength" -msgstr "Calle" +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "Ha fallado a copiar %s, operación abortada" -#: plugins/admin/users/class_userManagement.inc:27 -#, fuzzy -msgid "Manage users" -msgstr "Usuarios del dominio" +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Departamentos" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -#, fuzzy -msgid "You have no permission to change this users password!" -msgstr "No tiene permisos para cambiar su contraseña." +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "País" -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "ninguno" +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Teléfono" -#: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "No tiene permisos para mover este objeto a '%s'." +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "" -#: plugins/admin/users/class_userManagement.inc:548 -#, fuzzy -msgid "You have no permission to use this template!" -msgstr "No tiene permisos para mover este objeto a '%s'." +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "" + +#: plugins/admin/departments/class_departmentManagement.inc:27 #, fuzzy -msgid "user" -msgstr "Usuario" +msgid "Manage Departments" +msgstr "Departamentos" -#: plugins/admin/users/class_userManagement.inc:655 +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 #, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "No tiene permisos para cambiar su contraseña." +msgid "Permission error" +msgstr "Permisos" -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "Plantilla" +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, 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'." -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -#: plugins/admin/users/template.tpl:6 +#: plugins/admin/departments/class_departmentManagement.inc:336 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." +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Continuar" +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "ACL" -#: plugins/admin/users/remove.tpl:6 +#: 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:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +#, fuzzy +msgid "Permission" +msgstr "Permisos" + +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +msgid "ACL management" +msgstr "Administración de ACL" + +#: plugins/admin/acl/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." +"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/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Administración de Usuario" +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +msgid "List of acls" +msgstr "Lista de acls" + +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "Sumario" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Lista de usuarios" +#: plugins/admin/acl/class_divListACL.inc:84 +msgid "Display acls matching" +msgstr "Mostrar las acl que coincidan con" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Nombre de Usuario" +#: plugins/admin/acl/class_divListACL.inc:215 +msgid "Edit acl role" +msgstr "Editar rol" -#: plugins/admin/users/class_divListUsers.inc:84 -#, fuzzy -msgid "templates" -msgstr "Plantilla" +#: plugins/admin/acl/class_divListACL.inc:223 +msgid "Delete acl role" +msgstr "Eliminar rol" -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "GOsa object" -msgstr "Objeto" +#: plugins/admin/acl/class_divListACL.inc:242 +msgid "Edit acl" +msgstr "Editar acl" -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "functional users" -msgstr "Mostrar usuarios funcionales" +#: plugins/admin/acl/class_divListACL.inc:246 +msgid "Delete acl" +msgstr "Eliminar acl" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 #, fuzzy -msgid "POSIX users" -msgstr "Parametros de samba" +msgid "Access control roles" +msgstr "Lista de control de acceso" -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/acl/class_aclRole.inc:27 #, fuzzy -msgid "mail users" -msgstr "Usuarios del dominio" +msgid "Edit AC roles" +msgstr "Rol" -#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +msgid "All categories" +msgstr "Todas las categorías" + +#: plugins/admin/acl/class_aclRole.inc:131 #, fuzzy -msgid "samba users" -msgstr "Usuarios del dominio" +msgid "Reset ACL" +msgstr "Eliminar ACLs" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +msgid "One level" +msgstr "Un nivel" -#: plugins/admin/users/class_divListUsers.inc:89 -#, fuzzy -msgid "proxy users" -msgstr "Mostrar los usuarios de proxy" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +msgid "Current object" +msgstr "Objeto actual" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Usuario" +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +msgid "Complete subtree" +msgstr "Subárbol completo" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Cambiar contraseña" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" +msgstr "Subárbol completo (permanente)" -#: plugins/admin/users/class_divListUsers.inc:189 -#, fuzzy -msgid "Apply template" -msgstr "Plantilla" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "Arriba" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" +msgstr "Abajo" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "Editar características generales" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Editar" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "Editar características UNIX" +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" +msgstr "Eliminar" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "Editar características de entorno" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" +msgstr "No hay ACL configuradas en esta categoría" -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "Editar características de correo electrónico" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "ACLs que tienen estos objetos: %s" -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "Editar características telefónicas" +#: plugins/admin/acl/class_aclRole.inc:408 +#, fuzzy +msgid "Edit category ACL" +msgstr "Editar las categorías ACLs" -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "Editar características de Fax" +#: plugins/admin/acl/class_aclRole.inc:409 +#, fuzzy +msgid "Reset category ACL" +msgstr "Categoría" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "Editar características samba" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "Editar ACL para '%s', el ámbito es '%s'" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "Netatalk" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "Todos los objetos en el subárbol actual" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "Editar características netatalk" +#: plugins/admin/acl/class_aclRole.inc:621 +#, fuzzy +msgid "Object in use" +msgstr "Objeto" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "Crear usuario desde plantilla" +#: plugins/admin/acl/class_aclRole.inc:621 +#, 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/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "Crear usuario con esta plantilla" +#: plugins/admin/acl/tabs_acl_role.inc:28 +msgid "ACL Templates" +msgstr "Plantillas ACL" -#: plugins/admin/users/class_divListUsers.inc:297 -#, fuzzy -msgid "inactive" -msgstr "activo" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "contraseña" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "Eliminar usuario" +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +msgid "New ACL" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:421 -msgid "Number of listed users" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +msgid "ACL type" msgstr "" -#: plugins/admin/users/templatize.tpl:2 -#, fuzzy -msgid "Applying a template" -msgstr "Plantilla" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +msgid "Select an acl type" +msgstr "" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +msgid "List of available ACL categories" msgstr "" -#: plugins/admin/users/templatize.tpl:33 -msgid "No templates available!" +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" msgstr "" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "Lista de Departamentos" +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#, fuzzy +msgid "Manage object groups" +msgstr "Mostrar los grupos samba" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" -msgstr "Nombre de departamento" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "Buscar en subárboles" + +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#, fuzzy +msgid "object group" +msgstr "Mostrar los grupos samba" -#: 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/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Usuario" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "departamento" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#, fuzzy +msgid "Windows Install" +msgstr "Windows RDP" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "" +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "Terminal" -#: plugins/admin/departments/dep_iframe.tpl:7 +#: plugins/admin/ogroups/remove.tpl:7 msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." +"Please double check if you really want to do this since there is no way for " +"GOsa to get your data back." msgstr "" -#: plugins/admin/departments/dep_move_confirm.tpl:2 -msgid "You are currently moving/renaming this department." +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." 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." +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" msgstr "" -#: plugins/admin/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" 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." +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" msgstr "" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" msgstr "" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +msgid "List of object groups" msgstr "" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "Mostrar teléfonos" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Categoría" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "Grupo de samba" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "Lista de grupos" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Mostrar los grupos de aplicaciones" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "departamento" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "Mostrar grupos primarios" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "Estación de trabajo" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "Mostrar estaciones de trabajo" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "Mostrar grupos de correo" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "Parámetros administrativos" +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#, fuzzy +msgid "printer groups" +msgstr "Mostrar grupos primarios" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#, fuzzy +msgid "phone groups" +msgstr "Mostrar los grupos samba" + +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +msgid "Number of listed object groups" 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." +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" msgstr "" -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Administración de departamento" +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 -#, fuzzy -msgid "Fatal error" -msgstr "Insertar separador" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:313 +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, 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!" +msgid "people" +msgstr "Rol" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "Etiquetando '%s'." +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "Moviendo '%s' a '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Objeto" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "Ha fallado a copiar %s, operación abortada" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Departamentos" +#: plugins/admin/ogroups/class_ogroup.inc:440 +#, fuzzy +msgid "printer" +msgstr "Impresora" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "País" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Teléfono" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" +msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "ninguno" + +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Manage Departments" -msgstr "Departamentos" +msgid "winstations" +msgstr "Estación de trabajo Windows" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, 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'." +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." +#: plugins/admin/ogroups/class_ogroup.inc:872 +msgid "You can combine two different object types at maximum, only!" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." +#: plugins/admin/ogroups/class_ogroup.inc:1056 +msgid "Object group generic" +msgstr "" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +msgid "Member" msgstr "" #: plugins/admin/ogroups/tabs_ogroups.inc:112 @@ -2361,6 +2174,10 @@ msgstr "Aplicaciones" msgid "Terminals" msgstr "" +#: plugins/admin/ogroups/paste_generic.tpl:7 +msgid "Please enter the new object group name" +msgstr "" + #: plugins/admin/ogroups/ogroup_objects.tpl:6 msgid "Select objects to add" msgstr "" @@ -2382,1860 +2199,1866 @@ msgstr "" msgid "Regular expression for matching object names" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#: plugins/admin/users/class_userManagement.inc:27 #, fuzzy -msgid "Manage object groups" -msgstr "Mostrar los grupos samba" +msgid "Manage users" +msgstr "Usuarios del dominio" -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 #, fuzzy -msgid "object group" -msgstr "Mostrar los grupos samba" +msgid "You have no permission to change this users password!" +msgstr "No tiene permisos para cambiar su contraseña." -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Servidor" +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Estación de trabajo" +#: plugins/admin/users/class_userManagement.inc:548 +#, fuzzy +msgid "You have no permission to use this template!" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 #, fuzzy -msgid "Windows Install" -msgstr "Windows RDP" +msgid "user" +msgstr "Usuario" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" -msgstr "Terminal" +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "No tiene permisos para cambiar su contraseña." -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Impresora" +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "Plantilla" -#: plugins/admin/ogroups/paste_generic.tpl:7 -msgid "Please enter the new object group name" +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -msgid "List of object groups" +#: 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 "" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" +#: plugins/admin/users/templatize.tpl:2 +#, fuzzy +msgid "Applying a template" +msgstr "Plantilla" + +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#: plugins/admin/users/templatize.tpl:33 +msgid "No templates available!" +msgstr "" + +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Administración de Usuario" + +#: 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 "" + +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Lista de usuarios" + +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Nombre de Usuario" + +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "user groups" -msgstr "Grupo de samba" +msgid "templates" +msgstr "Plantilla" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "nested groups" -msgstr "Lista de grupos" +msgid "GOsa object" +msgstr "Objeto" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "department groups" -msgstr "departamento" +msgid "functional users" +msgstr "Mostrar usuarios funcionales" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" + +#: plugins/admin/users/class_divListUsers.inc:86 #, fuzzy -msgid "server groups" -msgstr "Mostrar grupos primarios" +msgid "POSIX users" +msgstr "Parametros de samba" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#: plugins/admin/users/class_divListUsers.inc:87 #, fuzzy -msgid "workstation groups" -msgstr "Estación de trabajo" +msgid "mail users" +msgstr "Usuarios del dominio" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "windows workstation groups" -msgstr "Mostrar estaciones de trabajo" +msgid "samba users" +msgstr "Usuarios del dominio" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#: plugins/admin/users/class_divListUsers.inc:89 #, fuzzy -msgid "terminal groups" -msgstr "Mostrar grupos de correo" +msgid "proxy users" +msgstr "Mostrar los usuarios de proxy" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#: plugins/admin/users/class_divListUsers.inc:96 +#: plugins/admin/groups/group_objects.tpl:46 +msgid "Display users matching" +msgstr "Mostrar usuarios que coincidan con" + +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Cambiar contraseña" + +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "printer groups" -msgstr "Mostrar grupos primarios" +msgid "Apply template" +msgstr "Plantilla" + +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 -#, fuzzy -msgid "phone groups" -msgstr "Mostrar los grupos samba" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "Editar características generales" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 -msgid "Number of listed object groups" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "Editar características UNIX" -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "Editar características de entorno" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "Editar características de correo electrónico" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "Editar características telefónicas" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#, fuzzy -msgid "people" -msgstr "Rol" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "Editar características de Fax" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "Editar características samba" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" +msgstr "Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "Editar características netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "Crear usuario desde plantilla" -#: plugins/admin/ogroups/class_ogroup.inc:440 +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "Crear usuario con esta plantilla" + +#: plugins/admin/users/class_divListUsers.inc:297 #, fuzzy -msgid "printer" -msgstr "Impresora" +msgid "inactive" +msgstr "activo" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "contraseña" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 +msgid "Not allowed" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "Eliminar usuario" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" +#: plugins/admin/users/class_divListUsers.inc:421 +msgid "Number of listed users" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" +#: 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 "" -#: plugins/admin/ogroups/class_ogroup.inc:479 +#: plugins/admin/users/password.tpl:21 #, fuzzy -msgid "winstations" -msgstr "Estación de trabajo Windows" +msgid "Strength" +msgstr "Calle" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Administración de grupo" -#: plugins/admin/ogroups/class_ogroup.inc:872 -msgid "You can combine two different object types at maximum, only!" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -msgid "Object group generic" -msgstr "" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Seleccione para ver los servidores" -#: plugins/admin/ogroups/class_ogroup.inc:1067 -msgid "Member" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" msgstr "" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" msgstr "" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" msgstr "" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/groups/remove.tpl:6 msgid "" -"Please double check if you really want to do this since there is no way for " -"GOsa to get your data back." -msgstr "" - -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "" - -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" +"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 "" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" msgstr "" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" 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." +#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 +msgid "Select to create a samba conform group" 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." +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" msgstr "" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" msgstr "" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" 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/generic.tpl:207 +msgid "Group members" msgstr "" -#: include/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Seleccione para ver los servidores" - -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Seleccione para ver los servidores" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "Se puede escribir en la configuración" -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Seleccione para ver los servidores" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#, 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/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Grupo de samba" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Administradores del dominio" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Usuarios del dominio" -#: include/utils/class_msgPool.inc:42 +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Invitados del dominio" + +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +msgid "Special group (%d)" +msgstr "Grupo especial (%d)" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "¡id desconocido!" -#: include/utils/class_msgPool.inc:49 +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "This '%s' object will be deleted:" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:53 +#: plugins/admin/groups/class_groupGeneric.inc:918 #, php-format -msgid "These objects will be deleted: %s" +msgid "Cannot find any SID for '%s'!" msgstr "" -#: include/utils/class_msgPool.inc:55 -#, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "No hay ningún RIDBASE configurado para '%s'." -#: include/utils/class_msgPool.inc:63 -#, fuzzy -msgid "You have no permission to delete this object!" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1213 +msgid "Generic group settings" +msgstr "Parámetros genéricos del grupo" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Grupos" -#: include/utils/class_msgPool.inc:74 -#, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1225 +msgid "Phone pickup group" +msgstr "Miembros de grupo de salto telefónico" -#: include/utils/class_msgPool.inc:81 -#, fuzzy -msgid "You have no permission to create this object!" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1226 +msgid "Nagios group" +msgstr "Grupo Nagios" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -#, fuzzy -msgid "You have no permission to create the object:" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1229 +msgid "Group member" +msgstr "Miembro del grupo" -#: include/utils/class_msgPool.inc:92 -#, fuzzy -msgid "You have no permission to create these objects:" -msgstr "No tiene permisos para eliminar este departamento." +#: plugins/admin/groups/class_groupGeneric.inc:1230 +msgid "Samba group type" +msgstr "Tipo de grupo de samba" -#: include/utils/class_msgPool.inc:99 -#, fuzzy -msgid "You have no permission to modify this object!" -msgstr "No tiene permisos para mover este objeto a '%s'." +#: plugins/admin/groups/class_groupGeneric.inc:1231 +msgid "Samba domain name" +msgstr "Nombre de dominio samba" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -#, fuzzy -msgid "You have no permission to modify the object:" -msgstr "No tiene permisos para mover este objeto a '%s'." +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +msgid "Samba SID" +msgstr "Samba SID" -#: include/utils/class_msgPool.inc:110 -#, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "No tiene permisos para mover este objeto a '%s'." +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "" -#: include/utils/class_msgPool.inc:117 +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "You have no permission to view this object!" -msgstr "No tiene permisos para mover este objeto a '%s'." +msgid "group" +msgstr "Grupo" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#: 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: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:85 #, fuzzy -msgid "You have no permission to view the object:" -msgstr "No tiene permisos para cambiar su contraseña." +msgid "primary groups" +msgstr "Mostrar grupos primarios" -#: include/utils/class_msgPool.inc:128 +#: plugins/admin/groups/class_divListGroup.inc:86 #, fuzzy -msgid "You have no permission to view these objects:" -msgstr "No tiene permisos para mover este objeto a '%s'." +msgid "samba groups mappings" +msgstr "Tipo de grupo de samba" -#: include/utils/class_msgPool.inc:135 +#: plugins/admin/groups/class_divListGroup.inc:87 #, fuzzy -msgid "You have no permission to move this object!" -msgstr "No tiene permisos para mover este objeto a '%s'." +msgid "samba groups" +msgstr "Grupo de samba" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "You have no permission to move the object:" -msgstr "No tiene permisos para mover este objeto a '%s'." +msgid "application settings" +msgstr "Aplicaciones" -#: include/utils/class_msgPool.inc:146 +#: plugins/admin/groups/class_divListGroup.inc:90 #, fuzzy -msgid "You have no permission to move these objects:" -msgstr "No tiene permisos para mover este objeto a '%s'." +msgid "mail settings" +msgstr "Parámetros de correo" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/class_divListGroup.inc:91 #, fuzzy -msgid "Connection information" -msgstr "Información genérica del usuario" +msgid "mail groups" +msgstr "Mostrar grupos de correo" -#: include/utils/class_msgPool.inc:158 -#, php-format -msgid "Cannot connect to %s database!" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "Seleccione para ver que grupos tienen solo aspectos funcionales" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Mostrar grupos funcionales" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "Eliminar grupo seleccionado" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." - -#: include/utils/class_msgPool.inc:194 -#, 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:200 -#, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" -msgstr "" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +msgid "GOsa settings 2/3" +msgstr "Configuración GOsa 2/3" -#: include/utils/class_msgPool.inc:207 -#, php-format -msgid "'%s' command is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:88 +msgid "Customize special parameters" +msgstr "Personalizar parametros especiales" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "No" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "Si" -#: include/utils/class_msgPool.inc:213 -#, php-format -msgid "'%s' command (%s) is invalid!" +#: setup/setup_frame.tpl:12 +msgid "GOsa setup wizard" msgstr "" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" +#: setup/setup_frame.tpl:19 +msgid "Installation" msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" +#: setup/setup_frame.tpl:19 +msgid "Steps" msgstr "" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Terminar" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." +#: setup/class_setupStep_Finish.inc:38 +msgid "Write configuration file" +msgstr "Escribir archivo de configuración" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "El valor especificado como 'UID' es demasiado pequeño." +#: setup/class_setupStep_Finish.inc:39 +msgid "Finish - write the configuration file" +msgstr "Terminar - Escribir el archivo de configuración" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" +#: setup/class_setupStep_Finish.inc:101 +#, 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!" -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "El valor especificado como 'UID' es demasiado pequeño." - -#: include/utils/class_msgPool.inc:247 -#, fuzzy, php-format -msgid "'%s' must be %d or above!" -msgstr "PHP debe ser versión '%s'/'%s' o superior." +#: setup/class_setupStep_Finish.inc:103 +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." -#: include/utils/class_msgPool.inc:254 +#: setup/class_setupStep_Finish.inc:112 #, php-format -msgid "'%s' depends on '%s' - please provide both values!" +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:" -#: include/utils/class_msgPool.inc:260 -#, 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:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'." - -#: include/utils/class_msgPool.inc:274 -msgid "Example" +#: setup/setup_finish.tpl:3 +msgid "Create your configuration file" msgstr "" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "El campo 'Nombre' no tiene caracteres validos." +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" +#: setup/setup_finish.tpl:18 +msgid "Status: " msgstr "" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' are not allowed!" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "El campo 'Nombre' no tiene caracteres validos." +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "" -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Eliminar extensión de impresión" +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 +#, php-format +msgid "Apply" +msgstr "Aplicar" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "Cancelar" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "Ok" - -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Aplicar" - -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Guardar" - -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Añadir" - -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Añadir" - -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Eliminar" - -#: include/utils/class_msgPool.inc:344 -#, php-format -msgid "Set %s" +#: setup/setup_ldap.tpl:25 +msgid "LDAP connection" msgstr "" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Editar" - -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Editar usuario" - -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Atrás" - -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "Esta cuenta no tiene extensiones GOsa validas" - -#: include/utils/class_msgPool.inc:381 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." +#: setup/setup_ldap.tpl:29 +msgid "Location name" msgstr "" -"Esta cuenta tiene características posix activadas. Puede desactivarla " -"pulsando aquí" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_ldap.tpl:37 +msgid "Connection URL" msgstr "" -"Esta cuenta tiene las características unix activadas. Para desactivarlas, " -"necesita eliminar la cuenta samba / entorno primero." -#: include/utils/class_msgPool.inc:400 -#, fuzzy, php-format -msgid "" -"This account has %s settings disabled. You can enable them by clicking below." +#: setup/setup_ldap.tpl:45 +msgid "TLS connection" msgstr "" -"Esta cuenta tiene la extensión posix desactivada. Puede activarla pulsando " -"aquí." -#: include/utils/class_msgPool.inc:403 -#, fuzzy, php-format -msgid "" -"This account has %s settings disabled. To enable them, you'll need to add " -"the %s settings first!" +#: setup/setup_ldap.tpl:65 +msgid "Reload" msgstr "" -"Esta cuenta tiene las características unix activadas. Para desactivarlas, " -"necesita eliminar la cuenta samba / entorno primero." -#: include/utils/class_msgPool.inc:410 -#, fuzzy, php-format -msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +#: setup/setup_ldap.tpl:69 +msgid "Authentication" msgstr "" -"Esta cuenta tiene las características unix activadas. Para desactivarlas, " -"necesita eliminar la cuenta samba / entorno primero." - -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Parametros Unix" -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Parámetros genéricos del usuario" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "" -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" +#: setup/setup_ldap.tpl:78 +msgid "Select user" msgstr "" -"Pulse en el botón - Editar - para cambiar la información en esta ventana" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Enero" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" +msgstr "" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Febrero" +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Contraseña de administrador" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Marzo" +#: setup/setup_ldap.tpl:101 +msgid "Schema based settings" +msgstr "" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "Abril" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Mayo" +#: setup/setup_ldap.tpl:117 +msgid "Current status" +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Junio" +#: setup/setup_language.tpl:3 +msgid "Please select the preferred language" +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Julio" +#: 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 "" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "Agosto" +#: setup/setup_language.tpl:9 +#, fuzzy +msgid "Please select your preferred language here" +msgstr "Este paso le permite seleccionar su idioma preferido" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "Septiembre" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +msgid "Language setup" +msgstr "Selección de idiomas" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Octubre" +#: 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" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "Noviembre" +#: setup/class_setupStep_Language.inc:47 +msgid "Automatic" +msgstr "Automatico" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Diciembre" +#: setup/setup_config3.tpl:2 +msgid "GOsa core settings" +msgstr "" -#: include/utils/class_msgPool.inc:444 -#, fuzzy -msgid "Sunday" -msgstr "Junio" +#: setup/setup_config3.tpl:6 +msgid "Disable primary group filter" +msgstr "" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:18 #, fuzzy -msgid "Monday" -msgstr "mes" +msgid "Display summary in listings" +msgstr "Mostrar sistemas que coincidan con" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" +#: setup/setup_config3.tpl:30 +msgid "Honour administrative units" msgstr "" -#: include/utils/class_msgPool.inc:444 -#, fuzzy -msgid "Wednesday" -msgstr "Miércoles" +#: setup/setup_config3.tpl:42 +msgid "Smarty compile directory" +msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" +#: setup/setup_config3.tpl:60 +msgid "Path for PPD storage" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config3.tpl:77 +msgid "Path for kiosk profile storage" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:96 #, fuzzy -msgid "read operation" -msgstr "Eliminar opciones" +msgid "Override sudo role ou" +msgstr "¡id desconocido!" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config3.tpl:115 +msgid "Mail queue script" msgstr "" -#: include/utils/class_msgPool.inc:451 -msgid "modify operation" +#: setup/setup_config3.tpl:134 +msgid "Notification script" msgstr "" -#: include/utils/class_msgPool.inc:452 -msgid "delete operation" -msgstr "" +#: setup/setup_config3.tpl:153 +#, fuzzy +msgid "Enable edit locking" +msgstr "Activar comprobación de correo" -#: include/utils/class_msgPool.inc:452 -msgid "search operation" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:175 #, fuzzy -msgid "authentication" -msgstr "Tipo de autentificación IAX" +msgid "Login attribute" +msgstr "Base de datos de Registro" -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "La consulta LDAP ha fallado" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" +msgstr "" -#: include/utils/class_msgPool.inc:457 +#: 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 "LDAP operation failed!" -msgstr "La consulta LDAP ha fallado" +msgid "Remember dialog filter settings" +msgstr "Parámetros genéricos del usuario" -#: include/utils/class_msgPool.inc:472 -msgid "Upload failed!" +#: setup/setup_config3.tpl:234 +msgid "Session lifetime" msgstr "" -#: include/utils/class_msgPool.inc:475 -#, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Servicio de Registro de sistema" +#: setup/setup_config3.tpl:243 +msgid "Debugging" +msgstr "" -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" +#: setup/setup_config3.tpl:247 +msgid "Show PHP errors" msgstr "" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" +#: setup/setup_config3.tpl:259 +msgid "Maximum LDAP query time" msgstr "" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." +#: setup/setup_config3.tpl:289 +msgid "Debug level" msgstr "" -"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes " -"objetos están usando este rol %s" -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +msgid "Disabled" msgstr "" -"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes " -"objetos están usando este rol %s" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +msgid "Enabled" msgstr "" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "No se puede grabar el archivo '%s'." +#: setup/class_setupStep_Welcome.inc:38 +msgid "Welcome" +msgstr "Bienvenido" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "No se puede grabar el archivo '%s'." +#: setup/class_setupStep_Welcome.inc:39 +msgid "The welcome message" +msgstr "Mensaje de Bienvenida" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" +#: setup/class_setupStep_Welcome.inc:40 +msgid "Welcome to GOsa setup wizard" +msgstr "Bienvenidos al asistente de configuración de GOsa" + +#: 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: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" + +#: 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 "Don't add a trailing comma to '%s'." +msgstr "No añada una coma final a '%s'" + +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "OU de almacenamiento de Usuarios" + +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "OU de almacenamiento de Grupos" + +#: setup/class_setupStep_Config1.inc:130 +msgid "Uid base must be numeric" +msgstr "El Uid base debe ser un valor numérico" + +#: setup/class_setupStep_Config1.inc:134 +msgid "The given password minimum length is not numeric." msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." +"El valor indicado como longitud mínima de la contraseña no es un valor " +"numérico." -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Crear nuevo departamento" +#: 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/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Crear nuevo departamento" +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +msgid "LDAP schema check" +msgstr "Comprobar esquemas LDAP" -#: include/utils/class_msgPool.inc:541 -#, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Comprobando soporte mhash" +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" +msgstr "Efectuando comprobaciones en los esquemas actuales de LDAP" + +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Parametros de samba" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" +msgstr "" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." +#: setup/setup_config2.tpl:31 +msgid "RID base" msgstr "" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/setup_config2.tpl:46 +msgid "Workstation container" msgstr "" -#: include/class_certificate.inc:73 +#: setup/setup_config2.tpl:61 +msgid "Samba SID mapping" +msgstr "" + +#: setup/setup_config2.tpl:71 #, fuzzy -msgid "Certificate is empty!" -msgstr "Número de serie del certificado" +msgid "Timezone" +msgstr "Zona de uso horario del usuario OX" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: setup/setup_config2.tpl:74 +msgid "Please choose your preferred timezone here" msgstr "" -#: include/class_certificate.inc:115 -msgid "Cannot extract information for non PEM certificates!" +#: setup/setup_config2.tpl:96 +msgid "Additional GOsa settings" msgstr "" -#: include/class_certificate.inc:219 +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" +msgstr "" + +#: setup/setup_config2.tpl:112 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "No hay certificados instalados" +msgid "Enable DNS extension" +msgstr "Eliminar extensión de impresión" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" +#: setup/setup_config2.tpl:124 +#, fuzzy +msgid "Enable DHCP extension" +msgstr "Eliminar extensión de impresión" + +#: setup/setup_config2.tpl:136 +#, fuzzy +msgid "Enable mime type management" +msgstr "Administración Sieve" + +#: 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 "" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Ir al departamento raíz" +#: setup/setup_config2.tpl:171 +msgid "Government mode" +msgstr "" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Raíz" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "¡id desconocido!" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Subir un departamento" +#: setup/setup_config2.tpl:186 +msgid "Syslog" +msgstr "" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Ir al departamento de usuarios" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "Servicio LDAP" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Inicio" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "Parámetros de correo" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "Recargar lista" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" +#: setup/setup_config2.tpl:227 +msgid "Vacation templates" msgstr "" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -#: include/php_setup.inc:100 -msgid "Send bugreport" +#: setup/setup_config2.tpl:253 +msgid "Snapshots / Undo" msgstr "" -#: include/php_setup.inc:105 -msgid "Toggle information" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +msgid "Enable snapshots" msgstr "" -#: include/php_setup.inc:115 -msgid "PHP error" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +msgid "Snapshot base" msgstr "" -#: include/php_setup.inc:134 -msgid "class" +#: 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:140 -msgid "function" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" msgstr "" -#: include/php_setup.inc:145 -msgid "static" +#: setup/setup_welcome.tpl:11 +msgid "Create a basic, single site configuration" msgstr "" -#: include/php_setup.inc:149 -msgid "method" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" msgstr "" -#: include/php_setup.inc:182 -msgid "Trace" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" msgstr "" -#: include/php_setup.inc:183 -msgid "File" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" msgstr "" -#: include/php_setup.inc:183 -msgid "Line" +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" msgstr "" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Tipo" +#: setup/setup_welcome.tpl:20 +msgid "Find every possible configuration error" +msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: setup/setup_welcome.tpl:25 +msgid "To continue..." msgstr "" -#: include/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:28 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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/functions.inc:318 -#, php-format -msgid "FATAL: Error when connecting the LDAP. Server said '%s'." +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." msgstr "" -#: include/functions.inc:380 -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "" +#: setup/class_setupStep_Ldap.inc:53 +msgid "LDAP setup" +msgstr "Configuración LDAP" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 -#, fuzzy -msgid "Internal error" -msgstr "Insertar separador" +#: setup/class_setupStep_Ldap.inc:54 +msgid "LDAP connection setup" +msgstr "Conectividad LDAP" -#: include/functions.inc:450 +#: setup/class_setupStep_Ldap.inc:55 msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." +"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." -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +#: setup/class_setupStep_Ldap.inc:105 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' failed!" +msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito." + +#: setup/class_setupStep_Ldap.inc:107 +#, fuzzy, php-format +msgid "Bind as user '%s' failed!" +msgstr "Ha fallado la Autenticación como usuario '%s' en el servidor '%s'." + +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito." + +#: setup/class_setupStep_Ldap.inc:113 +#, fuzzy +msgid "Please specify user and password!" +msgstr "Por Favor especifique un usuario y contraseña" + +#: setup/class_setupStep_Ldap.inc:115 +#, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: include/functions.inc:605 -#, php-format +#: setup/setup_migrate.tpl:5 msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +"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/functions.inc:605 -#, php-format -msgid "LDAP server returned: %s" +#: setup/setup_migrate.tpl:33 +msgid "Check again" msgstr "" -#: include/functions.inc:699 -msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" msgstr "" -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" +#: setup/setup_migrate.tpl:39 +msgid "" +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -#: include/functions.inc:998 -#, php-format +#: setup/setup_migrate.tpl:41 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"Be careful with this tool, there may be references pointing to this " +"workstations that can't be migrated." msgstr "" -#: include/functions.inc:1015 -msgid "incomplete" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" msgstr "" -#: include/functions.inc:1294 -msgid "Continue anyway" +#: setup/setup_migrate.tpl:72 +msgid "Move selected workstations" msgstr "" -#: include/functions.inc:1296 -msgid "Edit anyway" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" msgstr "" -#: include/functions.inc:1298 -#, fuzzy, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Has decidido eliminar las siguientes entradas %s" - -#: include/functions.inc:1482 -msgid "Entries per page" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" msgstr "" -#: include/functions.inc:1510 -msgid "Apply filter" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" msgstr "" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: 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:1806 -#, php-format -msgid "GOsa development snapshot (Rev %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:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:1919 include/functions.inc:1939 -msgid "Cannot write to revision file!" +#: 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:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" +#: 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:2213 -#, fuzzy -msgid "LDAP warning" -msgstr "Aviso" - -#: include/functions.inc:2213 -#, fuzzy -msgid "Cannot get schema information from server. No schema check possible!" +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" msgstr "" -"No puedo obtener información de esquemas del servidor. ¡No es posible " -"comprobar los esquemas!" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: 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:2246 +#: setup/setup_migrate.tpl:145 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"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:2289 -#, php-format -msgid "Missing required object class '%s'!" +#: setup/setup_migrate.tpl:148 +msgid "Move selected users into this people tree" msgstr "" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +msgid "Next" msgstr "" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:199 +msgid "Abort" msgstr "" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:201 +msgid "Create a new GOsa administrator account" msgstr "" -#: include/functions.inc:2303 -#, php-format -msgid "Class(es) available" +#: setup/setup_migrate.tpl:204 +msgid "" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/functions.inc:2325 -msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +#: setup/setup_migrate.tpl:233 +msgid "Password (again)" msgstr "" -#: include/functions.inc:2326 +#: setup/setup_migrate.tpl:258 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"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:2330 +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +msgid "Current" msgstr "" -#: include/functions.inc:2354 -msgid "German" +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +msgid "After migration" msgstr "" -#: include/functions.inc:2355 -msgid "French" -msgstr "Francés" - -#: include/functions.inc:2356 -msgid "Italian" +#: 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:2357 -msgid "Spanish" -msgstr "" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +msgid "LDAP inspection" +msgstr "Inspección LDAP" -#: include/functions.inc:2358 -msgid "English" -msgstr "Inglés" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" +msgstr "Analice la compatibilidad con GOsa de su directorio LDAP" -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "" +#: setup/class_setupStep_Migrate.inc:114 +msgid "Checking for root object" +msgstr "Comprobando objeto raíz" -#: include/functions.inc:2360 -msgid "Polish" -msgstr "" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "Comprobando permisos en la base de datos LDAP" -#: include/functions.inc:2361 -msgid "Swedish" -msgstr "" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "Comprobando departamentos invisibles" -#: include/functions.inc:2362 -msgid "Chinese" -msgstr "Chino" +#: setup/class_setupStep_Migrate.inc:131 +msgid "Checking for invisible users" +msgstr "Comprobando usuarios invisibles" -#: include/functions.inc:2363 -msgid "Russian" -msgstr "Ruso" +#: setup/class_setupStep_Migrate.inc:137 +msgid "Checking for super administrator" +msgstr "Comprobando súper administrador" -#: include/functions.inc:2544 -#, php-format -msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." -msgstr "" +#: setup/class_setupStep_Migrate.inc:143 +msgid "Checking for users outside the people tree" +msgstr "Comprobando cuentas fuera del árbol de usuarios" -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" -msgstr "" +#: setup/class_setupStep_Migrate.inc:149 +msgid "Checking for groups outside the groups tree" +msgstr "Comprobando grupos fuera del árbol de grupos" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" +"Comprobando estaciones de trabajo windows fuera del árbol de estaciones de " +"trabajo windows" -#: include/class_socketClient.inc:108 +#: setup/class_setupStep_Migrate.inc:162 +#, fuzzy +msgid "Checking for duplicated UID numbers" +msgstr "Comprobando números uid duplicados" + +#: setup/class_setupStep_Migrate.inc:168 +#, fuzzy +msgid "Checking for duplicate GID numbers" +msgstr "Comprobando números uid duplicados" + +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +msgid "LDAP query failed" +msgstr "La consulta LDAP ha fallado" + +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "Posiblemente el objeto raíz está desaparecido" + +#: setup/class_setupStep_Migrate.inc:217 #, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "" +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "Encontrado '%s' valores duplicados del atributo 'uidNumber'." -#: include/class_socketClient.inc:191 +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 #, php-format -msgid "Socket timeout of %s seconds reached." -msgstr "" +msgid "Ok" +msgstr "Ok" -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:269 #, php-format -msgid "Delete process has been canceled by plugin '%s': %s" -msgstr "" +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "Encontrado '%s' valores duplicados del atributo 'gidNumber'." -#: include/class_tabs.inc:373 -msgid "References" -msgstr "" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Error" -#: include/class_plugin.inc:497 +#: setup/class_setupStep_Migrate.inc:329 +#, php-format msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"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/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +msgid "Migrate" +msgstr "Migrar" + +#: setup/class_setupStep_Migrate.inc:402 +#, 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:403 setup/class_setupStep_Migrate.inc:480 +msgid "Move" +msgstr "Mover" + +#: setup/class_setupStep_Migrate.inc:479 +#, 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:540 setup/class_setupStep_Migrate.inc:553 #, php-format msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +"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/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "No tiene permisos para crear un nuevo rol." +#: setup/class_setupStep_Migrate.inc:617 +#, 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." -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +#, fuzzy +msgid "Migration error" +msgstr "Migrar" + +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 #, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "No tiene permisos para crear un nuevo rol." +msgid "Cannot migrate department '%s':" +msgstr "Crear nuevo departamento" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" -msgstr "" +#: setup/class_setupStep_Migrate.inc:758 +#, 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." -#: include/class_plugin.inc:1786 -msgid "from" +#: setup/class_setupStep_Migrate.inc:913 +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:979 +#, php-format +msgid "Cannot add ACL for user '%s':" msgstr "" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -msgid "to" -msgstr "a" +#: setup/class_setupStep_Migrate.inc:1004 +#, fuzzy +msgid "Password error" +msgstr "La contraseña expira en" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 -msgid "Restore" +#: setup/class_setupStep_Migrate.inc:1004 +#, fuzzy +msgid "Provided passwords do not match!" msgstr "" +"¡La contraseñas introducidas como nueva y repita nueva contraseña no " +"coinciden!" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/class_setupStep_Migrate.inc:1009 +msgid "Input error" msgstr "" -#: include/class_plugin.inc:1993 -msgid "Create snapshot" -msgstr "" +#: setup/class_setupStep_Migrate.inc:1009 +#, fuzzy +msgid "Specify a valid user ID!" +msgstr "Por favor especifique un uid valido." -#: include/class_plugin.inc:1994 -msgid "Create a new snapshot from this object" +#: setup/class_setupStep_Migrate.inc:1051 +#, php-format +msgid "Adding an administrative user failed: object '%s' already exists!" msgstr "" -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "mover" +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#, fuzzy +msgid "Cannot move users to the requested department!" +msgstr "No puedo mover los usuarios al departamento especificado." -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "Mover esta entrada" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "La estaciones de trabajo windows serán trasladadas desde" -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "copiar" +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 +msgid "to" +msgstr "a" -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "Copiar esta entrada" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "También se actualizaran las siguientes referencias" -#: include/class_plugin.inc:2053 -#, fuzzy -msgid "Copy" -msgstr "copiar" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" +msgstr "El grupo serán trasladado desde" -#: include/class_plugin.inc:2057 -#, fuzzy -msgid "Cut" -msgstr "mover" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" +msgstr "El usuario serán trasladado desde" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "Las siguientes referencias se actualizaran" -#: include/class_acl.inc:26 -msgid "Access control" +#: setup/class_setupStep_Migrate.inc:1651 +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/class_acl.inc:207 -msgid "Reset ACLs" -msgstr "Eliminar ACLs" +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 +msgid "Try to create root object" +msgstr "Intentando crear el objeto raíz" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" +#: setup/class_setupStep_Migrate.inc:1664 +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/class_acl.inc:489 -#, fuzzy -msgid "No ACL settings for this category!" -msgstr "No hay ACL configuradas en esta categoría" - -#: include/class_acl.inc:491 -#, php-format -msgid "Contains ACLs for these objects: %s" -msgstr "ACLs que tienen estos objetos: %s" +#: setup/class_setupStep_Migrate.inc:1955 +#, fuzzy, php-format +msgid "Copy '%s' to '%s' failed:" +msgstr "Moviendo '%s' a '%s'" -#: include/class_acl.inc:496 include/class_acl.inc:497 -#, fuzzy -msgid "category ACL" -msgstr "Categoría" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "" -#: include/class_acl.inc:543 -#, fuzzy, php-format -msgid "Edit ACL for '%s' - scope is '%s'" -msgstr "Editar ACL para '%s', el ámbito es '%s'" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 -msgid "Show/hide advanced settings" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." msgstr "" -#: include/class_acl.inc:723 -msgid "Create objects" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." msgstr "" -#: include/class_acl.inc:724 -msgid "Move objects" +#: setup/setup_checks.tpl:67 +msgid "PHP setup configuration" msgstr "" -#: include/class_acl.inc:725 -msgid "Remove objects" +#: setup/setup_checks.tpl:67 +msgid "show information" msgstr "" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/setup_schema.tpl:3 +msgid "Schema specific settings" msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "leer" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "escribir" +#: setup/setup_schema.tpl:16 +msgid "Check status" +msgstr "" -#: include/class_acl.inc:743 -msgid "Complete object" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_acl.inc:879 -#, php-format -msgid "Unkown ACL type '%s'!" +#: setup/setup_schema.tpl:23 +msgid "Schema check failed" msgstr "" -#: include/class_acl.inc:922 -#, php-format -msgid "Unknown entry '%s'!" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, php-format -msgid "Role: %s" +#: 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 "" -#: include/class_acl.inc:984 +#: 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:198 #, fuzzy -msgid "unknown role" -msgstr "¡id desconocido!" +msgid "Session lifetime must be a numeric value!" +msgstr "Tiempo de vida de sesión debe ser un valor numérico" -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" -msgstr "" +#: setup/class_setupStep_Config3.inc:202 +#, fuzzy +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Máximo tiempo de consulta LDAP debe ser un valor numérico." -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "" +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +msgid "License" +msgstr "Licencia" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" -msgstr "" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" +msgstr "Términos y condiciones de uso" -#: include/class_acl.inc:1177 -msgid "Access control list" -msgstr "Lista de control de acceso" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" +msgstr "Comprobación de la instalación" -#: include/class_acl.inc:1182 -msgid "ACL roles" -msgstr "Rol" +#: setup/class_setupStep_Checks.inc:40 +#, fuzzy +msgid "Basic checks for PHP compatibility and extensions" +msgstr "Comprobación básica de la versión de PHP y las extensiones necesarias." -#: include/class_acl.inc:1185 -msgid "Role name" -msgstr "Nombre del Rol" +#: setup/class_setupStep_Checks.inc:64 +msgid "Checking PHP version" +msgstr "Comprobando la versión de PHP" -#: include/class_acl.inc:1186 -msgid "Role description" -msgstr "Descripción del Rol" +#: 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." -#: include/class_pluglist.inc:56 -msgid "All objects in this category" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." msgstr "" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." msgstr "" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 -msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." msgstr "" -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." +#: setup/class_setupStep_Checks.inc:97 +#, fuzzy +msgid "GOsa requires 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" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." msgstr "" -#: include/class_config.inc:242 -msgid "Cannot bind to LDAP. Please contact the system administrator." -msgstr "" +#: setup/class_setupStep_Checks.inc:112 +#, fuzzy +msgid "mbstring" +msgstr "Parametros de samba" -#: include/class_config.inc:574 -msgid "SID and/or RIDBASE missing in the configuration!" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." msgstr "" -#: include/class_config.inc:878 +#: setup/class_setupStep_Checks.inc:121 #, fuzzy -msgid "Configuration" -msgstr "Se puede escribir en la configuración" - -#: include/class_config.inc:878 msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." -msgstr "" +"GOsa requires this module to communicate with several supported databases." +msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas." -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, php-format -msgid "Copy and paste failed!" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, php-format -msgid "Cannot set permission for '%s'" +#: setup/class_setupStep_Checks.inc:129 +#, fuzzy +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." +msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas." + +#: setup/class_setupStep_Checks.inc:146 +#, fuzzy +msgid "samba hash generator" +msgstr "Función de generación de hash de la contraseña SAMBA" + +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, php-format -msgid "No write permission in '%s'" +#: setup/class_setupStep_Checks.inc:158 +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." -#: include/class_CopyPasteHandler.inc:386 -#, fuzzy, php-format -msgid "These objects will be pasted: %s" -msgstr "Las siguientes referencias se actualizaran" +#: setup/class_setupStep_Checks.inc:159 +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'." -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:167 +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." -#: include/class_CopyPasteHandler.inc:508 -#, fuzzy -msgid "Cannot paste" -msgstr "¡No puedo abrir el certificado especificado!" +#: setup/class_setupStep_Checks.inc:168 +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." -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:169 +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." -#: include/class_gosaSupportDaemon.inc:851 -#, fuzzy -msgid "Cannot not parse XML!" -msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" +msgstr "Off" -#: include/class_gosaSupportDaemon.inc:1177 -#, php-format -msgid "Cannot send abort event for entry %s!" +#: setup/class_setupStep_Checks.inc:177 +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." -#: include/class_gosaSupportDaemon.inc:1197 -#, php-format -msgid "Cannot remove entry %s!" -msgstr "" +#: setup/class_setupStep_Checks.inc:178 +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'." -#: include/functions_helpviewer.inc:45 -#, php-format -msgid "XML error in guide.xml: %s at line %d" +#: setup/class_setupStep_Checks.inc:185 +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." -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." -msgstr "" +#: setup/class_setupStep_Checks.inc:186 +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." -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" +#: setup/class_setupStep_Checks.inc:193 +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." -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "" +#: setup/class_setupStep_Checks.inc:194 +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'." -#: include/functions_helpviewer.inc:389 -#, php-format -msgid "%s results for your search with the keyword %s" -msgstr "" +#: setup/class_setupStep_Checks.inc:201 +msgid "The Execution time should be at least 30 seconds." +msgstr "El tiempo de ejecución debe ser de al menos 30 segundos." -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" +#: setup/class_setupStep_Checks.inc:202 +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." -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." +#: setup/class_setupStep_Checks.inc:209 +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." -#: include/class_SnapShotDialog.inc:145 -msgid "Remove snapshot" -msgstr "" +#: setup/class_setupStep_Checks.inc:210 +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'." -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +#: setup/class_setupStep_Checks.inc:216 +msgid "On" +msgstr "On" + +#: setup/class_setupStep_Checks.inc:217 +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." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:218 +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'." + +#: setup/class_setupStep_Checks.inc:225 +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'" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:226 +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'." -#: include/class_ldap.inc:636 +#: setup/class_setupStep_Checks.inc:236 +msgid "Configuration writeable" +msgstr "Se puede escribir en la configuración" + +#: setup/class_setupStep_Checks.inc:237 +msgid "The configuration file can't be written" +msgstr "No se puede escribir en la configuración" + +#: setup/class_setupStep_Checks.inc:238 #, php-format msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"GOsa reads its configuration from a file located in (%s/%s). The setup can " +"write the configuration directly if it is writeable." 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." -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" msgstr "" -#: include/class_ldap.inc:768 -#, php-format -msgid "while operating on '%s' using LDAP server '%s'" +#: setup/setup_config1.tpl:6 +msgid "Theme" msgstr "" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" +#: setup/setup_config1.tpl:15 +msgid "Apache" msgstr "" -#: include/class_ldap.inc:992 -#, php-format -msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" msgstr "" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/setup_config1.tpl:27 +msgid "People and group storage" msgstr "" -#: include/class_multi_plug.inc:362 -msgid "You are currently editing mutliple entries." +#: setup/setup_config1.tpl:30 +msgid "People DN attribute" msgstr "" -#: include/class_multi_plug.inc:391 -#, fuzzy -msgid "Password reset" -msgstr "La contraseña expira en" - -#: include/class_multi_plug.inc:391 -msgid "The user password was resetted, please set a new password value!" +#: setup/setup_config1.tpl:41 +msgid "People storage subtree" msgstr "" -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Servicio de Registro de sistema" - -#: include/class_log.inc:107 -#, fuzzy -msgid "MySQL error" -msgstr "Servicio LDAP" +#: setup/setup_config1.tpl:50 +msgid "Group storage subtree" +msgstr "" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" msgstr "" -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" msgstr "" -#: include/class_log.inc:124 +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "La contraseñas especificadas están vacías o no son iguales." +msgid "Automatic UIDs" +msgstr "Automatico" -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/setup_config1.tpl:113 +msgid "Number base for people/groups" msgstr "" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: include/class_baseSelectDialog.inc:44 -msgid "Choose a base" +#: setup/setup_config1.tpl:140 +msgid "Password encryption algorithm" msgstr "" -#: include/class_baseSelectDialog.inc:55 -msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +#: setup/setup_config1.tpl:151 +msgid "Password restrictions" msgstr "" -#: include/class_baseSelectDialog.inc:61 -#, fuzzy -msgid "Use" -msgstr "Usuario" - -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Acción" - -#: include/class_baseSelectDialog.inc:72 -#, fuzzy -msgid "Filter entries with this syntax" -msgstr "Entradas de filtrado con esta sintaxis" - -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Eliminar esta entrada" - -#: setup/class_setupStep_Ldap.inc:53 -msgid "LDAP setup" -msgstr "Configuración LDAP" - -#: setup/class_setupStep_Ldap.inc:54 -msgid "LDAP connection setup" -msgstr "Conectividad LDAP" - -#: setup/class_setupStep_Ldap.inc:55 -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 +msgid "Password minimum length" msgstr "" -"Este asistente llevara a cabo la configuración de la conectividad entre GOsa " -"y LDAP." - -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "No" - -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "Si" - -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito." - -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "Ha fallado la Autenticación como usuario '%s' en el servidor '%s'." - -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "La Autenticación Anónima en el servidor '%s'. ha tenido éxito." -#: setup/class_setupStep_Ldap.inc:113 -#, fuzzy -msgid "Please specify user and password!" -msgstr "Por Favor especifique un usuario y contraseña" - -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" +#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 +msgid "Different characters from old password" msgstr "" -"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Terminar" +#: setup/setup_config1.tpl:182 +msgid "Password change hook" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 -msgid "Write configuration file" -msgstr "Escribir archivo de configuración" +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" -#: setup/class_setupStep_Finish.inc:39 -msgid "Finish - write the configuration file" -msgstr "Terminar - Escribir el archivo de configuración" +#: setup/setup_config1.tpl:209 +msgid "Use account expiration" +msgstr "" -#: setup/class_setupStep_Finish.inc:101 -#, fuzzy +#: setup/setup_config1.tpl:221 msgid "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" +"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 "" -"El fichero de configuración es universalmente legible. ¡Por favor modifique " -"los permisos del archivo!" -#: setup/class_setupStep_Finish.inc:103 -msgid "The configuration is currently not readable or it does not exists." +#: 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 "" -"En estos momentos la configuración no es accesible o no tiene permisos para " -"leerla." -#: setup/class_setupStep_Finish.inc:112 -#, php-format +#: setup/setup_config1.tpl:223 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:" +"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 "" -"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:" - -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 -msgid "License" -msgstr "Licencia" - -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" -msgstr "Términos y condiciones de uso" - -#: 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/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 "" -#: setup/class_setupStep_Language.inc:47 -msgid "Automatic" -msgstr "Automatico" +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 +msgid "Setup error" +msgstr "" + +#: setup/class_setup.inc:197 +msgid "Completed" +msgstr "Completado" #: setup/class_setupStep_Feedback.inc:92 msgid "UNIX accounts/groups" @@ -4278,10 +4101,6 @@ msgstr "Avisos y sugerencias" msgid "Get notifications or send feedback" msgstr "Recibir avisos o enviar sugerencias" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -msgid "Setup error" -msgstr "" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" @@ -4315,1472 +4134,1667 @@ msgstr "" "Debe tener activa al menos una opción para suscribirse o enviar una " "sugerencia." -#: setup/class_setup.inc:197 -msgid "Completed" -msgstr "Completado" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" +msgstr "" -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -msgid "Next" +#: 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 "" -#: setup/setup_finish.tpl:3 -msgid "Create your configuration file" +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "Dirección correo electrónico" + +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" msgstr "" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" +#: 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 "" -#: setup/setup_finish.tpl:18 -msgid "Status: " +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" msgstr "" -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" msgstr "" -#: setup/setup_ldap.tpl:25 -msgid "LDAP connection" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" msgstr "" -#: setup/setup_ldap.tpl:29 -msgid "Location name" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" msgstr "" -#: setup/setup_ldap.tpl:37 -msgid "Connection URL" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" msgstr "" -#: setup/setup_ldap.tpl:45 -msgid "TLS connection" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" msgstr "" -#: setup/setup_ldap.tpl:65 -msgid "Reload" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" msgstr "" -#: setup/setup_ldap.tpl:69 -msgid "Authentication" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" msgstr "" -#: setup/setup_ldap.tpl:78 -msgid "Select user" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" msgstr "" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: setup/setup_feedback.tpl:123 +msgid "Features" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Contraseña de administrador" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "" -#: setup/setup_ldap.tpl:101 -msgid "Schema based settings" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/setup_ldap.tpl:117 -msgid "Current status" +#: include/class_SnapShotDialog.inc:90 +#, php-format +msgid "You're about to delete the snapshot '%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" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "" -#: setup/class_setupStep_Config1.inc:76 -msgid "GOsa generic settings" -msgstr "Configuración genérica de GOsa" +#: include/class_SnapShotDialog.inc:145 +msgid "Remove snapshot" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" +msgstr "" + +#: include/class_plugin.inc:497 +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 "" + +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 #, 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" +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." +msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" -msgstr "GID / UID min id" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "No tiene permisos para crear un nuevo rol." -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "No tiene permisos para crear un nuevo rol." + +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" +msgstr "" + +#: include/class_plugin.inc:1786 +msgid "from" +msgstr "" + +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +msgid "Restore" +msgstr "" + +#: include/class_plugin.inc:1994 +msgid "Create snapshot" +msgstr "" + +#: include/class_plugin.inc:1995 +msgid "Create a new snapshot from this object" +msgstr "" + +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "mover" + +#: include/class_plugin.inc:2013 +msgid "Cut this entry" +msgstr "Mover esta entrada" + +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "copiar" + +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "Copiar esta entrada" + +#: include/class_plugin.inc:2055 +#, fuzzy +msgid "Copy" +msgstr "copiar" + +#: include/class_plugin.inc:2059 +#, fuzzy +msgid "Cut" +msgstr "mover" + +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "" + +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 #, php-format -msgid "Don't add a trailing comma to '%s'." -msgstr "No añada una coma final a '%s'" +msgid "Copy and paste failed!" +msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "OU de almacenamiento de Usuarios" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, php-format +msgid "Cannot set permission for '%s'" +msgstr "" + +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" +msgstr "" + +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +#, fuzzy +msgid "Internal error" +msgstr "Insertar separador" + +#: include/class_CopyPasteHandler.inc:175 +#, php-format +msgid "No write permission in '%s'" +msgstr "" + +#: include/class_CopyPasteHandler.inc:386 +#, fuzzy, php-format +msgid "These objects will be pasted: %s" +msgstr "Las siguientes referencias se actualizaran" + +#: include/class_CopyPasteHandler.inc:410 +#, php-format +msgid "This object will be pasted: %s" +msgstr "" + +#: include/class_CopyPasteHandler.inc:508 +#, fuzzy +msgid "Cannot paste" +msgstr "¡No puedo abrir el certificado especificado!" + +#: include/utils/class_msgPool.inc:15 +#, fuzzy, php-format +msgid "Select to list objects of type '%s'." +msgstr "Seleccione para ver los servidores" + +#: include/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Seleccione para ver los servidores" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Seleccione para ver los servidores" + +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" +msgstr "" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "OU de almacenamiento de Grupos" +#: include/utils/class_msgPool.inc:35 +#, php-format +msgid "This '%s' object will be deleted!" +msgstr "" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" -msgstr "El Uid base debe ser un valor numérico" +#: include/utils/class_msgPool.inc:40 +#, php-format +msgid "This object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Config1.inc:134 -msgid "The given password minimum length is not numeric." +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" 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." +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" msgstr "" -"El valor indicado como diferencias mínimas de la contraseña no es un valor " -"numérico." -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -msgid "GOsa settings 2/3" -msgstr "Configuración GOsa 2/3" +#: include/utils/class_msgPool.inc:49 +#, php-format +msgid "This '%s' object will be deleted:" +msgstr "" -#: setup/class_setupStep_Config2.inc:88 -msgid "Customize special parameters" -msgstr "Personalizar parametros especiales" +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" +msgstr "" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" +#: include/utils/class_msgPool.inc:55 +#, php-format +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -msgid "LDAP inspection" -msgstr "Inspección LDAP" +#: include/utils/class_msgPool.inc:63 +#, fuzzy +msgid "You have no permission to delete this object!" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "Analice la compatibilidad con GOsa de su directorio LDAP" +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 +#, fuzzy +msgid "You have no permission to delete the object:" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:114 -msgid "Checking for root object" -msgstr "Comprobando objeto raíz" +#: include/utils/class_msgPool.inc:74 +#, fuzzy +msgid "You have no permission to delete these objects:" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "Comprobando permisos en la base de datos LDAP" +#: include/utils/class_msgPool.inc:81 +#, fuzzy +msgid "You have no permission to create this object!" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:126 +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 #, fuzzy -msgid "Checking for invisible departments" -msgstr "Comprobando departamentos invisibles" +msgid "You have no permission to create the object:" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:131 -msgid "Checking for invisible users" -msgstr "Comprobando usuarios invisibles" +#: include/utils/class_msgPool.inc:92 +#, fuzzy +msgid "You have no permission to create these objects:" +msgstr "No tiene permisos para eliminar este departamento." -#: setup/class_setupStep_Migrate.inc:137 -msgid "Checking for super administrator" -msgstr "Comprobando súper administrador" +#: include/utils/class_msgPool.inc:99 +#, fuzzy +msgid "You have no permission to modify this object!" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:143 -msgid "Checking for users outside the people tree" -msgstr "Comprobando cuentas fuera del árbol de usuarios" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:149 -msgid "Checking for groups outside the groups tree" -msgstr "Comprobando grupos fuera del árbol de grupos" +#: include/utils/class_msgPool.inc:110 +#, fuzzy +msgid "You have no permission to modify these objects:" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" -msgstr "" -"Comprobando estaciones de trabajo windows fuera del árbol de estaciones de " -"trabajo windows" +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:162 +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Comprobando números uid duplicados" +msgid "You have no permission to view the object:" +msgstr "No tiene permisos para cambiar su contraseña." -#: setup/class_setupStep_Migrate.inc:168 +#: include/utils/class_msgPool.inc:128 #, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Comprobando números uid duplicados" +msgid "You have no permission to view these objects:" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 -msgid "LDAP query failed" -msgstr "La consulta LDAP ha fallado" +#: include/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "Posiblemente el objeto raíz está desaparecido" +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#, fuzzy +msgid "You have no permission to move the object:" +msgstr "No tiene permisos para mover este objeto a '%s'." -#: setup/class_setupStep_Migrate.inc:217 +#: include/utils/class_msgPool.inc:146 +#, fuzzy +msgid "You have no permission to move these objects:" +msgstr "No tiene permisos para mover este objeto a '%s'." + +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +#, fuzzy +msgid "Connection information" +msgstr "Información genérica del usuario" + +#: include/utils/class_msgPool.inc:158 #, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Encontrado '%s' valores duplicados del atributo 'uidNumber'." +msgid "Cannot connect to %s database!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:269 +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." + +#: include/utils/class_msgPool.inc:176 #, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Encontrado '%s' valores duplicados del atributo 'gidNumber'." +msgid "No %s server defined!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Error" +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: setup/class_setupStep_Migrate.inc:329 +#: include/utils/class_msgPool.inc:194 +#, 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:200 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -"Se encontraron '%s' estaciones de trabajo windows fuera del contenedor ou de " -"estaciones de trabajo windows '%s'" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 -msgid "Migrate" -msgstr "Migrar" +#: include/utils/class_msgPool.inc:207 +#, php-format +msgid "'%s' command is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:209 #, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "Encontrados '%s' grupos fuera del árbol configurado '%s'." +msgid "'%s' command (%s) for plugin %s is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -msgid "Move" -msgstr "Mover" +#: include/utils/class_msgPool.inc:211 +#, php-format +msgid "'%s' command for plugin %s is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:479 +#: include/utils/class_msgPool.inc:213 #, php-format -msgid "Found %s user(s) outside the configured tree '%s'." -msgstr "Encontrados '%s' usuario(s) fuera del árbol configurado '%s'." +msgid "'%s' command (%s) is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." + +#: include/utils/class_msgPool.inc:223 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -"El usuario especificado '%s' no tiene acceso total a la base de datos LDAP." -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:225 #, 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." +msgid "Cannot execute '%s' command for plugin %s!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Migrar" +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: include/utils/class_msgPool.inc:235 #, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Crear nuevo departamento" +msgid "Value for '%s' is too large!" +msgstr "El valor especificado como 'UID' es demasiado pequeño." -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:237 #, 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." +msgid "'%s' must be smaller than %d!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." -msgstr "No hay cuenta de administrador GOsa en la base de datos LDAP." +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "El valor especificado como 'UID' es demasiado pequeño." -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:247 +#, fuzzy, php-format +msgid "'%s' must be %d or above!" +msgstr "PHP debe ser versión '%s'/'%s' o superior." + +#: include/utils/class_msgPool.inc:254 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 -#, fuzzy -msgid "Password error" -msgstr "La contraseña expira en" +#: include/utils/class_msgPool.inc:260 +#, 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." -#: setup/class_setupStep_Migrate.inc:1004 -#, fuzzy -msgid "Provided passwords do not match!" -msgstr "" -"¡La contraseñas introducidas como nueva y repita nueva contraseña no " -"coinciden!" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "No se ha asignado ningún valor al campo obligatorio 'Nombre'." -#: setup/class_setupStep_Migrate.inc:1009 -msgid "Input error" +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/class_setupStep_Migrate.inc:1009 -#, fuzzy -msgid "Specify a valid user ID!" -msgstr "Por favor especifique un uid valido." +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "El campo 'Nombre' no tiene caracteres validos." -#: setup/class_setupStep_Migrate.inc:1051 +#: include/utils/class_msgPool.inc:292 #, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" +msgid "'%s' is not allowed:" msgstr "" -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "No puedo mover los usuarios al departamento especificado." - -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "La estaciones de trabajo windows serán trasladadas desde" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' are not allowed!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "También se actualizaran las siguientes referencias" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "El campo 'Nombre' no tiene caracteres validos." -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "El grupo serán trasladado desde" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Eliminar extensión de impresión" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" -msgstr "El usuario serán trasladado desde" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Guardar" -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" -msgstr "Las siguientes referencias se actualizaran" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Añadir" -#: setup/class_setupStep_Migrate.inc:1651 -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/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Añadir" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -msgid "Try to create root object" -msgstr "Intentando crear el objeto raíz" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +msgstr "Eliminar" -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:344 +#, php-format +msgid "Set %s" msgstr "" -"El objeto raíz no ha podido ser creado, tendra que crearlo usted mismo." -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:350 #, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Moviendo '%s' a '%s'" - -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -msgid "GOsa settings 3/3" -msgstr "Configuración GOsa 3/3" +msgid "Edit..." +msgstr "Editar" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" -msgstr "Ajustar el comportamiento del núcleo común de GOsa" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Editar usuario" -#: setup/class_setupStep_Config3.inc:198 -#, fuzzy -msgid "Session lifetime must be a numeric value!" -msgstr "Tiempo de vida de sesión debe ser un valor numérico" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Atrás" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Máximo tiempo de consulta LDAP debe ser un valor numérico." +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "Esta cuenta no tiene extensiones GOsa validas" -#: setup/setup_language.tpl:3 -msgid "Please select the preferred language" +#: include/utils/class_msgPool.inc:381 +#, 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í" -#: setup/setup_language.tpl:5 +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, fuzzy, php-format 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 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." -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "Este paso le permite seleccionar su idioma preferido" +#: include/utils/class_msgPool.inc:400 +#, 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í." -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: setup/setup_feedback.tpl:9 +#: include/utils/class_msgPool.inc:410 +#, fuzzy, php-format 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 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." -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "Dirección correo electrónico" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Parametros Unix" -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Parámetros genéricos del usuario" + +#: include/utils/class_msgPool.inc:430 +msgid "Click the 'Edit' button below to change informations in this dialog" msgstr "" +"Pulse en el botón - Editar - para cambiar la información en esta ventana" + +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Enero" + +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Febrero" + +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Marzo" + +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "Abril" + +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Mayo" + +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Junio" + +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Julio" -#: 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 "" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Agosto" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "Septiembre" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Octubre" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "Noviembre" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Diciembre" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:444 +#, fuzzy +msgid "Sunday" +msgstr "Junio" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:444 +#, fuzzy +msgid "Monday" +msgstr "mes" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" msgstr "" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:444 +#, fuzzy +msgid "Wednesday" +msgstr "Miércoles" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" msgstr "" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" msgstr "" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" msgstr "" -#: setup/setup_feedback.tpl:123 -msgid "Features" +#: include/utils/class_msgPool.inc:451 +#, fuzzy +msgid "read operation" +msgstr "Eliminar opciones" + +#: include/utils/class_msgPool.inc:451 +msgid "add operation" msgstr "" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" +#: include/utils/class_msgPool.inc:451 +msgid "modify operation" msgstr "" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" +#: include/utils/class_msgPool.inc:452 +msgid "delete operation" msgstr "" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" +#: include/utils/class_msgPool.inc:452 +msgid "search operation" msgstr "" -#: setup/class_setupStep_Welcome.inc:38 -msgid "Welcome" -msgstr "Bienvenido" +#: include/utils/class_msgPool.inc:452 +#, fuzzy +msgid "authentication" +msgstr "Tipo de autentificación IAX" -#: setup/class_setupStep_Welcome.inc:39 -msgid "The welcome message" -msgstr "Mensaje de Bienvenida" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "La consulta LDAP ha fallado" -#: setup/class_setupStep_Welcome.inc:40 -msgid "Welcome to GOsa setup wizard" -msgstr "Bienvenidos al asistente de configuración de GOsa" +#: include/utils/class_msgPool.inc:457 +#, fuzzy +msgid "LDAP operation failed!" +msgstr "La consulta LDAP ha fallado" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" +#: include/utils/class_msgPool.inc:472 +msgid "Upload failed!" msgstr "" -#: setup/setup_config1.tpl:6 -msgid "Theme" -msgstr "" +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Servicio de Registro de sistema" -#: setup/setup_config1.tpl:15 -msgid "Apache" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" msgstr "" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" msgstr "" -#: setup/setup_config1.tpl:27 -msgid "People and group storage" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" msgstr "" -#: setup/setup_config1.tpl:30 -msgid "People DN attribute" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." msgstr "" +"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes " +"objetos están usando este rol %s" -#: setup/setup_config1.tpl:41 -msgid "People storage subtree" +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" msgstr "" +"Este Rol no puede ser eliminado por estar siendo usado. Los siguientes " +"objetos están usando este rol %s" -#: setup/setup_config1.tpl:50 -msgid "Group storage subtree" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" msgstr "" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "No se puede grabar el archivo '%s'." -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "No se puede grabar el archivo '%s'." + +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "Automatico" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Crear nuevo departamento" -#: setup/setup_config1.tpl:113 -msgid "Number base for people/groups" -msgstr "" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Crear nuevo departamento" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "" +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Comprobando soporte mhash" -#: setup/setup_config1.tpl:140 -msgid "Password encryption algorithm" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config1.tpl:151 -msgid "Password restrictions" +#: 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 "" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." msgstr "" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Ir al departamento raíz" -#: setup/setup_config1.tpl:182 -msgid "Password change hook" -msgstr "" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Raíz" -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Subir un departamento" -#: setup/setup_config1.tpl:209 -msgid "Use account expiration" -msgstr "" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Ir al departamento de usuarios" -#: 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 "" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Inicio" + +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "Recargar lista" -#: 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." +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" 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." +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." 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." +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" msgstr "" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Parametros de samba" - -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." msgstr "" -#: setup/setup_config2.tpl:31 -msgid "RID base" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" msgstr "" -#: setup/setup_config2.tpl:46 -msgid "Workstation container" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" msgstr "" -#: setup/setup_config2.tpl:61 -msgid "Samba SID mapping" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" msgstr "" -#: setup/setup_config2.tpl:71 -#, fuzzy -msgid "Timezone" -msgstr "Zona de uso horario del usuario OX" - -#: setup/setup_config2.tpl:74 -msgid "Please choose your preferred timezone here" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config2.tpl:96 -msgid "Additional GOsa settings" +#: include/class_ldap.inc:768 +#, php-format +msgid "while operating on '%s' using LDAP server '%s'" msgstr "" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" msgstr "" -#: setup/setup_config2.tpl:112 -#, fuzzy -msgid "Enable DNS extension" -msgstr "Eliminar extensión de impresión" - -#: setup/setup_config2.tpl:124 -#, fuzzy -msgid "Enable DHCP extension" -msgstr "Eliminar extensión de impresión" - -#: setup/setup_config2.tpl:136 -#, fuzzy -msgid "Enable mime type management" -msgstr "Administración Sieve" - -#: 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" +#: include/class_ldap.inc:992 +#, php-format +msgid "" +"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " +"in line %s" msgstr "" -#: setup/setup_config2.tpl:171 -msgid "Government mode" +#: include/class_ldap.inc:1021 +#, php-format +msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" msgstr "" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "¡id desconocido!" - -#: setup/setup_config2.tpl:186 -msgid "Syslog" +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "Servicio LDAP" - -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "Parámetros de correo" - -#: setup/setup_config2.tpl:197 -msgid "Mail method" +#: include/class_config.inc:242 +msgid "Cannot bind to LDAP. Please contact the system administrator." msgstr "" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/class_config.inc:574 +msgid "SID and/or RIDBASE missing in the configuration!" msgstr "" -#: setup/setup_config2.tpl:227 -msgid "Vacation templates" -msgstr "" +#: include/class_config.inc:878 +#, fuzzy +msgid "Configuration" +msgstr "Se puede escribir en la configuración" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config2.tpl:253 -msgid "Snapshots / Undo" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" msgstr "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -msgid "Enable snapshots" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -msgid "Snapshot base" +#: include/class_gosaSupportDaemon.inc:851 +#, fuzzy +msgid "Cannot not parse XML!" +msgstr "¡Demasiados usuarios!, no hay identificadores (ID) libres" + +#: include/class_gosaSupportDaemon.inc:1177 +#, php-format +msgid "Cannot send abort event for entry %s!" msgstr "" -#: setup/setup_config3.tpl:2 -msgid "GOsa core settings" +#: include/class_gosaSupportDaemon.inc:1197 +#, php-format +msgid "Cannot remove entry %s!" msgstr "" -#: setup/setup_config3.tpl:6 -msgid "Disable primary group filter" +#: include/class_multi_plug.inc:362 +msgid "You are currently editing mutliple entries." msgstr "" -#: setup/setup_config3.tpl:18 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Display summary in listings" -msgstr "Mostrar sistemas que coincidan con" +msgid "Password reset" +msgstr "La contraseña expira en" -#: setup/setup_config3.tpl:30 -msgid "Honour administrative units" +#: include/class_multi_plug.inc:391 +msgid "The user password was resetted, please set a new password value!" msgstr "" -#: setup/setup_config3.tpl:42 -msgid "Smarty compile directory" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" msgstr "" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_tabs.inc:373 +msgid "References" msgstr "" -#: setup/setup_config3.tpl:60 -msgid "Path for PPD storage" +#: include/class_baseSelectDialog.inc:44 +msgid "Choose a base" msgstr "" -#: setup/setup_config3.tpl:77 -msgid "Path for kiosk profile storage" +#: include/class_baseSelectDialog.inc:55 +msgid "" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -#: setup/setup_config3.tpl:96 +#: include/class_baseSelectDialog.inc:61 #, fuzzy -msgid "Override sudo role ou" -msgstr "¡id desconocido!" - -#: setup/setup_config3.tpl:115 -msgid "Mail queue script" -msgstr "" +msgid "Use" +msgstr "Usuario" -#: setup/setup_config3.tpl:134 -msgid "Notification script" -msgstr "" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Acción" -#: setup/setup_config3.tpl:153 +#: include/class_baseSelectDialog.inc:72 #, fuzzy -msgid "Enable edit locking" -msgstr "Activar comprobación de correo" +msgid "Filter entries with this syntax" +msgstr "Entradas de filtrado con esta sintaxis" -#: setup/setup_config3.tpl:172 -msgid "Login and session" -msgstr "" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "Eliminar esta entrada" -#: setup/setup_config3.tpl:175 -#, fuzzy -msgid "Login attribute" -msgstr "Base de datos de Registro" +#: include/functions_helpviewer.inc:45 +#, php-format +msgid "XML error in guide.xml: %s at line %d" +msgstr "" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." msgstr "" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" msgstr "" -#: setup/setup_config3.tpl:210 -msgid "Warn if session is not encrypted" +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" msgstr "" -#: setup/setup_config3.tpl:222 -#, fuzzy -msgid "Remember dialog filter settings" -msgstr "Parámetros genéricos del usuario" +#: include/functions_helpviewer.inc:389 +#, php-format +msgid "%s results for your search with the keyword %s" +msgstr "" -#: setup/setup_config3.tpl:234 -msgid "Session lifetime" +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" msgstr "" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" msgstr "" -#: setup/setup_config3.tpl:247 -msgid "Show PHP errors" +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_config3.tpl:259 -msgid "Maximum LDAP query time" +#: include/php_setup.inc:100 +msgid "Send bugreport" msgstr "" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" +#: include/php_setup.inc:105 +msgid "Toggle information" msgstr "" -#: setup/setup_config3.tpl:289 -msgid "Debug level" +#: include/php_setup.inc:115 +msgid "PHP error" msgstr "" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -msgid "Disabled" +#: include/php_setup.inc:134 +msgid "class" msgstr "" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 -msgid "Enabled" +#: include/php_setup.inc:140 +msgid "function" 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." +#: include/php_setup.inc:145 +msgid "static" msgstr "" -#: setup/setup_migrate.tpl:33 -msgid "Check again" +#: include/php_setup.inc:149 +msgid "method" msgstr "" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" +#: include/php_setup.inc:182 +msgid "Trace" msgstr "" -#: setup/setup_migrate.tpl:39 -msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" +#: include/php_setup.inc:183 +msgid "File" 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." +#: include/php_setup.inc:183 +msgid "Line" msgstr "" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" -msgstr "" +#: include/php_setup.inc:183 +msgid "Type" +msgstr "Tipo" -#: setup/setup_migrate.tpl:72 -msgid "Move selected workstations" +#: include/php_setup.inc:184 +msgid "Arguments" msgstr "" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" msgstr "" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" 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." +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" msgstr "" -#: setup/setup_migrate.tpl:91 +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 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." +"You are currently editing a database entry. Do you want to dismiss the " +"changes?" msgstr "" -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" -msgstr "" +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Servicio de Registro de sistema" -#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 -#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 -msgid "Hide changes" +#: include/class_log.inc:107 +#, fuzzy +msgid "MySQL error" +msgstr "Servicio LDAP" + +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" msgstr "" -#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 -#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 -msgid "Show changes" +#: include/class_log.inc:120 +#, php-format +msgid "Invalid option '%s' specified!" msgstr "" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" +#: 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." + +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" 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." +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" msgstr "" +"La Autenticación como usuario '%s' en el servidor '%s'. ha tenido éxito." -#: 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." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:148 -msgid "Move selected users into this people tree" +#: include/functions.inc:125 +#, php-format +msgid "" +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:199 -msgid "Abort" +#: include/functions.inc:335 +#, php-format +msgid "FATAL: Error when connecting the LDAP. Server said '%s'." msgstr "" -#: setup/setup_migrate.tpl:201 -msgid "Create a new GOsa administrator account" +#: include/functions.inc:397 +msgid "Username / UID is not unique inside the LDAP tree!" msgstr "" -#: setup/setup_migrate.tpl:204 +#: include/functions.inc:467 msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -#: setup/setup_migrate.tpl:233 -msgid "Password (again)" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/setup_migrate.tpl:258 +#: include/functions.inc:622 +#, php-format 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." +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" 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." +#: include/functions.inc:622 +#, php-format +msgid "LDAP server returned: %s" msgstr "" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -msgid "Current" +#: include/functions.inc:716 +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." msgstr "" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -msgid "After migration" +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" msgstr "" -#: setup/setup_migrate.tpl:313 +#: include/functions.inc:1015 +#, php-format 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." +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" msgstr "" -#: setup/setup_frame.tpl:12 -msgid "GOsa setup wizard" +#: include/functions.inc:1032 +msgid "incomplete" msgstr "" -#: setup/setup_frame.tpl:19 -msgid "Installation" +#: include/functions.inc:1311 +msgid "Continue anyway" msgstr "" -#: setup/setup_frame.tpl:19 -msgid "Steps" +#: include/functions.inc:1313 +msgid "Edit anyway" msgstr "" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -msgid "LDAP schema check" -msgstr "Comprobar esquemas LDAP" - -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" -msgstr "Efectuando comprobaciones en los esquemas actuales de LDAP" - -#: 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 -#, fuzzy -msgid "Basic checks for PHP compatibility and extensions" -msgstr "Comprobación básica de la versión de PHP y las extensiones necesarias." - -#: setup/class_setupStep_Checks.inc:64 -msgid "Checking PHP version" -msgstr "Comprobando la versión de PHP" - -#: setup/class_setupStep_Checks.inc:65 +#: include/functions.inc:1315 #, 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 "Please upgrade to a supported version." -msgstr "" +msgid "You're going to edit the LDAP entry/entries %s" +msgstr "Has decidido eliminar las siguientes entradas %s" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." +#: include/functions.inc:1499 +msgid "Entries per page" msgstr "" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." +#: include/functions.inc:1527 +msgid "Apply filter" msgstr "" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: setup/class_setupStep_Checks.inc:97 -#, fuzzy -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" msgstr "" -"Este módulo es necesario para poder hacer uso del método de codificación SSHA" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." msgstr "" -#: setup/class_setupStep_Checks.inc:112 -#, fuzzy -msgid "mbstring" -msgstr "Parametros de samba" - -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." +#: include/functions.inc:1936 include/functions.inc:1956 +msgid "Cannot write to revision file!" msgstr "" -#: setup/class_setupStep_Checks.inc:121 -#, fuzzy -msgid "" -"GOsa requires this module to communicate with several supported databases." -msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas." - -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" msgstr "" -#: setup/class_setupStep_Checks.inc:129 +#: include/functions.inc:2230 #, fuzzy -msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." -msgstr "MySQL es necesario para el acceso a algunas bases de datos soportadas." +msgid "LDAP warning" +msgstr "Aviso" -#: setup/class_setupStep_Checks.inc:146 +#: include/functions.inc:2230 #, fuzzy -msgid "samba hash generator" -msgstr "Función de generación de hash de la contraseña SAMBA" - -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +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_Checks.inc:148 -msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." msgstr "" -#: setup/class_setupStep_Checks.inc:158 +#: include/functions.inc:2263 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." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." 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:159 -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'." +#: include/functions.inc:2306 +#, php-format +msgid "Missing required object class '%s'!" +msgstr "" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -"PHP usa este valor en el recolector de basura para eliminar las sesiones " -"antiguas." -#: setup/class_setupStep_Checks.inc:168 -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" 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:169 -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -"Busque 'sessio.gc_maxlifetime' en su php.ini y modifíquelo a 86400 o mayor." -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" -msgstr "Off" +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" +msgstr "" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:2342 msgid "" -"In Order to use GOsa without any trouble, the session.auto_register option " -"in your php.ini should be set to 'Off'." +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." 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:178 -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:185 +#: include/functions.inc:2343 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." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" 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:186 +#: include/functions.inc:2347 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." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." +msgstr "" -#: setup/class_setupStep_Checks.inc:193 -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" 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:194 -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'." +#: include/functions.inc:2371 +msgid "German" +msgstr "" -#: setup/class_setupStep_Checks.inc:201 -msgid "The Execution time should be at least 30 seconds." -msgstr "El tiempo de ejecución debe ser de al menos 30 segundos." +#: include/functions.inc:2372 +msgid "French" +msgstr "Francés" -#: setup/class_setupStep_Checks.inc:202 -msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +#: include/functions.inc:2373 +msgid "Italian" msgstr "" -"Busque 'max_execution_time' en su php.ini y modifíquelo a '30' o mayor." -#: setup/class_setupStep_Checks.inc:209 -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." +#: include/functions.inc:2374 +msgid "Spanish" 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:210 -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:216 -msgid "On" -msgstr "On" +#: include/functions.inc:2375 +msgid "English" +msgstr "Inglés" -#: setup/class_setupStep_Checks.inc:217 -msgid "" -"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " -"escape all quotes in strings in this case." +#: include/functions.inc:2376 +msgid "Dutch" 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:218 -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'." -#: setup/class_setupStep_Checks.inc:225 -msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +#: include/functions.inc:2377 +msgid "Polish" msgstr "" -"Aumente el rendimiento de su servidor modificando 'magic_quotes_gpc' a 'off'" -#: setup/class_setupStep_Checks.inc:226 -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -"Busque 'zend.ze1_compatibility_mode' en su php.ini y modifíquelo a 'Off'." -#: setup/class_setupStep_Checks.inc:236 -msgid "Configuration writeable" -msgstr "Se puede escribir en la configuración" +#: include/functions.inc:2379 +msgid "Chinese" +msgstr "Chino" -#: setup/class_setupStep_Checks.inc:237 -msgid "The configuration file can't be written" -msgstr "No se puede escribir en la configuración" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Ruso" -#: setup/class_setupStep_Checks.inc:238 +#: include/functions.inc:2561 #, 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." +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." 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_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." +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/class_acl.inc:26 +msgid "Access control" msgstr "" -#: setup/setup_welcome.tpl:11 -msgid "Create a basic, single site configuration" -msgstr "" +#: include/class_acl.inc:207 +msgid "Reset ACLs" +msgstr "Eliminar ACLs" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" -msgstr "" +#: include/class_acl.inc:489 +#, fuzzy +msgid "No ACL settings for this category!" +msgstr "No hay ACL configuradas en esta categoría" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" +msgstr "ACLs que tienen estos objetos: %s" + +#: include/class_acl.inc:496 include/class_acl.inc:497 +#, fuzzy +msgid "category ACL" +msgstr "Categoría" + +#: include/class_acl.inc:543 +#, fuzzy, php-format +msgid "Edit ACL for '%s' - scope is '%s'" +msgstr "Editar ACL para '%s', el ámbito es '%s'" + +#: include/class_acl.inc:698 include/class_acl.inc:705 +msgid "Show/hide advanced settings" msgstr "" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" +#: include/class_acl.inc:723 +msgid "Create objects" msgstr "" -#: setup/setup_welcome.tpl:20 -msgid "Find every possible configuration error" +#: include/class_acl.inc:724 +msgid "Move objects" msgstr "" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" +#: include/class_acl.inc:725 +msgid "Remove objects" msgstr "" -#: setup/setup_welcome.tpl:25 -msgid "To continue..." +#: include/class_acl.inc:727 +msgid "Modifyable by owner" 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:" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "leer" + +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "escribir" + +#: include/class_acl.inc:743 +msgid "Complete object" msgstr "" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." +#: include/class_acl.inc:879 +#, php-format +msgid "Unkown ACL type '%s'!" msgstr "" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" msgstr "" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, php-format +msgid "Role: %s" msgstr "" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." -msgstr "" +#: include/class_acl.inc:984 +#, fuzzy +msgid "unknown role" +msgstr "¡id desconocido!" -#: setup/setup_checks.tpl:67 -msgid "PHP setup configuration" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" msgstr "" -#: setup/setup_checks.tpl:67 -msgid "show information" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" msgstr "" -#: setup/setup_schema.tpl:3 -msgid "Schema specific settings" +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "" +#: include/class_acl.inc:1177 +msgid "Access control list" +msgstr "Lista de control de acceso" -#: setup/setup_schema.tpl:16 -msgid "Check status" -msgstr "" +#: include/class_acl.inc:1182 +msgid "ACL roles" +msgstr "Rol" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" -msgstr "" +#: include/class_acl.inc:1185 +msgid "Role name" +msgstr "Nombre del Rol" -#: setup/setup_schema.tpl:23 -msgid "Schema check failed" -msgstr "" +#: include/class_acl.inc:1186 +msgid "Role description" +msgstr "Descripción del Rol" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_certificate.inc:73 +#, fuzzy +msgid "Certificate is empty!" +msgstr "Número de serie del certificado" -#: 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!" +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -#: html/helpviewer.php:70 -msgid "Help browser" +#: include/class_certificate.inc:115 +msgid "Cannot extract information for non PEM certificates!" msgstr "" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "" +#: include/class_certificate.inc:219 +#, fuzzy +msgid "No valid certificate loaded!" +msgstr "No hay certificados instalados" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "No tiene permisos para cambiar su contraseña." -#: html/setup.php:66 +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 #, fuzzy -msgid "Smarty" -msgstr "Sumario" +msgid "Old password" +msgstr "contraseña" -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Contraseña del usuario" -#: html/password.php:58 html/index.php:142 -#, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here to change your password" +msgstr "Permitir al usuario cambiar su contraseña" -#: html/password.php:163 -msgid "Error: Password method not available!" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" msgstr "" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." +#: 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 "" -#: 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:420 -msgid "Session will not be encrypted." +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" msgstr "" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" +#: 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 "" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" msgstr "" -#: html/main.php:172 +#: ihtml/themes/default/acl.tpl:31 #, fuzzy -msgid "PHP configuration" -msgstr "Escribir archivo de configuración" +msgid "Additional filter options" +msgstr "Eliminar opciones" -#: html/main.php:173 -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" msgstr "" -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:361 +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "" + +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Your password is about to expire, please change your password!" -msgstr "No tiene permisos para cambiar su contraseña." +msgid "ACL for this object" +msgstr "ACLs que tienen estos objetos: %s" -#: html/main.php:370 -msgid "Plugin" +#: ihtml/themes/default/acl.tpl:113 +msgid "Available roles" msgstr "" -#: html/main.php:371 -#, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +#: 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 "" -#: html/index.php:57 -msgid "Session is not encrypted!" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" msgstr "" -#: html/index.php:64 +#: ihtml/themes/default/snapshotdialog.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"This procedure will restore a snapshot of the selected object. It will " +"replace the existing object after pressing the restore button." msgstr "" -#: html/index.php:167 -#, fuzzy -msgid "Smarty error" -msgstr "Insertar separador" +#: 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 "" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +msgid "There is no snapshot available that could be restored" msgstr "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: ihtml/themes/default/snapshotdialog.tpl:49 +msgid "Creating object snapshots" msgstr "" -#: html/index.php:283 -msgid "Your LDAP setup contains old schema definitions:" +#: 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 "" -#: html/index.php:304 -msgid "Please specify a valid username!" +#: 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 "" -#: html/index.php:307 -msgid "Please specify your password!" +#: ihtml/themes/default/snapshotdialog.tpl:70 +msgid "Timestamp" msgstr "" -#: html/index.php:319 -#, fuzzy -msgid "Authentication error" -msgstr "Tipo de autentificación IAX" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" +msgstr "" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: 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 "" + +#: ihtml/themes/default/sizelimit.tpl:6 +msgid "Please choose the way to react for this session" msgstr "" -#: html/index.php:375 -msgid "Account locked. Please contact your system administrator!" +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" msgstr "" -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" #: ihtml/themes/default/copyPasteDialog.tpl:1 @@ -5820,17 +5834,6 @@ msgstr "" msgid "Index" msgstr "" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -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 "" - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "" @@ -5851,40 +5854,41 @@ msgstr "" msgid "GOsa main menu" 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." +#: ihtml/themes/default/logout-close.tpl:5 +msgid "Your GOsa session has been closed!" msgstr "" -#: ihtml/themes/default/acl.tpl:31 -#, fuzzy -msgid "Additional filter options" -msgstr "Eliminar opciones" +#: 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 "" -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" +#: ihtml/themes/default/login.tpl:27 +msgid "Login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: ihtml/themes/default/login.tpl:34 +msgid "" +"Please use your username and your password to log into the site " +"administration system." msgstr "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" +#: 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 "" -#: ihtml/themes/default/acl.tpl:107 -#, fuzzy -msgid "ACL for this object" -msgstr "ACLs que tienen estos objetos: %s" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "" -#: ihtml/themes/default/acl.tpl:113 -msgid "Available roles" +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" msgstr "" #: ihtml/themes/default/conflict.tpl:2 @@ -5930,11 +5934,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -5945,154 +5944,158 @@ msgstr "activo, la contraseña expiró" msgid "Change" msgstr "Cancelar" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" +msgstr "" + +#: html/main.php:172 #, fuzzy -msgid "Click here to change your password" -msgstr "Permitir al usuario cambiar su contraseña" +msgid "PHP configuration" +msgstr "Escribir archivo de configuración" -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:173 +msgid "" +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." msgstr "" -#: ihtml/themes/default/login.tpl:27 -msgid "Login screen" +#: html/main.php:218 +msgid "Running out of memory!" msgstr "" -#: ihtml/themes/default/login.tpl:34 -msgid "" -"Please use your username and your password to log into the site " -"administration system." +#: html/main.php:292 +msgid "User ACL checks disabled" msgstr "" -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" +#: html/main.php:361 +#, fuzzy +msgid "Your password is about to expire, please change your password!" +msgstr "No tiene permisos para cambiar su contraseña." + +#: html/main.php:370 +msgid "Plugin" msgstr "" -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" +#: html/main.php:371 +#, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" msgstr "" -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" +#: html/index.php:57 +msgid "Session is not encrypted!" msgstr "" -#: ihtml/themes/default/logout.tpl:7 +#: html/index.php:64 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." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" +#: html/index.php:142 html/password.php:58 +#, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." 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." +#: html/index.php:167 +#, fuzzy +msgid "Smarty error" +msgstr "Insertar separador" + +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" msgstr "" -#: ihtml/themes/default/sizelimit.tpl:6 -msgid "Please choose the way to react for this session" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" msgstr "" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" 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" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" msgstr "" -#: ihtml/themes/default/logout-close.tpl:5 -msgid "Your GOsa session has been closed!" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" 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." +#: html/index.php:283 +msgid "Your LDAP setup contains old schema definitions:" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "No tiene permisos para cambiar su contraseña." +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 -#, fuzzy -msgid "Old password" -msgstr "contraseña" +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 +#: html/index.php:319 #, fuzzy -msgid "Verify password" -msgstr "Contraseña del usuario" +msgid "Authentication error" +msgstr "Tipo de autentificación IAX" -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" 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." +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." 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)." +#: html/index.php:375 +msgid "Account locked. Please contact your system administrator!" 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 ?" +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 -msgid "There is no snapshot available that could be restored" +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" +#: html/index.php:426 +msgid "" +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:49 -msgid "Creating object snapshots" +#: html/password.php:163 +msgid "Error: Password method not available!" 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." -msgstr "" +#: html/password.php:232 +msgid "You have no permissions to change your password." +msgstr "No tiene permisos para cambiar su contraseña." -#: 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." +#: 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/helpviewer.php:70 +msgid "Help browser" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:70 -msgid "Timestamp" +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." msgstr "" +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Sumario" + #, fuzzy #~ msgid "Delete users" #~ msgstr "Eliminar usuario" diff --git a/gosa-core/locale/core/fr/LC_MESSAGES/messages.po b/gosa-core/locale/core/fr/LC_MESSAGES/messages.po index 16864caa2..41d2825d2 100644 --- a/gosa-core/locale/core/fr/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/fr/LC_MESSAGES/messages.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2007-07-19 11:57+0200\n" "Last-Translator: Benoit Mortier \n" "Language-Team: Français \n" @@ -14,11 +14,90 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "Le changement du mot de passe n'est pas autorisé" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe." + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +msgid "Password settings" +msgstr "Préférences pour les mots de passe" + +#: 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." + +#: 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." + +#: 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." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Mot de passe actuel" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Nouveau mot de passe" + +#: 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" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "Format de stockage des mots de passe" + +#: 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" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Effacer les données dans les champs" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Mot de passe" @@ -37,8 +116,8 @@ msgstr "Modifier votre mot de passe" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 msgid "Password change" msgstr "Changement de mot de passe" @@ -94,119 +173,712 @@ msgid "User password" msgstr "Mot de passe" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Mon Compte" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "Le changement du mot de passe n'est pas autorisé" - -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe." +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Image personnelle" -#: 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." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Suppression de l'image personnelle" -#: 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." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Informations" -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Mot de passe actuel" +#: plugins/personal/generic/class_user.inc:38 +#, fuzzy +msgid "Edit organizational user settings" +msgstr "Paramètres supplémentaire de GOsa" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Nouveau mot de passe" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "féminin" -#: 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" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "masculin" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -#, fuzzy -msgid "Password strength" -msgstr "Format de stockage des mots de passe" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "Erreur" -#: 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" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Effacer les données dans les champs" +#: plugins/personal/generic/class_user.inc:503 +#, fuzzy +msgid "Serial number" +msgstr "Numéro de page" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" msgstr "" -"Votre mot de passe a été changé. N'oubliez pas de modifier les programmes " -"qui l'utilisent." +"(Certains types de certificats ne sont pas supportés et peuvent être " +"affichés comme 'non valides'.)" -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -msgid "Password settings" -msgstr "Préférences pour les mots de passe" +#: plugins/personal/generic/class_user.inc:558 +#, 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." -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Sélectionner les groupes à ajouter" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "valide" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Filtres" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "invalide" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "Afficher les groupes du département" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "Pas de certificat installé" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "Sélectionner le département où sera effectuée la recherche" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "Format de stockage des mots de passe" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "Afficher les groupes correspondants" +#: plugins/personal/generic/class_user.inc:592 +#, fuzzy +msgid "The selected password method is no longer available." +msgstr "L'application sélectionnée n'est plus disponible." -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/personal/generic/class_user.inc:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 +#, fuzzy +msgid "LDAP error" +msgstr "Erreur LDAP :" + +#: plugins/personal/generic/class_user.inc:1149 +#, fuzzy +msgid "The selected password method requires initial configuration!" +msgstr "L'application sélectionnée n'est plus disponible." + +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Identifiant" + +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" +msgstr "Nom" + +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" +msgstr "Prénom" + +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Page d'accueil" + +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Téléphone" + +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" + +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" +msgstr "GSM" + +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "Bip" + +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "Impossible d'ouvrir le certificat demandé !" + +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Unité" + +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Identifiant du bâtiment" + +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Travail" + +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Dernière distribution" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Lieu de résidence" + +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Description de l'unité" + +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Zone de sujet" + +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Fonction" + +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Numéro de série du certificat" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Visible par tous" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Rue" + +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Rôle" + +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Code postal" + +#: plugins/personal/generic/class_user.inc:1487 +msgid "Generic user settings" +msgstr "Paramètres par défaut des utilisateurs" + +#: plugins/personal/generic/class_user.inc:1492 +#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 +msgid "Users" +msgstr "Utilisateurs" + +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Base" + +#: plugins/personal/generic/class_user.inc:1498 +msgid "Surename" +msgstr "Nom de famille" + +#: plugins/personal/generic/class_user.inc:1500 +msgid "User identification" +msgstr "Information Utilisateur" + +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Titre Personnel" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Titre Universitaire" + +#: plugins/personal/generic/class_user.inc:1503 +msgid "Home postal address" +msgstr "Adresse postale personnelle" + +#: plugins/personal/generic/class_user.inc:1504 +msgid "Home phone number" +msgstr "Numéro de téléphone privé" + +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Entreprise" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Département" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Date de naissance" + +#: plugins/personal/generic/class_user.inc:1509 +msgid "Gender" +msgstr "Sexe" + +#: plugins/personal/generic/class_user.inc:1510 +msgid "Preferred language" +msgstr "Langue préférée" + +#: plugins/personal/generic/class_user.inc:1511 +msgid "Department number" +msgstr "Numéro du département" + +#: plugins/personal/generic/class_user.inc:1512 +msgid "Employee number" +msgstr "Numéro de l'employé" + +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Type de l'employé" + +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Lieu" + +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Département" + +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "Image de l'utilisateur" + +#: plugins/personal/generic/class_user.inc:1517 +msgid "Room number" +msgstr "Numéro du bureau" + +#: plugins/personal/generic/class_user.inc:1518 +msgid "Telefon number" +msgstr "Numéro de téléphone" + +#: plugins/personal/generic/class_user.inc:1519 +msgid "Mobile number" +msgstr "Numéro de GSM" + +#: plugins/personal/generic/class_user.inc:1520 +msgid "Pager number" +msgstr "Numéro de page" + +#: plugins/personal/generic/class_user.inc:1521 +msgid "User certificates" +msgstr "Certificats utilisateurs" + +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "Adresse postale" + +#: plugins/personal/generic/class_user.inc:1524 +msgid "Fax number" +msgstr "Numéro de fax" + +#: 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." + +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Information générales sur l'utilisateur" + +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Informations personnelles" + +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" +msgstr "Changer la photo" + +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +msgstr "Nom de famille" + +#: 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 "" + +#: plugins/personal/generic/generic.tpl:62 +msgid "Template name" +msgstr "Nom du modèle" + +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "Prénom" + +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" +msgstr "Activer" + +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" +msgstr "Sexe" + +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "Langue préférée" + +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Sélectionnez la branche où sera enregistrée l'utilisateur" + +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "Sélectionnez une base" + +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Adresse" + +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Numéro de téléphone privé" + +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "Format de stockage des mots de passe" + +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "Configurer" + +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Certificats" + +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Editer des certificats" + +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Informations sur l'entreprise" + +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "No. du département." + +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "No. de l'employé." + +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "No. de bureau." + +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "Veuillez utiliser l'onglet téléphone" + +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "Certificat standard" + +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Supprimer" + +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "Certificat S/MIME" + +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "Certificat PKCS12" + +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" +msgstr "Préférences utilisateur" + +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" +msgstr "Effacer le mot de passe" + +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "Attribuer un nouveau mot de passe" + +#: 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 "" +"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/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Sélectionner les groupes à ajouter" + +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Filtres" + +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Afficher les groupes du département" + +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: 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" + +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Afficher les groupes correspondants" + +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 msgid "Regular expression for matching group names" msgstr "Expression régulière correspondant à des noms de groupe" @@ -225,109 +897,90 @@ msgstr "Utilisateur dont on montre les groupes" msgid "Search in subtrees" msgstr "Chercher dans les sous arbre" -#: 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" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Sélectionner les hôtes à ajouter" -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "Le mot de passe expirera le" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Afficher les systèmes du département" -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Afficher les systèmes correspondant" + +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Expression régulière pour sélectionner les adresses correspondantes" + +#: plugins/personal/posix/main.inc:131 +#, fuzzy +msgid "POSIX settings" msgstr "Paramètres Posix" -#: plugins/personal/posix/paste_generic.tpl:8 #: plugins/personal/posix/generic.tpl:7 #: plugins/personal/posix/class_posixAccount.inc:1003 #: plugins/personal/posix/class_posixAccount.inc:1006 #: plugins/personal/posix/class_posixAccount.inc:1076 #: plugins/personal/posix/class_posixAccount.inc:1079 #: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 msgid "Home directory" msgstr "Répertoire Home" -#: plugins/personal/posix/paste_generic.tpl:23 +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" + +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Groupe principal" + +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Statut" + #: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 msgid "Force UID/GID" msgstr "Forcer l'UID/GID" -#: plugins/personal/posix/paste_generic.tpl:28 #: plugins/personal/posix/generic.tpl:56 #: plugins/personal/posix/class_posixAccount.inc:1014 #: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 msgid "UID" msgstr "UID" -#: plugins/personal/posix/paste_generic.tpl:37 #: plugins/personal/posix/generic.tpl:67 #: plugins/personal/posix/class_posixAccount.inc:1021 #: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 #: plugins/admin/groups/class_groupGeneric.inc:1111 #: plugins/admin/groups/class_groupGeneric.inc:1114 #: plugins/admin/groups/class_groupGeneric.inc:1228 msgid "GID" msgstr "GID" -#: plugins/personal/posix/paste_generic.tpl:47 #: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 msgid "Group membership" msgstr "Appartenance au groupe" -#: plugins/personal/posix/paste_generic.tpl:54 #: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 msgid "(Warning: more than 16 groups are not supported by NFS!)" msgstr "(Attention: NFS ne supporte pas plus de 16 groupes !)" -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Sélectionner les hôtes à ajouter" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Afficher les systèmes du département" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Afficher les systèmes correspondant" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Expression régulière pour sélectionner les adresses correspondantes" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Informations" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Groupe principal" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Statut" - #: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy msgid "In all groups" @@ -347,8 +1000,8 @@ msgid "System trust" msgstr "Système de Confiance" #: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 msgid "Trust mode" msgstr "Mode de confiance" @@ -403,18 +1056,18 @@ msgid "POSIX" msgstr "" #: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 #: plugins/generic/references/class_reference.inc:47 #: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 msgid "Samba" msgstr "Samba" #: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 #: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 msgid "Environment" msgstr "Environnement" @@ -443,79 +1096,41 @@ msgid "Warn user %s days before password expiery" msgstr "Avertir l'utilisateur %s jours avant l'expiration de son mot de passe" #: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 msgid "disabled" msgstr "désactivé" #: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 #: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 msgid "full access" msgstr "accès complet" #: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 #: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 msgid "allow access to these hosts" msgstr "permettre l'accès a ces hôtes" -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -#, fuzzy -msgid "LDAP error" -msgstr "Erreur LDAP :" - #: plugins/personal/posix/class_posixAccount.inc:817 #: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 +#: plugins/admin/departments/remove.tpl:2 #: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 msgid "Warning" msgstr "Avertissement" @@ -556,42 +1171,6 @@ msgstr "Avertissement" msgid "shadowInactive" msgstr "actif" -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "Erreur" - #: plugins/personal/posix/class_posixAccount.inc:1319 #: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy @@ -624,757 +1203,565 @@ msgid "Shadow max" msgstr "" #: plugins/personal/posix/class_posixAccount.inc:1512 -msgid "Shadow warning" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -msgid "Shadow inactive" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -msgid "Shadow expire" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -msgid "System trust model" -msgstr "Système de Confiance" - -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Paramètres Posix" - -#: 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 "" -"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/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Image personnelle" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Suppression de l'image personnelle" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Informations personnelles" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Titre Universitaire" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "Langue préférée" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Base" - -#: 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" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -msgstr "Sélectionnez une 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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Adresse" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Numéro de téléphone privé" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Page d'accueil" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Format de stockage des mots de passe" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Certificats" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Editer des certificats" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Informations sur l'entreprise" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Entreprise" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Département" - -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "No. du département." - -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "No. de l'employé." - -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Type de l'employé" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "No. de bureau." - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Téléphone" +msgid "Shadow warning" +msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "GSM" +#: plugins/personal/posix/class_posixAccount.inc:1513 +msgid "Shadow inactive" +msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "Bip" +#: plugins/personal/posix/class_posixAccount.inc:1514 +msgid "Shadow expire" +msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" +#: plugins/personal/posix/class_posixAccount.inc:1515 +msgid "System trust model" +msgstr "Système de Confiance" -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Lieu" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "Paramètres Posix" -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Département" +#: 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" -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Travail" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "Le mot de passe expirera le" -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Description de l'unité" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "Nom de l'objet" -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Zone de sujet" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Description" -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Fonction" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "Contenu" -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Rôle" +#: 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." -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Lieu de résidence" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Messagerie" -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Unité" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "FAX" -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Rue" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Code postal" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Identifiant du bâtiment" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Groupes" -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Dernière distribution" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Applications" -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Visible par tous" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Serveur" -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "Préférences utilisateur" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "Clients légers" -#: 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" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Stations de travail" -#: 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" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Groupes d'objets" -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Identifiant" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Imprimante" -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "Effacer le mot de passe" +#: 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 "" +"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é." -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "Attribuer un nouveau mot de passe" +#: 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." -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "Image de l'utilisateur" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "L'équipe de GOsa" -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" -msgstr "Changer la photo" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Bienvenue %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" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" msgstr "" -#: plugins/personal/generic/generic.tpl:62 -msgid "Template name" -msgstr "Nom du modèle" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Titre Personnel" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Gestion des départements" -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Date de naissance" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "Opération en cours" -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" -msgstr "Activer" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"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." -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" -msgstr "Sexe" +#: 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." -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "Configurer" +#: 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." -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -msgstr "Veuillez utiliser l'onglet téléphone" +#: plugins/admin/departments/generic.tpl:4 +#: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 +msgid "Properties" +msgstr "Propriétés" -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" -msgstr "Certificat standard" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "Nom du département" -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Supprimer" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "Nom de la branche à créer" -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "Certificat S/MIME" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "Description du département" -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "Certificat PKCS12" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Catégorie" -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "Numéro de série du certificat" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "Catégorie pour cette branche de l'annuaire" -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Paramètres supplémentaire de GOsa" +#: 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" -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "féminin" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "Lieu où est située cette branche de l'annuaire" -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "masculin" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "Lieu de cette branche" -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "Adresse postale de cette branche" -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Numéro de page" +#: 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" -#: plugins/personal/generic/class_user.inc:548 -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'.)" +#: 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" -#: plugins/personal/generic/class_user.inc:558 -#, 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." +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "Paramètres administratifs" -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "valide" +#: 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" -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "invalide" +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "Liste des départements" -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "Pas de certificat installé" +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" -msgstr "Format de stockage des mots de passe" +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" +msgstr "Nom du département" -#: plugins/personal/generic/class_user.inc:592 -#, fuzzy -msgid "The selected password method is no longer available." -msgstr "L'application sélectionnée n'est plus disponible." +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Actions" -#: plugins/personal/generic/class_user.inc:1149 -#, fuzzy -msgid "The selected password method requires initial configuration!" -msgstr "L'application sélectionnée n'est plus disponible." +#: 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" -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "Name" -msgstr "Nom" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Soumettre le département" -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" -msgstr "Prénom" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "Soumettre" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "Impossible d'ouvrir le certificat demandé !" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Créer" -#: plugins/personal/generic/class_user.inc:1487 -msgid "Generic user settings" -msgstr "Paramètres par défaut des utilisateurs" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "éditer" -#: plugins/personal/generic/class_user.inc:1492 -#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 -msgid "Users" -msgstr "Utilisateurs" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "Edit this entry" +msgstr "Editer cette entrée" -#: plugins/personal/generic/class_user.inc:1498 -msgid "Surename" -msgstr "Nom de famille" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "supprimer" -#: plugins/personal/generic/class_user.inc:1500 -msgid "User identification" -msgstr "Information Utilisateur" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "Delete this entry" +msgstr "Supprimer cette entrée" -#: plugins/personal/generic/class_user.inc:1503 -msgid "Home postal address" -msgstr "Adresse postale personnelle" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "département" -#: plugins/personal/generic/class_user.inc:1504 -msgid "Home phone number" -msgstr "Numéro de téléphone privé" +#: plugins/admin/departments/class_divListDepartment.inc:229 +#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 +#, fuzzy +msgid "Number of listed departments" +msgstr "Nom du département" -#: plugins/personal/generic/class_user.inc:1509 -msgid "Gender" -msgstr "Sexe" +#: 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/personal/generic/class_user.inc:1510 -msgid "Preferred language" -msgstr "Langue préférée" +#: 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 "" +"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/personal/generic/class_user.inc:1511 -msgid "Department number" -msgstr "Numéro du département" +#: 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/personal/generic/class_user.inc:1512 -msgid "Employee number" -msgstr "Numéro de l'employé" +#: 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 "" +"Avant de confirmer cette action, vérifiez que tout se passera comme prévu, " +"la meilleure solution est probablement une sauvegarde." -#: plugins/personal/generic/class_user.inc:1517 -msgid "Room number" -msgstr "Numéro du bureau" +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 +#, fuzzy +msgid "Fatal error" +msgstr "Serveur de terminaux" -#: plugins/personal/generic/class_user.inc:1518 -msgid "Telefon number" -msgstr "Numéro de téléphone" +#: plugins/admin/departments/class_departmentGeneric.inc:313 +#, 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 !" -#: plugins/personal/generic/class_user.inc:1519 -msgid "Mobile number" -msgstr "Numéro de GSM" +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "Marquer '%s'." -#: plugins/personal/generic/class_user.inc:1520 -msgid "Pager number" -msgstr "Numéro de page" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Continuer" -#: plugins/personal/generic/class_user.inc:1521 -msgid "User certificates" -msgstr "Certificats utilisateurs" +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "Bouger '%s' vers '%s'" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "Adresse postale" +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Objet" -#: plugins/personal/generic/class_user.inc:1524 -msgid "Fax number" -msgstr "Numéro de fax" +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "Impossible de copier %s, arrêt de l'opération" -#: 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." +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Départements" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Information générales sur l'utilisateur" +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Pays" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Téléphone" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "L'objet '%s' est déjà marqué" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "" +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "Ajouter une marque (%s) à l'objet '%s'" -#: plugins/admin/acl/tabs_acl_role.inc:28 -msgid "ACL Templates" -msgstr "Modèles des ACL" +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "Suppression de la marque de l'objet '%s'" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +#: plugins/admin/departments/class_departmentManagement.inc:27 #, fuzzy -msgid "Manage access control lists" -msgstr "Contrôle d'accès (ACL)" +msgid "Manage Departments" +msgstr "Départements" +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 #: plugins/admin/acl/class_aclManagement.inc:166 #: plugins/admin/acl/class_aclManagement.inc:209 #: plugins/admin/acl/class_aclManagement.inc:259 #: plugins/admin/acl/class_aclManagement.inc:283 #: plugins/admin/acl/class_aclManagement.inc:340 #: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 #: plugins/admin/ogroups/class_ogroupManagement.inc:285 #: plugins/admin/ogroups/class_ogroupManagement.inc:338 #: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 +#, fuzzy +msgid "Permission error" +msgstr "Permissions" + +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, 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'." + +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "" + +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 #, fuzzy -msgid "Permission error" -msgstr "Permissions" +msgid "Manage access control lists" +msgstr "Contrôle d'accès (ACL)" #: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 #: plugins/admin/users/class_userManagement.inc:343 #: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/groups/class_groupManagement.inc:359 #: include/class_plugin.inc:1527 include/class_plugin.inc:1540 #: include/class_plugin.inc:1555 include/class_plugin.inc:1568 #, fuzzy msgid "Permission" msgstr "Permissions" +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +msgid "ACL management" +msgstr "Gestion des ACL" + +#: 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." + #: plugins/admin/acl/class_divListACL.inc:51 #: plugins/admin/acl/class_divListACL.inc:52 msgid "List of acls" msgstr "Liste des acls" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/admin/acl/class_divListACL.inc:73 msgid "Summary" msgstr "Sommaire" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Actions" - #: plugins/admin/acl/class_divListACL.inc:84 msgid "Display acls matching" msgstr "Afficher les acls correspondantes" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Soumettre le département" - -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "Soumettre" - -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Créer" - -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "éditer" - #: plugins/admin/acl/class_divListACL.inc:215 msgid "Edit acl role" msgstr "Editer un rôle acl" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "supprimer" - #: plugins/admin/acl/class_divListACL.inc:223 msgid "Delete acl role" msgstr "Supprimer un rôle acl" @@ -1387,69 +1774,6 @@ msgstr "Editer un acl" msgid "Delete acl" msgstr "Effacer un acl" -#: 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." - -#: 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." -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/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -#, fuzzy -msgid "Assigned ACL for current entry" -msgstr "ACL assignés à l'entrée actuelle" - -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Description" - -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "Sélectionnez la branche où sera placée le groupe" - -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -msgid "New ACL" -msgstr "Nouvel ACL" - -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -msgid "ACL type" -msgstr "Type ACL" - -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -msgid "Select an acl type" -msgstr "Sélectionnez un type d'acl" - -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -msgid "List of available ACL categories" -msgstr "Liste des catégories d'acl disponibles" - #: plugins/admin/acl/class_aclRole.inc:26 #: plugins/admin/acl/class_aclRole.inc:698 #: plugins/admin/acl/class_aclRole.inc:703 @@ -1490,8 +1814,8 @@ msgstr "Le sous arbre complet (permanent)" #: plugins/admin/acl/class_aclRole.inc:361 #: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 msgid "Up" msgstr "Au dessus" @@ -1501,8 +1825,8 @@ msgstr "En bas" #: plugins/admin/acl/class_aclRole.inc:363 #: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 #: include/class_acl.inc:496 msgid "Edit" msgstr "Editer" @@ -1528,235 +1852,142 @@ msgstr "Contient les ACL pour ces objets: %s" msgid "Edit category ACL" msgstr "Editer les catégories d'ACL" -#: plugins/admin/acl/class_aclRole.inc:409 -#, fuzzy -msgid "Reset category ACL" -msgstr "Catégorie" - -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "Editer l'ACL pour '%s', l'étendue est '%s'" - -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "Tout les objets dans le sous arbres actuel" - -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy -msgid "Object in use" -msgstr "Nom de l'objet" - -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "" -"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " -"suivants %s utilisent ce rôle" - -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Sélectionnez les utilisateurs à ajouter" - -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Sélectionnez pour voir les serveurs" - -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" -msgstr "Chercher dans le sous arbre" - -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "Afficher les utilisateurs du département" - -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Afficher les utilisateurs correspondants" - -#: 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" - -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -#, fuzzy -msgid "Configuration error" -msgstr "Le fichier de configuration peut être écrit" - -#: plugins/admin/groups/class_groupGeneric.inc:163 -#, 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!" - -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Groupe Samba" - -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Administrateurs du domaine" - -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Utilisateurs du domaine" - -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Invités du domaine" - -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Groupe spécial (%d)" - -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "! identifiant inconnu" - -#: plugins/admin/groups/class_groupGeneric.inc:692 +#: plugins/admin/acl/class_aclRole.inc:409 +#, fuzzy +msgid "Reset category ACL" +msgstr "Catégorie" + +#: plugins/admin/acl/class_aclRole.inc:425 #, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -msgstr "" +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "Editer l'ACL pour '%s', l'étendue est '%s'" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Impossible de lire le fichier csv '%s'." +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "Tout les objets dans le sous arbres actuel" -#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/acl/class_aclRole.inc:621 +#, fuzzy +msgid "Object in use" +msgstr "Nom de l'objet" + +#: plugins/admin/acl/class_aclRole.inc:621 #, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Impossible de lire le fichier csv '%s'." +msgid "This role cannot be removed while it is in use by these objects:" +msgstr "" +"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " +"suivants %s utilisent ce rôle" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -msgid "Generic group settings" -msgstr "Préférences des groupes génériques" +#: plugins/admin/acl/tabs_acl_role.inc:28 +msgid "ACL Templates" +msgstr "Modèles des ACL" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Groupes" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +#, fuzzy +msgid "Assigned ACL for current entry" +msgstr "ACL assignés à l'entrée actuelle" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -msgid "Phone pickup group" -msgstr "Groupe téléphonique" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "Sélectionnez la branche où sera placée le groupe" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -msgid "Nagios group" -msgstr "Groupe Nagios" +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +msgid "New ACL" +msgstr "Nouvel ACL" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -msgid "Group member" -msgstr "Membre du groupe" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +msgid "ACL type" +msgstr "Type ACL" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -msgid "Samba group type" -msgstr "Groupe Samba" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +msgid "Select an acl type" +msgstr "Sélectionnez un type d'acl" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -msgid "Samba domain name" -msgstr "Domaine Samba" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +msgid "List of available ACL categories" +msgstr "Liste des catégories d'acl disponibles" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -msgid "Samba SID" -msgstr "SID Samba" +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" +msgstr "Groupes d'objets" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" -msgstr "" +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#, fuzzy +msgid "Manage object groups" +msgstr "Nom du groupe d'objets" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 #: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 #, fuzzy msgid "Infrastructure error" msgstr "Fenêtre de connexion GOsa" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 #, fuzzy -msgid "group" -msgstr "groupes" +msgid "object group" +msgstr "Groupes d'objets" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" -msgstr "Préférences des groupes" +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Utilisateur" -#: 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" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#, fuzzy +msgid "Windows Install" +msgstr "Station de travail Windows" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" -msgstr "Nom posix du groupe" +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "Terminal" -#: plugins/admin/groups/paste_generic.tpl:13 -#: plugins/admin/groups/generic.tpl:65 -msgid "Normally IDs are autogenerated, select to specify manually" +#: 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 "" -"Normalement les IDs sont générés automatiquement, vous pouvez en spécifier " -"un manuellement" +"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/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Forcer le GID" +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +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/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Forcer le numéro d'ID" +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Nom du groupe" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Liste des groupes" +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Nom du groupe" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 -#: plugins/admin/departments/generic.tpl:4 -#: plugins/admin/ogroups/class_divListOGroup.inc:84 -msgid "Properties" -msgstr "Propriétés" +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "Description du groupe" -#: 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" +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Objets membres" + +#: 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" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 #: plugins/admin/ogroups/class_divListOGroup.inc:88 #: plugins/admin/ogroups/class_ogroup.inc:418 #: plugins/admin/ogroups/class_ogroup.inc:422 @@ -1767,176 +1998,248 @@ msgstr "" #: plugins/admin/ogroups/class_ogroup.inc:442 #: plugins/admin/ogroups/class_ogroup.inc:446 #: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 #, fuzzy, php-format msgid "Show %s" msgstr "Afficher les groupes" -#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "groupes" + +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "Groupes d'objets" + +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Afficher les groupes applications" + +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "départements" + +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "serveurs" + +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "stations de travail" + +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "Afficher les stations de travail" + +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "Afficher les groupes ayant la messagerie activé" + +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 #, fuzzy -msgid "primary groups" +msgid "printer groups" msgstr "Groupe principal" -#: plugins/admin/groups/class_divListGroup.inc:86 +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 #, fuzzy -msgid "samba groups mappings" -msgstr "Correspondance des SID samba" +msgid "phone groups" +msgstr "Afficher les groupes" -#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/ogroups/class_divListOGroup.inc:325 #, fuzzy -msgid "samba groups" -msgstr "Groupe Samba" +msgid "Number of listed object groups" +msgstr "Nom du groupe d'objets" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "applications" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" +msgstr "Information" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Afficher les groupes applications" +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:90 -#, fuzzy -msgid "mail settings" -msgstr "Paramètres de messagerie" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "départements" -#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, fuzzy -msgid "mail groups" -msgstr "Afficher les groupes ayant la messagerie activé" +msgid "people" +msgstr "Afficher les utilisateurs" -#: plugins/admin/groups/class_divListGroup.inc:92 -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" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "groupes" -#: plugins/admin/groups/class_divListGroup.inc:93 +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "serveurs" + +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" +msgstr "stations de travail" + +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" +msgstr "terminaux" + +#: plugins/admin/ogroups/class_ogroup.inc:440 #, fuzzy -msgid "functional groups" -msgstr "Afficher les groupes fonctionnels" +msgid "printer" +msgstr "imprimantes" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Groupes" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "imprimantes" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" +msgstr "téléphones" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Messagerie" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" +msgstr "applications" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Applications" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "aucun" -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "Edit this entry" -msgstr "Editer cette entrée" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" +msgstr "nombre d'objets différents trop important!" -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "Delete this entry" -msgstr "Supprimer cette entrée" +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "utilisateurs" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Not allowed" -msgstr "Le changement du mot de passe n'est pas autorisé" +msgid "winstations" +msgstr "Stations Windows" -#: plugins/admin/groups/class_divListGroup.inc:359 +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "le dn n'existe pas:" + +#: plugins/admin/ogroups/class_ogroup.inc:872 #, fuzzy -msgid "Number of listed groups" -msgstr "Nom du groupe" +msgid "You can combine two different object types at maximum, only!" +msgstr "Vous pouvez combiner au maximum deux objets différents !" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 -#: plugins/admin/departments/class_divListDepartment.inc:229 -#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/ogroups/class_ogroup.inc:1056 +msgid "Object group generic" +msgstr "Groupes d'objets" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +msgid "Member" +msgstr "Membres" + +#: plugins/admin/ogroups/tabs_ogroups.inc:112 +#: plugins/admin/ogroups/tabs_ogroups.inc:298 +msgid "Phone queue" +msgstr "Queue téléphonique" + +#: plugins/admin/ogroups/tabs_ogroups.inc:140 #, fuzzy -msgid "Number of listed departments" -msgstr "Nom du département" +msgid "Systems" +msgstr "Système" -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" -msgstr "Description du groupe" +#: plugins/admin/ogroups/tabs_ogroups.inc:150 +#: plugins/admin/ogroups/tabs_ogroups.inc:167 +#: plugins/admin/ogroups/tabs_ogroups.inc:275 +msgid "Devices" +msgstr "Périphériques" -#: 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" +#: plugins/admin/ogroups/tabs_ogroups.inc:159 +msgid "Startup" +msgstr "Démarrage" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "dans le domaine" +#: plugins/admin/ogroups/tabs_ogroups.inc:176 +msgid "FAI summary" +msgstr "Sommaire FAI" -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" -msgstr "Les membres sont dans un groupe téléphonique" +#: plugins/admin/ogroups/tabs_ogroups.inc:204 +msgid "Applications" +msgstr "Applications" -#: plugins/admin/groups/generic.tpl:155 -msgid "Members are in a nagios group" -msgstr "Les membres sont dans un groupe nagios" +#: plugins/admin/ogroups/tabs_ogroups.inc:269 +msgid "Terminals" +msgstr "Terminaux" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "Membre du groupe" +#: 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" -#: 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." +#: plugins/admin/ogroups/ogroup_objects.tpl:6 +msgid "Select objects to add" +msgstr "Sélectionnez les objets à ajouter" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -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:33 +#: include/utils/class_msgPool.inc:21 +msgid "Select to search within subtrees" +msgstr "Sélectionner pour chercher dans le sous arbre" -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Administration du groupe" +#: plugins/admin/ogroups/ogroup_objects.tpl:36 +msgid "Display objects of department" +msgstr "Afficher les objets du département" -#: 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 "" -"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/ogroups/ogroup_objects.tpl:40 +msgid "Display objects matching" +msgstr "Afficher les objets correspondants" -#: plugins/admin/users/password.tpl:21 -#, fuzzy -msgid "Strength" -msgstr "Rue" +#: plugins/admin/ogroups/ogroup_objects.tpl:41 +msgid "Regular expression for matching object names" +msgstr "Expression régulière pour trouver les objets correspondants" #: plugins/admin/users/class_userManagement.inc:27 #, fuzzy @@ -1949,11 +2252,6 @@ msgstr "Utilisateurs du domaine" msgid "You have no permission to change this users password!" msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe." -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "aucun" - #: plugins/admin/users/class_userManagement.inc:544 #, fuzzy, php-format msgid "You have no permission to modify object '%s'!" @@ -1976,10 +2274,9 @@ msgid "You have no permission to change the lock status for this user!" msgstr "Vous n'avez pas l'autorisation pour changer votre mot de passe." #: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 #: plugins/admin/users/class_divListUsers.inc:84 #: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 msgid "Template" msgstr "Modèle" @@ -1997,162 +2294,6 @@ msgstr "" "modèles. De nombreuses informations seront ainsi remplies automatiquement. " "Sélectionnez 'aucun' afin de ne pas utiliser les modèles." -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Continuer" - -#: 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." - -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Administration des utilisateurs" - -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Liste des utilisateurs" - -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: plugins/admin/users/class_divListUsers.inc:84 -#, fuzzy -msgid "templates" -msgstr "Modèles" - -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "GOsa object" -msgstr "Objet" - -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "functional users" -msgstr "Afficher les utilisateurs fonctionnels" - -#: plugins/admin/users/class_divListUsers.inc:86 -#, fuzzy -msgid "POSIX users" -msgstr "Paramètres Posix" - -#: plugins/admin/users/class_divListUsers.inc:87 -#, fuzzy -msgid "mail users" -msgstr "Utilisateurs du domaine" - -#: plugins/admin/users/class_divListUsers.inc:88 -#, fuzzy -msgid "samba users" -msgstr "Utilisateurs du domaine" - -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" - -#: plugins/admin/users/class_divListUsers.inc:89 -#, fuzzy -msgid "proxy users" -msgstr "Afficher les utilisateurs proxy" - -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Utilisateur" - -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Modifier le mot de passe" - -#: plugins/admin/users/class_divListUsers.inc:189 -#, fuzzy -msgid "Apply template" -msgstr "Modèles" - -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" - -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "Modifier les propriétés de base" - -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "Modifier les propriétés UNIX" - -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "Modifier les propriétés d'environnement" - -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "Modifier les propriétés de messagerie" - -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "Modifier les propriétés téléphoniques" - -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "Modifier les propriétés fax" - -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "Modifier les propriétés samba" - -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "" - -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "Modifier les propriétés de Netatalk" - -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "Créer un nouvel utilisateur depuis un modèle" - -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "Créer un nouvel utilisateur avec ce modèle" - -#: plugins/admin/users/class_divListUsers.inc:297 -#, fuzzy -msgid "inactive" -msgstr "actif" - -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "mot de passe" - -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "Supprimer un utilisateur" - -#: plugins/admin/users/class_divListUsers.inc:421 -#, fuzzy -msgid "Number of listed users" -msgstr "Nombre de pages" - #: plugins/admin/users/templatize.tpl:2 #, fuzzy msgid "Applying a template" @@ -2169,3831 +2310,3725 @@ msgstr "" msgid "No templates available!" msgstr "Classe(s) disponible(s)" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "Liste des départements" - -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" -msgstr "Nom du département" - -#: 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" - -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "département" - -#: 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 "" -"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." - -#: 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 "" -"Modifying a departments naming attribute 'ou' or base may corrupt acls and " -"snapshot entries for all entire objects." -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." +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Administration des utilisateurs" -#: plugins/admin/departments/dep_move_confirm.tpl:11 +#: plugins/admin/users/remove.tpl:6 msgid "" -"Before you confirm this action, ensure that everything will be as expected, " -"possibly the best solution is a backup." -msgstr "" -"Avant de confirmer cette action, vérifiez que tout se passera comme prévu, " -"la meilleure solution est probablement une sauvegarde." - -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "Nom du département" - -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "Nom de la branche à créer" - -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "Description du département" - -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Catégorie" - -#: 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" +"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 "" -"Sélectionnez la branche de l'annuaire dans laquelle sera placée le " -"département" - -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "Lieu où est située cette branche de l'annuaire" +"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." -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "Lieu de cette branche" +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Liste des utilisateurs" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "Adresse postale de cette branche" +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Nom d'utilisateur" -#: 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" +#: plugins/admin/users/class_divListUsers.inc:84 +#, fuzzy +msgid "templates" +msgstr "Modèles" -#: 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" +#: plugins/admin/users/class_divListUsers.inc:85 +#, fuzzy +msgid "GOsa object" +msgstr "Objet" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "Paramètres administratifs" +#: plugins/admin/users/class_divListUsers.inc:85 +#, fuzzy +msgid "functional users" +msgstr "Afficher les utilisateurs fonctionnels" -#: 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" +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" -#: 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." +#: plugins/admin/users/class_divListUsers.inc:86 +#, fuzzy +msgid "POSIX users" +msgstr "Paramètres Posix" -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Gestion des départements" +#: plugins/admin/users/class_divListUsers.inc:87 +#, fuzzy +msgid "mail users" +msgstr "Utilisateurs du domaine" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "Fatal error" -msgstr "Serveur de terminaux" +msgid "samba users" +msgstr "Utilisateurs du domaine" -#: plugins/admin/departments/class_departmentGeneric.inc:313 +#: plugins/admin/users/class_divListUsers.inc:89 #, 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 !" +msgid "proxy users" +msgstr "Afficher les utilisateurs proxy" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "Marquer '%s'." +#: plugins/admin/users/class_divListUsers.inc:96 +#: plugins/admin/groups/group_objects.tpl:46 +msgid "Display users matching" +msgstr "Afficher les utilisateurs correspondants" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "Bouger '%s' vers '%s'" +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Modifier le mot de passe" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Objet" +#: plugins/admin/users/class_divListUsers.inc:189 +#, fuzzy +msgid "Apply template" +msgstr "Modèles" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "Impossible de copier %s, arrêt de l'opération" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Départements" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "Modifier les propriétés de base" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Pays" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "Modifier les propriétés UNIX" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Téléphone" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "Modifier les propriétés d'environnement" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "L'objet '%s' est déjà marqué" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "Modifier les propriétés de messagerie" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "Ajouter une marque (%s) à l'objet '%s'" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "Modifier les propriétés téléphoniques" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" -msgstr "Suppression de la marque de l'objet '%s'" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "Modifier les propriétés fax" -#: plugins/admin/departments/class_departmentManagement.inc:27 -#, fuzzy -msgid "Manage Departments" -msgstr "Départements" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "Modifier les propriétés samba" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, php-format -msgid "You're about to delete the whole LDAP subtree placed under '%s'." +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" msgstr "" -"Vous êtes sur le point de supprimer la branche complète de l'annuaire LDAP " -"placé sous '%s'." -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "Modifier les propriétés de Netatalk" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "Créer un nouvel utilisateur depuis un modèle" -#: plugins/admin/ogroups/tabs_ogroups.inc:112 -#: plugins/admin/ogroups/tabs_ogroups.inc:298 -msgid "Phone queue" -msgstr "Queue téléphonique" +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "Créer un nouvel utilisateur avec ce modèle" -#: plugins/admin/ogroups/tabs_ogroups.inc:140 +#: plugins/admin/users/class_divListUsers.inc:297 #, fuzzy -msgid "Systems" -msgstr "Système" +msgid "inactive" +msgstr "actif" -#: plugins/admin/ogroups/tabs_ogroups.inc:150 -#: plugins/admin/ogroups/tabs_ogroups.inc:167 -#: plugins/admin/ogroups/tabs_ogroups.inc:275 -msgid "Devices" -msgstr "Périphériques" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "mot de passe" -#: plugins/admin/ogroups/tabs_ogroups.inc:159 -msgid "Startup" -msgstr "Démarrage" +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 +#, fuzzy +msgid "Not allowed" +msgstr "Le changement du mot de passe n'est pas autorisé" -#: plugins/admin/ogroups/tabs_ogroups.inc:176 -msgid "FAI summary" -msgstr "Sommaire FAI" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "Supprimer un utilisateur" -#: plugins/admin/ogroups/tabs_ogroups.inc:204 -msgid "Applications" -msgstr "Applications" +#: plugins/admin/users/class_divListUsers.inc:421 +#, fuzzy +msgid "Number of listed users" +msgstr "Nombre de pages" -#: plugins/admin/ogroups/tabs_ogroups.inc:269 -msgid "Terminals" -msgstr "Terminaux" +#: 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 "" +"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/ogroups/ogroup_objects.tpl:6 -msgid "Select objects to add" -msgstr "Sélectionnez les objets à ajouter" +#: plugins/admin/users/password.tpl:21 +#, fuzzy +msgid "Strength" +msgstr "Rue" + +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Administration du groupe" -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:21 -msgid "Select to search within subtrees" -msgstr "Sélectionner pour chercher dans le sous arbre" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Sélectionnez les utilisateurs à ajouter" -#: plugins/admin/ogroups/ogroup_objects.tpl:36 -msgid "Display objects of department" -msgstr "Afficher les objets du département" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Sélectionnez pour voir les serveurs" -#: plugins/admin/ogroups/ogroup_objects.tpl:40 -msgid "Display objects matching" -msgstr "Afficher les objets correspondants" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "Chercher dans le sous arbre" -#: plugins/admin/ogroups/ogroup_objects.tpl:41 -msgid "Regular expression for matching object names" -msgstr "Expression régulière pour trouver les objets correspondants" +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Afficher les utilisateurs du département" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "Groupes d'objets" +#: 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" -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 -#, fuzzy -msgid "Manage object groups" -msgstr "Nom du groupe d'objets" +#: 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." -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 -#, fuzzy -msgid "object group" -msgstr "Groupes d'objets" +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "Nom posix du groupe" -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Serveur" +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +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" -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Stations de travail" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Forcer le GID" -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 -#, fuzzy -msgid "Windows Install" -msgstr "Station de travail Windows" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Forcer le numéro d'ID" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" -msgstr "Terminal" +#: 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" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Imprimante" +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "dans le domaine" -#: 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" +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "Les membres sont dans un groupe téléphonique" -#: 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" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" +msgstr "Les membres sont dans un groupe nagios" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Groupes d'objets" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Membre du groupe" -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 #, fuzzy -msgid "user groups" -msgstr "groupes" +msgid "Configuration error" +msgstr "Le fichier de configuration peut être écrit" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#: plugins/admin/groups/class_groupGeneric.inc:163 #, fuzzy -msgid "nested groups" -msgstr "Groupes d'objets" +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!" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 -#, fuzzy -msgid "department groups" -msgstr "départements" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Groupe Samba" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 -#, fuzzy -msgid "server groups" -msgstr "serveurs" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Administrateurs du domaine" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 -#, fuzzy -msgid "workstation groups" -msgstr "stations de travail" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Utilisateurs du domaine" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 -#, fuzzy -msgid "windows workstation groups" -msgstr "Afficher les stations de travail" +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Invités du domaine" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 -#, fuzzy -msgid "terminal groups" -msgstr "Afficher les groupes ayant la messagerie activé" +#: plugins/admin/groups/class_groupGeneric.inc:469 +#, php-format +msgid "Special group (%d)" +msgstr "Groupe spécial (%d)" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 -#, fuzzy -msgid "printer groups" -msgstr "Groupe principal" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "! identifiant inconnu" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 -#, fuzzy -msgid "phone groups" -msgstr "Afficher les groupes" +#: plugins/admin/groups/class_groupGeneric.inc:692 +#, php-format +msgid "Search returned too many results. Not displaying more than %s entries!" +msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 -#, fuzzy -msgid "Number of listed object groups" -msgstr "Nom du groupe d'objets" +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, fuzzy, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "Impossible de lire le fichier csv '%s'." -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "Information" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Impossible de lire le fichier csv '%s'." -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1213 +msgid "Generic group settings" +msgstr "Préférences des groupes génériques" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "départements" +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Groupes" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#, fuzzy -msgid "people" -msgstr "Afficher les utilisateurs" +#: plugins/admin/groups/class_groupGeneric.inc:1225 +msgid "Phone pickup group" +msgstr "Groupe téléphonique" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "groupes" +#: plugins/admin/groups/class_groupGeneric.inc:1226 +msgid "Nagios group" +msgstr "Groupe Nagios" + +#: plugins/admin/groups/class_groupGeneric.inc:1229 +msgid "Group member" +msgstr "Membre du groupe" + +#: plugins/admin/groups/class_groupGeneric.inc:1230 +msgid "Samba group type" +msgstr "Groupe Samba" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "serveurs" +#: plugins/admin/groups/class_groupGeneric.inc:1231 +msgid "Samba domain name" +msgstr "Domaine Samba" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "stations de travail" +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +msgid "Samba SID" +msgstr "SID Samba" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "terminaux" +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:440 +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "printer" -msgstr "imprimantes" +msgid "group" +msgstr "groupes" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "imprimantes" +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" +msgstr "Liste des groupes" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" -msgstr "téléphones" +#: 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" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "applications" +#: plugins/admin/groups/class_divListGroup.inc:85 +#, fuzzy +msgid "primary groups" +msgstr "Groupe principal" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" -msgstr "nombre d'objets différents trop important!" +#: plugins/admin/groups/class_divListGroup.inc:86 +#, fuzzy +msgid "samba groups mappings" +msgstr "Correspondance des SID samba" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "utilisateurs" +#: plugins/admin/groups/class_divListGroup.inc:87 +#, fuzzy +msgid "samba groups" +msgstr "Groupe Samba" -#: plugins/admin/ogroups/class_ogroup.inc:479 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "winstations" -msgstr "Stations Windows" +msgid "application settings" +msgstr "applications" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "le dn n'existe pas:" +#: plugins/admin/groups/class_divListGroup.inc:90 +#, fuzzy +msgid "mail settings" +msgstr "Paramètres de messagerie" -#: plugins/admin/ogroups/class_ogroup.inc:872 +#: plugins/admin/groups/class_divListGroup.inc:91 #, fuzzy -msgid "You can combine two different object types at maximum, only!" -msgstr "Vous pouvez combiner au maximum deux objets différents !" +msgid "mail groups" +msgstr "Afficher les groupes ayant la messagerie activé" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -msgid "Object group generic" -msgstr "Groupes d'objets" +#: plugins/admin/groups/class_divListGroup.inc:92 +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" -#: plugins/admin/ogroups/class_ogroup.inc:1067 -msgid "Member" -msgstr "Membres" +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Afficher les groupes fonctionnels" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" msgstr "Nom du groupe" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Objets membres" - -#: 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 "" -"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/groups/paste_generic.tpl:1 +msgid "Group settings" +msgstr "Préférences des groupes" -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "FAX" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +msgid "GOsa settings 2/3" +msgstr "Paramètres de GOsa 2/3" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: setup/class_setupStep_Config2.inc:88 +msgid "Customize special parameters" +msgstr "Customiser les paramètres spéciaux" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "Clients légers" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "Non" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Nom de l'objet" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "Oui" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "Contenu" +#: setup/setup_frame.tpl:12 +msgid "GOsa setup wizard" +msgstr "Installation de GOsa" -#: 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_frame.tpl:19 +msgid "Installation" +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." -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é." +#: setup/setup_frame.tpl:19 +msgid "Steps" +msgstr "Etapes" -#: 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/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Terminé" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "L'équipe de GOsa" +#: setup/class_setupStep_Finish.inc:38 +msgid "Write configuration file" +msgstr "Ecrire le fichier de configuration" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Bienvenue %s !" +#: setup/class_setupStep_Finish.inc:39 +msgid "Finish - write the configuration file" +msgstr "Fini - écrire le fichier de configuration" -#: include/utils/class_timezone.inc:51 -#, php-format +#: setup/class_setupStep_Finish.inc:101 +#, fuzzy msgid "" -"The timezone setting '%s' in your gosa.conf is not valid. Cannot calculate " -"correct timezone offset." +"Your configuration file is currently world readable. Please update the file " +"permissions!" msgstr "" +"Votre fichier de configuration est lisible par tout le monde. Veuillez " +"modifier les permissions !" -#: include/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Sélectionnez un groupe d'objets" - -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Sélectionner pour afficher les groupes contenant des utilisateurs" - -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Sélectionnez un groupe d'objets" - -#: include/utils/class_msgPool.inc:33 -#, fuzzy -msgid "This object will be deleted!" -msgstr "Que ce qui sera exécuté ici" +#: setup/class_setupStep_Finish.inc:103 +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." -#: include/utils/class_msgPool.inc:35 +#: setup/class_setupStep_Finish.inc:112 #, php-format -msgid "This '%s' object will be deleted!" +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 "" +"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:" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" -msgstr "" +#: setup/setup_finish.tpl:3 +msgid "Create your configuration file" +msgstr "Création du fichier de configuration" -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "Télécharger la configuration" -#: include/utils/class_msgPool.inc:47 -#, fuzzy -msgid "This object will be deleted:" -msgstr "Que ce qui sera exécuté ici" +#: setup/setup_finish.tpl:18 +msgid "Status: " +msgstr "Statut: " -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "" +#: 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/utils/class_msgPool.inc:53 +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Recherche" + +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 #, php-format -msgid "These objects will be deleted: %s" -msgstr "" +msgid "Apply" +msgstr "Appliquer" -#: include/utils/class_msgPool.inc:55 +#: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 +#: ihtml/themes/default/copyPasteDialog.tpl:21 +#: ihtml/themes/default/msg_dialog.tpl:79 +#: ihtml/themes/default/msg_dialog.tpl:134 #, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "" +msgid "Cancel" +msgstr "Annuler" -#: include/utils/class_msgPool.inc:63 -#, fuzzy -msgid "You have no permission to delete this object!" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:25 +msgid "LDAP connection" +msgstr "Connexion LDAP" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Nom de l'emplacement" -#: include/utils/class_msgPool.inc:74 -#, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:37 +msgid "Connection URL" +msgstr "URL de connexion" -#: include/utils/class_msgPool.inc:81 -#, fuzzy -msgid "You have no permission to create this object!" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:45 +msgid "TLS connection" +msgstr "Connexion TLS" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -#, fuzzy -msgid "You have no permission to create the object:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:65 +msgid "Reload" +msgstr "Recharger" -#: include/utils/class_msgPool.inc:92 -#, fuzzy -msgid "You have no permission to create these objects:" -msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." +#: setup/setup_ldap.tpl:69 +msgid "Authentication" +msgstr "Authentification" -#: include/utils/class_msgPool.inc:99 -#, fuzzy -msgid "You have no permission to modify this object!" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "DN de l'administrateur" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -#, fuzzy -msgid "You have no permission to modify the object:" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_ldap.tpl:78 +msgid "Select user" +msgstr "Sélectionner un utilisateur" -#: include/utils/class_msgPool.inc:110 -#, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: 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" -#: include/utils/class_msgPool.inc:117 -#, fuzzy -msgid "You have no permission to view this object!" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Mot de passe administrateur" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 -#, fuzzy -msgid "You have no permission to view the object:" -msgstr "Vous n'avez pas l'autorisation pour envoyer un message!" +#: setup/setup_ldap.tpl:101 +msgid "Schema based settings" +msgstr "Paramètres basé sur les schéma" -#: include/utils/class_msgPool.inc:128 -#, fuzzy -msgid "You have no permission to view these objects:" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" +msgstr "Utilisez des groupes rfc2307bis" -#: include/utils/class_msgPool.inc:135 -#, fuzzy -msgid "You have no permission to move this object!" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_ldap.tpl:117 +msgid "Current status" +msgstr "Statut actuel" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 -#, fuzzy -msgid "You have no permission to move the object:" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: setup/setup_language.tpl:3 +msgid "Please select the preferred language" +msgstr "Veuillez sélectionner la langue par défaut" -#: include/utils/class_msgPool.inc:146 -#, fuzzy -msgid "You have no permission to move these objects:" -msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." +#: 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." -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: setup/setup_language.tpl:9 #, fuzzy -msgid "Connection information" -msgstr "Informations personnelles" +msgid "Please select your preferred language here" +msgstr "Veuillez indiquer votre langue préférée ici" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "Impossible de se connecter au serveur de base de données !" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +msgid "Language setup" +msgstr "Configuration de la langue" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "Impossible de sélectionner la base de données !" +#: 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/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: setup/class_setupStep_Language.inc:47 +msgid "Automatic" +msgstr "Automatique" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "Impossible de sélectionner la base de données !" +#: setup/setup_config3.tpl:2 +msgid "GOsa core settings" +msgstr "Paramètres essentiels de GOsa" -#: include/utils/class_msgPool.inc:194 -#, fuzzy, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "Le champ 'Fax' contient un numéro invalide." +#: setup/setup_config3.tpl:6 +msgid "Disable primary group filter" +msgstr "Désactiver le filtre sur les groupes primaires" -#: include/utils/class_msgPool.inc:200 -#, 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." +#: setup/setup_config3.tpl:18 +#, fuzzy +msgid "Display summary in listings" +msgstr "Afficher les macros correspondantes" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "Le branche spécifiée est invalide." +#: setup/setup_config3.tpl:30 +msgid "Honour administrative units" +msgstr "Honorer les entités administratives" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/setup_config3.tpl:42 +msgid "Smarty compile directory" +msgstr "Répertoire de compilation de smarty" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" msgstr "" -#: include/utils/class_msgPool.inc:213 -#, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "Le branche spécifiée est invalide." +#: setup/setup_config3.tpl:60 +msgid "Path for PPD storage" +msgstr "Répertoire pour le stockage des PPD" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "Impossible de sélectionner la base de données !" +#: setup/setup_config3.tpl:77 +msgid "Path for kiosk profile storage" +msgstr "Répertoire pour le stockage des profiles kiosk" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: setup/setup_config3.tpl:96 +#, fuzzy +msgid "Override sudo role ou" +msgstr "! identifiant inconnu" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/setup_config3.tpl:115 +msgid "Mail queue script" +msgstr "Script pour la gestion de la queue du serveur de messagerie" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "Impossible de sélectionner la base de données !" +#: setup/setup_config3.tpl:134 +msgid "Notification script" +msgstr "Script de notification" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "La valeur de l''UID' est trop petite." +#: setup/setup_config3.tpl:153 +#, fuzzy +msgid "Enable edit locking" +msgstr "Activer la vérification antivirus de la messagerie" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: setup/setup_config3.tpl:172 +msgid "Login and session" +msgstr "connexion et session" -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "La valeur de l''UID' est trop petite." +#: setup/setup_config3.tpl:175 +#, fuzzy +msgid "Login attribute" +msgstr "Propriétés du téléphone" -#: include/utils/class_msgPool.inc:247 -#, fuzzy, php-format -msgid "'%s' must be %d or above!" -msgstr "PHP doit être à la version %s / %s ou supérieure." +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" +msgstr "Force register_globals à être désactivé" -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" +msgstr "Force les connexions cryptées" -#: include/utils/class_msgPool.inc:260 -#, 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." +#: setup/setup_config3.tpl:210 +msgid "Warn if session is not encrypted" +msgstr "Avertir si la session ne sera pas cryptée" -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "Le champ obligatoire 'Nom' n'est pas rempli." +#: setup/setup_config3.tpl:222 +#, fuzzy +msgid "Remember dialog filter settings" +msgstr "Paramètres par défaut des utilisateurs" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "" +#: setup/setup_config3.tpl:234 +msgid "Session lifetime" +msgstr "Durée de vie de la session" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "Le champ 'Nom' contient des caractères invalides." +#: setup/setup_config3.tpl:243 +msgid "Debugging" +msgstr "Deboguage" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" -msgstr "" +#: setup/setup_config3.tpl:247 +msgid "Show PHP errors" +msgstr "Afficher les erreur PHP" -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "Le changement du mot de passe n'est pas autorisé" +#: setup/setup_config3.tpl:259 +msgid "Maximum LDAP query time" +msgstr "Durée maximale d'une requête LDAP" -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "Le champ 'Nom' contient des caractères invalides." +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" +msgstr "Inscrit les statistique de l'annuaire LDAP dans les journaux systèmes" -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Extension d'inventaire" +#: setup/setup_config3.tpl:289 +msgid "Debug level" +msgstr "Niveau de débogage" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 -#: 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/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 -#: ihtml/themes/default/msg_dialog.tpl:79 -#: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 -#, php-format -msgid "Cancel" -msgstr "Annuler" +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +msgid "Disabled" +msgstr "Désactivé" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "Ok" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +msgid "Enabled" +msgstr "Activé" -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Appliquer" +#: setup/class_setupStep_Welcome.inc:38 +msgid "Welcome" +msgstr "Bienvenue" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Enregistrer" +#: setup/class_setupStep_Welcome.inc:39 +msgid "The welcome message" +msgstr "Le message d'accueil" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Ajouter" +#: setup/class_setupStep_Welcome.inc:40 +msgid "Welcome to GOsa setup wizard" +msgstr "Bienvenue dans l'installation de GOsa" -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Ajouter" +#: 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/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Supprimer" +#: setup/class_setupStep_Config1.inc:76 +msgid "GOsa generic settings" +msgstr "Préférences de base GOsa" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "Activer" +#: 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." -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Editer" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" +msgstr "GID / UID id min" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Editer un utilisateur" +#: 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/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Retour" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "Ce compte n'a pas d'extensions GOsa valides." +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "Branches de l'arbre ldap ou sont stockes les groupes" -#: include/utils/class_msgPool.inc:381 -#, 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." +#: setup/class_setupStep_Config1.inc:130 +msgid "Uid base must be numeric" +msgstr "l'uid de base doit être une valeur numérique" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, 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." +#: 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/utils/class_msgPool.inc:400 -#, 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." +#: 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/utils/class_msgPool.inc:403 -#, 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." +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +msgid "LDAP schema check" +msgstr "Vérification des schémas LDAP" -#: include/utils/class_msgPool.inc:410 -#, 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." +#: 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" -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Paramètres supplémentaire de GOsa" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Configuration Samba" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" +msgstr "Générateur de hash samba" -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Paramètres Posix" +#: setup/setup_config2.tpl:31 +msgid "RID base" +msgstr "Base du RID" -#: include/utils/class_msgPool.inc:430 -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" +#: setup/setup_config2.tpl:46 +msgid "Workstation container" +msgstr "Branche contenant les stations de travail" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Janvier" +#: setup/setup_config2.tpl:61 +msgid "Samba SID mapping" +msgstr "Correspondance des SID samba" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Février" +#: setup/setup_config2.tpl:71 +msgid "Timezone" +msgstr "Fuseau Horaire" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Mars" +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "Veuillez indiquer votre fuseau horaire préféré ici" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "Avril" +#: setup/setup_config2.tpl:96 +msgid "Additional GOsa settings" +msgstr "Paramètres supplémentaire de GOsa" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Mai" +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" +msgstr "Activer le Copier / Coller" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Juin" +#: setup/setup_config2.tpl:112 +#, fuzzy +msgid "Enable DNS extension" +msgstr "Extension d'inventaire" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Juillet" +#: setup/setup_config2.tpl:124 +#, fuzzy +msgid "Enable DHCP extension" +msgstr "Extension d'inventaire" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "Août" +#: setup/setup_config2.tpl:136 +#, fuzzy +msgid "Enable mime type management" +msgstr "Gestion des type mime" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "Septembre" +#: setup/setup_config2.tpl:148 +msgid "Enable FAI release management" +msgstr "Activer la gestion des versions FAI" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Octobre" +#: setup/setup_config2.tpl:160 +msgid "Enable user netatalk plugin" +msgstr "Activer la gestion des comptes Netatalk" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "Novembre" +#: setup/setup_config2.tpl:171 +msgid "Government mode" +msgstr "Mode Gouvernemental" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Décembre" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "Inconnu" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config2.tpl:186 #, fuzzy -msgid "Sunday" -msgstr "Nom de famille" +msgid "Syslog" +msgstr "journaux systèmes" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 #, fuzzy -msgid "Monday" -msgstr "mois" +msgid "MySQL" +msgstr "Erreur LDAP :" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" -msgstr "" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "Paramètres de messagerie" -#: include/utils/class_msgPool.inc:444 -#, fuzzy -msgid "Wednesday" -msgstr "Mercredi" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "Méthode de messagerie" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" -msgstr "" +#: setup/setup_config2.tpl:227 +msgid "Vacation templates" +msgstr "Modèles de messages d'absence " -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" -msgstr "" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" +msgstr "Utiliser Cyrus en mode UNIX" -#: include/utils/class_msgPool.inc:451 -#, fuzzy -msgid "read operation" -msgstr "Options de messagerie" +#: setup/setup_config2.tpl:253 +msgid "Snapshots / Undo" +msgstr "Copie instantanée / Undo" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +msgid "Enable snapshots" +msgstr "Activer la copie instantanée" + +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +msgid "Snapshot base" +msgstr "Base pour les snapshots" + +#: 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 "" +"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/utils/class_msgPool.inc:451 -#, fuzzy -msgid "modify operation" -msgstr "Montrer les informations" +#: 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/utils/class_msgPool.inc:452 -#, fuzzy -msgid "delete operation" -msgstr "Sélectionnez pour voir les stations de travail" +#: setup/setup_welcome.tpl:11 +msgid "Create a basic, single site configuration" +msgstr "Créer une simple configuration mono site" -#: include/utils/class_msgPool.inc:452 -#, fuzzy -msgid "search operation" -msgstr "Utiliser l'expiration du compte" +#: 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" -#: include/utils/class_msgPool.inc:452 -#, fuzzy -msgid "authentication" -msgstr "Authentification" +#: 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/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "La requête LDAP à échoué" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" +msgstr "Migration assistée d'un annuaire LDAP existant" -#: include/utils/class_msgPool.inc:457 -#, fuzzy -msgid "LDAP operation failed!" -msgstr "La requête LDAP à échoué" +#: 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/utils/class_msgPool.inc:472 -#, fuzzy -msgid "Upload failed!" -msgstr "Echec de l'authentification. Le serveur LDAP répond '%s'." +#: setup/setup_welcome.tpl:20 +msgid "Find every possible configuration error" +msgstr "Trouver toutes les erreur possible dans votre configuration" -#: include/utils/class_msgPool.inc:475 -#, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Utilisateur de la base de données des journaux systèmes" +#: 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/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" -msgstr "" +#: setup/setup_welcome.tpl:25 +msgid "To continue..." +msgstr "Suite de la configuration..." -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" +#: 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/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" -msgstr "" +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." +msgstr "Cliquer sur 'Continuer' quand vous avez fini." -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "" -"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " -"suivants %s utilisent ce rôle" +#: setup/class_setupStep_Ldap.inc:53 +msgid "LDAP setup" +msgstr "Configuration LDAP" -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "" -"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " -"suivants %s utilisent ce rôle" +#: setup/class_setupStep_Ldap.inc:54 +msgid "LDAP connection setup" +msgstr "Configuration de la connexion LDAP" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: 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." -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Impossible de lire le fichier '%s'." - -#: include/utils/class_msgPool.inc:517 +#: setup/class_setupStep_Ldap.inc:105 #, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Impossible de lire le fichier '%s'." +msgid "Anonymous bind to server '%s' failed!" +msgstr "La connexion anonyme sur le serveur '%s' à réussi." -#: include/utils/class_msgPool.inc:523 +#: setup/class_setupStep_Ldap.inc:107 #, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "Impossible de lire le fichier '%s'." +msgid "Bind as user '%s' failed!" +msgstr "la connexion comme l'utilisateur '%s' à échoué sur le serveur '%s'." -#: include/utils/class_msgPool.inc:529 +#: setup/class_setupStep_Ldap.inc:112 #, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Aller au département de base" +msgid "Anonymous bind to server '%s' succeeded." +msgstr "La connexion anonyme sur le serveur '%s' à réussi." -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Impossible de lire le fichier '%s'." +#: setup/class_setupStep_Ldap.inc:113 +#, fuzzy +msgid "Please specify user and password!" +msgstr "Veuillez introduire un utilisateur et un mot de passe." -#: include/utils/class_msgPool.inc:541 +#: setup/class_setupStep_Ldap.inc:115 #, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Vérification du support mhash" - -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." -msgstr "" +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "La connexion comme l'utilisateur '%s' sur le serveur '%s' à réussi." -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: 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_certificate.inc:73 -#, fuzzy -msgid "Certificate is empty!" -msgstr "Certificats" +#: setup/setup_migrate.tpl:33 +msgid "Check again" +msgstr "Vérifier à nouveau" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: 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/class_certificate.inc:115 -msgid "Cannot extract information for non PEM certificates!" +#: setup/setup_migrate.tpl:39 +msgid "" +"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/class_certificate.inc:219 -#, fuzzy -msgid "No valid certificate loaded!" -msgstr "Pas de certificat valide chargé" - -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" -msgstr "Fermer" - -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Aller au département de base" +#: 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 "" +"Soyez prudent avec cet outil, il peut y avoir des références pointant vers " +"ces machines qui ne seront pas migrées." -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Racine" +#: 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/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Monter d'un département" +#: setup/setup_migrate.tpl:72 +msgid "Move selected workstations" +msgstr "Bouger les stations de travail sélectionnées" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Aller au département des utilisateurs" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" +msgstr "Que ce qui sera exécuté ici" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Accueil" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" +msgstr "Fermer" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "Recharger la liste" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" +msgstr "Bouger les groupes dans le groupe configuré" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" +#: 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/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" +#: 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 "" -"La création de cette page à occasionné des erreurs d'après l'interpréteur " -"PHP !" - -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" -msgstr "Envoyer vos commentaires au membres du projet Gosa" - -#: include/php_setup.inc:100 -msgid "Send bugreport" -msgstr "Envoyer un rapport de bug" - -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "Afficher/Cacher l'information" - -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "Erreur PHP" - -#: include/php_setup.inc:134 -msgid "class" -msgstr "classe" - -#: include/php_setup.inc:140 -msgid "function" -msgstr "fonction" - -#: include/php_setup.inc:145 -msgid "static" -msgstr "statique" - -#: include/php_setup.inc:149 -msgid "method" -msgstr "méthode" - -#: include/php_setup.inc:182 -msgid "Trace" -msgstr "Trace" +"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/php_setup.inc:183 -msgid "File" -msgstr "Fichier" +#: 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/php_setup.inc:183 -msgid "Line" -msgstr "Ligne" +#: 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/php_setup.inc:183 -msgid "Type" -msgstr "Type" +#: 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/php_setup.inc:184 -msgid "Arguments" -msgstr "Arguments" +#: 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:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: 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." -#: include/functions.inc:108 -#, php-format +#: setup/setup_migrate.tpl:145 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 " +"users. 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." -#: 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'." +#: setup/setup_migrate.tpl:148 +msgid "Move selected users into this people tree" +msgstr "Bouger les utilisateurs sélectionnés dans la branche utilisateurs." + +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +msgid "Next" +msgstr "Suivant" -#: include/functions.inc:380 -#, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "" -"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base " -"de données LDAP." +#: setup/setup_migrate.tpl:199 +msgid "Abort" +msgstr "Annuler" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 -#, fuzzy -msgid "Internal error" -msgstr "Serveur de terminaux" +#: setup/setup_migrate.tpl:201 +msgid "Create a new GOsa administrator account" +msgstr "Créer un nouveau compte administrateur pour GOsa" -#: include/functions.inc:450 -#, fuzzy +#: setup/setup_migrate.tpl:204 msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base " -"de données LDAP." +"Ce dialogue vas automatiquement créer un nouveau super utilisateur dans " +"votre arbre LDAP." -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" -msgstr "" +#: setup/setup_migrate.tpl:233 +msgid "Password (again)" +msgstr "Mot de passe (de nouveau)" -#: include/functions.inc:605 -#, fuzzy, php-format +#: setup/setup_migrate.tpl:258 +#, fuzzy msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +"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 "" -"Impossible d'obtenir les informations de verrouillage dans l'annuaire LDAP. " -"Veuillez vérifier l'entrée 'config' dans gosa.conf !" - -#: include/functions.inc:605 -#, fuzzy, php-format -msgid "LDAP server returned: %s" -msgstr "Serveur LDAP" +"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:699 -#, fuzzy +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +"If you want to know what will be done when migrating the selected entries, " +"use the 'Show changes' button to see the LDIF." msgstr "" -"Détection de verrou multiple pour un même objet. Ceci ne devrait pas être " -"possible. Effacement des références multiples." +"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:996 -#, php-format -msgid "The size limit of %d entries is exceed!" -msgstr "La taille limite de %d entrées est dépassée !" +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +msgid "Current" +msgstr "Actuel" -#: include/functions.inc:998 -#, php-format +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +msgid "After migration" +msgstr "Après migration" + +#: setup/setup_migrate.tpl:313 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"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 "" -"Mettre la nouvelle limite à %s et me montrer ce message si la limite est " -"toujours dépassée" - -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "incomplet" +"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:1294 -msgid "Continue anyway" -msgstr "Continuer malgré tout" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +msgid "LDAP inspection" +msgstr "Vérification de l'annuaire LDAP" -#: include/functions.inc:1296 -msgid "Edit anyway" -msgstr "Éditer malgré tout" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" +msgstr "Analyse de votre annuaire LDAP pour la compatibilité avec GOsa" -#: include/functions.inc:1298 -#, 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/class_setupStep_Migrate.inc:114 +msgid "Checking for root object" +msgstr "Recherche de l'objet racine" -#: include/functions.inc:1482 -msgid "Entries per page" -msgstr "Entrées par page" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "Vérification des permissions sur l'annuaire LDAP" -#: include/functions.inc:1510 -msgid "Apply filter" -msgstr "Appliquer le filtre" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "Vérification des départements invisibles" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: setup/class_setupStep_Migrate.inc:131 +msgid "Checking for invisible users" +msgstr "Vérification des utilisateurs invisibles" -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "Version de développement de GOsa (Rev %s)" +#: setup/class_setupStep_Migrate.inc:137 +msgid "Checking for super administrator" +msgstr "Vérification du superadministrateur" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." -msgstr "" +#: 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:1919 include/functions.inc:1939 -#, fuzzy -msgid "Cannot write to revision file!" -msgstr "Impossible d'écrire le fichier csv '%s'." +#: 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:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -#, 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." +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" +msgstr "Vérification de stations windows en dehors de la branche winstation" -#: include/functions.inc:2213 +#: setup/class_setupStep_Migrate.inc:162 #, fuzzy -msgid "LDAP warning" -msgstr "Gérer l'annuaire" +msgid "Checking for duplicated UID numbers" +msgstr "Vérification pour les uid en double" -#: include/functions.inc:2213 +#: setup/class_setupStep_Migrate.inc:168 #, 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 !" +msgid "Checking for duplicate GID numbers" +msgstr "Vérification pour les uid en double" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." -msgstr "Utilisé pour stocker les informations spécifiques des comptes." +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +msgid "LDAP query failed" +msgstr "La requête LDAP à échoué" -#: include/functions.inc:2246 -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." +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "L'objet racine est probablement manquant." -#: include/functions.inc:2289 +#: setup/class_setupStep_Migrate.inc:217 #, php-format -msgid "Missing required object class '%s'!" -msgstr "" +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'uidNumber'." -#: include/functions.inc:2291 +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 #, php-format -msgid "Missing optional object class '%s'!" -msgstr "" +msgid "Ok" +msgstr "Ok" -#: include/functions.inc:2297 +#: setup/class_setupStep_Migrate.inc:269 #, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "" +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'gidNumber'." -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" -msgstr "" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Echec" -#: include/functions.inc:2303 +#: setup/class_setupStep_Migrate.inc:329 #, php-format -msgid "Class(es) available" -msgstr "Classe(s) disponible(s)" - -#: include/functions.inc:2325 -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." - -#: include/functions.inc:2326 -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" - -#: include/functions.inc:2330 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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/functions.inc:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" -msgstr "L'objectClass 'posixGroup' doit être STRUCTURAL" - -#: include/functions.inc:2354 -msgid "German" -msgstr "Allemand" - -#: include/functions.inc:2355 -msgid "French" -msgstr "Français" - -#: include/functions.inc:2356 -msgid "Italian" -msgstr "Italien" - -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Espagnol" - -#: include/functions.inc:2358 -msgid "English" -msgstr "Anglais" - -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "Hollandais" - -#: include/functions.inc:2360 -msgid "Polish" -msgstr "Polonais" +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +msgid "Migrate" +msgstr "Migrer" -#: include/functions.inc:2361 -msgid "Swedish" -msgstr "" +#: setup/class_setupStep_Migrate.inc:402 +#, 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'." -#: include/functions.inc:2362 -msgid "Chinese" -msgstr "Chinois" +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +msgid "Move" +msgstr "Bouger" -#: include/functions.inc:2363 -msgid "Russian" -msgstr "Russe" +#: setup/class_setupStep_Migrate.inc:479 +#, 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'." -#: include/functions.inc:2544 +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 #, php-format msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +"The specified user '%s' does not have full access to your ldap database." msgstr "" -"La commande '%s', utilisée dans le POSTMODIFY de l'extension '%s' n'existe " -"pas." +"L'utilisateur spécifié '%s' n'a pas l'accès complet à votre annuaire ldap." -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" -msgstr "" +#: setup/class_setupStep_Migrate.inc:617 +#, 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." -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." -msgstr "" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +#, fuzzy +msgid "Migration error" +msgstr "Migrer" -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#, fuzzy, php-format +msgid "Cannot migrate department '%s':" +msgstr "Aller au département de base" -#: include/class_socketClient.inc:191 +#: setup/class_setupStep_Migrate.inc:758 #, php-format -msgid "Socket timeout of %s seconds reached." -msgstr "" +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." -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:913 +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:979 #, php-format -msgid "Delete process has been canceled by plugin '%s': %s" -msgstr "L'effacement à été interrompu par l'extension '%s': %s" +msgid "Cannot add ACL for user '%s':" +msgstr "" -#: include/class_tabs.inc:373 -msgid "References" -msgstr "Références" +#: setup/class_setupStep_Migrate.inc:1004 +#, fuzzy +msgid "Password error" +msgstr "Le mot de passe expirera le" -#: include/class_plugin.inc:497 -msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +#: setup/class_setupStep_Migrate.inc:1004 +#, 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!" -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 -#, 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." +#: setup/class_setupStep_Migrate.inc:1009 +#, fuzzy +msgid "Input error" +msgstr "Erreur PHP" -#: include/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle." +#: setup/class_setupStep_Migrate.inc:1009 +#, fuzzy +msgid "Specify a valid user ID!" +msgstr "Le nom d'utilisateur est incorrect !" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:1051 #, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle." +msgid "Adding an administrative user failed: object '%s' already exists!" +msgstr "" +"Mettre l'option (FAIstate) pour l'objet '%s' à échoué, la valeur était '%s'." -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" -msgstr "Changement du dn de l'acl" +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#, fuzzy +msgid "Cannot move users to the requested department!" +msgstr "Impossible de bouger les utilisateurs vers le département spécifié." -#: include/class_plugin.inc:1786 -msgid "from" -msgstr "de" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "Les stations windows seront bougées depuis" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1100 #: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 msgid "to" msgstr "vers" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 -msgid "Restore" -msgstr "Restaurer" - -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" -msgstr "Restaurer la copie instantanée" - -#: include/class_plugin.inc:1993 -msgid "Create snapshot" -msgstr "Créer un snapshot" - -#: include/class_plugin.inc:1994 -msgid "Create a new snapshot from this object" -msgstr "Créer un nouveau snapshot depuis cet objet" - -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "couper" - -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "Couper cette entrée" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "Mise à jour des références suivantes aussi" -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "copier" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" +msgstr "Les groupes seront bougés depuis" -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "Copier cette entrée" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" +msgstr "Les utilisateurs seront bougés depuis" -#: include/class_plugin.inc:2053 -#, fuzzy -msgid "Copy" -msgstr "copier" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "Les références suivantes seront mises à jour" -#: include/class_plugin.inc:2057 -#, fuzzy -msgid "Cut" -msgstr "couper" +#: setup/class_setupStep_Migrate.inc:1651 +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." -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "Coller" +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 +msgid "Try to create root object" +msgstr "Essai de création de l'objet racine" -#: include/class_acl.inc:26 -msgid "Access control" -msgstr "Contrôle d'accès" +#: setup/class_setupStep_Migrate.inc:1664 +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." -#: include/class_acl.inc:207 -msgid "Reset ACLs" -msgstr "Remise à zéro des ACL" +#: setup/class_setupStep_Migrate.inc:1955 +#, fuzzy, php-format +msgid "Copy '%s' to '%s' failed:" +msgstr "Bouger '%s' vers '%s'" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" -msgstr "Utiliser l'ACL définie dans le rôle" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "J'ai lu la licence et je l'accepte" -#: include/class_acl.inc:489 -#, fuzzy -msgid "No ACL settings for this category!" -msgstr "Pas d'ACL pour cette catégorie" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "Extension PHP et vérification de ceux ci" -#: include/class_acl.inc:491 -#, php-format -msgid "Contains ACLs for these objects: %s" -msgstr "Contient les ACL pour ces objets: %s" +#: 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." -#: include/class_acl.inc:496 include/class_acl.inc:497 -#, fuzzy -msgid "category ACL" -msgstr "Catégorie" +#: 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." -#: include/class_acl.inc:543 -#, fuzzy, php-format -msgid "Edit ACL for '%s' - scope is '%s'" -msgstr "Editer l'ACL pour '%s', l'étendue est '%s'" +#: setup/setup_checks.tpl:67 +msgid "PHP setup configuration" +msgstr "Configuration de PHP" -#: include/class_acl.inc:698 include/class_acl.inc:705 -#, fuzzy -msgid "Show/hide advanced settings" -msgstr "Afficher/Cacher la configuration avancée" +#: setup/setup_checks.tpl:67 +msgid "show information" +msgstr "Montrer les informations" -#: include/class_acl.inc:723 -msgid "Create objects" -msgstr "Créer un objet" +#: setup/setup_schema.tpl:3 +msgid "Schema specific settings" +msgstr "Paramètres spécifiques des schémas" -#: include/class_acl.inc:724 -msgid "Move objects" -msgstr "Bouger un objet" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "Activer la validation des schéma lors de la connexion" -#: include/class_acl.inc:725 -msgid "Remove objects" -msgstr "Enlever les objets" +#: setup/setup_schema.tpl:16 +msgid "Check status" +msgstr "Vérifier les statuts" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" -msgstr "Modifiable par le propriétaire" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" +msgstr "La vérification des schéma à réussi" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "lecture" +#: setup/setup_schema.tpl:23 +msgid "Schema check failed" +msgstr "La vérification des schéma à échoué" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "écrire" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." +msgstr "" -#: include/class_acl.inc:743 -msgid "Complete object" -msgstr "L'objet au complet" +#: 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 "" -#: include/class_acl.inc:879 -#, fuzzy, php-format -msgid "Unkown ACL type '%s'!" -msgstr "Entrée inconnue '%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/class_acl.inc:922 -#, php-format -msgid "Unknown entry '%s'!" -msgstr "Entrée inconnue '%s' !" +#: setup/class_setupStep_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" +msgstr "Customiser certains paramètres essentiels de GOsa" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, php-format -msgid "Role: %s" -msgstr "Rôle : %s" +#: setup/class_setupStep_Config3.inc:198 +#, fuzzy +msgid "Session lifetime must be a numeric value!" +msgstr "La durée de la session doit être une valeur numérique." -#: include/class_acl.inc:984 +#: setup/class_setupStep_Config3.inc:202 #, fuzzy -msgid "unknown role" -msgstr "! identifiant inconnu" +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Le temps maximumpour une requête ldap doit être une valeur numérique." -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" -msgstr "Contient les paramètres pour ces objets: %s" +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +msgid "License" +msgstr "licence" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "Membres" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" +msgstr "Termes et Conditions d'utilisation" -#: include/class_acl.inc:1007 +#: 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 #, fuzzy -msgid "ACL takes effect for all users" -msgstr "ACL valide pour tout les utilisateurs" +msgid "Basic checks for PHP compatibility and extensions" +msgstr "" +"Vérification de base de la version de PHP et des extensions nécéssaires." -#: include/class_acl.inc:1177 -msgid "Access control list" -msgstr "Contrôle d'accès (ACL)" +#: setup/class_setupStep_Checks.inc:64 +msgid "Checking PHP version" +msgstr "Vérification de la version de PHP" -#: include/class_acl.inc:1182 -msgid "ACL roles" -msgstr "Rôles ACL" +#: 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." -#: include/class_acl.inc:1185 -msgid "Role name" -msgstr "Nom du rôle" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." +msgstr "" -#: include/class_acl.inc:1186 -msgid "Role description" -msgstr "Description du rôle" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "" -#: include/class_pluglist.inc:56 -msgid "All objects in this category" -msgstr "Tout les objets dans cette catégorie" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." +msgstr "" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" -msgstr "Inconnu" +#: setup/class_setupStep_Checks.inc:97 +#, fuzzy +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "Ce module est nécessaire pour l'utilisation de l'encryption SSHA" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 -msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." msgstr "" -"Vous êtes actuellement en train d éditer une entrée de la base de données. " -"Voulez vous annuler les modifications ?" -#: include/class_msg_dialog.inc:124 +#: setup/class_setupStep_Checks.inc:112 #, fuzzy -msgid "Please fix the above error and reload the page." -msgstr "Veuillez regarder les journaux systèmes de GOsa." +msgid "mbstring" +msgstr "Configuration Samba" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" -msgstr "Erreur XML dans gosa.conf: %s à la ligne %d" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." +msgstr "" -#: include/class_config.inc:242 +#: setup/class_setupStep_Checks.inc:121 #, fuzzy -msgid "Cannot bind to LDAP. Please contact the system administrator." +msgid "" +"GOsa requires this module to communicate with several supported databases." msgstr "" -"Impossible de se connecter à l'annuaire LDAP. Veuillez contacter " -"l'administrateur du système." +"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de " +"données." -#: include/class_config.inc:574 -#, fuzzy -msgid "SID and/or RIDBASE missing in the configuration!" -msgstr "SID et/ou RIDBASE absents dans votre configuration !" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" +msgstr "" -#: include/class_config.inc:878 +#: setup/class_setupStep_Checks.inc:129 #, fuzzy -msgid "Configuration" -msgstr "Le fichier de configuration peut être écrit" - -#: include/class_config.inc:878 msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." +"GOsa requires this module to show printers that are not defined within the " +"LDAP." msgstr "" +"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de " +"données." -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "Assistant pour le copier & coller" +#: setup/class_setupStep_Checks.inc:146 +#, fuzzy +msgid "samba hash generator" +msgstr "Générateur de hash samba" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "Impossible de lire le fichier csv '%s'." +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." +msgstr "" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "Impossible de lire le fichier csv '%s'." +#: setup/class_setupStep_Checks.inc:158 +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é." -#: include/class_CopyPasteHandler.inc:386 -#, fuzzy, php-format -msgid "These objects will be pasted: %s" -msgstr "Que ce qui sera exécuté ici" +#: setup/class_setupStep_Checks.inc:159 +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'." -#: include/class_CopyPasteHandler.inc:410 -#, fuzzy, php-format -msgid "This object will be pasted: %s" -msgstr "Que ce qui sera exécuté ici" +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." +msgstr "PHP utilise cette variable pour effacer des anciennes sessions." -#: include/class_CopyPasteHandler.inc:508 -#, fuzzy -msgid "Cannot paste" -msgstr "Impossible de coller" +#: setup/class_setupStep_Checks.inc:168 +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." -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:169 +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." -#: include/class_gosaSupportDaemon.inc:851 -#, fuzzy -msgid "Cannot not parse XML!" -msgstr "Trop d'utilisateurs, impossible d'assigner un ID libre !" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" +msgstr "Eteint" + +#: setup/class_setupStep_Checks.inc:177 +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." -#: include/class_gosaSupportDaemon.inc:1177 -#, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Impossible de lire le fichier csv '%s'." +#: setup/class_setupStep_Checks.inc:178 +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." -#: include/class_gosaSupportDaemon.inc:1197 -#, fuzzy, php-format -msgid "Cannot remove entry %s!" -msgstr "Entrée inconnue '%s' !" +#: setup/class_setupStep_Checks.inc:185 +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." -#: 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_Checks.inc:186 +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." -#: 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_Checks.inc:193 +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." -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" -msgstr "précédent" +#: setup/class_setupStep_Checks.inc:194 +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'." -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "suivant" +#: setup/class_setupStep_Checks.inc:201 +msgid "The Execution time should be at least 30 seconds." +msgstr "Le temps d'exécution doit être au moins de 30 secondes." -#: 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 " +#: setup/class_setupStep_Checks.inc:202 +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." -#: 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_Checks.inc:209 +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." -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." -msgstr "Vous êtes sur le point de supprimer le snapshot '%s'." +#: setup/class_setupStep_Checks.inc:210 +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'." -#: include/class_SnapShotDialog.inc:145 -msgid "Remove snapshot" -msgstr "Supprimer le snapshot" +#: setup/class_setupStep_Checks.inc:216 +msgid "On" +msgstr "Ouvert" -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +#: setup/class_setupStep_Checks.inc:217 +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." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:218 +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'." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:225 +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'." -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:226 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"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'." -#: include/class_ldap.inc:684 +#: setup/class_setupStep_Checks.inc:236 +msgid "Configuration writeable" +msgstr "Le fichier de configuration peut être écrit" + +#: setup/class_setupStep_Checks.inc:237 +msgid "The configuration file can't be written" +msgstr "Le fichier de configuration ne peut pas être écrit" + +#: setup/class_setupStep_Checks.inc:238 #, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +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." -#: include/class_ldap.inc:768 -#, 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'" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "Thèmes et apparences" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" -msgstr "lors de l'opération sur le serveur LDAP %s" +#: setup/setup_config1.tpl:6 +msgid "Theme" +msgstr "Thème" -#: include/class_ldap.inc:992 -#, php-format -msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +#: setup/setup_config1.tpl:15 +#, fuzzy +msgid "Apache" +msgstr "Cache" + +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" msgstr "" -"Ceci n'est pas un DN valide: '%s'. Le fichier d'importation doit commencer " -"avec 'dn: ...' à la ligne %s" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/setup_config1.tpl:27 +msgid "People and group storage" msgstr "" -"Erreur lors de l'importation du dn: '%s', veuillez vérifier votre fichier " -"votre fichier LDIF à partir de la ligne %s !" +"Branches de l'arbre ldap ou sont stockes les utilisateurs et les groupes" -#: 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_config1.tpl:30 +msgid "People DN attribute" +msgstr "Type d'attribut pour le DN des utilisateurs" -#: include/class_multi_plug.inc:391 -#, fuzzy -msgid "Password reset" -msgstr "Le mot de passe expirera le" +#: setup/setup_config1.tpl:41 +msgid "People storage subtree" +msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs" -#: 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_config1.tpl:50 +msgid "Group storage subtree" +msgstr "Branches de l'arbre ldap ou sont stockes les groupes" -#: 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/setup_config1.tpl:59 +msgid "Include personal title in user DN" +msgstr "Inclure le personal title dans le DN de l'utilisateur" -#: include/class_log.inc:107 +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "Règles de de nommage souples" + +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "MySQL error" -msgstr "Erreur LDAP :" +msgid "Automatic UIDs" +msgstr "Uid automatiques" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" -msgstr "" +#: setup/setup_config1.tpl:113 +msgid "Number base for people/groups" +msgstr "Nombre de départ pour les utilisateurs/groupes" -#: include/class_log.inc:120 -#, fuzzy, php-format -msgid "Invalid option '%s' specified!" -msgstr "Type non valide comme opérateur." +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "Connexions pour le nombre de base" -#: include/class_log.inc:124 -#, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "Le branche spécifiée est invalide." +#: 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" -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: 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." -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "Impossible de se connecter au serveur de base de données !" +#: 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." -#: include/class_baseSelectDialog.inc:44 -#, fuzzy -msgid "Choose a base" -msgstr "Sélectionnez une base" +#: 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." -#: include/class_baseSelectDialog.inc:55 +#: setup/setup_config1.tpl:224 msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"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." -#: include/class_baseSelectDialog.inc:61 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, fuzzy -msgid "Use" -msgstr "Utilisateur" +msgid "Setup error" +msgstr "Erreur PHP" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Action" +#: setup/class_setup.inc:197 +msgid "Completed" +msgstr "Terminé" -#: include/class_baseSelectDialog.inc:72 -#, fuzzy -msgid "Filter entries with this syntax" -msgstr "Filtrer les entrées avec cette syntaxe" +#: setup/class_setupStep_Feedback.inc:92 +msgid "UNIX accounts/groups" +msgstr "Compte / Groupes UNIX" -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Sélectionnez une base" +#: setup/class_setupStep_Feedback.inc:94 +msgid "Samba management" +msgstr "Gestion SAMBA" -#: setup/class_setupStep_Ldap.inc:53 -msgid "LDAP setup" -msgstr "Configuration LDAP" +#: setup/class_setupStep_Feedback.inc:96 +msgid "Mailsystem management" +msgstr "Gestion de la messagerie" -#: setup/class_setupStep_Ldap.inc:54 -msgid "LDAP connection setup" -msgstr "Configuration de la connexion LDAP" +#: setup/class_setupStep_Feedback.inc:98 +msgid "FAX system administration" +msgstr "Gestion des FAX" -#: 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." +#: setup/class_setupStep_Feedback.inc:100 +msgid "Asterisk administration" +msgstr "Gestion d'asterisk" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "Non" +#: setup/class_setupStep_Feedback.inc:102 +msgid "System inventory" +msgstr "Gestion de l'inventaire" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "Oui" +#: setup/class_setupStep_Feedback.inc:104 +msgid "System-/Configmanagement" +msgstr "Gestion Système / Configuration" -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "La connexion anonyme sur le serveur '%s' à réussi." +#: setup/class_setupStep_Feedback.inc:106 +msgid "Addressbook" +msgstr "Carnet d'adresses" -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "la connexion comme l'utilisateur '%s' à échoué sur le serveur '%s'." +#: setup/class_setupStep_Feedback.inc:112 +#: setup/class_setupStep_Feedback.inc:114 +msgid "Notification and feedback" +msgstr "Notification et retour d'information" -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "La connexion anonyme sur le serveur '%s' à réussi." +#: setup/class_setupStep_Feedback.inc:113 +msgid "Get notifications or send feedback" +msgstr "Recevoir des notifications et des retour d'information" -#: setup/class_setupStep_Ldap.inc:113 -#, fuzzy -msgid "Please specify user and password!" -msgstr "Veuillez introduire un utilisateur et un mot de passe." +#: setup/class_setupStep_Feedback.inc:141 +#: setup/class_setupStep_Feedback.inc:148 +msgid "Feedback error" +msgstr "" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "La connexion comme l'utilisateur '%s' sur le serveur '%s' à réussi." +#: setup/class_setupStep_Feedback.inc:141 +#, php-format +msgid "Cannot send feedback to '%s': %s" +msgstr "" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Terminé" +#: setup/class_setupStep_Feedback.inc:148 +#, 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" -#: setup/class_setupStep_Finish.inc:38 -msgid "Write configuration file" -msgstr "Ecrire le fichier de configuration" +#: setup/class_setupStep_Feedback.inc:150 +msgid "Feedback sucessfully send" +msgstr "L'envoi du retour d'information à réussi" -#: setup/class_setupStep_Finish.inc:39 -msgid "Finish - write the configuration file" -msgstr "Fini - écrire le fichier de configuration" +#: setup/class_setupStep_Feedback.inc:180 +msgid "Please specify a valid email address." +msgstr "Veuillez indiquer une adresse de messagerie valide." -#: setup/class_setupStep_Finish.inc:101 +#: setup/class_setupStep_Feedback.inc:184 #, fuzzy msgid "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" +"You have to select at least one of both options, subscribe or send feedback." msgstr "" -"Votre fichier de configuration est lisible par tout le monde. Veuillez " -"modifier les permissions !" +"Vous devez au moins avoir activé une option, pour souscrire ou envoyer votre " +"retour d'information." -#: setup/class_setupStep_Finish.inc:103 -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." +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" +msgstr "Souscrire à la liste de discutions gosa-announce" -#: setup/class_setupStep_Finish.inc:112 -#, php-format +#: setup/setup_feedback.tpl:9 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:" +"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 "" -"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:" +"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/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 -msgid "License" -msgstr "licence" +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "Adresse de messagerie" -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" -msgstr "Termes et Conditions d'utilisation" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "Envoyer vos commentaire au membres du projet Gosa" -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 -msgid "Language setup" -msgstr "Configuration de la langue" +#: 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." -#: 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." +#: 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é ?" -#: setup/class_setupStep_Language.inc:47 -msgid "Automatic" -msgstr "Automatique" +#: 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/class_setupStep_Feedback.inc:92 -msgid "UNIX accounts/groups" -msgstr "Compte / Groupes UNIX" +#: 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/class_setupStep_Feedback.inc:94 -msgid "Samba management" -msgstr "Gestion SAMBA" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" +msgstr "" -#: setup/class_setupStep_Feedback.inc:96 -msgid "Mailsystem management" -msgstr "Gestion de la messagerie" +#: 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/class_setupStep_Feedback.inc:98 -msgid "FAX system administration" -msgstr "Gestion des FAX" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" +msgstr "Combien d'objet sont dans votre annuaire LDAP ?" -#: setup/class_setupStep_Feedback.inc:100 -msgid "Asterisk administration" -msgstr "Gestion d'asterisk" +#: setup/setup_feedback.tpl:123 +msgid "Features" +msgstr "Fonctionalités" -#: setup/class_setupStep_Feedback.inc:102 -msgid "System inventory" -msgstr "Gestion de l'inventaire" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "Quel fonctionnalités de GOsa utilisez vous ?" -#: setup/class_setupStep_Feedback.inc:104 -msgid "System-/Configmanagement" -msgstr "Gestion Système / Configuration" +#: 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/class_setupStep_Feedback.inc:106 -msgid "Addressbook" -msgstr "Carnet d'adresses" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" +msgstr "Envoyer vos réponses" -#: setup/class_setupStep_Feedback.inc:112 -#: setup/class_setupStep_Feedback.inc:114 -msgid "Notification and feedback" -msgstr "Notification et retour d'information" +#: include/class_SnapShotDialog.inc:90 +#, php-format +msgid "You're about to delete the snapshot '%s'." +msgstr "Vous êtes sur le point de supprimer le snapshot '%s'." -#: setup/class_setupStep_Feedback.inc:113 -msgid "Get notifications or send feedback" -msgstr "Recevoir des notifications et des retour d'information" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "Restaurer la copie instantanée" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -#, fuzzy -msgid "Setup error" -msgstr "Erreur PHP" +#: include/class_SnapShotDialog.inc:145 +msgid "Remove snapshot" +msgstr "Supprimer le snapshot" -#: setup/class_setupStep_Feedback.inc:141 -#: setup/class_setupStep_Feedback.inc:148 -msgid "Feedback error" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" msgstr "" -#: setup/class_setupStep_Feedback.inc:141 -#, php-format -msgid "Cannot send feedback to '%s': %s" +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Feedback.inc:148 -#, fuzzy -msgid "Cannot send feedback: service temporarily unavailable" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, fuzzy, php-format +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." msgstr "" -"Erreur lors de l'envoi de votre retour d'information. Le service est " -"temporairement hors service" +"La fonctionnalité pour les copie instantanées est activée, mais la variable " +"requise '%s' n'est pas configurée dans votre gosa.conf." -#: setup/class_setupStep_Feedback.inc:150 -msgid "Feedback sucessfully send" -msgstr "L'envoi du retour d'information à réussi" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle." -#: setup/class_setupStep_Feedback.inc:180 -msgid "Please specify a valid email address." -msgstr "Veuillez indiquer une adresse de messagerie valide." +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "Vous n'êtes pas autorisé à créer un nouveau rôle." -#: setup/class_setupStep_Feedback.inc:184 -#, 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." +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" +msgstr "Changement du dn de l'acl" -#: setup/class_setup.inc:197 -msgid "Completed" -msgstr "Terminé" +#: include/class_plugin.inc:1786 +msgid "from" +msgstr "de" -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -msgid "Next" -msgstr "Suivant" +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +msgid "Restore" +msgstr "Restaurer" -#: setup/setup_finish.tpl:3 -msgid "Create your configuration file" -msgstr "Création du fichier de configuration" +#: include/class_plugin.inc:1994 +msgid "Create snapshot" +msgstr "Créer un snapshot" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "Télécharger la configuration" +#: include/class_plugin.inc:1995 +msgid "Create a new snapshot from this object" +msgstr "Créer un nouveau snapshot depuis cet objet" -#: setup/setup_finish.tpl:18 -msgid "Status: " -msgstr "Statut: " +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "couper" -#: 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_plugin.inc:2013 +msgid "Cut this entry" +msgstr "Couper cette entrée" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Recherche" +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "copier" -#: setup/setup_ldap.tpl:25 -msgid "LDAP connection" -msgstr "Connexion LDAP" +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "Copier cette entrée" -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Nom de l'emplacement" +#: include/class_plugin.inc:2055 +#, fuzzy +msgid "Copy" +msgstr "copier" -#: setup/setup_ldap.tpl:37 -msgid "Connection URL" -msgstr "URL de connexion" +#: include/class_plugin.inc:2059 +#, fuzzy +msgid "Cut" +msgstr "couper" -#: setup/setup_ldap.tpl:45 -msgid "TLS connection" -msgstr "Connexion TLS" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "Coller" -#: setup/setup_ldap.tpl:65 -msgid "Reload" -msgstr "Recharger" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, fuzzy, php-format +msgid "Copy and paste failed!" +msgstr "Assistant pour le copier & coller" -#: setup/setup_ldap.tpl:69 -msgid "Authentication" -msgstr "Authentification" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, fuzzy, php-format +msgid "Cannot set permission for '%s'" +msgstr "Impossible de lire le fichier csv '%s'." -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "DN de l'administrateur" +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" +msgstr "" -#: setup/setup_ldap.tpl:78 -msgid "Select user" -msgstr "Sélectionner un utilisateur" +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +#, fuzzy +msgid "Internal error" +msgstr "Serveur de terminaux" -#: 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" +#: include/class_CopyPasteHandler.inc:175 +#, fuzzy, php-format +msgid "No write permission in '%s'" +msgstr "Impossible de lire le fichier csv '%s'." -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Mot de passe administrateur" +#: include/class_CopyPasteHandler.inc:386 +#, fuzzy, php-format +msgid "These objects will be pasted: %s" +msgstr "Que ce qui sera exécuté ici" -#: setup/setup_ldap.tpl:101 -msgid "Schema based settings" -msgstr "Paramètres basé sur les schéma" +#: include/class_CopyPasteHandler.inc:410 +#, fuzzy, php-format +msgid "This object will be pasted: %s" +msgstr "Que ce qui sera exécuté ici" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" -msgstr "Utilisez des groupes rfc2307bis" +#: include/class_CopyPasteHandler.inc:508 +#, fuzzy +msgid "Cannot paste" +msgstr "Impossible de coller" -#: setup/setup_ldap.tpl:117 -msgid "Current status" -msgstr "Statut actuel" +#: include/utils/class_msgPool.inc:15 +#, fuzzy, php-format +msgid "Select to list objects of type '%s'." +msgstr "Sélectionnez un groupe d'objets" -#: 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/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Sélectionner pour afficher les groupes contenant des utilisateurs" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Sélectionnez un groupe d'objets" -#: setup/class_setupStep_Config1.inc:76 -msgid "GOsa generic settings" -msgstr "Préférences de base GOsa" +#: include/utils/class_msgPool.inc:33 +#, fuzzy +msgid "This object will be deleted!" +msgstr "Que ce qui sera exécuté ici" -#: setup/class_setupStep_Config1.inc:118 +#: include/utils/class_msgPool.inc:35 #, 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." +msgid "This '%s' object will be deleted!" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" -msgstr "GID / UID id min" +#: include/utils/class_msgPool.inc:40 +#, php-format +msgid "This object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/utils/class_msgPool.inc:42 #, php-format -msgid "Don't add a trailing comma to '%s'." -msgstr "N'ajoutez pas une virgule à la fin de '%s'." +msgid "This '%s' object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "Branches de l'arbre ldap ou sont stockes les utilisateurs" +#: include/utils/class_msgPool.inc:47 +#, fuzzy +msgid "This object will be deleted:" +msgstr "Que ce qui sera exécuté ici" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "Branches de l'arbre ldap ou sont stockes les groupes" +#: include/utils/class_msgPool.inc:49 +#, php-format +msgid "This '%s' object will be deleted:" +msgstr "" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" -msgstr "l'uid de base doit être une valeur numérique" +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" +msgstr "" -#: 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/utils/class_msgPool.inc:55 +#, php-format +msgid "These '%s' objects will be deleted: %s" +msgstr "" -#: 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/utils/class_msgPool.inc:63 +#, fuzzy +msgid "You have no permission to delete this object!" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -msgid "GOsa settings 2/3" -msgstr "Paramètres de GOsa 2/3" +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 +#, fuzzy +msgid "You have no permission to delete the object:" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/class_setupStep_Config2.inc:88 -msgid "Customize special parameters" -msgstr "Customiser les paramètres spéciaux" +#: include/utils/class_msgPool.inc:74 +#, fuzzy +msgid "You have no permission to delete these objects:" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" -msgstr "J'ai lu la licence et je l'accepte" +#: include/utils/class_msgPool.inc:81 +#, fuzzy +msgid "You have no permission to create this object!" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -msgid "LDAP inspection" -msgstr "Vérification de l'annuaire LDAP" +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#, fuzzy +msgid "You have no permission to create the object:" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "Analyse de votre annuaire LDAP pour la compatibilité avec GOsa" +#: include/utils/class_msgPool.inc:92 +#, fuzzy +msgid "You have no permission to create these objects:" +msgstr "Vous n'avez pas les droits nécessaires pour supprimer ce département." -#: setup/class_setupStep_Migrate.inc:114 -msgid "Checking for root object" -msgstr "Recherche de l'objet racine" +#: include/utils/class_msgPool.inc:99 +#, fuzzy +msgid "You have no permission to modify this object!" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "Vérification des permissions sur l'annuaire LDAP" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:126 +#: include/utils/class_msgPool.inc:110 #, fuzzy -msgid "Checking for invisible departments" -msgstr "Vérification des départements invisibles" +msgid "You have no permission to modify these objects:" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:131 -msgid "Checking for invisible users" -msgstr "Vérification des utilisateurs invisibles" +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:137 -msgid "Checking for super administrator" -msgstr "Vérification du superadministrateur" +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#, fuzzy +msgid "You have no permission to view the object:" +msgstr "Vous n'avez pas l'autorisation pour envoyer un message!" -#: 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/utils/class_msgPool.inc:128 +#, fuzzy +msgid "You have no permission to view these objects:" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: 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/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" -msgstr "Vérification de stations windows en dehors de la branche winstation" +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#, fuzzy +msgid "You have no permission to move the object:" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:162 +#: include/utils/class_msgPool.inc:146 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Vérification pour les uid en double" +msgid "You have no permission to move these objects:" +msgstr "Vous n'avez pas l'autorisation de supprimer cette liste rouge." -#: setup/class_setupStep_Migrate.inc:168 +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 #, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Vérification pour les uid en double" +msgid "Connection information" +msgstr "Informations personnelles" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 -msgid "LDAP query failed" -msgstr "La requête LDAP à échoué" +#: include/utils/class_msgPool.inc:158 +#, fuzzy, php-format +msgid "Cannot connect to %s database!" +msgstr "Impossible de se connecter au serveur de base de données !" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "L'objet racine est probablement manquant." +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "Impossible de sélectionner la base de données !" -#: setup/class_setupStep_Migrate.inc:217 +#: include/utils/class_msgPool.inc:176 #, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'uidNumber'." +msgid "No %s server defined!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:269 -#, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "J'ai trouvé %s valeur dupliquées pour l'attribut 'gidNumber'." +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "Impossible de sélectionner la base de données !" -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Echec" +#: include/utils/class_msgPool.inc:194 +#, fuzzy, php-format +msgid "The field '%s' contains a reserved keyword!" +msgstr "Le champ 'Fax' contient un numéro invalide." -#: setup/class_setupStep_Migrate.inc:329 -#, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +#: include/utils/class_msgPool.inc:200 +#, fuzzy, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -"J'ai trouvé %s winstations en dehors du département winstation prédéfini '%" -"s'." +"La commande '%s', utilisée dans le CHECK de l'extension '%s' n'existe pas." -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 -msgid "Migrate" -msgstr "Migrer" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "Le branche spécifiée est invalide." -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:209 #, 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'." - -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -msgid "Move" -msgstr "Bouger" +msgid "'%s' command (%s) for plugin %s is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:479 +#: include/utils/class_msgPool.inc:211 #, 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'." +msgid "'%s' command for plugin %s is invalid!" +msgstr "" + +#: include/utils/class_msgPool.inc:213 +#, fuzzy, php-format +msgid "'%s' command (%s) is invalid!" +msgstr "Le branche spécifiée est invalide." + +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "Impossible de sélectionner la base de données !" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:223 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -"L'utilisateur spécifié '%s' n'a pas l'accès complet à votre annuaire ldap." -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:225 #, 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." - -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Migrer" +msgid "Cannot execute '%s' command for plugin %s!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: include/utils/class_msgPool.inc:227 #, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Aller au département de base" - -#: setup/class_setupStep_Migrate.inc:758 -#, 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." +msgid "Cannot execute '%s' command (%s)!" +msgstr "Impossible de sélectionner la base de données !" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." -msgstr "Il n'y a pas d'administrateur GOsa dans votre annuaire LDAP." +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "La valeur de l''UID' est trop petite." -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:237 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 -#, fuzzy -msgid "Password error" -msgstr "Le mot de passe expirera le" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "La valeur de l''UID' est trop petite." -#: setup/class_setupStep_Migrate.inc:1004 -#, 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!" +#: include/utils/class_msgPool.inc:247 +#, fuzzy, php-format +msgid "'%s' must be %d or above!" +msgstr "PHP doit être à la version %s / %s ou supérieure." -#: setup/class_setupStep_Migrate.inc:1009 -#, fuzzy -msgid "Input error" -msgstr "Erreur PHP" +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:1009 -#, fuzzy -msgid "Specify a valid user ID!" -msgstr "Le nom d'utilisateur est incorrect !" +#: include/utils/class_msgPool.inc:260 +#, 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." -#: setup/class_setupStep_Migrate.inc:1051 +#: include/utils/class_msgPool.inc:266 #, 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 required field '%s' is empty!" +msgstr "Le champ obligatoire 'Nom' n'est pas rempli." -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "Impossible de bouger les utilisateurs vers le département spécifié." +#: include/utils/class_msgPool.inc:274 +msgid "Example" +msgstr "" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "Les stations windows seront bougées depuis" +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "Le champ 'Nom' contient des caractères invalides." -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "Mise à jour des références suivantes aussi" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" +msgstr "" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "Les groupes seront bougés depuis" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +msgstr "Le changement du mot de passe n'est pas autorisé" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" -msgstr "Les utilisateurs seront bougés depuis" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "Le champ 'Nom' contient des caractères invalides." -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" -msgstr "Les références suivantes seront mises à jour" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Extension d'inventaire" -#: setup/class_setupStep_Migrate.inc:1651 -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." +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Enregistrer" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -msgid "Try to create root object" -msgstr "Essai de création de l'objet racine" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Ajouter" -#: setup/class_setupStep_Migrate.inc:1664 -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." +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Ajouter" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:338 #, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Bouger '%s' vers '%s'" +msgid "Delete %s" +msgstr "Supprimer" -#: 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/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "Activer" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" -msgstr "Customiser certains paramètres essentiels de GOsa" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "Editer" -#: setup/class_setupStep_Config3.inc:198 -#, fuzzy -msgid "Session lifetime must be a numeric value!" -msgstr "La durée de la session doit être une valeur numérique." +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Editer un utilisateur" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Le temps maximumpour une requête ldap doit être une valeur numérique." +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Retour" -#: setup/setup_language.tpl:3 -msgid "Please select the preferred language" -msgstr "Veuillez sélectionner la langue par défaut" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "Ce compte n'a pas d'extensions GOsa valides." -#: setup/setup_language.tpl:5 +#: include/utils/class_msgPool.inc:381 +#, fuzzy, php-format 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 account has %s settings enabled. You can disable them by clicking below." 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/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" -msgstr "Souscrire à la liste de discutions gosa-announce" +"Ce compte possède l'extension posix. Vous pouvez le supprimer en cliquant " +"sur le bouton ci-dessous." -#: setup/setup_feedback.tpl:9 +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, fuzzy, php-format 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 account has %s settings enabled. To disable them, you'll need to remove " +"the %s settings first!" 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:30 -msgid "Mail address" -msgstr "Adresse de messagerie" - -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" -msgstr "Envoyer vos commentaire au membres du projet Gosa" +"Ce compte possède l'extension unix. Pour le désactiver vous devez au " +"préalable supprimer le(s) compte samba / environnement." -#: setup/setup_feedback.tpl:44 +#: include/utils/class_msgPool.inc:400 +#, fuzzy, php-format msgid "" -"When checking this option, GOsa will try to connect http://oss.gonicus.de in " -"order to submit your form anonymously." +"This account has %s settings disabled. You can enable them by clicking below." 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." +"Aucune extension posix n'existe pour ce compte. Vous pouvez en créer une en " +"cliquant sur le bouton ci-dessous." -#: 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é ?" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: 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" +#: include/utils/class_msgPool.inc:410 +#, 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." -#: 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 ?" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Paramètres supplémentaire de GOsa" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "Je l'utilise depuis " +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Paramètres Posix" -#: 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" +#: include/utils/class_msgPool.inc:430 +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" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "Quel système d'exploitation / distribution utilisez vous ?" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Janvier" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "Quel serveur web utilisez vous ?" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Février" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "Quelle version de php utilisez vous ?" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Mars" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "Avril" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "Quel type de serveur(s) ldap utilisez vous ?" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Mai" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "Combien d'objet sont dans votre annuaire LDAP ?" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Juin" -#: setup/setup_feedback.tpl:123 -msgid "Features" -msgstr "Fonctionalités" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Juillet" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "Quel fonctionnalités de GOsa utilisez vous ?" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Août" -#: 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 ?" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "Septembre" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" -msgstr "Envoyer vos réponses" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Octobre" -#: setup/class_setupStep_Welcome.inc:38 -msgid "Welcome" -msgstr "Bienvenue" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "Novembre" -#: setup/class_setupStep_Welcome.inc:39 -msgid "The welcome message" -msgstr "Le message d'accueil" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Décembre" -#: setup/class_setupStep_Welcome.inc:40 -msgid "Welcome to GOsa setup wizard" -msgstr "Bienvenue dans l'installation de GOsa" +#: include/utils/class_msgPool.inc:444 +#, fuzzy +msgid "Sunday" +msgstr "Nom de famille" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" -msgstr "Thèmes et apparences" +#: include/utils/class_msgPool.inc:444 +#, fuzzy +msgid "Monday" +msgstr "mois" -#: setup/setup_config1.tpl:6 -msgid "Theme" -msgstr "Thème" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" +msgstr "" -#: setup/setup_config1.tpl:15 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Apache" -msgstr "Cache" +msgid "Wednesday" +msgstr "Mercredi" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" msgstr "" -#: setup/setup_config1.tpl:27 -msgid "People and group storage" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" 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" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" +msgstr "" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "Inclure le personal title dans le DN de l'utilisateur" +#: include/utils/class_msgPool.inc:451 +#, fuzzy +msgid "read operation" +msgstr "Options de messagerie" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" -msgstr "Règles de de nommage souples" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" +msgstr "" -#: setup/setup_config1.tpl:81 +#: include/utils/class_msgPool.inc:451 #, fuzzy -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" +msgid "modify operation" +msgstr "Montrer les informations" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "Connexions pour le nombre de base" +#: include/utils/class_msgPool.inc:452 +#, fuzzy +msgid "delete operation" +msgstr "Sélectionnez pour voir les stations de travail" -#: setup/setup_config1.tpl:140 -msgid "Password encryption algorithm" -msgstr "Algorithme de cryptage pour les mots de passe" +#: include/utils/class_msgPool.inc:452 +#, fuzzy +msgid "search operation" +msgstr "Utiliser l'expiration du compte" -#: setup/setup_config1.tpl:151 -msgid "Password restrictions" -msgstr "Restrictions pour les mot de passe" +#: include/utils/class_msgPool.inc:452 +#, fuzzy +msgid "authentication" +msgstr "Authentification" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "Taille minimum des mots de passe" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "La requête LDAP à échoué" -#: 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" +#: include/utils/class_msgPool.inc:457 +#, fuzzy +msgid "LDAP operation failed!" +msgstr "La requête LDAP à échoué" -#: setup/setup_config1.tpl:182 -msgid "Password change hook" -msgstr "Connexions pour le changement de mot de passe" +#: include/utils/class_msgPool.inc:472 +#, fuzzy +msgid "Upload failed!" +msgstr "Echec de l'authentification. Le serveur LDAP répond '%s'." -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "Utiliser SASL pour kerberos" +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Utilisateur de la base de données des journaux systèmes" -#: setup/setup_config1.tpl:209 -msgid "Use account expiration" -msgstr "Utiliser l'expiration du compte" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +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." +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" 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." +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" 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." +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." 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." +"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " +"suivants %s utilisent ce rôle" -#: 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." +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" 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." +"Ce rôle ne peut pas être supprimé car il est encore utilisé. Les objects " +"suivants %s utilisent ce rôle" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Configuration Samba" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" +msgstr "" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" -msgstr "Générateur de hash samba" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Impossible de lire le fichier '%s'." -#: setup/setup_config2.tpl:31 -msgid "RID base" -msgstr "Base du RID" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Impossible de lire le fichier '%s'." -#: setup/setup_config2.tpl:46 -msgid "Workstation container" -msgstr "Branche contenant les stations de travail" +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "Impossible de lire le fichier '%s'." -#: setup/setup_config2.tpl:61 -msgid "Samba SID mapping" -msgstr "Correspondance des SID samba" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Aller au département de base" -#: setup/setup_config2.tpl:71 -msgid "Timezone" -msgstr "Fuseau Horaire" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Impossible de lire le fichier '%s'." -#: setup/setup_config2.tpl:74 -#, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "Veuillez indiquer votre fuseau horaire préféré ici" +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Vérification du support mhash" -#: setup/setup_config2.tpl:96 -msgid "Additional GOsa settings" -msgstr "Paramètres supplémentaire de GOsa" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." +msgstr "" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" -msgstr "Activer le Copier / Coller" +#: 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 "" -#: setup/setup_config2.tpl:112 +#: include/class_msg_dialog.inc:124 #, fuzzy -msgid "Enable DNS extension" -msgstr "Extension d'inventaire" +msgid "Please fix the above error and reload the page." +msgstr "Veuillez regarder les journaux systèmes de GOsa." -#: setup/setup_config2.tpl:124 -#, fuzzy -msgid "Enable DHCP extension" -msgstr "Extension d'inventaire" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Aller au département de base" -#: setup/setup_config2.tpl:136 -#, fuzzy -msgid "Enable mime type management" -msgstr "Gestion des type mime" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Racine" -#: setup/setup_config2.tpl:148 -msgid "Enable FAI release management" -msgstr "Activer la gestion des versions FAI" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Monter d'un département" -#: setup/setup_config2.tpl:160 -msgid "Enable user netatalk plugin" -msgstr "Activer la gestion des comptes Netatalk" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Aller au département des utilisateurs" -#: setup/setup_config2.tpl:171 -msgid "Government mode" -msgstr "Mode Gouvernemental" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Accueil" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "Inconnu" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "Recharger la liste" -#: setup/setup_config2.tpl:186 -#, fuzzy -msgid "Syslog" -msgstr "journaux systèmes" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" +msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "Erreur LDAP :" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "Paramètres de messagerie" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" +msgstr "" -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "Méthode de messagerie" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" msgstr "" -#: setup/setup_config2.tpl:227 -msgid "Vacation templates" -msgstr "Modèles de messages d'absence " +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" +msgstr "" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" -msgstr "Utiliser Cyrus en mode UNIX" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" +msgstr "" -#: setup/setup_config2.tpl:253 -msgid "Snapshots / Undo" -msgstr "Copie instantanée / Undo" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" +msgstr "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -msgid "Enable snapshots" -msgstr "Activer la copie instantanée" +#: include/class_ldap.inc:768 +#, 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'" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -msgid "Snapshot base" -msgstr "Base pour les snapshots" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" +msgstr "lors de l'opération sur le serveur LDAP %s" -#: setup/setup_config3.tpl:2 -msgid "GOsa core settings" -msgstr "Paramètres essentiels de GOsa" +#: include/class_ldap.inc:992 +#, php-format +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" -#: setup/setup_config3.tpl:6 -msgid "Disable primary group filter" -msgstr "Désactiver le filtre sur les groupes primaires" +#: include/class_ldap.inc:1021 +#, 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 !" -#: setup/setup_config3.tpl:18 +#: include/class_config.inc:107 +#, 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:242 #, fuzzy -msgid "Display summary in listings" -msgstr "Afficher les macros correspondantes" +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." -#: setup/setup_config3.tpl:30 -msgid "Honour administrative units" -msgstr "Honorer les entités administratives" +#: include/class_config.inc:574 +#, fuzzy +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "SID et/ou RIDBASE absents dans votre configuration !" -#: setup/setup_config3.tpl:42 -msgid "Smarty compile directory" -msgstr "Répertoire de compilation de smarty" +#: include/class_config.inc:878 +#, fuzzy +msgid "Configuration" +msgstr "Le fichier de configuration peut être écrit" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config3.tpl:60 -msgid "Path for PPD storage" -msgstr "Répertoire pour le stockage des PPD" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" +msgstr "" -#: setup/setup_config3.tpl:77 -msgid "Path for kiosk profile storage" -msgstr "Répertoire pour le stockage des profiles kiosk" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" +msgstr "" -#: setup/setup_config3.tpl:96 +#: include/class_gosaSupportDaemon.inc:851 #, fuzzy -msgid "Override sudo role ou" -msgstr "! identifiant inconnu" +msgid "Cannot not parse XML!" +msgstr "Trop d'utilisateurs, impossible d'assigner un ID libre !" -#: setup/setup_config3.tpl:115 -msgid "Mail queue script" -msgstr "Script pour la gestion de la queue du serveur de messagerie" +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Impossible de lire le fichier csv '%s'." -#: setup/setup_config3.tpl:134 -msgid "Notification script" -msgstr "Script de notification" +#: include/class_gosaSupportDaemon.inc:1197 +#, fuzzy, php-format +msgid "Cannot remove entry %s!" +msgstr "Entrée inconnue '%s' !" -#: setup/setup_config3.tpl:153 +#: include/class_multi_plug.inc:362 #, fuzzy -msgid "Enable edit locking" -msgstr "Activer la vérification antivirus de la messagerie" +msgid "You are currently editing mutliple entries." +msgstr "Vous êtes occupé à bouger/renommer ce département." -#: setup/setup_config3.tpl:172 -msgid "Login and session" -msgstr "connexion et session" +#: include/class_multi_plug.inc:391 +#, fuzzy +msgid "Password reset" +msgstr "Le mot de passe expirera le" -#: setup/setup_config3.tpl:175 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Login attribute" -msgstr "Propriétés du téléphone" +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_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" -msgstr "Force register_globals à être désactivé" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" +msgstr "L'effacement à été interrompu par l'extension '%s': %s" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" -msgstr "Force les connexions cryptées" +#: include/class_tabs.inc:373 +msgid "References" +msgstr "Références" -#: setup/setup_config3.tpl:210 -msgid "Warn if session is not encrypted" -msgstr "Avertir si la session ne sera pas cryptée" +#: include/class_baseSelectDialog.inc:44 +#, fuzzy +msgid "Choose a base" +msgstr "Sélectionnez une base" -#: setup/setup_config3.tpl:222 +#: include/class_baseSelectDialog.inc:55 +msgid "" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." +msgstr "" + +#: include/class_baseSelectDialog.inc:61 #, fuzzy -msgid "Remember dialog filter settings" -msgstr "Paramètres par défaut des utilisateurs" +msgid "Use" +msgstr "Utilisateur" -#: setup/setup_config3.tpl:234 -msgid "Session lifetime" -msgstr "Durée de vie de la session" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Action" -#: setup/setup_config3.tpl:243 -msgid "Debugging" -msgstr "Deboguage" +#: include/class_baseSelectDialog.inc:72 +#, fuzzy +msgid "Filter entries with this syntax" +msgstr "Filtrer les entrées avec cette syntaxe" -#: setup/setup_config3.tpl:247 -msgid "Show PHP errors" -msgstr "Afficher les erreur PHP" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "Sélectionnez une base" -#: setup/setup_config3.tpl:259 -msgid "Maximum LDAP query time" -msgstr "Durée maximale d'une requête LDAP" +#: 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/setup_config3.tpl:277 -msgid "Log LDAP statistics" -msgstr "Inscrit les statistique de l'annuaire LDAP dans les journaux systèmes" +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." +msgstr "L'aide n'est pas disponible pour cette extension." -#: setup/setup_config3.tpl:289 -msgid "Debug level" -msgstr "Niveau de débogage" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" +msgstr "précédent" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -msgid "Disabled" -msgstr "Désactivé" +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" +msgstr "suivant" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 -msgid "Enabled" -msgstr "Activé" +#: 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 " -#: 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." +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" +msgstr "%s%% de correspondance dans le fichier %s" + +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" 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." +"La création de cette page à occasionné des erreurs d'après l'interpréteur " +"PHP !" -#: setup/setup_migrate.tpl:33 -msgid "Check again" -msgstr "Vérifier à nouveau" +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" +msgstr "Envoyer vos commentaires au membres du projet Gosa" -#: 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/php_setup.inc:100 +msgid "Send bugreport" +msgstr "Envoyer un rapport de bug" -#: setup/setup_migrate.tpl:39 -msgid "" -"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/php_setup.inc:105 +msgid "Toggle information" +msgstr "Afficher/Cacher l'information" -#: 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 "" -"Soyez prudent avec cet outil, il peut y avoir des références pointant vers " -"ces machines qui ne seront pas migrées." +#: include/php_setup.inc:115 +msgid "PHP error" +msgstr "Erreur PHP" -#: 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/php_setup.inc:134 +msgid "class" +msgstr "classe" -#: setup/setup_migrate.tpl:72 -msgid "Move selected workstations" -msgstr "Bouger les stations de travail sélectionnées" +#: include/php_setup.inc:140 +msgid "function" +msgstr "fonction" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "Que ce qui sera exécuté ici" +#: include/php_setup.inc:145 +msgid "static" +msgstr "statique" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "Bouger les groupes dans le groupe configuré" +#: include/php_setup.inc:149 +msgid "method" +msgstr "méthode" -#: 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/php_setup.inc:182 +msgid "Trace" +msgstr "Trace" -#: 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." +#: include/php_setup.inc:183 +msgid "File" +msgstr "Fichier" -#: 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/php_setup.inc:183 +msgid "Line" +msgstr "Ligne" -#: 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/php_setup.inc:183 +msgid "Type" +msgstr "Type" -#: 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/php_setup.inc:184 +msgid "Arguments" +msgstr "Arguments" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" -msgstr "Bouger les utilisateurs dans la branche utilisateur configurée" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" +msgstr "Tout les objets dans cette catégorie" -#: 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." +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" 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." -#: setup/setup_migrate.tpl:145 +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" +msgstr "Inconnu" + +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 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." +"You are currently editing a database entry. Do you want to dismiss the " +"changes?" 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." +"Vous êtes actuellement en train d éditer une entrée de la base de données. " +"Voulez vous annuler les modifications ?" -#: setup/setup_migrate.tpl:199 -msgid "Abort" -msgstr "Annuler" +#: 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/setup_migrate.tpl:201 -msgid "Create a new GOsa administrator account" -msgstr "Créer un nouveau compte administrateur pour GOsa" +#: include/class_log.inc:107 +#, fuzzy +msgid "MySQL error" +msgstr "Erreur LDAP :" -#: setup/setup_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" msgstr "" -"Ce dialogue vas automatiquement créer un nouveau super utilisateur dans " -"votre arbre LDAP." -#: setup/setup_migrate.tpl:233 -msgid "Password (again)" -msgstr "Mot de passe (de nouveau)" +#: include/class_log.inc:120 +#, fuzzy, php-format +msgid "Invalid option '%s' specified!" +msgstr "Type non valide comme opérateur." -#: setup/setup_migrate.tpl:258 +#: include/class_log.inc:124 #, 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." -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." +msgid "Specified objectType is empty or invalid!" +msgstr "Le branche spécifiée est invalide." -#: 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." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" 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." -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -msgid "Current" -msgstr "Actuel" +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +msgstr "Impossible de se connecter au serveur de base de données !" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -msgid "After migration" -msgstr "Après migration" +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" +msgstr "" -#: setup/setup_migrate.tpl:313 +#: include/functions.inc:125 +#, php-format 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." +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" 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_frame.tpl:12 -msgid "GOsa setup wizard" -msgstr "Installation de GOsa" - -#: setup/setup_frame.tpl:19 -msgid "Installation" -msgstr " " - -#: setup/setup_frame.tpl:19 -msgid "Steps" -msgstr "Etapes" - -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -msgid "LDAP schema check" -msgstr "Vérification des schémas LDAP" -#: 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" +#: include/functions.inc:335 +#, 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'." -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" -msgstr "Vérification de l'installation" +#: include/functions.inc:397 +#, fuzzy +msgid "Username / UID is not unique inside the LDAP tree!" +msgstr "" +"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base " +"de données LDAP." -#: setup/class_setupStep_Checks.inc:40 +#: include/functions.inc:467 #, fuzzy -msgid "Basic checks for PHP compatibility and extensions" +msgid "" +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -"Vérification de base de la version de PHP et des extensions nécéssaires." +"Le nom de l'utilisateur / UID n'est pas unique. Veuillez vérifier votre base " +"de données LDAP." -#: setup/class_setupStep_Checks.inc:64 -msgid "Checking PHP version" -msgstr "Vérification de la version de PHP" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" +msgstr "" -#: setup/class_setupStep_Checks.inc:65 +#: include/functions.inc:622 #, 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 "Please upgrade to a supported version." +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/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." -msgstr "" +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "LDAP server returned: %s" +msgstr "Serveur LDAP" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." +#: include/functions.inc:716 +#, fuzzy +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." -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "La taille limite de %d entrées est dépassée !" + +#: include/functions.inc:1015 +#, 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/class_setupStep_Checks.inc:97 -#, fuzzy -msgid "GOsa requires this module to make use of SSHA encryption." -msgstr "Ce module est nécessaire pour l'utilisation de l'encryption SSHA" +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "incomplet" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." -msgstr "" +#: include/functions.inc:1311 +msgid "Continue anyway" +msgstr "Continuer malgré tout" -#: setup/class_setupStep_Checks.inc:112 -#, fuzzy -msgid "mbstring" -msgstr "Configuration Samba" +#: include/functions.inc:1313 +msgid "Edit anyway" +msgstr "Éditer malgré tout" -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." -msgstr "" +#: include/functions.inc:1315 +#, 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/class_setupStep_Checks.inc:121 -#, fuzzy -msgid "" -"GOsa requires this module to communicate with several supported databases." -msgstr "" -"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de " -"données." +#: include/functions.inc:1499 +msgid "Entries per page" +msgstr "Entrées par page" -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:1527 +msgid "Apply filter" +msgstr "Appliquer le filtre" + +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "Version de développement de GOsa (Rev %s)" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." msgstr "" -#: setup/class_setupStep_Checks.inc:129 +#: include/functions.inc:1936 include/functions.inc:1956 #, fuzzy -msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." +msgid "Cannot write to revision file!" +msgstr "Impossible d'écrire le fichier csv '%s'." + +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +#, fuzzy +msgid "'base_hook' is not available. Using default base!" msgstr "" -"Le support de MySQL est nécessaire pour communiquer avec plusieurs base de " -"données." +"Attention - base_hook n'est pas disponible. Utilisation de la base par " +"défaut." -#: setup/class_setupStep_Checks.inc:146 +#: include/functions.inc:2230 #, fuzzy -msgid "samba hash generator" -msgstr "Générateur de hash samba" +msgid "LDAP warning" +msgstr "Gérer l'annuaire" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:2230 +#, 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 !" -#: setup/class_setupStep_Checks.inc:148 -msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." -msgstr "" +#: include/functions.inc:2256 +msgid "Used to store account specific informations." +msgstr "Utilisé pour stocker les informations spécifiques des comptes." -#: setup/class_setupStep_Checks.inc:158 +#: include/functions.inc:2263 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." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." 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é." +"Utilisé pour verrouiller les entrées actuellement modifiées afin d'éviter de " +"multiples changements simultanés." -#: setup/class_setupStep_Checks.inc:159 -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +#: include/functions.inc:2306 +#, php-format +msgid "Missing required object class '%s'!" msgstr "" -"Recherchez l'option 'register_globals' dans votre php.ini et mettez la à " -"'Off'." - -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." -msgstr "PHP utilise cette variable pour effacer des anciennes sessions." -#: setup/class_setupStep_Checks.inc:168 -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -"Mettre cette valeur à 1 jour permet d'éviter de perde les cookies et les " -"sessions avant qu'elles soient réellement expirées." -#: setup/class_setupStep_Checks.inc:169 -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -"Cherchez pour 'session.gc_maxlifetime' dans votre php.ini et mettez le à " -"86400 ou plus haut." - -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" -msgstr "Eteint" -#: setup/class_setupStep_Checks.inc:177 -msgid "" -"In Order to use GOsa without any trouble, the session.auto_register option " -"in your php.ini should be set to 'Off'." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -"Pour pouvoir utiliser GOSa sans problèmes, la variable session.auto_register " -"doit être a 'Off' dans votre php.ini." -#: setup/class_setupStep_Checks.inc:178 -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." +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" +msgstr "Classe(s) disponible(s)" -#: setup/class_setupStep_Checks.inc:185 +#: include/functions.inc:2342 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." +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." 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." +"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_Checks.inc:186 +#: include/functions.inc:2343 msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -"Recherchez pour 'memory_limit' dans votre php.ini et mettez le à '32M' or " -"plus haut." +"Pour pouvoir utiliser des groupes conformes à la norme rfc2307bis, " +"l'objectClass 'posixGroup' doit être AUXILIARY" -#: setup/class_setupStep_Checks.inc:193 +#: include/functions.inc:2347 msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." msgstr "" -"Cette option défini la gestion des sorties, mettez cette option à 'Off', " -"pour améliorer la performance." - -#: setup/class_setupStep_Checks.inc:194 -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'." -#: setup/class_setupStep_Checks.inc:201 -msgid "The Execution time should be at least 30 seconds." -msgstr "Le temps d'exécution doit être au moins de 30 secondes." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" +msgstr "L'objectClass 'posixGroup' doit être STRUCTURAL" -#: setup/class_setupStep_Checks.inc:202 -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." +#: include/functions.inc:2371 +msgid "German" +msgstr "Allemand" -#: setup/class_setupStep_Checks.inc:209 -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." +#: include/functions.inc:2372 +msgid "French" +msgstr "Français" -#: setup/class_setupStep_Checks.inc:210 -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'." +#: include/functions.inc:2373 +msgid "Italian" +msgstr "Italien" -#: setup/class_setupStep_Checks.inc:216 -msgid "On" -msgstr "Ouvert" +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Espagnol" -#: setup/class_setupStep_Checks.inc:217 -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." +#: include/functions.inc:2375 +msgid "English" +msgstr "Anglais" -#: setup/class_setupStep_Checks.inc:218 -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'." +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Hollandais" -#: setup/class_setupStep_Checks.inc:225 -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'." +#: include/functions.inc:2377 +msgid "Polish" +msgstr "Polonais" -#: setup/class_setupStep_Checks.inc:226 -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -"Recherchez l'option 'zend.ze1_compatibility_mode' dans votre hp.ini et " -"mettez la à 'Off'." -#: setup/class_setupStep_Checks.inc:236 -msgid "Configuration writeable" -msgstr "Le fichier de configuration peut être écrit" +#: include/functions.inc:2379 +msgid "Chinese" +msgstr "Chinois" -#: setup/class_setupStep_Checks.inc:237 -msgid "The configuration file can't be written" -msgstr "Le fichier de configuration ne peut pas être écrit" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Russe" -#: setup/class_setupStep_Checks.inc:238 +#: include/functions.inc:2561 #, 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." +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." 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." +"La commande '%s', utilisée dans le POSTMODIFY de l'extension '%s' n'existe " +"pas." -#: 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." +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" 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 ?" +#: include/class_acl.inc:26 +msgid "Access control" +msgstr "Contrôle d'accès" -#: setup/setup_welcome.tpl:11 -msgid "Create a basic, single site configuration" -msgstr "Créer une simple configuration mono site" +#: include/class_acl.inc:207 +msgid "Reset ACLs" +msgstr "Remise à zéro des ACL" -#: 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" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" +msgstr "Utiliser l'ACL définie dans le rôle" -#: 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_acl.inc:489 +#, fuzzy +msgid "No ACL settings for this category!" +msgstr "Pas d'ACL pour cette catégorie" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "Migration assistée d'un annuaire LDAP existant" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" +msgstr "Contient les ACL pour ces objets: %s" + +#: include/class_acl.inc:496 include/class_acl.inc:497 +#, fuzzy +msgid "category ACL" +msgstr "Catégorie" + +#: include/class_acl.inc:543 +#, fuzzy, php-format +msgid "Edit ACL for '%s' - scope is '%s'" +msgstr "Editer l'ACL pour '%s', l'étendue est '%s'" + +#: include/class_acl.inc:698 include/class_acl.inc:705 +#, fuzzy +msgid "Show/hide advanced settings" +msgstr "Afficher/Cacher la configuration avancée" -#: 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_acl.inc:723 +msgid "Create objects" +msgstr "Créer un objet" -#: setup/setup_welcome.tpl:20 -msgid "Find every possible configuration error" -msgstr "Trouver toutes les erreur possible dans votre configuration" +#: include/class_acl.inc:724 +msgid "Move objects" +msgstr "Bouger un objet" -#: 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_acl.inc:725 +msgid "Remove objects" +msgstr "Enlever les objets" -#: setup/setup_welcome.tpl:25 -msgid "To continue..." -msgstr "Suite de la configuration..." +#: include/class_acl.inc:727 +msgid "Modifyable by owner" +msgstr "Modifiable par le propriétaire" -#: 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_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "lecture" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "Cliquer sur 'Continuer' quand vous avez fini." +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "écrire" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "Extension PHP et vérification de ceux ci" +#: include/class_acl.inc:743 +msgid "Complete object" +msgstr "L'objet au complet" -#: 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." +#: include/class_acl.inc:879 +#, fuzzy, php-format +msgid "Unkown ACL type '%s'!" +msgstr "Entrée inconnue '%s' !" -#: 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." +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" +msgstr "Entrée inconnue '%s' !" -#: setup/setup_checks.tpl:67 -msgid "PHP setup configuration" -msgstr "Configuration de PHP" +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, php-format +msgid "Role: %s" +msgstr "Rôle : %s" -#: setup/setup_checks.tpl:67 -msgid "show information" -msgstr "Montrer les informations" +#: include/class_acl.inc:984 +#, fuzzy +msgid "unknown role" +msgstr "! identifiant inconnu" -#: setup/setup_schema.tpl:3 -msgid "Schema specific settings" -msgstr "Paramètres spécifiques des schémas" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" +msgstr "Contient les paramètres pour ces objets: %s" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "Activer la validation des schéma lors de la connexion" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "Membres" -#: setup/setup_schema.tpl:16 -msgid "Check status" -msgstr "Vérifier les statuts" +#: include/class_acl.inc:1007 +#, fuzzy +msgid "ACL takes effect for all users" +msgstr "ACL valide pour tout les utilisateurs" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" -msgstr "La vérification des schéma à réussi" +#: include/class_acl.inc:1177 +msgid "Access control list" +msgstr "Contrôle d'accès (ACL)" -#: setup/setup_schema.tpl:23 -msgid "Schema check failed" -msgstr "La vérification des schéma à échoué" +#: include/class_acl.inc:1182 +msgid "ACL roles" +msgstr "Rôles ACL" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_acl.inc:1185 +msgid "Role name" +msgstr "Nom du rôle" -#: 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 "" +#: include/class_acl.inc:1186 +msgid "Role description" +msgstr "Description du rôle" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "Aide" +#: include/class_certificate.inc:73 +#, fuzzy +msgid "Certificate is empty!" +msgstr "Certificats" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "Il n'y a pas de fichier d'aide spécifiée pour cette classe." +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" +msgstr "" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: include/class_certificate.inc:115 +msgid "Cannot extract information for non PEM certificates!" msgstr "" -"Le répertoire d'aide '%s' n'est pas accessible, impossible de lire les " -"fichiers d'aide." -#: html/setup.php:66 +#: include/class_certificate.inc:219 #, fuzzy -msgid "Smarty" -msgstr "Sommaire" +msgid "No valid certificate loaded!" +msgstr "Pas de certificat valide chargé" -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, 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 !" +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe" -#: html/password.php:58 html/index.php:142 -#, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "Le fichier de configuration %s/%s ne peut être lu. Abandon." +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "Ancien mot de passe" -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "Erreur: Méthode de changement de mot de passe non disponible!" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Vérifier le mot de passe" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +msgid "Click here to change your password" +msgstr "Cliquez ici pour changer votre 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." +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "Conflit de verrou détecté" -#: html/password.php:253 -msgid "External password changer reported a problem: " +#: 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 "" -"Le programme externe pour changer votre mot de passe à renvoyé une erreur: " - -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -msgstr "La session ne sera pas cryptée." +"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'." -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "Démarrer une session SSL" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "Votre session GOsa à expiré !" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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." -#: html/main.php:172 +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" +msgstr "Reconnexion" + +#: ihtml/themes/default/acl.tpl:31 #, fuzzy -msgid "PHP configuration" -msgstr "Configuration de PHP" +msgid "Additional filter options" +msgstr "Paramètres supplémentaire de GOsa" -#: html/main.php:173 -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." +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" +msgstr "Utiliser les membres depuis" -#: html/main.php:218 -msgid "Running out of memory!" -msgstr "" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" +msgstr "Membres disponibles" -#: html/main.php:292 -msgid "User ACL checks disabled" -msgstr "" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" +msgstr "Liste les destinataires possibles pour les messages" -#: html/main.php:361 -#, 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" +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "Lister les destinataires du message" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Plugin" -msgstr "dans" - -#: html/main.php:371 -#, fuzzy, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "FATAL: Impossible de trouver une définition pour l'extension '%s' !" +msgid "ACL for this object" +msgstr "ACL pour cet objet" -#: html/index.php:57 -msgid "Session is not encrypted!" -msgstr "La session n'est pas cryptée!" +#: ihtml/themes/default/acl.tpl:113 +msgid "Available roles" +msgstr "Type de rôles disponibles" -#: html/index.php:64 +#: ihtml/themes/default/remove.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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." -#: html/index.php:167 -#, fuzzy -msgid "Smarty error" -msgstr "Erreur PHP" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" +msgstr "Restaurer des copie instantanés des objets" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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." -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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)." -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: 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 ?" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: 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" + +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" +"Choisissez une copie instantanée et cliquez sur l'image du répertoire, pour " +"restaurer la copie" -#: html/index.php:283 -#, fuzzy -msgid "Your LDAP setup contains old schema definitions:" +#: ihtml/themes/default/snapshotdialog.tpl:49 +msgid "Creating object snapshots" +msgstr "Créer des d'objets snapshots" + +#: 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 "" -"Votre installation LDAP contient de vieux schémas. Veuillez recommencer " -"l'installation." +"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." -#: html/index.php:304 -msgid "Please specify a valid username!" -msgstr "Le nom d'utilisateur est incorrect !" +#: 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 "" +"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." -#: html/index.php:307 -msgid "Please specify your password!" -msgstr "Veuillez introduire votre mot de passe !" +#: ihtml/themes/default/snapshotdialog.tpl:70 +msgid "Timestamp" +msgstr "Date" -#: html/index.php:319 -#, fuzzy -msgid "Authentication error" -msgstr "Authentification" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" +msgstr "Raison pour la génération de cette copie instantanée" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: 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." -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" -msgstr "Compte verouillé. Veuillez contacter votre administrateur système." +#: 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" -#: html/index.php:426 +#: 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" + +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" -"Votre navigateur à les cookies désactivées. Veuillez activer les cookies et " -"recharger cette page avant de vous connecter !" +"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" #: ihtml/themes/default/copyPasteDialog.tpl:1 msgid "Copy & paste wizard" @@ -6040,21 +6075,6 @@ msgstr "Aide en ligne de GOsa" msgid "Index" msgstr "Index" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -msgstr "Conflit de verrou détecté" - -#: 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/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Accueil" @@ -6075,44 +6095,45 @@ msgstr "Connecté:" msgid "GOsa main menu" msgstr "Menu Principal de GOsa" -#: ihtml/themes/default/remove.tpl:6 +#: ihtml/themes/default/logout-close.tpl:5 +#, fuzzy +msgid "Your GOsa session has been closed!" +msgstr "Votre session GOsa à expiré !" + +#: ihtml/themes/default/logout-close.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." +"Please close this browser window and clean the authentication caches to " +"avoid an automatic re-authentication by your browser." 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." - -#: ihtml/themes/default/acl.tpl:31 -#, fuzzy -msgid "Additional filter options" -msgstr "Paramètres supplémentaire de GOsa" -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" -msgstr "Utiliser les membres depuis" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" +msgstr "Fenêtre de connexion GOsa" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" -msgstr "Membres disponibles" +#: ihtml/themes/default/login.tpl:27 +msgid "Login screen" +msgstr "Fenêtre de connexion" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" -msgstr "Liste les destinataires possibles pour les messages" +#: 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" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" -msgstr "Lister les destinataires du message" +#: 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" -#: ihtml/themes/default/acl.tpl:107 -#, fuzzy -msgid "ACL for this object" -msgstr "ACL pour cet objet" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Connexion" -#: ihtml/themes/default/acl.tpl:113 -msgid "Available roles" -msgstr "Type de rôles disponibles" +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Cliquez ici pour vous connecter" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6165,198 +6186,180 @@ msgstr "" "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'." -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Répertoire" +#: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 +msgid "New password repeated" +msgstr "Nouveau mot de passe" + +#: ihtml/themes/default/password.tpl:100 +msgid "Change" +msgstr "Changer" + +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" +msgstr "" + +#: html/main.php:172 +#, fuzzy +msgid "PHP configuration" +msgstr "Configuration de PHP" + +#: html/main.php:173 +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:218 +msgid "Running out of memory!" +msgstr "" -#: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 -msgid "New password repeated" -msgstr "Nouveau mot de passe" +#: html/main.php:292 +msgid "User ACL checks disabled" +msgstr "" -#: ihtml/themes/default/password.tpl:100 -msgid "Change" -msgstr "Changer" +#: html/main.php:361 +#, 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" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -msgid "Click here to change your password" -msgstr "Cliquez ici pour changer votre mot de passe" +#: html/main.php:370 +#, fuzzy +msgid "Plugin" +msgstr "dans" -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" -msgstr "Fenêtre de connexion GOsa" +#: html/main.php:371 +#, fuzzy, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "FATAL: Impossible de trouver une définition pour l'extension '%s' !" -#: ihtml/themes/default/login.tpl:27 -msgid "Login screen" -msgstr "Fenêtre de connexion" +#: html/index.php:57 +msgid "Session is not encrypted!" +msgstr "La session n'est pas cryptée!" -#: ihtml/themes/default/login.tpl:34 +#: html/index.php:64 msgid "" -"Please use your username and your password to log into the site " -"administration system." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -"Veuillez utiliser votre nom d'utilisateur et votre mot de passe afin de vous " -"connecter" - -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Connexion" -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Cliquez ici pour vous connecter" +#: html/index.php:142 html/password.php:58 +#, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "Le fichier de configuration %s/%s ne peut être lu. Abandon." -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" -msgstr "Votre session GOsa à expiré !" +#: html/index.php:167 +#, fuzzy +msgid "Smarty error" +msgstr "Erreur PHP" -#: 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." +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" 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." - -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" -msgstr "Reconnexion" +"Le répertoire '%s' spécifié comme répertoire de compilation est " +"inaccessible !" -#: 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." +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" msgstr "" -"L'option size limit rend les opérations LDAP plus rapides et permet au " -"serveur LDAP d'avoir un niveau de charge plus léger. La façon la plus facile " -"de gérer des grandes bases de données sans de longs temps d'attentes, serait " -"de limiter la recherche à des valeurs plus petites et d'utiliser les filtres " -"pour obtenir les valeurs que vous recherchez." -#: ihtml/themes/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" +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" +msgstr "" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" msgstr "" -"ignorer cette erreur et montrer toutes les entrées retournées par le serveur " -"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" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" 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" -#: ihtml/themes/default/logout-close.tpl:5 +#: html/index.php:283 #, fuzzy -msgid "Your GOsa session has been closed!" -msgstr "Votre session GOsa à expiré !" - -#: 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." +msgid "Your LDAP setup contains old schema definitions:" msgstr "" +"Votre installation LDAP contient de vieux schémas. Veuillez recommencer " +"l'installation." -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "Votre mot de passe à expiré !! Choisissez un nouveau mot de passe" +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "Le nom d'utilisateur est incorrect !" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "Veuillez introduire votre mot de passe !" + +#: html/index.php:319 #, fuzzy -msgid "Old password" -msgstr "Ancien mot de passe" +msgid "Authentication error" +msgstr "Authentification" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" +msgstr "" + +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe." + +#: html/index.php:375 #, fuzzy -msgid "Verify password" -msgstr "Vérifier le mot de passe" +msgid "Account locked. Please contact your system administrator!" +msgstr "Compte verouillé. Veuillez contacter votre administrateur système." -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" -msgstr "Restaurer des copie instantanés des objets" +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "La session ne sera pas cryptée." -#: 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." +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "Démarrer une session SSL" -#: ihtml/themes/default/snapshotdialog.tpl:9 +#: html/index.php:426 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)." +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" 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)." +"Votre navigateur à les cookies désactivées. Veuillez activer les cookies et " +"recharger cette page avant de vous connecter !" -#: 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 ?" +#: html/password.php:163 +msgid "Error: Password method not available!" +msgstr "Erreur: Méthode de changement de mot de passe non disponible!" -#: 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" +#: 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." -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" +#: html/password.php:253 +msgid "External password changer reported a problem: " msgstr "" -"Choisissez une copie instantanée et cliquez sur l'image du répertoire, pour " -"restaurer la copie" +"Le programme externe pour changer votre mot de passe à renvoyé une erreur: " -#: ihtml/themes/default/snapshotdialog.tpl:49 -msgid "Creating object snapshots" -msgstr "Créer des d'objets snapshots" +#: html/helpviewer.php:70 +msgid "Help browser" +msgstr "Aide" -#: 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 "" -"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." +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "Il n'y a pas de fichier d'aide spécifiée pour cette classe." -#: 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." +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." 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." - -#: ihtml/themes/default/snapshotdialog.tpl:70 -msgid "Timestamp" -msgstr "Date" +"Le répertoire d'aide '%s' n'est pas accessible, impossible de lire les " +"fichiers d'aide." -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" -msgstr "Raison pour la génération de cette copie instantanée" +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Sommaire" #~ msgid "Restore snapshopts of already deleted objects" #~ msgstr "Restaurer la copie instantanée des objets déjà effacés" diff --git a/gosa-core/locale/core/it/LC_MESSAGES/messages.po b/gosa-core/locale/core/it/LC_MESSAGES/messages.po index 0a7466462..edf3c1b79 100644 --- a/gosa-core/locale/core/it/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/it/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2005-11-18 15:26+0100\n" "Last-Translator: Alessandro Amici \n" "Language-Team: Italian\n" @@ -15,11 +15,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" +#: plugins/personal/password/nochange.tpl:2 +#, fuzzy +msgid "Password change not allowed" +msgstr "Cambia la password" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "Non hai il permesso di cambiare la tua password." + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#, fuzzy +msgid "Password settings" +msgstr "Opzioni di posta dell'identità" + +#: 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." + +#: 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." + +#: 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." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Password attuale" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Nuova password" + +#: 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" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "Algorimo password" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "Cambia password" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Ripulisci i campi" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Password" @@ -38,8 +119,8 @@ msgstr "Cambia la password" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "Cambia la password" @@ -92,908 +173,543 @@ msgid "User password" msgstr "Nuova password" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Identità" -#: plugins/personal/password/nochange.tpl:2 +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Foto personale" + +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Elimina foto" + +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Generale" + +#: plugins/personal/generic/class_user.inc:38 #, fuzzy -msgid "Password change not allowed" -msgstr "Cambia la password" +msgid "Edit organizational user settings" +msgstr "Opzioni applicazione" -#: plugins/personal/password/nochange.tpl:6 +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "femmina" + +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "maschio" + +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "" + +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" + +#: plugins/personal/generic/class_user.inc:503 #, fuzzy -msgid "You have no permission to change your password at this time" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Serial number" +msgstr "Numero di telefono" -#: plugins/personal/password/password.tpl:4 +#: plugins/personal/generic/class_user.inc:548 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." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" 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 -msgid "" -"Changing the password affects your authentification on mail, proxy, samba " -"and unix services." +#: plugins/personal/generic/class_user.inc:558 +#, php-format +msgid "Certificate is valid from %s to %s and is currently %s." msgstr "" -"Cambiare la passord influisce sull'autenticazione su posta, proxu Internet, " -"Samba e Unix." -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Password attuale" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "valido" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Nuova password" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "invalido" -#: 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" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "Non ci sono certificati installati" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 #, fuzzy -msgid "Password strength" +msgid "Password method" msgstr "Algorimo password" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "Cambia password" - -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Ripulisci i campi" - -#: plugins/personal/password/changed.tpl:3 -msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +#: plugins/personal/generic/class_user.inc:592 +msgid "The selected password method is no longer available." msgstr "" -"Hai cambiato con successo la tua password. Ricorda di cambiare tutto i " -"programmmi configurati per usarla." -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#: plugins/personal/generic/class_user.inc:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 #, fuzzy -msgid "Password settings" -msgstr "Opzioni di posta dell'identità" - -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Seleziona un gruppo da aggiungere" +msgid "LDAP error" +msgstr "Errore LDAP" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Filtri" - -#: 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/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -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" - -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "Espressioni regolare per selezionare il nome del gruppo" - -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "Mostra gruppi di utenti" - -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" -msgstr "Nome dell'utente del quale mostrare i gruppi" - -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -#, fuzzy -msgid "Search in subtrees" -msgstr "Seleziona per mostrare le applicazioni" - -#: 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" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "La password spira il" - -#: plugins/personal/posix/paste_generic.tpl:4 -#, fuzzy -msgid "Posix settings" -msgstr "Impostazioni Unix" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Home directory" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "Forza UID/GID" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -msgstr "Gruppi di appartenenza" - -#: 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!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Seleziona un sistema da aggiungere" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Mostra i sistemi del dipartimento" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Mostra i sistemi che corrispondono a:" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Espressione regolare per selezionare l'indirizzo" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Generale" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Gruppo primario" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Stato" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "Gruppo primario" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, 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 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "Accesso ai sistemi" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "Unix" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Impostazioni Unix" - -#: plugins/personal/posix/class_posixAccount.inc:154 -#, fuzzy -msgid "expired" -msgstr "Esporta" - -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -#, fuzzy -msgid "active" -msgstr "Privato" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "Nuova password" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "La password spira il" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "non configurata" - -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" -msgstr "automatico" - -#: 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 "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -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" - -#: 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" - -#: 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" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "disabilitato" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "accesso completo" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "accesso limitato ai seguenti host" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -#, fuzzy -msgid "LDAP error" -msgstr "Errore LDAP" - -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Attenzione" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Gruppo di utenti" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "Mostra terminali" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -msgid "shadowMax" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "Mostra workstation" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "Mostra stampanti" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "Troppi utenti non posso allocare un ID libero!" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -#, fuzzy -msgid "POSIX account" -msgstr "Estenzioni FTP" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -#, fuzzy -msgid "Group ID" -msgstr "Gruppo" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -#, fuzzy -msgid "Force password change on login" -msgstr "Cambia la password" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -#, fuzzy -msgid "Shadow min" -msgstr "Mostra terminali" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -#, fuzzy -msgid "Shadow warning" -msgstr "Mostra workstation" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -#, fuzzy -msgid "Shadow inactive" -msgstr "Mostra stampanti" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -#, fuzzy -msgid "Shadow expire" -msgstr "Mostra persone" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -#, fuzzy -msgid "System trust model" -msgstr "Accesso ai sistemi" - -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Impostazioni Unix" - -#: 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." +#: plugins/personal/generic/class_user.inc:1149 +msgid "The selected password method requires initial configuration!" msgstr "" -"Hai modificato il metodo con cui la tua password è immagazzinata nel " -"database LDAP. Per questo motivo devi inserire nuovamnete la tua password." - -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Foto personale" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Elimina foto" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Informazioni personali" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Titolo di studio" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "Lingua preferita" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Base" - -#: 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" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -#, fuzzy -msgid "Select a base" -msgstr "Rimuovi" - -#: 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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Indirizzo" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Telefono privato" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Home Page" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Algorimo password" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Certificati" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Modifica certificati" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Informazioni organizzazione" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Organizzazione" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Dipartimento" -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "Dipartimento No." +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Nome utente" -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "Matricola" +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" +msgstr "Cognome" -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Qualifica" +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" +msgstr "Nome" -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "Stanza No." +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Home Page" -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 #: plugins/personal/generic/class_user.inc:1215 #: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 #: plugins/admin/departments/generic.tpl:83 #: plugins/admin/departments/class_departmentGeneric.inc:260 #: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 msgid "Phone" msgstr "Telefono" -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" + #: plugins/personal/generic/class_user.inc:1221 #: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 msgid "Mobile" msgstr "Cellulare" -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 #: plugins/personal/generic/class_user.inc:1224 #: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 msgid "Pager" msgstr "Pager" -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "Impossibile aprite il certificato selezionato!" -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Località" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Unità" -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Stato" +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Identificativo della casa" -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 #: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 msgid "Vocation" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Ultimo recapito" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Località personale" + #: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 msgid "Unit description" msgstr "Descrizoione unità" -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 #: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 msgid "Subject area" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 #: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 msgid "Functional title" msgstr "Funzione" -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Numero seriale del certificato" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Pubblico" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Strada" + #: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 #: plugins/admin/acl/class_divListACL.inc:165 #: plugins/admin/acl/class_divListACL.inc:202 #: plugins/admin/acl/class_aclRole.inc:697 msgid "Role" msgstr "Ruolo" -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Località personale" +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "CAP" -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Unità" +#: plugins/personal/generic/class_user.inc:1487 +#, fuzzy +msgid "Generic user settings" +msgstr "Impostazioni generali delle code" + +#: plugins/personal/generic/class_user.inc:1492 +#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 +msgid "Users" +msgstr "Utenti" + +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Base" + +#: plugins/personal/generic/class_user.inc:1498 +msgid "Surename" +msgstr "Cognome" + +#: plugins/personal/generic/class_user.inc:1500 +#, fuzzy +msgid "User identification" +msgstr "Amministrazione utenti" + +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Titolo onorifico" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Titolo di studio" + +#: plugins/personal/generic/class_user.inc:1503 +msgid "Home postal address" +msgstr "" + +#: plugins/personal/generic/class_user.inc:1504 +#, fuzzy +msgid "Home phone number" +msgstr "Numero di telefono" + +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Organizzazione" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Dipartimento" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Data di nascita" + +#: plugins/personal/generic/class_user.inc:1509 +#, fuzzy +msgid "Gender" +msgstr "Generale" + +#: plugins/personal/generic/class_user.inc:1510 +#, fuzzy +msgid "Preferred language" +msgstr "Lingua preferita" -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Strada" +#: plugins/personal/generic/class_user.inc:1511 +#, fuzzy +msgid "Department number" +msgstr "Dipartimento" -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "CAP" +#: plugins/personal/generic/class_user.inc:1512 +#, fuzzy +msgid "Employee number" +msgstr "Qualifica" -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Identificativo della casa" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Qualifica" -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Ultimo recapito" +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Località" -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Pubblico" +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Stato" -#: plugins/personal/generic/paste_generic.tpl:1 +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 #, fuzzy -msgid "User settings" -msgstr "Opzioni di posta dell'identità" +msgid "User picture" +msgstr "Foto personale" -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 +#: plugins/personal/generic/class_user.inc:1517 #, fuzzy -msgid "Last name" -msgstr "Scegli il tuo numero di telefono personale" +msgid "Room number" +msgstr "Numero di telefono" -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 +#: plugins/personal/generic/class_user.inc:1518 #, fuzzy -msgid "First name" -msgstr "Liste di blocco" +msgid "Telefon number" +msgstr "Numero di telefono" -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Nome utente" +#: plugins/personal/generic/class_user.inc:1519 +#, fuzzy +msgid "Mobile number" +msgstr "Cellulare" -#: plugins/personal/generic/paste_generic.tpl:23 +#: plugins/personal/generic/class_user.inc:1520 #, fuzzy -msgid "Clear password" -msgstr "Nuova password" +msgid "Pager number" +msgstr "Numero di telefono" -#: plugins/personal/generic/paste_generic.tpl:24 +#: plugins/personal/generic/class_user.inc:1521 #, fuzzy -msgid "Set new password" -msgstr "Cambia password" +msgid "User certificates" +msgstr "Certificato standard" -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "CAP" + +#: plugins/personal/generic/class_user.inc:1524 #, fuzzy -msgid "User picture" -msgstr "Foto personale" +msgid "Fax number" +msgstr "Numero di telefono" + +#: plugins/personal/generic/main.inc:104 +#, fuzzy +msgid "You have no permission to set your password!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Informazioni generali" + +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Informazioni personali" #: plugins/personal/generic/generic.tpl:29 #: plugins/personal/generic/generic.tpl:40 msgid "Change picture" msgstr "Cambia foto" +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +#, fuzzy +msgid "Last name" +msgstr "Scegli il tuo numero di telefono personale" + #: plugins/personal/generic/generic.tpl:52 #: plugins/personal/generic/generic.tpl:73 #: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14 @@ -1005,15 +721,12 @@ msgstr "" msgid "Template name" msgstr "Template" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Titolo onorifico" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Data di nascita" +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +#, fuzzy +msgid "First name" +msgstr "Liste di blocco" #: plugins/personal/generic/generic.tpl:137 #: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 @@ -1025,10 +738,80 @@ msgstr "Imposta" msgid "Sex" msgstr "Sesso" -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "Lingua preferita" + +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Scegli il subtree per l'utente" + +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +#, fuzzy +msgid "Select a base" +msgstr "Rimuovi" + +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Indirizzo" + +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Telefono privato" + +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "Algorimo password" + +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 msgid "Configure" msgstr "Configura" +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Certificati" + +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Modifica certificati" + +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Informazioni organizzazione" + +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "Dipartimento No." + +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "Matricola" + +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "Stanza No." + #: plugins/personal/generic/generic.tpl:519 msgid "Please use the phone tab" msgstr "Usa il tab del telefono" @@ -1039,1374 +822,1390 @@ msgstr "Certificato standard" #: plugins/personal/generic/generic_certs.tpl:21 #: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Rimuovi" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "Certificato S/MIME" - -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "Certificato PKCS12" - -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "Numero seriale del certificato" - -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Opzioni applicazione" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "femmina" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "maschio" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Numero di telefono" - -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "" +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Rimuovi" -#: plugins/personal/generic/class_user.inc:558 -#, php-format -msgid "Certificate is valid from %s to %s and is currently %s." -msgstr "" +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "Certificato S/MIME" -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "valido" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "Certificato PKCS12" -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "invalido" +#: plugins/personal/generic/paste_generic.tpl:1 +#, fuzzy +msgid "User settings" +msgstr "Opzioni di posta dell'identità" -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "Non ci sono certificati installati" +#: plugins/personal/generic/paste_generic.tpl:23 +#, fuzzy +msgid "Clear password" +msgstr "Nuova password" -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#: plugins/personal/generic/paste_generic.tpl:24 #, fuzzy -msgid "Password method" -msgstr "Algorimo password" +msgid "Set new password" +msgstr "Cambia password" -#: plugins/personal/generic/class_user.inc:592 -msgid "The selected password method is no longer available." +#: 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 "" +"Hai modificato il metodo con cui la tua password è immagazzinata nel " +"database LDAP. Per questo motivo devi inserire nuovamnete la tua password." -#: plugins/personal/generic/class_user.inc:1149 -msgid "The selected password method requires initial configuration!" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Seleziona un gruppo da aggiungere" -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "Name" -msgstr "Cognome" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Filtri" -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" -msgstr "Nome" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Mostra gruppi di dipartimenti" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "Impossibile aprite il certificato selezionato!" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: 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/generic/class_user.inc:1487 -#, fuzzy -msgid "Generic user settings" -msgstr "Impostazioni generali delle code" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Mosra gruppi corrispondenti a" -#: plugins/personal/generic/class_user.inc:1492 -#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 -msgid "Users" -msgstr "Utenti" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Espressioni regolare per selezionare il nome del gruppo" -#: plugins/personal/generic/class_user.inc:1498 -msgid "Surename" -msgstr "Cognome" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "Mostra gruppi di utenti" -#: plugins/personal/generic/class_user.inc:1500 +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Nome dell'utente del quale mostrare i gruppi" + +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 #, fuzzy -msgid "User identification" -msgstr "Amministrazione utenti" +msgid "Search in subtrees" +msgstr "Seleziona per mostrare le applicazioni" -#: plugins/personal/generic/class_user.inc:1503 -msgid "Home postal address" -msgstr "" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Seleziona un sistema da aggiungere" -#: plugins/personal/generic/class_user.inc:1504 -#, fuzzy -msgid "Home phone number" -msgstr "Numero di telefono" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Mostra i sistemi del dipartimento" -#: plugins/personal/generic/class_user.inc:1509 -#, fuzzy -msgid "Gender" -msgstr "Generale" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Mostra i sistemi che corrispondono a:" -#: plugins/personal/generic/class_user.inc:1510 -#, fuzzy -msgid "Preferred language" -msgstr "Lingua preferita" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Espressione regolare per selezionare l'indirizzo" -#: plugins/personal/generic/class_user.inc:1511 +#: plugins/personal/posix/main.inc:131 #, fuzzy -msgid "Department number" -msgstr "Dipartimento" +msgid "POSIX settings" +msgstr "Impostazioni Unix" -#: plugins/personal/generic/class_user.inc:1512 -#, fuzzy -msgid "Employee number" -msgstr "Qualifica" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Home directory" -#: plugins/personal/generic/class_user.inc:1517 -#, fuzzy -msgid "Room number" -msgstr "Numero di telefono" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/personal/generic/class_user.inc:1518 -#, fuzzy -msgid "Telefon number" -msgstr "Numero di telefono" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Gruppo primario" -#: plugins/personal/generic/class_user.inc:1519 -#, fuzzy -msgid "Mobile number" -msgstr "Cellulare" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Stato" -#: plugins/personal/generic/class_user.inc:1520 -#, fuzzy -msgid "Pager number" -msgstr "Numero di telefono" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "Forza UID/GID" -#: plugins/personal/generic/class_user.inc:1521 -#, fuzzy -msgid "User certificates" -msgstr "Certificato standard" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "CAP" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" + +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "Gruppi di appartenenza" -#: plugins/personal/generic/class_user.inc:1524 +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "(Attenzione: L'NFS non supporta più di 16 gruppi!)" + +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy -msgid "Fax number" -msgstr "Numero di telefono" +msgid "In all groups" +msgstr "Gruppo primario" -#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 #, fuzzy -msgid "You have no permission to set your password!" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Not in all groups" +msgstr "Mostra gruppi di posta" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Informazioni generali" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "Sicurezza" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "Accesso ai sistemi" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" msgstr "" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "ACL" +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "Unix" -#: plugins/admin/acl/tabs_acl_role.inc:28 +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "ACL Templates" -msgstr "Template" +msgid "Edit users POSIX settings" +msgstr "Impostazioni Unix" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +#: plugins/personal/posix/class_posixAccount.inc:154 #, fuzzy -msgid "Manage access control lists" -msgstr "Opzioni di accesso" +msgid "expired" +msgstr "Esporta" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "Permessi" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 #, fuzzy -msgid "Permission" -msgstr "Permessi" +msgid "active" +msgstr "Privato" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "List of acls" -msgstr "Lista dei gruppi" +msgid "password not changable" +msgstr "Nuova password" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix/class_posixAccount.inc:161 #, fuzzy -msgid "Select all" -msgstr "Rimuovi" +msgid "password expired" +msgstr "La password spira il" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "non configurata" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Azioni" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "automatico" -#: plugins/admin/acl/class_divListACL.inc:84 -#, fuzzy -msgid "Display acls matching" -msgstr "Mosra gruppi corrispondenti a" +#: 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 "" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Imposta dipartimento" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +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" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Creare" +#: 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" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "modifica" +#: 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" -#: plugins/admin/acl/class_divListACL.inc:215 -#, fuzzy -msgid "Edit acl role" -msgstr "Modifica contatto" +#: 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" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "elimina" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "disabilitato" -#: plugins/admin/acl/class_divListACL.inc:223 -#, fuzzy -msgid "Delete acl role" -msgstr "Rimuovi" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "accesso completo" -#: plugins/admin/acl/class_divListACL.inc:242 -#, fuzzy -msgid "Edit acl" -msgstr "classe" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "accesso limitato ai seguenti host" -#: plugins/admin/acl/class_divListACL.inc:246 -#, fuzzy -msgid "Delete acl" -msgstr "Rimuovi" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Attenzione" -#: 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." +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" msgstr "" -#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10 +#: plugins/personal/posix/class_posixAccount.inc:910 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." +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" msgstr "" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Gruppo di utenti" + +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 #, fuzzy -msgid "ACL management" -msgstr "Riferimenti" +msgid "shadowMin" +msgstr "Mostra terminali" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +msgid "shadowMax" msgstr "" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Descrizione" - -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "Scegli il subtree dove mettere il gruppo" - -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 #, fuzzy -msgid "New ACL" -msgstr "Nuovo" +msgid "shadowWarning" +msgstr "Mostra workstation" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 #, fuzzy -msgid "ACL type" -msgstr "Tipo" +msgid "shadowInactive" +msgstr "Mostra stampanti" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy -msgid "Select an acl type" -msgstr "Rimuovi" +msgid "Cannot allocate a free ID!" +msgstr "Troppi utenti non posso allocare un ID libero!" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +#: plugins/personal/posix/class_posixAccount.inc:1494 #, fuzzy -msgid "List of available ACL categories" -msgstr "Scegli il tuo numero di telefono personale" +msgid "POSIX account" +msgstr "Estenzioni FTP" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -#, fuzzy -msgid "Access control roles" -msgstr "Opzioni di accesso" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "" -#: plugins/admin/acl/class_aclRole.inc:27 +#: plugins/personal/posix/class_posixAccount.inc:1507 #, fuzzy -msgid "Edit AC roles" -msgstr "ACL" +msgid "Group ID" +msgstr "Gruppo" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +#: plugins/personal/posix/class_posixAccount.inc:1509 #, fuzzy -msgid "All categories" -msgstr "Aggiungi contatto" +msgid "Force password change on login" +msgstr "Cambia la password" -#: plugins/admin/acl/class_aclRole.inc:131 +#: plugins/personal/posix/class_posixAccount.inc:1510 #, fuzzy -msgid "Reset ACL" -msgstr "Rimuovi" +msgid "Shadow min" +msgstr "Mostra terminali" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -msgid "One level" +#: plugins/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -#, fuzzy -msgid "Current object" -msgstr "Password attuale" - -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +#: plugins/personal/posix/class_posixAccount.inc:1512 #, fuzzy -msgid "Complete subtree" -msgstr "incompleto" - -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "" - -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "" +msgid "Shadow warning" +msgstr "Mostra workstation" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +#: plugins/personal/posix/class_posixAccount.inc:1513 #, fuzzy -msgid "Down" -msgstr "Dominio" - -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Modifica" - -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" -msgstr "Rimuovi" +msgid "Shadow inactive" +msgstr "Mostra stampanti" -#: plugins/admin/acl/class_aclRole.inc:401 +#: plugins/personal/posix/class_posixAccount.inc:1514 #, fuzzy -msgid "No ACL settings for this category" -msgstr "Nome descrittivo del gruppo" - -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "Nome descrittivo del gruppo" +msgid "Shadow expire" +msgstr "Mostra persone" -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/posix/class_posixAccount.inc:1515 #, fuzzy -msgid "Edit category ACL" -msgstr "classe" +msgid "System trust model" +msgstr "Accesso ai sistemi" -#: plugins/admin/acl/class_aclRole.inc:409 +#: plugins/personal/posix/paste_generic.tpl:4 #, fuzzy -msgid "Reset category ACL" -msgstr "classe" +msgid "Posix settings" +msgstr "Impostazioni Unix" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "La password spira il" -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy -msgid "Object in use" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" msgstr "Nome dell'oggetto" -#: plugins/admin/acl/class_aclRole.inc:621 -#, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "" - -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Selezioni utenti da aggiungere" - -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -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 "Mostra utenti del dipartimento" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Descrizione" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Mostra utenti che corrispondono a" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "Contenuti" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -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." -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -#, fuzzy -msgid "Configuration error" -msgstr "File di configurazione" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Posta" -#: plugins/admin/groups/class_groupGeneric.inc:163 -msgid "Cannot find group SID in your configuration!" -msgstr "" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "FAX" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Gruppo Samba" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Amministratori di Dominio" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Utenti di Dominio" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Gruppo" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Ospiti di Dominio" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Applicazione" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Gruppo speciale (%d)" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Server" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Rimuovi" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Gruppo di oggetti" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Rimuovi" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Stampante" -#: plugins/admin/groups/class_groupGeneric.inc:1213 +#: plugins/generic/welcome/welcome.tpl:4 #, fuzzy -msgid "Generic group settings" -msgstr "Impostazioni generali delle code" +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." -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Gruppi di utenti" +#: 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 Termina la sessione in alto a sinistra per uscire e " +"Principale per tornare alla schermata principale." -#: plugins/admin/groups/class_groupGeneric.inc:1225 -#, fuzzy -msgid "Phone pickup group" -msgstr "I membri sono in un gruppo di risposta telefonica" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "Il team di GOsa" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -#, fuzzy -msgid "Nagios group" -msgstr "Contatto" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Benvenuto %s!" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -#, fuzzy -msgid "Group member" -msgstr "Membri del gruppo" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -#, fuzzy -msgid "Samba group type" -msgstr "Gruppo Samba" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -#, fuzzy -msgid "Samba domain name" -msgstr "Home di Samba" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -#, fuzzy -msgid "Samba SID" -msgstr "Samba" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"Your browser doesn't support iframes, please use this link to perform the " +"requested operation." msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -#, fuzzy -msgid "Infrastructure error" -msgstr "Errore PHP" +#: 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 "" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -#, fuzzy -msgid "group" -msgstr "gruppi" +#: 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 "" -#: plugins/admin/groups/paste_generic.tpl:1 -#, fuzzy -msgid "Group settings" -msgstr "Impostazioni FAX" +#: plugins/admin/departments/generic.tpl:4 +#: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 +msgid "Properties" +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" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +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" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "" -#: plugins/admin/groups/paste_generic.tpl:13 -#: plugins/admin/groups/generic.tpl:65 -msgid "Normally IDs are autogenerated, select to specify manually" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" msgstr "" -"Normalmente le ID sono autogenerate, selezionare per specificarelo " -"manulamente" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Forza GID" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "" -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Forza numero ID" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Lista dei gruppi" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 -#: plugins/admin/departments/generic.tpl:4 -#: plugins/admin/ogroups/class_divListOGroup.inc:84 -msgid "Properties" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" msgstr "" -#: 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" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "Mostra gruppi" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "Gruppo primario" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "Samba" +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 #, fuzzy -msgid "samba groups" -msgstr "Gruppo Samba" +msgid "Administrative settings" +msgstr "Amministrazione" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "applicazioni" +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Mostra gruppi di applicazioni" +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "Lista dei dipartimenti" -#: plugins/admin/groups/class_divListGroup.inc:90 +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "mail settings" -msgstr "Opzioni di posta dell'identità" +msgid "Select all" +msgstr "Rimuovi" -#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 #, fuzzy -msgid "mail groups" -msgstr "Mostra gruppi di posta" - -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "Seleziona per mostrare i gruppi che hanno solo aspetti funzionali" +msgid "Department name" +msgstr "Dipartimento" -#: plugins/admin/groups/class_divListGroup.inc:93 -#, fuzzy -msgid "functional groups" -msgstr "Mostra gruppi funzionali" +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Azioni" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Gruppo" +#: plugins/admin/departments/class_divListDepartment.inc:75 +msgid "Regular expression for matching department names" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -#, fuzzy -msgid "Posix" -msgstr "Proxy" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Imposta dipartimento" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Posta" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Applicazione" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Creare" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 #: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "modifica" + #: plugins/admin/departments/class_divListDepartment.inc:186 #: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 msgid "Edit this entry" msgstr "Modifica questo record" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 #: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "elimina" + #: plugins/admin/departments/class_divListDepartment.inc:190 #: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 msgid "Delete this entry" msgstr "Elimina questo record" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -#, fuzzy -msgid "Not allowed" -msgstr "Cambia la password" - -#: plugins/admin/groups/class_divListGroup.inc:359 +#: plugins/admin/departments/class_divListDepartment.inc:219 #, fuzzy -msgid "Number of listed groups" -msgstr "Nome del gruppo" +msgid "department" +msgstr "dipartimenti" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 #: plugins/admin/departments/class_divListDepartment.inc:229 #: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 #, fuzzy msgid "Number of listed departments" msgstr "Imposta dipartimento" -#: 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/departments/dep_move_confirm.tpl:2 +msgid "You are currently moving/renaming this department." +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" +#: 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 "" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "nel dominio" +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." +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" +#: 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/groups/generic.tpl:155 +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 #, fuzzy -msgid "Members are in a nagios group" -msgstr "I membri sono in un gruppo di risposta telefonica" +msgid "Fatal error" +msgstr "Terminal Server" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "Membri del gruppo" +#: plugins/admin/departments/class_departmentGeneric.inc:313 +msgid "Cannot find an unused tag for this administrative unit!" +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." +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." msgstr "" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -#, fuzzy -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Continua" + +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "" + +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Oggetto" + +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "" + +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Dipartimenti" + +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Paese" + +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Telefono" + +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" msgstr "" -"Quindi - Se sei sicuro - premi Rimuovi per continuare o Annulla per abortire." -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Amministrazione dei gruppi di utenti" +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +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." +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" msgstr "" -#: plugins/admin/users/password.tpl:21 +#: plugins/admin/departments/class_departmentManagement.inc:27 #, fuzzy -msgid "Strength" -msgstr "Strada" +msgid "Manage Departments" +msgstr "Dipartimenti" -#: plugins/admin/users/class_userManagement.inc:27 +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 #, fuzzy -msgid "Manage users" -msgstr "Utenti di Dominio" +msgid "Permission error" +msgstr "Permessi" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -#, fuzzy -msgid "You have no permission to change this users password!" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, php-format +msgid "You're about to delete the whole LDAP subtree placed under '%s'." +msgstr "" -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "nessuno" +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" -#: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" -#: plugins/admin/users/class_userManagement.inc:548 -#, fuzzy -msgid "You have no permission to use this template!" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "ACL" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 #, fuzzy -msgid "user" -msgstr "utenti" +msgid "Manage access control lists" +msgstr "Opzioni di accesso" -#: plugins/admin/users/class_userManagement.inc:655 +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 #, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "Non hai il permesso di cambiare la tua password." - -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "" +msgid "Permission" +msgstr "Permessi" -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "Crea un nuovo utente usando i template" +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +#, fuzzy +msgid "ACL management" +msgstr "Riferimenti" -#: plugins/admin/users/template.tpl:6 +#: plugins/admin/acl/remove.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." +"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/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Continua" +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +#, fuzzy +msgid "List of acls" +msgstr "Lista dei gruppi" -#: 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." +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" msgstr "" -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Amministrazione utenti" +#: plugins/admin/acl/class_divListACL.inc:84 +#, fuzzy +msgid "Display acls matching" +msgstr "Mosra gruppi corrispondenti a" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Lista degli utenti" +#: plugins/admin/acl/class_divListACL.inc:215 +#, fuzzy +msgid "Edit acl role" +msgstr "Modifica contatto" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Nome utente" +#: plugins/admin/acl/class_divListACL.inc:223 +#, fuzzy +msgid "Delete acl role" +msgstr "Rimuovi" -#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/acl/class_divListACL.inc:242 #, fuzzy -msgid "templates" -msgstr "Template" +msgid "Edit acl" +msgstr "classe" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:246 #, fuzzy -msgid "GOsa object" -msgstr "Oggetto" +msgid "Delete acl" +msgstr "Rimuovi" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 #, fuzzy -msgid "functional users" -msgstr "Mostra utenti funzionali" +msgid "Access control roles" +msgstr "Opzioni di accesso" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/acl/class_aclRole.inc:27 #, fuzzy -msgid "POSIX users" -msgstr "Impostazioni Unix" +msgid "Edit AC roles" +msgstr "ACL" -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 #, fuzzy -msgid "mail users" -msgstr "Utenti di Dominio" +msgid "All categories" +msgstr "Aggiungi contatto" -#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/acl/class_aclRole.inc:131 #, fuzzy -msgid "samba users" -msgstr "Utenti di Dominio" +msgid "Reset ACL" +msgstr "Rimuovi" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +msgid "One level" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 #, fuzzy -msgid "proxy users" -msgstr "Mostra utenti proxy" +msgid "Current object" +msgstr "Password attuale" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +#, fuzzy +msgid "Complete subtree" +msgstr "incompleto" + +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Cambia la password" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "" + +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +#, fuzzy +msgid "Down" +msgstr "Dominio" + +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Modifica" + +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" +msgstr "Rimuovi" -#: plugins/admin/users/class_divListUsers.inc:189 +#: plugins/admin/acl/class_aclRole.inc:401 #, fuzzy -msgid "Apply template" -msgstr "Template" +msgid "No ACL settings for this category" +msgstr "Nome descrittivo del gruppo" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "Nome descrittivo del gruppo" -#: plugins/admin/users/class_divListUsers.inc:249 +#: plugins/admin/acl/class_aclRole.inc:408 #, fuzzy -msgid "Edit generic properties" -msgstr "Modifica proprietà" +msgid "Edit category ACL" +msgstr "classe" -#: plugins/admin/users/class_divListUsers.inc:251 +#: plugins/admin/acl/class_aclRole.inc:409 #, fuzzy -msgid "Edit UNIX properties" -msgstr "Modifica proprietà" +msgid "Reset category ACL" +msgstr "classe" -#: plugins/admin/users/class_divListUsers.inc:253 -#, fuzzy -msgid "Edit environment properties" -msgstr "Modifica proprietà" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:255 -#, fuzzy -msgid "Edit mail properties" -msgstr "Modifica proprietà" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:257 +#: plugins/admin/acl/class_aclRole.inc:621 #, fuzzy -msgid "Edit phone properties" -msgstr "Modifica proprietà" +msgid "Object in use" +msgstr "Nome dell'oggetto" -#: plugins/admin/users/class_divListUsers.inc:259 -#, fuzzy -msgid "Edit fax properies" -msgstr "Modifica proprietà" +#: plugins/admin/acl/class_aclRole.inc:621 +#, php-format +msgid "This role cannot be removed while it is in use by these objects:" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:261 +#: plugins/admin/acl/tabs_acl_role.inc:28 #, fuzzy -msgid "Edit samba properties" -msgstr "Modifica proprietà" +msgid "ACL Templates" +msgstr "Template" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:263 -#, fuzzy -msgid "Edit netatalk properties" -msgstr "Modifica proprietà" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "Scegli il subtree dove mettere il gruppo" -#: plugins/admin/users/class_divListUsers.inc:264 +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 #, fuzzy -msgid "Create user from template" -msgstr "Nuovo template" +msgid "New ACL" +msgstr "Nuovo" -#: plugins/admin/users/class_divListUsers.inc:265 +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 #, fuzzy -msgid "Create user with this template" -msgstr "Nuovo template" +msgid "ACL type" +msgstr "Tipo" -#: plugins/admin/users/class_divListUsers.inc:297 +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 #, fuzzy -msgid "inactive" -msgstr "Privato" +msgid "Select an acl type" +msgstr "Rimuovi" -#: plugins/admin/users/class_divListUsers.inc:319 +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 #, fuzzy -msgid "password" -msgstr "Password" +msgid "List of available ACL categories" +msgstr "Scegli il tuo numero di telefono personale" -#: plugins/admin/users/class_divListUsers.inc:332 +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" +msgstr "Gruppi di oggetti" + +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 #, fuzzy -msgid "Delete user" -msgstr "Rimuovi" +msgid "Manage object groups" +msgstr "Nome del gruppo" -#: plugins/admin/users/class_divListUsers.inc:421 -msgid "Number of listed users" -msgstr "" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "Errore PHP" -#: plugins/admin/users/templatize.tpl:2 +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 #, fuzzy -msgid "Applying a template" -msgstr "Template" +msgid "object group" +msgstr "Gruppo di oggetti" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" msgstr "" -#: plugins/admin/users/templatize.tpl:33 -msgid "No templates available!" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +msgid "Windows Install" 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:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 #, fuzzy -msgid "Department name" -msgstr "Dipartimento" +msgid "Terminal" +msgstr "Terminali" -#: plugins/admin/departments/class_divListDepartment.inc:75 -msgid "Regular expression for matching department names" +#: 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 "" -#: plugins/admin/departments/class_divListDepartment.inc:219 +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 #, fuzzy -msgid "department" -msgstr "dipartimenti" - -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "" - -#: plugins/admin/departments/dep_iframe.tpl:7 -msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" +"Quindi - Se sei sicuro - premi Rimuovi per continuare o Annulla per abortire." -#: plugins/admin/departments/dep_move_confirm.tpl:2 -msgid "You are currently moving/renaming this department." -msgstr "" +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Nome gruppo" -#: 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 "" +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Nome del gruppo" -#: plugins/admin/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." -msgstr "" +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "Nome descrittivo del gruppo" -#: 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/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Oggetti membri" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +#, fuzzy +msgid "List of object groups" +msgstr "Nome del gruppo" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "Mostra gruppi" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "gruppi" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "Gruppi di oggetti" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Mostra gruppi di applicazioni" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "dipartimenti" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "server" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "Mostra workstation" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "Mostra workstation" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "Mostra gruppi di posta" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#, fuzzy +msgid "printer groups" +msgstr "Gruppo primario" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 #, fuzzy -msgid "Administrative settings" -msgstr "Amministrazione" +msgid "phone groups" +msgstr "Mostra gruppi" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#, fuzzy +msgid "Number of listed object groups" +msgstr "Nome del gruppo" -#: 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 "" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" +msgstr "Informazioni" -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "dipartimenti" + +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, fuzzy -msgid "Fatal error" -msgstr "Terminal Server" +msgid "people" +msgstr "Mostra persone" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -msgid "Cannot find an unused tag for this administrative unit!" -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "gruppi" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "server" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Oggetto" - -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Dipartimenti" +#: plugins/admin/ogroups/class_ogroup.inc:440 +#, fuzzy +msgid "printer" +msgstr "stampanti" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Paese" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "stampanti" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Telefono" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" +msgstr "telefoni" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" +msgstr "applicazioni" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "nessuno" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "utenti" + +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Manage Departments" -msgstr "Dipartimenti" +msgid "winstations" +msgstr "Amministrazione" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, php-format -msgid "You're about to delete the whole LDAP subtree placed under '%s'." +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." +#: plugins/admin/ogroups/class_ogroup.inc:872 +msgid "You can combine two different object types at maximum, only!" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:1056 +#, fuzzy +msgid "Object group generic" +msgstr "Gruppo di oggetti" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +#, fuzzy +msgid "Member" +msgstr "Membri" #: plugins/admin/ogroups/tabs_ogroups.inc:112 #: plugins/admin/ogroups/tabs_ogroups.inc:298 @@ -2441,6 +2240,11 @@ msgstr "Applicazioni" msgid "Terminals" msgstr "Terminali" +#: plugins/admin/ogroups/paste_generic.tpl:7 +#, fuzzy +msgid "Please enter the new object group name" +msgstr "Inserisci la URI del server LDAP" + #: plugins/admin/ogroups/ogroup_objects.tpl:6 msgid "Select objects to add" msgstr "" @@ -2463,1899 +2267,1997 @@ msgstr "" msgid "Regular expression for matching object names" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "Gruppi di oggetti" +#: plugins/admin/users/class_userManagement.inc:27 +#, fuzzy +msgid "Manage users" +msgstr "Utenti di Dominio" -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 #, fuzzy -msgid "Manage object groups" -msgstr "Nome del gruppo" +msgid "You have no permission to change this users password!" +msgstr "Non hai il permesso di cambiare la tua password." -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: plugins/admin/users/class_userManagement.inc:548 #, fuzzy -msgid "object group" -msgstr "Gruppo di oggetti" +msgid "You have no permission to use this template!" +msgstr "Non hai il permesso di cambiare la tua password." -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Server" +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 +#, fuzzy +msgid "user" +msgstr "utenti" -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 -msgid "Windows Install" +#: 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 "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +#: plugins/admin/users/templatize.tpl:2 #, fuzzy -msgid "Terminal" -msgstr "Terminali" +msgid "Applying a template" +msgstr "Template" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Stampante" +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" -#: plugins/admin/ogroups/paste_generic.tpl:7 -#, fuzzy -msgid "Please enter the new object group name" -msgstr "Inserisci la URI del server LDAP" +#: plugins/admin/users/templatize.tpl:33 +msgid "No templates available!" +msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -#, fuzzy -msgid "List of object groups" -msgstr "Nome del gruppo" +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Amministrazione utenti" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Gruppo di oggetti" +#: 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 "" -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 -#, fuzzy -msgid "user groups" -msgstr "gruppi" +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Lista degli utenti" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 -#, fuzzy -msgid "nested groups" -msgstr "Gruppi di oggetti" +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Nome utente" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "department groups" -msgstr "dipartimenti" +msgid "templates" +msgstr "Template" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "server groups" -msgstr "server" +msgid "GOsa object" +msgstr "Oggetto" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "workstation groups" -msgstr "Mostra workstation" +msgid "functional users" +msgstr "Mostra utenti funzionali" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 #, fuzzy -msgid "windows workstation groups" -msgstr "Mostra workstation" +msgid "Posix" +msgstr "Proxy" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#: plugins/admin/users/class_divListUsers.inc:86 #, fuzzy -msgid "terminal groups" -msgstr "Mostra gruppi di posta" +msgid "POSIX users" +msgstr "Impostazioni Unix" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#: plugins/admin/users/class_divListUsers.inc:87 #, fuzzy -msgid "printer groups" -msgstr "Gruppo primario" +msgid "mail users" +msgstr "Utenti di Dominio" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "phone groups" -msgstr "Mostra gruppi" +msgid "samba users" +msgstr "Utenti di Dominio" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#: plugins/admin/users/class_divListUsers.inc:89 #, fuzzy -msgid "Number of listed object groups" -msgstr "Nome del gruppo" - -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "Informazioni" +msgid "proxy users" +msgstr "Mostra utenti proxy" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -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" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "dipartimenti" +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Cambia la password" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "people" -msgstr "Mostra persone" +msgid "Apply template" +msgstr "Template" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "gruppi" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "server" +#: plugins/admin/users/class_divListUsers.inc:249 +#, fuzzy +msgid "Edit generic properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:251 +#, fuzzy +msgid "Edit UNIX properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:253 +#, fuzzy +msgid "Edit environment properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:440 +#: plugins/admin/users/class_divListUsers.inc:255 #, fuzzy -msgid "printer" -msgstr "stampanti" +msgid "Edit mail properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "stampanti" +#: plugins/admin/users/class_divListUsers.inc:257 +#, fuzzy +msgid "Edit phone properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" -msgstr "telefoni" +#: plugins/admin/users/class_divListUsers.inc:259 +#, fuzzy +msgid "Edit fax properies" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "applicazioni" +#: plugins/admin/users/class_divListUsers.inc:261 +#, fuzzy +msgid "Edit samba properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "utenti" +#: plugins/admin/users/class_divListUsers.inc:263 +#, fuzzy +msgid "Edit netatalk properties" +msgstr "Modifica proprietà" -#: plugins/admin/ogroups/class_ogroup.inc:479 +#: plugins/admin/users/class_divListUsers.inc:264 #, fuzzy -msgid "winstations" -msgstr "Amministrazione" +msgid "Create user from template" +msgstr "Nuovo template" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:265 +#, fuzzy +msgid "Create user with this template" +msgstr "Nuovo template" -#: plugins/admin/ogroups/class_ogroup.inc:872 -msgid "You can combine two different object types at maximum, only!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:297 +#, fuzzy +msgid "inactive" +msgstr "Privato" -#: plugins/admin/ogroups/class_ogroup.inc:1056 +#: plugins/admin/users/class_divListUsers.inc:319 #, fuzzy -msgid "Object group generic" -msgstr "Gruppo di oggetti" +msgid "password" +msgstr "Password" -#: plugins/admin/ogroups/class_ogroup.inc:1067 +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 #, fuzzy -msgid "Member" -msgstr "Membri" +msgid "Not allowed" +msgstr "Cambia la password" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "Nome del gruppo" +#: plugins/admin/users/class_divListUsers.inc:332 +#, fuzzy +msgid "Delete user" +msgstr "Rimuovi" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Oggetti membri" +#: plugins/admin/users/class_divListUsers.inc:421 +msgid "Number of listed users" +msgstr "" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/users/password.tpl:4 msgid "" -"Please double check if you really want to do this since there is no way for " -"GOsa to get your data back." +"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 "" -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "FAX" +#: plugins/admin/users/password.tpl:21 +#, fuzzy +msgid "Strength" +msgstr "Strada" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Amministrazione dei gruppi di utenti" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Selezioni utenti da aggiungere" + +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Nome dell'oggetto" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "Contenuti" +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Mostra utenti del dipartimento" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." -msgstr "Questo oggetto non ha relazioni con altri oggetti." +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "" -#: plugins/generic/welcome/welcome.tpl:4 -#, fuzzy +#: plugins/admin/groups/remove.tpl:6 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." +"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 "" -"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." -#: 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." +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "Nome Unix del gruppo" + +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" msgstr "" -"Usa Termina la sessione in alto a sinistra per uscire e " -"Principale per tornare alla schermata principale." +"Normalmente le ID sono autogenerate, selezionare per specificarelo " +"manulamente" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "Il team di GOsa" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Forza GID" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Benvenuto %s!" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Forza numero ID" -#: 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/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/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Gruppo di oggetti" +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "nel dominio" -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Mostra gruppi che contengono utenti" +#: 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/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Gruppo di oggetti" +#: 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/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Membri del gruppo" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "File di configurazione" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" +#: plugins/admin/groups/class_groupGeneric.inc:163 +msgid "Cannot find group SID in your configuration!" msgstr "" -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Gruppo Samba" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Amministratori di Dominio" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Utenti di Dominio" -#: include/utils/class_msgPool.inc:53 +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Ospiti di Dominio" + +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "These objects will be deleted: %s" +msgid "Special group (%d)" +msgstr "Gruppo speciale (%d)" + +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" msgstr "" -#: include/utils/class_msgPool.inc:55 +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "These '%s' objects will be deleted: %s" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:63 -#, fuzzy -msgid "You have no permission to delete this object!" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, fuzzy, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "Rimuovi" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Rimuovi" -#: include/utils/class_msgPool.inc:74 +#: plugins/admin/groups/class_groupGeneric.inc:1213 #, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Generic group settings" +msgstr "Impostazioni generali delle code" -#: include/utils/class_msgPool.inc:81 -#, fuzzy -msgid "You have no permission to create this object!" -msgstr "Non hai il permesso di cambiare la tua password." +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Gruppi di utenti" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#: plugins/admin/groups/class_groupGeneric.inc:1225 #, fuzzy -msgid "You have no permission to create the object:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Phone pickup group" +msgstr "I membri sono in un gruppo di risposta telefonica" -#: include/utils/class_msgPool.inc:92 +#: plugins/admin/groups/class_groupGeneric.inc:1226 #, fuzzy -msgid "You have no permission to create these objects:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Nagios group" +msgstr "Contatto" -#: include/utils/class_msgPool.inc:99 +#: plugins/admin/groups/class_groupGeneric.inc:1229 #, fuzzy -msgid "You have no permission to modify this object!" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Group member" +msgstr "Membri del gruppo" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#: plugins/admin/groups/class_groupGeneric.inc:1230 #, fuzzy -msgid "You have no permission to modify the object:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Samba group type" +msgstr "Gruppo Samba" -#: include/utils/class_msgPool.inc:110 +#: plugins/admin/groups/class_groupGeneric.inc:1231 #, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Samba domain name" +msgstr "Home di Samba" -#: include/utils/class_msgPool.inc:117 +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 #, fuzzy -msgid "You have no permission to view this object!" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "Samba SID" +msgstr "Samba" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "" + +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "You have no permission to view the object:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "group" +msgstr "gruppi" -#: include/utils/class_msgPool.inc:128 +#: 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: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" + +#: plugins/admin/groups/class_divListGroup.inc:85 #, fuzzy -msgid "You have no permission to view these objects:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "primary groups" +msgstr "Gruppo primario" -#: include/utils/class_msgPool.inc:135 +#: plugins/admin/groups/class_divListGroup.inc:86 #, fuzzy -msgid "You have no permission to move this object!" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "samba groups mappings" +msgstr "Samba" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#: plugins/admin/groups/class_divListGroup.inc:87 #, fuzzy -msgid "You have no permission to move the object:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "samba groups" +msgstr "Gruppo Samba" -#: include/utils/class_msgPool.inc:146 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "You have no permission to move these objects:" -msgstr "Non hai il permesso di cambiare la tua password." +msgid "application settings" +msgstr "applicazioni" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/class_divListGroup.inc:90 #, fuzzy -msgid "Connection information" -msgstr "Informazioni personali" +msgid "mail settings" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "Impossibile connettersi al server del database!" +#: plugins/admin/groups/class_divListGroup.inc:91 +#, fuzzy +msgid "mail groups" +msgstr "Mostra gruppi di posta" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "Impossibile selezionare il database!" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "Seleziona per mostrare i gruppi che hanno solo aspetti funzionali" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Mostra gruppi funzionali" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "Impossibile selezionare il database!" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "Nome del gruppo" -#: include/utils/class_msgPool.inc:194 -#, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "" +#: plugins/admin/groups/paste_generic.tpl:1 +#, fuzzy +msgid "Group settings" +msgstr "Impostazioni FAX" -#: include/utils/class_msgPool.inc:200 -#, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" -msgstr "" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#, fuzzy +msgid "GOsa settings 2/3" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "Il valore specificato per l'UID non è valido." +#: setup/class_setupStep_Config2.inc:88 +#, fuzzy +msgid "Customize special parameters" +msgstr "Parametro" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +#, fuzzy +msgid "No" +msgstr "nessuno" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +#, fuzzy +msgid "Yes" +msgstr "Sistemi" -#: include/utils/class_msgPool.inc:213 -#, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "Il valore specificato per l'UID non è valido." +#: setup/setup_frame.tpl:12 +#, fuzzy +msgid "GOsa setup wizard" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "Impossibile selezionare il database!" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Installation" +msgstr "Amministrazione" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Steps" +msgstr "Sistemi" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Esegui" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "Impossibile selezionare il database!" +#: setup/class_setupStep_Finish.inc:38 +#, fuzzy +msgid "Write configuration file" +msgstr "File di configurazione" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "Il valore specificato per l'UID è troppo basso." +#: setup/class_setupStep_Finish.inc:39 +#, fuzzy +msgid "Finish - write the configuration file" +msgstr "File di configurazione" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: setup/class_setupStep_Finish.inc:101 +#, 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." -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "Il valore specificato per l'UID è troppo basso." +#: setup/class_setupStep_Finish.inc:103 +#, 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." -#: include/utils/class_msgPool.inc:247 +#: setup/class_setupStep_Finish.inc:112 #, fuzzy, php-format -msgid "'%s' must be %d or above!" -msgstr "PHP deve essere la versione 4.1.0 o superiore." - -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "" - -#: include/utils/class_msgPool.inc:260 -#, php-format -msgid "There is already an entry with this '%s' attribute in the system!" +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." -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "Il campo necessario 'Home directory' non è vuoto" +#: setup/setup_finish.tpl:3 +#, fuzzy +msgid "Create your configuration file" +msgstr "File di configurazione" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "Scarica il file di configurazione" -#: include/utils/class_msgPool.inc:291 -#, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "" +#: setup/setup_finish.tpl:18 +#, fuzzy +msgid "Status: " +msgstr "Stato" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "Cambia la password" +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Cerca" -#: include/utils/class_msgPool.inc:295 +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 #, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "" - -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Elimina foto" +msgid "Apply" +msgstr "Applica" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "Annulla" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "" - -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Applica" +#: setup/setup_ldap.tpl:25 +#, fuzzy +msgid "LDAP connection" +msgstr "Disconnessione " -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Salva" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Nome locazione" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Aggiungi" +#: setup/setup_ldap.tpl:37 +#, fuzzy +msgid "Connection URL" +msgstr "Connessione" -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Aggiungi" +#: setup/setup_ldap.tpl:45 +#, fuzzy +msgid "TLS connection" +msgstr "Connessione" -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Rimuovi" +#: setup/setup_ldap.tpl:65 +#, fuzzy +msgid "Reload" +msgstr "leggere" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "Imposta" +#: setup/setup_ldap.tpl:69 +#, fuzzy +msgid "Authentication" +msgstr "Destinazione" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Modifica" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "DN dell'amministratore" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Modifica contatto" +#: setup/setup_ldap.tpl:78 +#, fuzzy +msgid "Select user" +msgstr "Rimuovi" -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Indietro" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" +msgstr "" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "Questa identità non possiede estensioni GOsa." +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Password dell'amministratore" -#: include/utils/class_msgPool.inc:381 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." -msgstr "Questa identià possiede estensioni Unix." +#: setup/setup_ldap.tpl:101 +#, fuzzy +msgid "Schema based settings" +msgstr "Impostazioni Samba" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima " -"le estensioni Samba / ambiente." -#: include/utils/class_msgPool.inc:400 -#, fuzzy, php-format -msgid "" -"This account has %s settings disabled. You can enable them by clicking below." -msgstr "Questa identità non possiede estensioni Unix" +#: setup/setup_ldap.tpl:117 +#, fuzzy +msgid "Current status" +msgstr "Stato" -#: include/utils/class_msgPool.inc:403 -#, 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." +#: setup/setup_language.tpl:3 +#, fuzzy +msgid "Please select the preferred language" +msgstr "Lingua preferita" -#: include/utils/class_msgPool.inc:410 -#, fuzzy, php-format +#: setup/setup_language.tpl:5 msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +"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 "" -"Questa identià possiede estensioni Unix. Per eliminarle devi eliminare prima " -"le estensioni Samba / ambiente." - -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Opzioni applicazione" - -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Impostazioni Unix" -#: include/utils/class_msgPool.inc:430 -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" +#: setup/setup_language.tpl:9 +#, fuzzy +msgid "Please select your preferred language here" +msgstr "Lingua preferita" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Gennaio" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#, fuzzy +msgid "Language setup" +msgstr "Lingua" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Febbraio" +#: setup/class_setupStep_Language.inc:42 +#, fuzzy +msgid "This step allows you to select your preferred language." +msgstr "Lingua preferita" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Marzo" +#: setup/class_setupStep_Language.inc:47 +#, fuzzy +msgid "Automatic" +msgstr "automatico" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "Aprile" +#: setup/setup_config3.tpl:2 +#, fuzzy +msgid "GOsa core settings" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Maggio" +#: setup/setup_config3.tpl:6 +#, fuzzy +msgid "Disable primary group filter" +msgstr "Mostra gruppi di utenti" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Giugno" +#: setup/setup_config3.tpl:18 +#, fuzzy +msgid "Display summary in listings" +msgstr "Mosra gruppi corrispondenti a" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Luglio" +#: setup/setup_config3.tpl:30 +#, fuzzy +msgid "Honour administrative units" +msgstr "Amministrazione dei gruppi di utenti" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "Agosto" +#: setup/setup_config3.tpl:42 +#, fuzzy +msgid "Smarty compile directory" +msgstr "Home directory" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "Settembre" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" +msgstr "" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Ottobre" +#: setup/setup_config3.tpl:60 +#, fuzzy +msgid "Path for PPD storage" +msgstr "Algorimo password" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "Novembre" +#: setup/setup_config3.tpl:77 +#, fuzzy +msgid "Path for kiosk profile storage" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Dicembre" +#: setup/setup_config3.tpl:96 +msgid "Override sudo role ou" +msgstr "" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:115 #, fuzzy -msgid "Sunday" -msgstr "Cognome" +msgid "Mail queue script" +msgstr "Script path" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:134 #, fuzzy -msgid "Monday" -msgstr "mese" +msgid "Notification script" +msgstr "Non ci sono certificati installati" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" +#: setup/setup_config3.tpl:153 +msgid "Enable edit locking" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Wednesday" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config3.tpl:175 +#, fuzzy +msgid "Login attribute" +msgstr "Attributo DN delle persone" + +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config3.tpl:210 +msgid "Warn if session is not encrypted" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:222 #, fuzzy -msgid "read operation" -msgstr "Opzioni di posta" +msgid "Remember dialog filter settings" +msgstr "Impostazioni generali delle code" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config3.tpl:234 +#, fuzzy +msgid "Session lifetime" +msgstr "Rilevato un conflitto di sessione" + +#: setup/setup_config3.tpl:243 +msgid "Debugging" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:247 #, fuzzy -msgid "modify operation" -msgstr "Informazioni personali" +msgid "Show PHP errors" +msgstr "Errore PHP" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:259 #, fuzzy -msgid "delete operation" -msgstr "Selezione le workstation da aggiungere" +msgid "Maximum LDAP query time" +msgstr "Inoltra i messaggi a" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" +msgstr "" + +#: setup/setup_config3.tpl:289 #, fuzzy -msgid "search operation" -msgstr "L'account spira dopo" +msgid "Debug level" +msgstr "Rimuovi" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 #, fuzzy -msgid "authentication" -msgstr "Destinazione" +msgid "Disabled" +msgstr "disabilitato" -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "La query al database è fallita!" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +#, fuzzy +msgid "Enabled" +msgstr "disabilitato" -#: include/utils/class_msgPool.inc:457 +#: setup/class_setupStep_Welcome.inc:38 #, fuzzy -msgid "LDAP operation failed!" -msgstr "La query al database è fallita!" +msgid "Welcome" +msgstr "Benvenuto %s!" -#: include/utils/class_msgPool.inc:472 +#: setup/class_setupStep_Welcome.inc:39 #, fuzzy -msgid "Upload failed!" -msgstr "Nome applicazione" +msgid "The welcome message" +msgstr "Elimina questo record" -#: include/utils/class_msgPool.inc:475 -#, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Utenti di Dominio" +#: setup/class_setupStep_Welcome.inc:40 +#, fuzzy +msgid "Welcome to GOsa setup wizard" +msgstr "Benvenuto nel setup di GOsa!" -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" -msgstr "" +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +#, fuzzy +msgid "GOsa settings 1/3" +msgstr "Opzioni di posta dell'identità" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" -msgstr "" +#: setup/class_setupStep_Config1.inc:76 +#, fuzzy +msgid "GOsa generic settings" +msgstr "Impostazioni generali delle code" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#: setup/class_setupStep_Config1.inc:118 #, php-format -msgid "This '%s' is still in use by this object: %s" +msgid "The specified value for '%s' must be a numeric value" msgstr "" -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "Nome descrittivo del gruppo" - -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "Nome descrittivo del gruppo" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" +msgstr "" -#: include/utils/class_msgPool.inc:505 +#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 #, php-format -msgid "File '%s' does not exist!" +msgid "Don't add a trailing comma to '%s'." msgstr "" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Rimuovi" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "Ou delle persone" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Rimuovi" +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "Ou dei gruppi" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "Rimuovi" +#: setup/class_setupStep_Config1.inc:130 +msgid "Uid base must be numeric" +msgstr "" -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Vai al dipartimento base" +#: setup/class_setupStep_Config1.inc:134 +msgid "The given password minimum length is not numeric." +msgstr "" -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Rimuovi" +#: setup/class_setupStep_Config1.inc:137 +msgid "The given password differ value is not numeric." +msgstr "" -#: include/utils/class_msgPool.inc:541 -#, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Controllo il supporto per iconv" +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +#, fuzzy +msgid "LDAP schema check" +msgstr "Server" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" msgstr "" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Impostazioni Samba" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" msgstr "" -#: include/class_certificate.inc:73 +#: setup/setup_config2.tpl:31 #, fuzzy -msgid "Certificate is empty!" -msgstr "Certificati" +msgid "RID base" +msgstr "Database" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: setup/setup_config2.tpl:46 +#, fuzzy +msgid "Workstation container" +msgstr "Mostra workstation" + +#: setup/setup_config2.tpl:61 +#, fuzzy +msgid "Samba SID mapping" +msgstr "Samba" + +#: setup/setup_config2.tpl:71 +#, fuzzy +msgid "Timezone" +msgstr "Cellulare" + +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "Lingua preferita" + +#: setup/setup_config2.tpl:96 +#, fuzzy +msgid "Additional GOsa settings" +msgstr "Opzioni applicazione" + +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/class_certificate.inc:115 +#: setup/setup_config2.tpl:112 +#, fuzzy +msgid "Enable DNS extension" +msgstr "Elimina foto" + +#: setup/setup_config2.tpl:124 #, fuzzy -msgid "Cannot extract information for non PEM certificates!" -msgstr "Rimuovi" +msgid "Enable DHCP extension" +msgstr "Elimina foto" -#: include/class_certificate.inc:219 +#: setup/setup_config2.tpl:136 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "Non ci sono certificati installati" +msgid "Enable mime type management" +msgstr "Riferimenti" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 +#: setup/setup_config2.tpl:148 #, fuzzy -msgid "Close" -msgstr "Scegli" +msgid "Enable FAI release management" +msgstr "Riferimenti" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Vai al dipartimento base" +#: setup/setup_config2.tpl:160 +#, fuzzy +msgid "Enable user netatalk plugin" +msgstr "Crea estensioni telefoniche" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Root" +#: setup/setup_config2.tpl:171 +#, fuzzy +msgid "Government mode" +msgstr "nella cartella" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Sali di dipartimento" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "Utenti di Dominio" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Vai agli utenti del dipartimento" +#: setup/setup_config2.tpl:186 +#, fuzzy +msgid "Syslog" +msgstr "Log di sitema" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Home" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "Errore LDAP" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "" +#: setup/setup_config2.tpl:193 +#, fuzzy +msgid "Mail settings" +msgstr "Opzioni di posta dell'identità" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" -msgstr "" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "Metodo di amministrazione della posta" -#: include/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" -msgstr "" +#: setup/setup_config2.tpl:227 +#, fuzzy +msgid "Vacation templates" +msgstr "Messaggio di di risposta automatica" -#: include/php_setup.inc:100 -msgid "Send bugreport" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "" +#: setup/setup_config2.tpl:253 +#, fuzzy +msgid "Snapshots / Undo" +msgstr "Nome applicazione" -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "Errore PHP" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +#, fuzzy +msgid "Enable snapshots" +msgstr "Crea estensioni di posta" -#: include/php_setup.inc:134 -msgid "class" -msgstr "classe" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +#, fuzzy +msgid "Snapshot base" +msgstr "Nome applicazione" -#: include/php_setup.inc:140 -msgid "function" -msgstr "funzione" +#: 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:145 -msgid "static" -msgstr "statico" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "" -#: include/php_setup.inc:149 -msgid "method" -msgstr "metodo" +#: setup/setup_welcome.tpl:11 +#, fuzzy +msgid "Create a basic, single site configuration" +msgstr "Scarica il file di configurazione" -#: include/php_setup.inc:182 -msgid "Trace" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" msgstr "" -#: include/php_setup.inc:183 -msgid "File" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" msgstr "" -#: include/php_setup.inc:183 -msgid "Line" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" msgstr "" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Tipo" +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" +msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" -msgstr "Argomenti" +#: setup/setup_welcome.tpl:20 +#, fuzzy +msgid "Find every possible configuration error" +msgstr "File di configurazione" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:25 +#, fuzzy +msgid "To continue..." +msgstr "Configurazione continua..." + +#: setup/setup_welcome.tpl:28 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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/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/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." +msgstr "" -#: include/functions.inc:380 +#: setup/class_setupStep_Ldap.inc:53 #, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "" -"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." +msgid "LDAP setup" +msgstr "Dispositivi" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 +#: setup/class_setupStep_Ldap.inc:54 #, fuzzy -msgid "Internal error" -msgstr "Terminal Server" +msgid "LDAP connection setup" +msgstr "Disconnessione " -#: include/functions.inc:450 +#: setup/class_setupStep_Ldap.inc:55 #, 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." +"This dialog performs the basic configuration of the LDAP connectivity for " +"GOsa." +msgstr "I campi seguenti permettono una configurazione base di GOsa." -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +#: setup/class_setupStep_Ldap.inc:105 +#, php-format +msgid "Anonymous bind to server '%s' failed!" msgstr "" -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:107 +#, fuzzy, php-format +msgid "Bind as user '%s' failed!" +msgstr "Impossibile selezionare il database!" + +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "Impossibile selezionare il database!" + +#: setup/class_setupStep_Ldap.inc:113 +#, fuzzy +msgid "Please specify user and password!" +msgstr "Prego inserire un numero di telefono valido!" + +#: setup/class_setupStep_Ldap.inc:115 #, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "Impossibile selezionare il database!" + +#: setup/setup_migrate.tpl:5 msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +"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 "" -"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: include/functions.inc:605 -#, php-format -msgid "LDAP server returned: %s" -msgstr "" +#: setup/setup_migrate.tpl:33 +#, fuzzy +msgid "Check again" +msgstr "Continua" -#: include/functions.inc:699 -msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" msgstr "" -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" +#: setup/setup_migrate.tpl:39 +msgid "" +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -#: include/functions.inc:998 -#, php-format +#: setup/setup_migrate.tpl:41 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"Be careful with this tool, there may be references pointing to this " +"workstations that can't be migrated." msgstr "" -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "incompleto" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" +msgstr "" -#: include/functions.inc:1294 +#: setup/setup_migrate.tpl:72 #, fuzzy -msgid "Continue anyway" -msgstr "Continua" +msgid "Move selected workstations" +msgstr "Selezione le workstation da aggiungere" -#: include/functions.inc:1296 -#, fuzzy -msgid "Edit anyway" -msgstr "Modifica contatto" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" +msgstr "" -#: include/functions.inc:1298 -#, fuzzy, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Non hai il permesso di cambiare la tua password." +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +#, fuzzy +msgid "Close" +msgstr "Scegli" -#: include/functions.inc:1482 -msgid "Entries per page" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" msgstr "" -#: include/functions.inc:1510 -msgid "Apply filter" +#: 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:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: 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:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "versione di sviluppo di GOsa (Rev %s)" - -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:1919 include/functions.inc:1939 +#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 +#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 #, fuzzy -msgid "Cannot write to revision file!" -msgstr "Rimuovi" - -#: include/functions.inc:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" -msgstr "" +msgid "Hide changes" +msgstr "Open-Xchange" -#: include/functions.inc:2213 +#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 +#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 #, fuzzy -msgid "LDAP warning" -msgstr "Amministrazione LDAP" +msgid "Show changes" +msgstr "Mostra telefoni" -#: include/functions.inc:2213 -msgid "Cannot get schema information from server. No schema check possible!" +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" msgstr "" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: 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:2246 +#: setup/setup_migrate.tpl:145 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"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:2289 -#, fuzzy, php-format -msgid "Missing required object class '%s'!" -msgstr "Lista dei dipartimenti" +#: setup/setup_migrate.tpl:148 +#, fuzzy +msgid "Move selected users into this people tree" +msgstr "Nuovo template" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +msgid "Next" msgstr "" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:199 +msgid "Abort" msgstr "" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" -msgstr "" +#: setup/setup_migrate.tpl:201 +#, fuzzy +msgid "Create a new GOsa administrator account" +msgstr "Crea estensioni di posta" -#: include/functions.inc:2303 -#, php-format -msgid "Class(es) available" +#: setup/setup_migrate.tpl:204 +msgid "" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/functions.inc:2325 +#: setup/setup_migrate.tpl:233 +#, fuzzy +msgid "Password (again)" +msgstr "Algorimo password" + +#: setup/setup_migrate.tpl:258 msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +"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:2326 +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"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:2330 +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#, fuzzy +msgid "Current" +msgstr "Password attuale" + +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#, fuzzy +msgid "After migration" +msgstr "Amministrazione utenti" + +#: setup/setup_migrate.tpl:313 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#, fuzzy +msgid "LDAP inspection" +msgstr "Ispezione della configurazione PHP" + +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" msgstr "" -#: include/functions.inc:2354 -msgid "German" -msgstr "Tedesco" +#: setup/class_setupStep_Migrate.inc:114 +#, fuzzy +msgid "Checking for root object" +msgstr "Controllo il supporto per iconv" -#: include/functions.inc:2355 -msgid "French" -msgstr "Francese" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "" -#: include/functions.inc:2356 -msgid "Italian" -msgstr "Italiano" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "Controllo il supporto per iconv" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Spagnolo" +#: setup/class_setupStep_Migrate.inc:131 +#, fuzzy +msgid "Checking for invisible users" +msgstr "Controllo il supporto per iconv" -#: include/functions.inc:2358 -msgid "English" -msgstr "Inglese" +#: setup/class_setupStep_Migrate.inc:137 +#, fuzzy +msgid "Checking for super administrator" +msgstr "Controllo la presenza di alcuni programmi addizionali" -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "Tedesco" +#: setup/class_setupStep_Migrate.inc:143 +#, fuzzy +msgid "Checking for users outside the people tree" +msgstr "Controllo il modulo cups" -#: include/functions.inc:2360 +#: setup/class_setupStep_Migrate.inc:149 #, fuzzy -msgid "Polish" -msgstr "Inglese" +msgid "Checking for groups outside the groups tree" +msgstr "Controllo il modulo cups" -#: include/functions.inc:2361 -msgid "Swedish" +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" -#: include/functions.inc:2362 +#: setup/class_setupStep_Migrate.inc:162 #, fuzzy -msgid "Chinese" -msgstr "reset" - -#: include/functions.inc:2363 -msgid "Russian" -msgstr "Russo" - -#: include/functions.inc:2544 -#, php-format -msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." -msgstr "" +msgid "Checking for duplicated UID numbers" +msgstr "Controllo il supporto per %s" -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" -msgstr "" +#: setup/class_setupStep_Migrate.inc:168 +#, fuzzy +msgid "Checking for duplicate GID numbers" +msgstr "Controllo il supporto per %s" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." -msgstr "" +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +#, fuzzy +msgid "LDAP query failed" +msgstr "La query al database è fallita!" -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." msgstr "" -#: include/class_socketClient.inc:191 -#, php-format -msgid "Socket timeout of %s seconds reached." -msgstr "" +#: setup/class_setupStep_Migrate.inc:217 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "Prego inserire un numero di telefono valido!" -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 #, php-format -msgid "Delete process has been canceled by plugin '%s': %s" +msgid "Ok" msgstr "" -#: include/class_tabs.inc:373 -msgid "References" -msgstr "Riferimenti" +#: setup/class_setupStep_Migrate.inc:269 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "Prego inserire un numero di telefono valido!" -#: include/class_plugin.inc:497 -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 "" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Fallito" -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: setup/class_setupStep_Migrate.inc:329 #, php-format msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +"Found %s winstations outside the predefined winstation department ou '%s'." msgstr "" -#: include/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "Non hai il permesso di cambiare la tua password." +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +#, fuzzy +msgid "Migrate" +msgstr "Creare" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:402 #, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." +msgid "Found %s groups outside the configured tree '%s'." msgstr "Non hai il permesso di cambiare la tua password." -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" -msgstr "" - -#: include/class_plugin.inc:1786 -#, fuzzy -msgid "from" -msgstr "e" - -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -#, fuzzy -msgid "to" -msgstr "Rapporto" - -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 #, fuzzy -msgid "Restore" -msgstr "Riprova" +msgid "Move" +msgstr "Dominio" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/class_setupStep_Migrate.inc:479 +#, php-format +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/class_plugin.inc:1993 -#, fuzzy -msgid "Create snapshot" -msgstr "Crea estensioni di posta" +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#, php-format +msgid "" +"The specified user '%s' does not have full access to your ldap database." +msgstr "" -#: include/class_plugin.inc:1994 -#, fuzzy -msgid "Create a new snapshot from this object" -msgstr "Gruppo di oggetti" +#: setup/class_setupStep_Migrate.inc:617 +#, php-format +msgid "Found %s user(s) that will not be visible in GOsa." +msgstr "" -#: include/class_plugin.inc:2011 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 #, fuzzy -msgid "cut" -msgstr "Esegui" +msgid "Migration error" +msgstr "Creare" -#: include/class_plugin.inc:2011 -#, fuzzy -msgid "Cut this entry" -msgstr "Modifica questo record" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#, fuzzy, php-format +msgid "Cannot migrate department '%s':" +msgstr "Vai al dipartimento base" -#: include/class_plugin.inc:2019 -msgid "copy" +#: setup/class_setupStep_Migrate.inc:758 +#, php-format +msgid "Found %s department(s) that will not be visible in GOsa." msgstr "" -#: include/class_plugin.inc:2019 -#, fuzzy -msgid "Copy this entry" -msgstr "Modifica questo record" +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." +msgstr "" -#: include/class_plugin.inc:2053 -#, fuzzy -msgid "Copy" -msgstr "Azienda" +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" +msgstr "" -#: include/class_plugin.inc:2057 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Cut" -msgstr "Esegui" +msgid "Password error" +msgstr "La password spira il" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Paste" -msgstr "Data" +msgid "Provided passwords do not match!" +msgstr "Le password nuova e ripetuta non corrispondono" -#: include/class_acl.inc:26 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Access control" -msgstr "Opzioni di accesso" - -#: include/class_acl.inc:207 -msgid "Reset ACLs" -msgstr "" - -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" -msgstr "" +msgid "Input error" +msgstr "Errore PHP" -#: include/class_acl.inc:489 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "No ACL settings for this category!" -msgstr "Nome descrittivo del gruppo" +msgid "Specify a valid user ID!" +msgstr "Prego inserire un numero di telefono valido!" -#: include/class_acl.inc:491 +#: setup/class_setupStep_Migrate.inc:1051 #, php-format -msgid "Contains ACLs for these objects: %s" +msgid "Adding an administrative user failed: object '%s' already exists!" msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 #, fuzzy -msgid "category ACL" -msgstr "classe" +msgid "Cannot move users to the requested department!" +msgstr "Mostra utenti del dipartimento" -#: include/class_acl.inc:543 -#, php-format -msgid "Edit ACL for '%s' - scope is '%s'" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 -#, fuzzy -msgid "Show/hide advanced settings" -msgstr "Opzioni di posta avanzate" - -#: include/class_acl.inc:723 +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 #, fuzzy -msgid "Create objects" -msgstr "Gruppo di oggetti" +msgid "to" +msgstr "Rapporto" -#: include/class_acl.inc:724 -#, fuzzy -msgid "Move objects" -msgstr "Oggetti membri" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "" -#: include/class_acl.inc:725 -#, fuzzy -msgid "Remove objects" -msgstr "Oggetti membri" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" +msgstr "" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "leggere" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "scrivere" +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." +msgstr "" -#: include/class_acl.inc:743 +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 #, fuzzy -msgid "Complete object" +msgid "Try to create root object" msgstr "Gruppo di oggetti" -#: include/class_acl.inc:879 -#, php-format -msgid "Unkown ACL type '%s'!" +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." msgstr "" -#: include/class_acl.inc:922 +#: setup/class_setupStep_Migrate.inc:1955 #, php-format -msgid "Unknown entry '%s'!" +msgid "Copy '%s' to '%s' failed:" msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, fuzzy, php-format -msgid "Role: %s" -msgstr "Ruolo" - -#: include/class_acl.inc:984 -msgid "unknown role" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" msgstr "" -#: include/class_acl.inc:992 -#, fuzzy, php-format -msgid "Contains settings for these objects: %s" -msgstr "Nome descrittivo del gruppo" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "Membri" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." +msgstr "" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." msgstr "" -#: include/class_acl.inc:1177 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Access control list" -msgstr "Opzioni di accesso" +msgid "PHP setup configuration" +msgstr "Scarica il file di configurazione" -#: include/class_acl.inc:1182 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "ACL roles" -msgstr "ACL" +msgid "show information" +msgstr "Informazioni personali" -#: include/class_acl.inc:1185 +#: setup/setup_schema.tpl:3 #, fuzzy -msgid "Role name" -msgstr "Cognome" +msgid "Schema specific settings" +msgstr "Impostazioni Samba" -#: include/class_acl.inc:1186 -#, fuzzy -msgid "Role description" -msgstr "Descrizoione unità" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "" -#: include/class_pluglist.inc:56 -#, fuzzy -msgid "All objects in this category" -msgstr "Nome descrittivo del gruppo" +#: setup/setup_schema.tpl:16 +#, fuzzy +msgid "Check status" +msgstr "Stato" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" +#: setup/setup_schema.tpl:23 +#, 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 "" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/setup_schema.tpl:35 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +"It seems that your ldap database wasn't initialized yet. This maybe the " +"reason, why GOsa can't read your schema configuration!" msgstr "" -"Stai modificando un campo del database. Vuoi abbandonare i cambiamenti?" -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." +#: 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" msgstr "" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" +#: setup/class_setupStep_Config3.inc:198 +msgid "Session lifetime must be a numeric value!" msgstr "" -#: include/class_config.inc:242 +#: setup/class_setupStep_Config3.inc:202 #, fuzzy -msgid "Cannot bind to LDAP. Please contact the system administrator." +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Inoltra i messaggi a" + +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +msgid "License" msgstr "" -"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: include/class_config.inc:574 -msgid "SID and/or RIDBASE missing in the configuration!" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" msgstr "" -#: include/class_config.inc:878 -#, fuzzy -msgid "Configuration" -msgstr "File di configurazione" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" +msgstr "" -#: include/class_config.inc:878 -msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "Nome applicazione" +#: setup/class_setupStep_Checks.inc:64 +#, fuzzy +msgid "Checking PHP version" +msgstr "Controllo della versione di PHP (>=4.1.0)" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 +#: setup/class_setupStep_Checks.inc:65 #, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "Rimuovi" +msgid "PHP must be of version %s or above." +msgstr "PHP deve essere la versione 4.1.0 o superiore." -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "Rimuovi" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "" -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." msgstr "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." msgstr "" -#: include/class_CopyPasteHandler.inc:508 -#, fuzzy -msgid "Cannot paste" -msgstr "Crea estensioni telefoniche" +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "" -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." msgstr "" -#: include/class_gosaSupportDaemon.inc:851 +#: setup/class_setupStep_Checks.inc:112 #, fuzzy -msgid "Cannot not parse XML!" -msgstr "Troppi utenti non posso allocare un ID libero!" - -#: include/class_gosaSupportDaemon.inc:1177 -#, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Rimuovi" +msgid "mbstring" +msgstr "Impostazioni Samba" -#: include/class_gosaSupportDaemon.inc:1197 -#, php-format -msgid "Cannot remove entry %s!" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." msgstr "" -#: include/functions_helpviewer.inc:45 -#, php-format -msgid "XML error in guide.xml: %s at line %d" +#: setup/class_setupStep_Checks.inc:121 +#, fuzzy +msgid "" +"GOsa requires this module to communicate with several supported databases." msgstr "" +"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona " +"correttamente anche senza." -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" msgstr "" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" +#: setup/class_setupStep_Checks.inc:129 +#, fuzzy +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." msgstr "" +"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona " +"correttamente anche senza." -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" msgstr "" -#: include/functions_helpviewer.inc:389 -#, php-format -msgid "%s results for your search with the keyword %s" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." +#: setup/class_setupStep_Checks.inc:158 +#, 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à" -#: include/class_SnapShotDialog.inc:145 +#: setup/class_setupStep_Checks.inc:159 #, fuzzy -msgid "Remove snapshot" -msgstr "Crea estensioni di posta" +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +msgstr "Controllo se register_globals e impostato su 'off'" -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:168 +msgid "" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:169 +#, 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" -#: include/class_ldap.inc:636 -#, php-format -msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:177 +#, 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" -#: include/class_ldap.inc:768 -#, fuzzy, php-format -msgid "while operating on '%s' using LDAP server '%s'" -msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'" +#: setup/class_setupStep_Checks.inc:178 +#, fuzzy +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" -#: include/class_ldap.inc:770 -#, fuzzy, php-format -msgid "while operating on LDAP server %s" -msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'" +#: setup/class_setupStep_Checks.inc:185 +#, 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" -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:186 msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." msgstr "" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/class_setupStep_Checks.inc:193 +#, 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." -#: include/class_multi_plug.inc:362 -msgid "You are currently editing mutliple entries." +#: setup/class_setupStep_Checks.inc:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." msgstr "" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:201 #, fuzzy -msgid "Password reset" -msgstr "La password spira il" +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" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +msgstr "" + +#: setup/class_setupStep_Checks.inc:209 #, fuzzy -msgid "The user password was resetted, please set a new password value!" -msgstr "Non hai il permesso di cambiare la tua 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." -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Utenti di Dominio" +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +msgstr "" -#: include/class_log.inc:107 +#: setup/class_setupStep_Checks.inc:216 #, fuzzy -msgid "MySQL error" -msgstr "Errore LDAP" +msgid "On" +msgstr "Opzioni" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:217 +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." -#: include/class_log.inc:120 -#, fuzzy, php-format -msgid "Invalid option '%s' specified!" -msgstr "L'uid contiene dei caratteri invalidi!" +#: setup/class_setupStep_Checks.inc:218 +#, 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'" -#: include/class_log.inc:124 +#: setup/class_setupStep_Checks.inc:225 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "Il valore specificato per l'UID non è valido." +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." -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/class_setupStep_Checks.inc:226 +#, 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" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "Impossibile connettersi al server del database!" +#: setup/class_setupStep_Checks.inc:236 +#, fuzzy +msgid "Configuration writeable" +msgstr "File di configurazione" -#: include/class_baseSelectDialog.inc:44 +#: setup/class_setupStep_Checks.inc:237 #, fuzzy -msgid "Choose a base" -msgstr "Rimuovi" +msgid "The configuration file can't be written" +msgstr "File di configurazione" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:238 +#, php-format msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"GOsa reads its configuration from a file located in (%s/%s). The setup can " +"write the configuration directly if it is writeable." msgstr "" -#: include/class_baseSelectDialog.inc:61 -#, fuzzy -msgid "Use" -msgstr "Utenti" - -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Azione" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "" -#: include/class_baseSelectDialog.inc:72 +#: setup/setup_config1.tpl:6 #, fuzzy -msgid "Filter entries with this syntax" -msgstr "Mostra gli indirizzi che corrispondono" - -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Rimuovi" +msgid "Theme" +msgstr "Cellulare" -#: setup/class_setupStep_Ldap.inc:53 +#: setup/setup_config1.tpl:15 #, fuzzy -msgid "LDAP setup" -msgstr "Dispositivi" +msgid "Apache" +msgstr "Annulla" -#: setup/class_setupStep_Ldap.inc:54 +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" +msgstr "" + +#: setup/setup_config1.tpl:27 #, fuzzy -msgid "LDAP connection setup" -msgstr "Disconnessione " +msgid "People and group storage" +msgstr "Ou delle persone" -#: setup/class_setupStep_Ldap.inc:55 +#: setup/setup_config1.tpl:30 #, 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 "People DN attribute" +msgstr "Attributo DN delle persone" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 +#: setup/setup_config1.tpl:41 #, fuzzy -msgid "No" -msgstr "nessuno" +msgid "People storage subtree" +msgstr "Ou delle persone" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 +#: setup/setup_config1.tpl:50 #, fuzzy -msgid "Yes" -msgstr "Sistemi" +msgid "Group storage subtree" +msgstr "Ou dei gruppi" -#: setup/class_setupStep_Ldap.inc:105 -#, php-format -msgid "Anonymous bind to server '%s' failed!" +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" msgstr "" -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "Impossibile selezionare il database!" - -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "Impossibile selezionare il database!" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "" -#: setup/class_setupStep_Ldap.inc:113 +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "Please specify user and password!" -msgstr "Prego inserire un numero di telefono valido!" +msgid "Automatic UIDs" +msgstr "automatico" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "Impossibile selezionare il database!" +#: setup/setup_config1.tpl:113 +#, fuzzy +msgid "Number base for people/groups" +msgstr "UID di base per utenti/gruppi" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Esegui" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 +#: setup/setup_config1.tpl:140 #, fuzzy -msgid "Write configuration file" -msgstr "File di configurazione" +msgid "Password encryption algorithm" +msgstr "Algoritmo di criptaggio" -#: setup/class_setupStep_Finish.inc:39 +#: setup/setup_config1.tpl:151 #, fuzzy -msgid "Finish - write the configuration file" -msgstr "File di configurazione" +msgid "Password restrictions" +msgstr "La password spira il" -#: setup/class_setupStep_Finish.inc:101 +#: 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 "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" -msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile." +msgid "Password change hook" +msgstr "Cambia la password" -#: setup/class_setupStep_Finish.inc:103 +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" + +#: setup/setup_config1.tpl:209 #, 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 "Use account expiration" +msgstr "L'account spira dopo" -#: setup/class_setupStep_Finish.inc:112 -#, fuzzy, php-format +#: setup/setup_config1.tpl:221 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:" +"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 "" -"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_License.inc:56 setup/class_setupStep_License.inc:57 -msgid "License" +"GOsa supporta numerosi algoritmi di criptaggio per le password. Imposta " +"quello di default." + +#: 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 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." -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +#: 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." -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#: setup/setup_config1.tpl:224 #, fuzzy -msgid "Language setup" -msgstr "Lingua" +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." -#: setup/class_setupStep_Language.inc:42 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, fuzzy -msgid "This step allows you to select your preferred language." -msgstr "Lingua preferita" +msgid "Setup error" +msgstr "Stato" -#: setup/class_setupStep_Language.inc:47 +#: setup/class_setup.inc:197 #, fuzzy -msgid "Automatic" -msgstr "automatico" +msgid "Completed" +msgstr "incompleto" #: setup/class_setupStep_Feedback.inc:92 #, fuzzy @@ -4407,11 +4309,6 @@ msgstr "Non ci sono certificati installati" msgid "Get notifications or send feedback" msgstr "Non ci sono certificati installati" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -#, fuzzy -msgid "Setup error" -msgstr "Stato" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" @@ -4440,1577 +4337,1695 @@ msgid "" "You have to select at least one of both options, subscribe or send feedback." msgstr "" -#: setup/class_setup.inc:197 -#, fuzzy -msgid "Completed" -msgstr "incompleto" - -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -msgid "Next" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" msgstr "" -#: setup/setup_finish.tpl:3 -#, fuzzy -msgid "Create your configuration file" -msgstr "File di configurazione" - -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "Scarica il file di configurazione" - -#: setup/setup_finish.tpl:18 -#, fuzzy -msgid "Status: " -msgstr "Stato" - -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: 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 "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Cerca" - -#: setup/setup_ldap.tpl:25 -#, fuzzy -msgid "LDAP connection" -msgstr "Disconnessione " - -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Nome locazione" - -#: setup/setup_ldap.tpl:37 -#, fuzzy -msgid "Connection URL" -msgstr "Connessione" - -#: setup/setup_ldap.tpl:45 -#, fuzzy -msgid "TLS connection" -msgstr "Connessione" - -#: setup/setup_ldap.tpl:65 -#, fuzzy -msgid "Reload" -msgstr "leggere" +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "Indirizzo principale" -#: setup/setup_ldap.tpl:69 -#, fuzzy -msgid "Authentication" -msgstr "Destinazione" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "DN dell'amministratore" +#: 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 "" -#: setup/setup_ldap.tpl:78 -#, fuzzy -msgid "Select user" -msgstr "Rimuovi" +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" +msgstr "" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Password dell'amministratore" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" +msgstr "" -#: setup/setup_ldap.tpl:101 -#, fuzzy -msgid "Schema based settings" -msgstr "Impostazioni Samba" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" +msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" msgstr "" -#: setup/setup_ldap.tpl:117 -#, fuzzy -msgid "Current status" -msgstr "Stato" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 -#, fuzzy -msgid "GOsa settings 1/3" -msgstr "Opzioni di posta dell'identità" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:76 -#, fuzzy -msgid "GOsa generic settings" -msgstr "Impostazioni generali delle code" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 -#, php-format -msgid "The specified value for '%s' must be a numeric value" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 -#, php-format -msgid "Don't add a trailing comma to '%s'." +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "Ou delle persone" +#: setup/setup_feedback.tpl:123 +#, fuzzy +msgid "Features" +msgstr "Futuro" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "Ou dei gruppi" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" msgstr "" -#: setup/class_setupStep_Config1.inc:134 -msgid "The given password minimum length is not numeric." +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/class_setupStep_Config1.inc:137 -msgid "The given password differ value is not numeric." +#: include/class_SnapShotDialog.inc:90 +#, php-format +msgid "You're about to delete the snapshot '%s'." msgstr "" -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -#, fuzzy -msgid "GOsa settings 2/3" -msgstr "Opzioni di posta dell'identità" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "" -#: setup/class_setupStep_Config2.inc:88 +#: include/class_SnapShotDialog.inc:145 #, fuzzy -msgid "Customize special parameters" -msgstr "Parametro" +msgid "Remove snapshot" +msgstr "Crea estensioni di posta" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" msgstr "" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -#, fuzzy -msgid "LDAP inspection" -msgstr "Ispezione della configurazione PHP" +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, php-format +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." msgstr "" -#: setup/class_setupStep_Migrate.inc:114 -#, fuzzy -msgid "Checking for root object" -msgstr "Controllo il supporto per iconv" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" msgstr "" -#: setup/class_setupStep_Migrate.inc:126 +#: include/class_plugin.inc:1786 #, fuzzy -msgid "Checking for invisible departments" -msgstr "Controllo il supporto per iconv" +msgid "from" +msgstr "e" -#: setup/class_setupStep_Migrate.inc:131 +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 #, fuzzy -msgid "Checking for invisible users" -msgstr "Controllo il supporto per iconv" +msgid "Restore" +msgstr "Riprova" -#: setup/class_setupStep_Migrate.inc:137 +#: include/class_plugin.inc:1994 #, fuzzy -msgid "Checking for super administrator" -msgstr "Controllo la presenza di alcuni programmi addizionali" +msgid "Create snapshot" +msgstr "Crea estensioni di posta" -#: setup/class_setupStep_Migrate.inc:143 +#: include/class_plugin.inc:1995 #, fuzzy -msgid "Checking for users outside the people tree" -msgstr "Controllo il modulo cups" +msgid "Create a new snapshot from this object" +msgstr "Gruppo di oggetti" -#: setup/class_setupStep_Migrate.inc:149 +#: include/class_plugin.inc:2013 #, fuzzy -msgid "Checking for groups outside the groups tree" -msgstr "Controllo il modulo cups" +msgid "cut" +msgstr "Esegui" -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" +#: include/class_plugin.inc:2013 +#, fuzzy +msgid "Cut this entry" +msgstr "Modifica questo record" + +#: include/class_plugin.inc:2021 +msgid "copy" msgstr "" -#: setup/class_setupStep_Migrate.inc:162 +#: include/class_plugin.inc:2021 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Controllo il supporto per %s" +msgid "Copy this entry" +msgstr "Modifica questo record" -#: setup/class_setupStep_Migrate.inc:168 +#: include/class_plugin.inc:2055 #, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Controllo il supporto per %s" +msgid "Copy" +msgstr "Azienda" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 +#: include/class_plugin.inc:2059 #, fuzzy -msgid "LDAP query failed" -msgstr "La query al database è fallita!" +msgid "Cut" +msgstr "Esegui" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +#, fuzzy +msgid "Paste" +msgstr "Data" -#: setup/class_setupStep_Migrate.inc:217 +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Prego inserire un numero di telefono valido!" +msgid "Copy and paste failed!" +msgstr "Nome applicazione" -#: setup/class_setupStep_Migrate.inc:269 +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Prego inserire un numero di telefono valido!" - -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Fallito" +msgid "Cannot set permission for '%s'" +msgstr "Rimuovi" -#: setup/class_setupStep_Migrate.inc:329 +#: include/class_CopyPasteHandler.inc:158 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "'%s' is no vaild LDAP object" msgstr "" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 #, fuzzy -msgid "Migrate" -msgstr "Creare" +msgid "Internal error" +msgstr "Terminal Server" -#: setup/class_setupStep_Migrate.inc:402 +#: include/class_CopyPasteHandler.inc:175 #, fuzzy, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "Non hai il permesso di cambiare la tua password." +msgid "No write permission in '%s'" +msgstr "Rimuovi" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -#, fuzzy -msgid "Move" -msgstr "Dominio" +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:479 +#: include/class_CopyPasteHandler.inc:410 #, php-format -msgid "Found %s user(s) outside the configured tree '%s'." +msgid "This object will be pasted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/class_CopyPasteHandler.inc:508 +#, fuzzy +msgid "Cannot paste" +msgstr "Crea estensioni telefoniche" + +#: include/utils/class_msgPool.inc:15 +#, fuzzy, php-format +msgid "Select to list objects of type '%s'." +msgstr "Gruppo di oggetti" + +#: include/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Mostra gruppi che contengono utenti" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Gruppo di oggetti" + +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" +msgstr "" + +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "This '%s' object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:40 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "This object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Creare" +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Vai al dipartimento base" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Found %s department(s) that will not be visible in GOsa." +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:55 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:63 #, fuzzy -msgid "Password error" -msgstr "La password spira il" +msgid "You have no permission to delete this object!" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 #, fuzzy -msgid "Provided passwords do not match!" -msgstr "Le password nuova e ripetuta non corrispondono" +msgid "You have no permission to delete the object:" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:74 #, fuzzy -msgid "Input error" -msgstr "Errore PHP" +msgid "You have no permission to delete these objects:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:81 +#, fuzzy +msgid "You have no permission to create this object!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#, fuzzy +msgid "You have no permission to create the object:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:92 +#, fuzzy +msgid "You have no permission to create these objects:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:99 +#, fuzzy +msgid "You have no permission to modify this object!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:110 +#, fuzzy +msgid "You have no permission to modify these objects:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#, fuzzy +msgid "You have no permission to view the object:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:128 +#, fuzzy +msgid "You have no permission to view these objects:" +msgstr "Non hai il permesso di cambiare la tua password." + +#: include/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 #, fuzzy -msgid "Specify a valid user ID!" -msgstr "Prego inserire un numero di telefono valido!" +msgid "You have no permission to move the object:" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:1051 -#, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "" +#: include/utils/class_msgPool.inc:146 +#, fuzzy +msgid "You have no permission to move these objects:" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 #, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "Mostra utenti del dipartimento" +msgid "Connection information" +msgstr "Informazioni personali" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:158 +#, fuzzy, php-format +msgid "Cannot connect to %s database!" +msgstr "Impossibile connettersi al server del database!" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "" +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "Impossibile selezionare il database!" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" +#: include/utils/class_msgPool.inc:176 +#, php-format +msgid "No %s server defined!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "Impossibile selezionare il database!" -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" +#: include/utils/class_msgPool.inc:194 +#, php-format +msgid "The field '%s' contains a reserved keyword!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." +#: include/utils/class_msgPool.inc:200 +#, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -#, fuzzy -msgid "Try to create root object" -msgstr "Gruppo di oggetti" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "Il valore specificato per l'UID non è valido." -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:209 +#, php-format +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:211 #, php-format -msgid "Copy '%s' to '%s' failed:" +msgid "'%s' command for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -#, fuzzy -msgid "GOsa settings 3/3" -msgstr "Opzioni di posta dell'identità" +#: include/utils/class_msgPool.inc:213 +#, fuzzy, php-format +msgid "'%s' command (%s) is invalid!" +msgstr "Il valore specificato per l'UID non è valido." -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "Impossibile selezionare il database!" + +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/class_setupStep_Config3.inc:198 -msgid "Session lifetime must be a numeric value!" +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" msgstr "" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Inoltra i messaggi a" +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "Impossibile selezionare il database!" -#: setup/setup_language.tpl:3 -#, fuzzy -msgid "Please select the preferred language" -msgstr "Lingua preferita" +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "Il valore specificato per l'UID è troppo basso." -#: 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." +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "Lingua preferita" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "Il valore specificato per l'UID è troppo basso." -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:247 +#, fuzzy, php-format +msgid "'%s' must be %d or above!" +msgstr "PHP deve essere la versione 4.1.0 o superiore." + +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" 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." +#: include/utils/class_msgPool.inc:260 +#, php-format +msgid "There is already an entry with this '%s' attribute in the system!" msgstr "" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "Indirizzo principale" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "Il campo necessario 'Home directory' non è vuoto" -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" +#: include/utils/class_msgPool.inc:274 +msgid "Example" 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." +#: include/utils/class_msgPool.inc:291 +#, php-format +msgid "The Field '%s' contains invalid characters" msgstr "" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" msgstr "" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" -msgstr "" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +msgstr "Cambia la password" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" +#: include/utils/class_msgPool.inc:295 +#, php-format +msgid "The Field '%s' contains invalid characters!" msgstr "" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Elimina foto" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Salva" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Aggiungi" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Aggiungi" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +msgstr "Rimuovi" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" -msgstr "" +#: include/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "Imposta" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "Modifica" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Modifica contatto" -#: setup/setup_feedback.tpl:123 -#, fuzzy -msgid "Features" -msgstr "Futuro" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Indietro" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "Questa identità non possiede estensioni GOsa." -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:381 +#, fuzzy, php-format +msgid "" +"This account has %s settings enabled. You can disable them by clicking below." +msgstr "Questa identià possiede estensioni Unix." -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, 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." -#: 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" +#: include/utils/class_msgPool.inc:400 +#, fuzzy, php-format +msgid "" +"This account has %s settings disabled. You can enable them by clicking below." +msgstr "Questa identità non possiede estensioni Unix" -#: setup/class_setupStep_Welcome.inc:40 -#, fuzzy -msgid "Welcome to GOsa setup wizard" -msgstr "Benvenuto nel setup di GOsa!" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: setup/setup_config1.tpl:2 -msgid "Look and feel" +#: include/utils/class_msgPool.inc:410 +#, 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." -#: setup/setup_config1.tpl:6 -#, fuzzy -msgid "Theme" -msgstr "Cellulare" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Opzioni applicazione" -#: setup/setup_config1.tpl:15 -#, fuzzy -msgid "Apache" -msgstr "Annulla" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Impostazioni Unix" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" +#: include/utils/class_msgPool.inc:430 +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" -#: setup/setup_config1.tpl:27 -#, fuzzy -msgid "People and group storage" -msgstr "Ou delle persone" - -#: setup/setup_config1.tpl:30 -#, fuzzy -msgid "People DN attribute" -msgstr "Attributo DN delle persone" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Gennaio" -#: setup/setup_config1.tpl:41 -#, fuzzy -msgid "People storage subtree" -msgstr "Ou delle persone" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Febbraio" -#: setup/setup_config1.tpl:50 -#, fuzzy -msgid "Group storage subtree" -msgstr "Ou dei gruppi" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Marzo" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "Aprile" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Maggio" -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "automatico" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Giugno" -#: setup/setup_config1.tpl:113 -#, fuzzy -msgid "Number base for people/groups" -msgstr "UID di base per utenti/gruppi" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Luglio" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Agosto" -#: setup/setup_config1.tpl:140 -#, fuzzy -msgid "Password encryption algorithm" -msgstr "Algoritmo di criptaggio" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "Settembre" -#: setup/setup_config1.tpl:151 -#, fuzzy -msgid "Password restrictions" -msgstr "La password spira il" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Ottobre" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "Novembre" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Dicembre" -#: setup/setup_config1.tpl:182 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Password change hook" -msgstr "Cambia la password" - -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +msgid "Sunday" +msgstr "Cognome" -#: setup/setup_config1.tpl:209 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Use account expiration" -msgstr "L'account spira dopo" +msgid "Monday" +msgstr "mese" -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" msgstr "" -"GOsa supporta numerosi algoritmi di criptaggio per le password. Imposta " -"quello di default." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Wednesday" 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." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" 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." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Friday" 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." - -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Impostazioni Samba" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" 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" - -#: setup/setup_config2.tpl:71 -#, fuzzy -msgid "Timezone" -msgstr "Cellulare" - -#: setup/setup_config2.tpl:74 -#, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "Lingua preferita" - -#: setup/setup_config2.tpl:96 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Additional GOsa settings" -msgstr "Opzioni applicazione" +msgid "read operation" +msgstr "Opzioni di posta" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" msgstr "" -#: setup/setup_config2.tpl:112 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Enable DNS extension" -msgstr "Elimina foto" +msgid "modify operation" +msgstr "Informazioni personali" -#: setup/setup_config2.tpl:124 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Enable DHCP extension" -msgstr "Elimina foto" +msgid "delete operation" +msgstr "Selezione le workstation da aggiungere" -#: setup/setup_config2.tpl:136 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Enable mime type management" -msgstr "Riferimenti" +msgid "search operation" +msgstr "L'account spira dopo" -#: setup/setup_config2.tpl:148 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Enable FAI release management" -msgstr "Riferimenti" +msgid "authentication" +msgstr "Destinazione" -#: setup/setup_config2.tpl:160 -#, fuzzy -msgid "Enable user netatalk plugin" -msgstr "Crea estensioni telefoniche" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "La query al database è fallita!" -#: setup/setup_config2.tpl:171 +#: include/utils/class_msgPool.inc:457 #, fuzzy -msgid "Government mode" -msgstr "nella cartella" +msgid "LDAP operation failed!" +msgstr "La query al database è fallita!" -#: setup/setup_config2.tpl:182 +#: include/utils/class_msgPool.inc:472 #, fuzzy -msgid "Logging options" +msgid "Upload failed!" +msgstr "Nome applicazione" + +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" msgstr "Utenti di Dominio" -#: setup/setup_config2.tpl:186 -#, fuzzy -msgid "Syslog" -msgstr "Log di sitema" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "Errore LDAP" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" +msgstr "" -#: setup/setup_config2.tpl:193 -#, fuzzy -msgid "Mail settings" -msgstr "Opzioni di posta dell'identità" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" +msgstr "" -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "Metodo di amministrazione della posta" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." +msgstr "Nome descrittivo del gruppo" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "Nome descrittivo del gruppo" + +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" msgstr "" -#: setup/setup_config2.tpl:227 -#, fuzzy -msgid "Vacation templates" -msgstr "Messaggio di di risposta automatica" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Rimuovi" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Rimuovi" + +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "Rimuovi" + +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Vai al dipartimento base" + +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Rimuovi" + +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Controllo il supporto per iconv" + +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config2.tpl:253 -#, fuzzy -msgid "Snapshots / Undo" -msgstr "Nome applicazione" +#: 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 "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -#, fuzzy -msgid "Enable snapshots" -msgstr "Crea estensioni di posta" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." +msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -#, fuzzy -msgid "Snapshot base" -msgstr "Nome applicazione" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Vai al dipartimento base" -#: setup/setup_config3.tpl:2 -#, fuzzy -msgid "GOsa core settings" -msgstr "Opzioni di posta dell'identità" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Root" -#: setup/setup_config3.tpl:6 -#, fuzzy -msgid "Disable primary group filter" -msgstr "Mostra gruppi di utenti" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Sali di dipartimento" -#: setup/setup_config3.tpl:18 -#, fuzzy -msgid "Display summary in listings" -msgstr "Mosra gruppi corrispondenti a" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Vai agli utenti del dipartimento" -#: setup/setup_config3.tpl:30 -#, fuzzy -msgid "Honour administrative units" -msgstr "Amministrazione dei gruppi di utenti" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Home" -#: setup/setup_config3.tpl:42 -#, fuzzy -msgid "Smarty compile directory" -msgstr "Home directory" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" msgstr "" -#: setup/setup_config3.tpl:60 -#, fuzzy -msgid "Path for PPD storage" -msgstr "Algorimo password" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config3.tpl:77 -#, fuzzy -msgid "Path for kiosk profile storage" -msgstr "Opzioni di posta dell'identità" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" +msgstr "" + +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "" + +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" +msgstr "" + +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" +msgstr "" + +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" +msgstr "" + +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" +msgstr "" + +#: include/class_ldap.inc:768 +#, fuzzy, php-format +msgid "while operating on '%s' using LDAP server '%s'" +msgstr "Errore durante la connessione al server LDAP. Il server dice: '%s'" + +#: include/class_ldap.inc:770 +#, 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:992 +#, php-format +msgid "" +"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " +"in line %s" +msgstr "" -#: setup/setup_config3.tpl:96 -msgid "Override sudo role ou" +#: include/class_ldap.inc:1021 +#, php-format +msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" msgstr "" -#: setup/setup_config3.tpl:115 -#, fuzzy -msgid "Mail queue script" -msgstr "Script path" +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" +msgstr "" -#: setup/setup_config3.tpl:134 +#: include/class_config.inc:242 #, fuzzy -msgid "Notification script" -msgstr "Non ci sono certificati installati" - -#: setup/setup_config3.tpl:153 -msgid "Enable edit locking" +msgid "Cannot bind to LDAP. Please contact the system administrator." msgstr "" +"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: setup/setup_config3.tpl:172 -msgid "Login and session" +#: include/class_config.inc:574 +msgid "SID and/or RIDBASE missing in the configuration!" msgstr "" -#: setup/setup_config3.tpl:175 +#: include/class_config.inc:878 #, fuzzy -msgid "Login attribute" -msgstr "Attributo DN delle persone" +msgid "Configuration" +msgstr "File di configurazione" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" msgstr "" -#: setup/setup_config3.tpl:210 -msgid "Warn if session is not encrypted" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" msgstr "" -#: setup/setup_config3.tpl:222 +#: include/class_gosaSupportDaemon.inc:851 #, fuzzy -msgid "Remember dialog filter settings" -msgstr "Impostazioni generali delle code" +msgid "Cannot not parse XML!" +msgstr "Troppi utenti non posso allocare un ID libero!" -#: setup/setup_config3.tpl:234 -#, fuzzy -msgid "Session lifetime" -msgstr "Rilevato un conflitto di sessione" +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Rimuovi" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/class_gosaSupportDaemon.inc:1197 +#, php-format +msgid "Cannot remove entry %s!" msgstr "" -#: setup/setup_config3.tpl:247 +#: include/class_multi_plug.inc:362 +msgid "You are currently editing mutliple entries." +msgstr "" + +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Show PHP errors" -msgstr "Errore PHP" +msgid "Password reset" +msgstr "La password spira il" -#: setup/setup_config3.tpl:259 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Maximum LDAP query time" -msgstr "Inoltra i messaggi a" +msgid "The user password was resetted, please set a new password value!" +msgstr "Non hai il permesso di cambiare la tua password." -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" msgstr "" -#: setup/setup_config3.tpl:289 -#, fuzzy -msgid "Debug level" -msgstr "Rimuovi" - -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -#, fuzzy -msgid "Disabled" -msgstr "disabilitato" +#: include/class_tabs.inc:373 +msgid "References" +msgstr "Riferimenti" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +#: include/class_baseSelectDialog.inc:44 #, fuzzy -msgid "Enabled" -msgstr "disabilitato" +msgid "Choose a base" +msgstr "Rimuovi" -#: setup/setup_migrate.tpl:5 +#: include/class_baseSelectDialog.inc:55 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." +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -#: setup/setup_migrate.tpl:33 +#: include/class_baseSelectDialog.inc:61 #, fuzzy -msgid "Check again" -msgstr "Continua" +msgid "Use" +msgstr "Utenti" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" -msgstr "" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Azione" -#: setup/setup_migrate.tpl:39 -msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" -msgstr "" +#: include/class_baseSelectDialog.inc:72 +#, fuzzy +msgid "Filter entries with this syntax" +msgstr "Mostra gli indirizzi che corrispondono" -#: 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_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "Rimuovi" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" +#: include/functions_helpviewer.inc:45 +#, php-format +msgid "XML error in guide.xml: %s at line %d" msgstr "" -#: setup/setup_migrate.tpl:72 -#, fuzzy -msgid "Move selected workstations" -msgstr "Selezione le workstation da aggiungere" - -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." msgstr "" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" 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." +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" 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." +#: include/functions_helpviewer.inc:389 +#, php-format +msgid "%s results for your search with the keyword %s" msgstr "" -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" +#: 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" - -#: 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" - -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" 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." +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" 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." +#: include/php_setup.inc:100 +msgid "Send bugreport" msgstr "" -#: setup/setup_migrate.tpl:148 -#, fuzzy -msgid "Move selected users into this people tree" -msgstr "Nuovo template" - -#: setup/setup_migrate.tpl:199 -msgid "Abort" +#: include/php_setup.inc:105 +msgid "Toggle information" msgstr "" -#: 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/php_setup.inc:115 +msgid "PHP error" +msgstr "Errore PHP" -#: setup/setup_migrate.tpl:233 -#, fuzzy -msgid "Password (again)" -msgstr "Algorimo password" +#: include/php_setup.inc:134 +msgid "class" +msgstr "classe" -#: 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/php_setup.inc:140 +msgid "function" +msgstr "funzione" -#: 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/php_setup.inc:145 +msgid "static" +msgstr "statico" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -#, fuzzy -msgid "Current" -msgstr "Password attuale" +#: include/php_setup.inc:149 +msgid "method" +msgstr "metodo" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -#, fuzzy -msgid "After migration" -msgstr "Amministrazione utenti" +#: include/php_setup.inc:182 +msgid "Trace" +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." +#: include/php_setup.inc:183 +msgid "File" msgstr "" -#: setup/setup_frame.tpl:12 -#, fuzzy -msgid "GOsa setup wizard" -msgstr "Opzioni di posta dell'identità" +#: include/php_setup.inc:183 +msgid "Line" +msgstr "" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Installation" -msgstr "Amministrazione" +#: include/php_setup.inc:183 +msgid "Type" +msgstr "Tipo" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Steps" -msgstr "Sistemi" +#: include/php_setup.inc:184 +msgid "Arguments" +msgstr "Argomenti" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +#: include/class_pluglist.inc:56 #, fuzzy -msgid "LDAP schema check" -msgstr "Server" +msgid "All objects in this category" +msgstr "Nome descrittivo del gruppo" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" msgstr "" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +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?" -#: setup/class_setupStep_Checks.inc:64 +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Utenti di Dominio" + +#: include/class_log.inc:107 #, fuzzy -msgid "Checking PHP version" -msgstr "Controllo della versione di PHP (>=4.1.0)" +msgid "MySQL error" +msgstr "Errore LDAP" -#: setup/class_setupStep_Checks.inc:65 +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" +msgstr "" + +#: include/class_log.inc:120 #, fuzzy, php-format -msgid "PHP must be of version %s or above." -msgstr "PHP deve essere la versione 4.1.0 o superiore." +msgid "Invalid option '%s' specified!" +msgstr "L'uid contiene dei caratteri invalidi!" -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." -msgstr "" +#: include/class_log.inc:124 +#, fuzzy +msgid "Specified objectType is empty or invalid!" +msgstr "Il valore specificato per l'UID non è valido." -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" msgstr "" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." -msgstr "" +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +msgstr "Impossibile connettersi al server del database!" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:125 +#, php-format +msgid "" +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." -msgstr "" +#: include/functions.inc:335 +#, 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_Checks.inc:112 +#: include/functions.inc:397 #, fuzzy -msgid "mbstring" -msgstr "Impostazioni Samba" - -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." +msgid "Username / UID is not unique inside the LDAP tree!" msgstr "" +"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: setup/class_setupStep_Checks.inc:121 +#: include/functions.inc:467 #, fuzzy msgid "" -"GOsa requires this module to communicate with several supported databases." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona " -"correttamente anche senza." +"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/class_setupStep_Checks.inc:129 -#, fuzzy +#: include/functions.inc:622 +#, fuzzy, php-format msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" msgstr "" -"Queso modulo serve a leggere i report di GOfax dal database.GOsa funziona " -"correttamente anche senza." +"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" +#: include/functions.inc:622 +#, php-format +msgid "LDAP server returned: %s" msgstr "" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:716 +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." msgstr "" -#: setup/class_setupStep_Checks.inc:148 -msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" msgstr "" -#: setup/class_setupStep_Checks.inc:158 -#, fuzzy +#: include/functions.inc:1015 +#, php-format 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." +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" 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:159 +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "incompleto" + +#: include/functions.inc:1311 #, 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 "Continue anyway" +msgstr "Continua" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:1313 +#, fuzzy +msgid "Edit anyway" +msgstr "Modifica contatto" + +#: include/functions.inc:1315 +#, 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:1499 +msgid "Entries per page" msgstr "" -#: setup/class_setupStep_Checks.inc:168 -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:1527 +msgid "Apply filter" msgstr "" -#: setup/class_setupStep_Checks.inc:169 -#, fuzzy -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" 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:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "versione di sviluppo di GOsa (Rev %s)" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." msgstr "" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:1936 include/functions.inc:1956 #, 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 "Cannot write to revision file!" +msgstr "Rimuovi" + +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" 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:178 +#: include/functions.inc:2230 #, fuzzy -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +msgid "LDAP warning" +msgstr "Amministrazione LDAP" + +#: include/functions.inc:2230 +msgid "Cannot get schema information from server. No schema check possible!" 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:185 -#, 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." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." 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:186 +#: include/functions.inc:2263 msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." +msgstr "" + +#: include/functions.inc:2306 +#, fuzzy, php-format +msgid "Missing required object class '%s'!" +msgstr "Lista dei dipartimenti" + +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" +msgstr "" + +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:193 -#, fuzzy -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -"Per motivi di performance è consigliato di impostare l'opzione " -"implicit_flush su 'off' nel file php.ini." -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" msgstr "" -#: setup/class_setupStep_Checks.inc:201 -#, fuzzy -msgid "The Execution time should be at least 30 seconds." +#: include/functions.inc:2342 +msgid "" +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." 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:202 +#: include/functions.inc:2343 msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -#: setup/class_setupStep_Checks.inc:209 -#, fuzzy +#: include/functions.inc:2347 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." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." msgstr "" -"Per motivi di sicurezza è consigliato di impostare l'opzione expose_php su " -"'off' nel file php.ini." -#: setup/class_setupStep_Checks.inc:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:216 -#, fuzzy -msgid "On" -msgstr "Opzioni" +#: include/functions.inc:2371 +msgid "German" +msgstr "Tedesco" -#: setup/class_setupStep_Checks.inc:217 -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." +#: include/functions.inc:2372 +msgid "French" +msgstr "Francese" -#: setup/class_setupStep_Checks.inc:218 -#, 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'" +#: include/functions.inc:2373 +msgid "Italian" +msgstr "Italiano" -#: setup/class_setupStep_Checks.inc:225 -#, 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." +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Spagnolo" -#: setup/class_setupStep_Checks.inc:226 +#: include/functions.inc:2375 +msgid "English" +msgstr "Inglese" + +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Tedesco" + +#: include/functions.inc:2377 #, fuzzy -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +msgid "Polish" +msgstr "Inglese" + +#: include/functions.inc:2378 +msgid "Swedish" 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:236 +#: include/functions.inc:2379 #, fuzzy -msgid "Configuration writeable" -msgstr "File di configurazione" +msgid "Chinese" +msgstr "reset" -#: setup/class_setupStep_Checks.inc:237 -#, fuzzy -msgid "The configuration file can't be written" -msgstr "File di configurazione" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Russo" -#: setup/class_setupStep_Checks.inc:238 +#: include/functions.inc:2561 #, 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_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." +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." msgstr "" -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/setup_welcome.tpl:11 +#: include/class_acl.inc:26 #, fuzzy -msgid "Create a basic, single site configuration" -msgstr "Scarica il file di configurazione" +msgid "Access control" +msgstr "Opzioni di accesso" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" +#: include/class_acl.inc:207 +msgid "Reset ACLs" msgstr "" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "" +#: include/class_acl.inc:489 +#, fuzzy +msgid "No ACL settings for this category!" +msgstr "Nome descrittivo del gruppo" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" msgstr "" -#: setup/setup_welcome.tpl:20 +#: include/class_acl.inc:496 include/class_acl.inc:497 #, fuzzy -msgid "Find every possible configuration error" -msgstr "File di configurazione" +msgid "category ACL" +msgstr "classe" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" +#: include/class_acl.inc:543 +#, php-format +msgid "Edit ACL for '%s' - scope is '%s'" msgstr "" -#: setup/setup_welcome.tpl:25 +#: include/class_acl.inc:698 include/class_acl.inc:705 #, fuzzy -msgid "To continue..." -msgstr "Configurazione continua..." +msgid "Show/hide advanced settings" +msgstr "Opzioni di posta avanzate" -#: 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:723 +#, fuzzy +msgid "Create objects" +msgstr "Gruppo di oggetti" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "" +#: include/class_acl.inc:724 +#, fuzzy +msgid "Move objects" +msgstr "Oggetti membri" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "" +#: include/class_acl.inc:725 +#, fuzzy +msgid "Remove objects" +msgstr "Oggetti membri" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." +#: include/class_acl.inc:727 +msgid "Modifyable by owner" msgstr "" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." -msgstr "" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "leggere" -#: setup/setup_checks.tpl:67 -#, fuzzy -msgid "PHP setup configuration" -msgstr "Scarica il file di configurazione" +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "scrivere" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:743 #, fuzzy -msgid "show information" -msgstr "Informazioni personali" +msgid "Complete object" +msgstr "Gruppo di oggetti" -#: setup/setup_schema.tpl:3 -#, fuzzy -msgid "Schema specific settings" -msgstr "Impostazioni Samba" +#: include/class_acl.inc:879 +#, php-format +msgid "Unkown ACL type '%s'!" +msgstr "" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" msgstr "" -#: setup/setup_schema.tpl:16 -#, fuzzy -msgid "Check status" -msgstr "Stato" +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, fuzzy, php-format +msgid "Role: %s" +msgstr "Ruolo" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" +#: include/class_acl.inc:984 +msgid "unknown role" msgstr "" -#: setup/setup_schema.tpl:23 -#, fuzzy -msgid "Schema check failed" -msgstr "Server" +#: include/class_acl.inc:992 +#, fuzzy, php-format +msgid "Contains settings for these objects: %s" +msgstr "Nome descrittivo del gruppo" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "Membri" -#: 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!" +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "" +#: include/class_acl.inc:1177 +#, fuzzy +msgid "Access control list" +msgstr "Opzioni di accesso" + +#: include/class_acl.inc:1182 +#, fuzzy +msgid "ACL roles" +msgstr "ACL" + +#: include/class_acl.inc:1185 +#, fuzzy +msgid "Role name" +msgstr "Cognome" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "" +#: include/class_acl.inc:1186 +#, fuzzy +msgid "Role description" +msgstr "Descrizoione unità" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: include/class_certificate.inc:73 +#, fuzzy +msgid "Certificate is empty!" +msgstr "Certificati" + +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -#: html/setup.php:66 +#: include/class_certificate.inc:115 #, fuzzy -msgid "Smarty" -msgstr "Avvio" +msgid "Cannot extract information for non PEM certificates!" +msgstr "Rimuovi" -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "" +#: include/class_certificate.inc:219 +#, fuzzy +msgid "No valid certificate loaded!" +msgstr "Non ci sono certificati installati" -#: html/password.php:58 html/index.php:142 -#, fuzzy, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "Il file di configurazione di GOsa %s/gosa.conf non è legibile." +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "Non hai il permesso di cambiare la tua password." -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "Password" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Password" -#: html/password.php:232 -msgid "You have no permissions to change your password." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here 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:" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "Rilevato un conflitto di accesso" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." +#: 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 "" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" msgstr "" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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 "" -#: html/main.php:172 +#: ihtml/themes/default/logout.tpl:10 #, fuzzy -msgid "PHP configuration" -msgstr "Scarica il file di configurazione" +msgid "Sign in again" +msgstr "Entra" -#: html/main.php:173 -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." +#: ihtml/themes/default/acl.tpl:31 +#, fuzzy +msgid "Additional filter options" +msgstr "Opzioni applicazione" + +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" msgstr "" -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:361 -#, fuzzy -msgid "Your password is about to expire, please change your password!" -msgstr "Non hai il permesso di cambiare la tua password." +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Plugin" -msgstr "Ricerca" - -#: html/main.php:371 -#, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "" +msgid "ACL for this object" +msgstr "Controllo il supporto per iconv" -#: html/index.php:57 +#: ihtml/themes/default/acl.tpl:113 #, fuzzy -msgid "Session is not encrypted!" -msgstr "Rilevato un conflitto di sessione" +msgid "Available roles" +msgstr "Applicazioni disponibili" -#: html/index.php:64 +#: ihtml/themes/default/remove.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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 "" -#: html/index.php:167 +#: ihtml/themes/default/snapshotdialog.tpl:3 #, fuzzy -msgid "Smarty error" -msgstr "Stato" +msgid "Restoring object snapshots" +msgstr "Gruppo di oggetti" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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 "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: 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 "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +msgid "There is no snapshot available that could be restored" msgstr "" -#: html/index.php:283 -msgid "Your LDAP setup contains old schema definitions:" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -#: html/index.php:304 -msgid "Please specify a valid username!" +#: ihtml/themes/default/snapshotdialog.tpl:49 +#, fuzzy +msgid "Creating object snapshots" +msgstr "Gruppo di oggetti" + +#: 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 "" -#: html/index.php:307 -msgid "Please specify your password!" +#: 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 "" -#: html/index.php:319 +#: ihtml/themes/default/snapshotdialog.tpl:70 #, fuzzy -msgid "Authentication error" -msgstr "Destinazione" +msgid "Timestamp" +msgstr "Timeout" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" msgstr "" -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" +#: 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 "" -"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:6 +msgid "Please choose the way to react for this session" +msgstr "" + +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" +msgstr "" + +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" #: ihtml/themes/default/copyPasteDialog.tpl:1 @@ -6052,17 +6067,6 @@ msgstr "" msgid "Index" msgstr "" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -msgstr "Rilevato un conflitto di accesso" - -#: 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 "" - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Principale" @@ -6077,48 +6081,50 @@ msgstr "Termina la sessione" #: ihtml/themes/default/framework.tpl:29 msgid "Signed in:" -msgstr "Connesso:" - -#: ihtml/themes/default/framework.tpl:32 -msgid "GOsa main menu" -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 "" - -#: ihtml/themes/default/acl.tpl:31 -#, fuzzy -msgid "Additional filter options" -msgstr "Opzioni applicazione" +msgstr "Connesso:" -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" +#: ihtml/themes/default/framework.tpl:32 +msgid "GOsa main menu" msgstr "" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" +#: ihtml/themes/default/logout-close.tpl:5 +msgid "Your GOsa session has been closed!" msgstr "" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: 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 "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:107 +#: ihtml/themes/default/login.tpl:27 #, fuzzy -msgid "ACL for this object" -msgstr "Controllo il supporto per iconv" +msgid "Login screen" +msgstr "Utenti di Dominio" -#: ihtml/themes/default/acl.tpl:113 +#: ihtml/themes/default/login.tpl:34 #, fuzzy -msgid "Available roles" -msgstr "Applicazioni disponibili" +msgid "" +"Please use your username and your password to log into the site " +"administration system." +msgstr "Usa il tuo nome utente e password per connetterti" + +#: 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" + +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Entra" + +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Clicca qui per connetterti" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6163,11 +6169,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Directory" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -6178,160 +6179,162 @@ msgstr "Nuova password" msgid "Change" msgstr "Annulla" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -#, fuzzy -msgid "Click here to change your password" -msgstr "Non hai il permesso di cambiare la tua password." - -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: ihtml/themes/default/login.tpl:27 +#: html/main.php:172 #, fuzzy -msgid "Login screen" -msgstr "Utenti di Dominio" +msgid "PHP configuration" +msgstr "Scarica il file di configurazione" -#: ihtml/themes/default/login.tpl:34 -#, fuzzy +#: html/main.php:173 msgid "" -"Please use your username and your password to log into the site " -"administration system." -msgstr "Usa il tuo nome utente e password per connetterti" +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." +msgstr "" -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Entra" +#: html/main.php:218 +msgid "Running out of memory!" +msgstr "" -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Clicca qui per connetterti" +#: html/main.php:292 +msgid "User ACL checks disabled" +msgstr "" -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" +#: html/main.php:361 +#, 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:370 +#, fuzzy +msgid "Plugin" +msgstr "Ricerca" + +#: html/main.php:371 +#, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" msgstr "" -#: ihtml/themes/default/logout.tpl:7 +#: html/index.php:57 +#, fuzzy +msgid "Session is not encrypted!" +msgstr "Rilevato un conflitto di sessione" + +#: html/index.php:64 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." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/logout.tpl:10 +#: html/index.php:142 html/password.php:58 +#, 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/index.php:167 #, fuzzy -msgid "Sign in again" -msgstr "Entra" +msgid "Smarty error" +msgstr "Stato" -#: 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." +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" msgstr "" -#: ihtml/themes/default/sizelimit.tpl:6 -msgid "Please choose the way to react for this session" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" msgstr "" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" 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" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" msgstr "" -#: ihtml/themes/default/logout-close.tpl:5 -msgid "Your GOsa session has been closed!" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" 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." +#: html/index.php:283 +msgid "Your LDAP setup contains old schema definitions:" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "Non hai il permesso di cambiare la tua password." +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 -#, fuzzy -msgid "Old password" -msgstr "Password" +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 +#: html/index.php:319 #, fuzzy -msgid "Verify password" -msgstr "Password" +msgid "Authentication error" +msgstr "Destinazione" -#: ihtml/themes/default/snapshotdialog.tpl:3 +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" +msgstr "" + +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "" + +#: html/index.php:375 #, fuzzy -msgid "Restoring object snapshots" -msgstr "Gruppo di oggetti" +msgid "Account locked. Please contact your system administrator!" +msgstr "" +"Errore di connessione al server LDAP. Contatta l'amministratore del sistema." -#: 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." +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." 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)." +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:12 +#: html/index.php:426 msgid "" -"Don't forget to check references to other objects, for example does the " -"selected printer still exists ?" +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 -msgid "There is no snapshot available that could be restored" +#: html/password.php:163 +msgid "Error: Password method not available!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" -msgstr "" +#: html/password.php:232 +msgid "You have no permissions to change your password." +msgstr "Non hai il permesso di cambiare la tua password." -#: ihtml/themes/default/snapshotdialog.tpl:49 -#, fuzzy -msgid "Creating object snapshots" -msgstr "Gruppo di oggetti" +#: html/password.php:253 +msgid "External password changer reported a problem: " +msgstr "Il programma esterno per cambiare la password ha avuto un problema:" -#: 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." +#: html/helpviewer.php:70 +msgid "Help browser" 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." +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:70 -#, fuzzy -msgid "Timestamp" -msgstr "Timeout" - -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." msgstr "" +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Avvio" + #, fuzzy #~ msgid "Move object" #~ msgstr "Oggetti membri" diff --git a/gosa-core/locale/core/messages.po b/gosa-core/locale/core/messages.po index e881aad04..dfc83e773 100644 --- a/gosa-core/locale/core/messages.po +++ b/gosa-core/locale/core/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,81 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "" + +#: plugins/personal/password/nochange.tpl:6 +msgid "You have no permission to change your password at this time" +msgstr "" + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +msgid "Password settings" +msgstr "" + +#: 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/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 "" + +#: 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 "" + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "" + +#: plugins/personal/password/password.tpl:23 +#: plugins/personal/generic/password.tpl:11 +#: plugins/admin/users/password.tpl:17 +msgid "Repeat new password" +msgstr "" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +msgid "Password strength" +msgstr "" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "" @@ -38,8 +108,8 @@ msgstr "" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 msgid "Password change" msgstr "" @@ -88,5449 +158,5392 @@ msgid "User password" msgstr "" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "" - -#: plugins/personal/password/nochange.tpl:6 -msgid "You have no permission to change your password at this time" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" 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." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" 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." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" msgstr "" -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" +#: plugins/personal/generic/class_user.inc:38 +msgid "Edit organizational user settings" msgstr "" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" msgstr "" -#: plugins/personal/password/password.tpl:23 -#: plugins/personal/generic/password.tpl:11 -#: plugins/admin/users/password.tpl:17 -msgid "Repeat new password" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" msgstr "" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -msgid "Password strength" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" msgstr "" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" msgstr "" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" +#: plugins/personal/generic/class_user.inc:503 +msgid "Serial number" msgstr "" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." -msgstr "" - -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -msgid "Password settings" -msgstr "" - -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" +#: plugins/personal/generic/class_user.inc:558 +#, php-format +msgid "Certificate is valid from %s to %s and is currently %s." msgstr "" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +msgid "Password method" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" +#: plugins/personal/generic/class_user.inc:592 +msgid "The selected password method is no longer available." msgstr "" -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" +#: plugins/personal/generic/class_user.inc:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 +msgid "LDAP error" msgstr "" -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -msgid "Search in subtrees" +#: plugins/personal/generic/class_user.inc:1149 +msgid "The selected password method requires initial configuration!" msgstr "" -#: plugins/personal/posix/posix_shadow.tpl:9 -msgid "User must change password on first login" +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" msgstr "" -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" msgstr "" -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" msgstr "" -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" msgstr "" -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" msgstr "" -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" msgstr "" -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" 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!)" +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" msgstr "" -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" +#: plugins/personal/generic/class_user.inc:1336 +msgid "Cannot open certificate!" msgstr "" -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" msgstr "" -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" msgstr "" -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" msgstr "" -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" msgstr "" -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" msgstr "" -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" msgstr "" -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" msgstr "" -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -msgid "In all groups" +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" msgstr "" -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -msgid "Not in all groups" +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" msgstr "" -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" msgstr "" -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" msgstr "" -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:38 -msgid "Edit users POSIX settings" +#: plugins/personal/generic/class_user.inc:1487 +msgid "Generic user settings" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:154 -msgid "expired" +#: plugins/personal/generic/class_user.inc:1492 +#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 +msgid "Users" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" +#: plugins/personal/generic/class_user.inc:1498 +msgid "Surename" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:159 -msgid "password not changable" +#: plugins/personal/generic/class_user.inc:1500 +msgid "User identification" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:161 -msgid "password expired" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" +#: plugins/personal/generic/class_user.inc:1503 +msgid "Home postal address" 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" +#: plugins/personal/generic/class_user.inc:1504 +msgid "Home phone number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:465 -#, php-format -msgid "Password can't be changed up to %s days after last change" +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:469 -#, php-format -msgid "Password must be changed after %s days" +#: plugins/personal/generic/class_user.inc:1509 +msgid "Gender" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:473 -#, php-format -msgid "Disable account after %s days of inactivity after password expiery" +#: plugins/personal/generic/class_user.inc:1510 +msgid "Preferred language" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:477 -#, php-format -msgid "Warn user %s days before password expiery" +#: plugins/personal/generic/class_user.inc:1511 +msgid "Department number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" +#: plugins/personal/generic/class_user.inc:1512 +msgid "Employee number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -msgid "LDAP error" +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" +#: plugins/personal/generic/class_user.inc:1517 +msgid "Room number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" +#: plugins/personal/generic/class_user.inc:1518 +msgid "Telefon number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" +#: plugins/personal/generic/class_user.inc:1519 +msgid "Mobile number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -msgid "shadowMin" +#: plugins/personal/generic/class_user.inc:1520 +msgid "Pager number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -msgid "shadowMax" +#: plugins/personal/generic/class_user.inc:1521 +msgid "User certificates" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -msgid "shadowWarning" +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -msgid "shadowInactive" +#: plugins/personal/generic/class_user.inc:1524 +msgid "Fax number" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 #: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -msgid "Cannot allocate a free ID!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -msgid "POSIX account" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -msgid "Group ID" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -msgid "Force password change on login" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -msgid "Shadow min" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -msgid "Shadow warning" +msgid "You have no permission to set your password!" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1513 -msgid "Shadow inactive" +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1514 -msgid "Shadow expire" +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" msgstr "" -#: plugins/personal/posix/class_posixAccount.inc:1515 -msgid "System trust model" +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" msgstr "" -#: plugins/personal/posix/main.inc:131 -msgid "POSIX settings" +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" 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." +#: 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 "" -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" +#: plugins/personal/generic/generic.tpl:62 +msgid "Template name" msgstr "" -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:33 #: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 msgid "Preferred langage" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:53 #: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 msgid "Choose subtree to place user in" msgstr "" +#: plugins/personal/generic/generic.tpl:180 #: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 msgid "Select a base" 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:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 #: plugins/admin/departments/generic.tpl:76 #: plugins/admin/departments/class_departmentGeneric.inc:551 msgid "Address" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:78 #: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 msgid "Private phone" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:105 #: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 msgid "Password storage" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "" + #: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 #: plugins/personal/generic/generic_certs.tpl:3 msgid "Certificates" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:121 #: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 msgid "Edit certificates" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:137 #: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 msgid "Organizational information" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:169 #: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 msgid "Department No." msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:179 #: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 msgid "Employee No." msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 #: plugins/personal/generic/generic.tpl:323 #: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 msgid "Room No." msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "" - -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" +#: 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 "" -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: plugins/admin/groups/group_objects.tpl:40 +msgid "Choose the department the search will be based on" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 -msgid "Last name" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 +msgid "Search in subtrees" msgstr "" -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" msgstr "" -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" 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" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" msgstr "" -#: plugins/personal/generic/generic.tpl:62 -msgid "Template name" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" msgstr "" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" +#: plugins/personal/posix/main.inc:131 +msgid "POSIX settings" msgstr "" -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" msgstr "" -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" msgstr "" -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" msgstr "" -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" msgstr "" -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" msgstr "" -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" msgstr "" -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" msgstr "" -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" msgstr "" -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" msgstr "" -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 +msgid "In all groups" msgstr "" -#: plugins/personal/generic/class_user.inc:38 -msgid "Edit organizational user settings" +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 +msgid "Not in all groups" msgstr "" -#: plugins/personal/generic/class_user.inc:304 -msgid "female" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" msgstr "" -#: plugins/personal/generic/class_user.inc:304 -msgid "male" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" msgstr "" -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" msgstr "" -#: plugins/personal/generic/class_user.inc:503 -msgid "Serial number" +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" msgstr "" -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" +#: plugins/personal/posix/class_posixAccount.inc:38 +msgid "Edit users POSIX settings" msgstr "" -#: plugins/personal/generic/class_user.inc:558 -#, php-format -msgid "Certificate is valid from %s to %s and is currently %s." +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" msgstr "" -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" msgstr "" -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" msgstr "" -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" +#: plugins/personal/posix/class_posixAccount.inc:159 +msgid "password not changable" msgstr "" -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -msgid "Password method" +#: plugins/personal/posix/class_posixAccount.inc:161 +msgid "password expired" msgstr "" -#: plugins/personal/generic/class_user.inc:592 -msgid "The selected password method is no longer available." +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" msgstr "" -#: plugins/personal/generic/class_user.inc:1149 -msgid "The selected password method requires initial configuration!" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" msgstr "" -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "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 "" -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" msgstr "" -#: plugins/personal/generic/class_user.inc:1336 -msgid "Cannot open certificate!" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" msgstr "" -#: plugins/personal/generic/class_user.inc:1487 -msgid "Generic user settings" +#: plugins/personal/posix/class_posixAccount.inc:465 +#, php-format +msgid "Password can't be changed up to %s days after last change" msgstr "" -#: plugins/personal/generic/class_user.inc:1492 -#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 -msgid "Users" +#: plugins/personal/posix/class_posixAccount.inc:469 +#, php-format +msgid "Password must be changed after %s days" msgstr "" -#: plugins/personal/generic/class_user.inc:1498 -msgid "Surename" +#: plugins/personal/posix/class_posixAccount.inc:473 +#, php-format +msgid "Disable account after %s days of inactivity after password expiery" msgstr "" -#: plugins/personal/generic/class_user.inc:1500 -msgid "User identification" +#: plugins/personal/posix/class_posixAccount.inc:477 +#, php-format +msgid "Warn user %s days before password expiery" msgstr "" -#: plugins/personal/generic/class_user.inc:1503 -msgid "Home postal address" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" msgstr "" -#: plugins/personal/generic/class_user.inc:1504 -msgid "Home phone number" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" msgstr "" -#: plugins/personal/generic/class_user.inc:1509 -msgid "Gender" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" msgstr "" -#: plugins/personal/generic/class_user.inc:1510 -msgid "Preferred language" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" msgstr "" -#: plugins/personal/generic/class_user.inc:1511 -msgid "Department number" +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" msgstr "" -#: plugins/personal/generic/class_user.inc:1512 -msgid "Employee number" +#: plugins/personal/posix/class_posixAccount.inc:910 +msgid "" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" msgstr "" -#: plugins/personal/generic/class_user.inc:1517 -msgid "Room number" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" msgstr "" -#: plugins/personal/generic/class_user.inc:1518 -msgid "Telefon number" +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 +msgid "shadowMin" msgstr "" -#: plugins/personal/generic/class_user.inc:1519 -msgid "Mobile number" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +msgid "shadowMax" msgstr "" -#: plugins/personal/generic/class_user.inc:1520 -msgid "Pager number" +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 +msgid "shadowWarning" msgstr "" -#: plugins/personal/generic/class_user.inc:1521 -msgid "User certificates" +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 +msgid "shadowInactive" msgstr "" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +msgid "Cannot allocate a free ID!" msgstr "" -#: plugins/personal/generic/class_user.inc:1524 -msgid "Fax number" +#: plugins/personal/posix/class_posixAccount.inc:1494 +msgid "POSIX account" msgstr "" -#: plugins/personal/generic/main.inc:104 -msgid "You have no permission to set your password!" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" msgstr "" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" +#: plugins/personal/posix/class_posixAccount.inc:1507 +msgid "Group ID" msgstr "" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" +#: plugins/personal/posix/class_posixAccount.inc:1509 +msgid "Force password change on login" msgstr "" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" +#: plugins/personal/posix/class_posixAccount.inc:1510 +msgid "Shadow min" msgstr "" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" +#: plugins/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" msgstr "" -#: plugins/admin/acl/tabs_acl_role.inc:28 -msgid "ACL Templates" +#: plugins/personal/posix/class_posixAccount.inc:1512 +msgid "Shadow warning" msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -msgid "Manage access control lists" +#: plugins/personal/posix/class_posixAccount.inc:1513 +msgid "Shadow inactive" msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -msgid "Permission error" +#: plugins/personal/posix/class_posixAccount.inc:1514 +msgid "Shadow expire" msgstr "" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -msgid "Permission" +#: plugins/personal/posix/class_posixAccount.inc:1515 +msgid "System trust model" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -msgid "List of acls" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix_shadow.tpl:9 +msgid "User must change password on first login" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" msgstr "" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:84 -msgid "Display acls matching" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" +#: plugins/generic/references/contents.tpl:18 +msgid "This object has no relationship to other objects." msgstr "" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "" + +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:215 -msgid "Edit acl role" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:223 -msgid "Delete acl role" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:242 -msgid "Edit acl" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" msgstr "" -#: plugins/admin/acl/class_divListACL.inc:246 -msgid "Delete acl" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" 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." +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" 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." +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" msgstr "" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 -msgid "ACL management" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" msgstr "" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" +#: 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 "" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" +#: 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 "" -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" msgstr "" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -msgid "New ACL" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" msgstr "" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -msgid "ACL type" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" msgstr "" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -msgid "Select an acl type" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" msgstr "" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -msgid "List of available ACL categories" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -msgid "Access control roles" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:27 -msgid "Edit AC roles" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"Your browser doesn't support iframes, please use this link to perform the " +"requested operation." msgstr "" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -msgid "All categories" +#: 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 "" -#: plugins/admin/acl/class_aclRole.inc:131 -msgid "Reset ACL" +#: 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 "" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -msgid "One level" +#: plugins/admin/departments/generic.tpl:4 +#: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 +msgid "Properties" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -msgid "Current object" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -msgid "Complete subtree" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:403 -#, php-format -msgid "ACL for these objects: %s" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:408 -msgid "Edit category ACL" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:409 -msgid "Reset category ACL" +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:621 -msgid "Object in use" +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:621 -#, php-format -msgid "This role cannot be removed while it is in use by these objects:" +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" msgstr "" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" msgstr "" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" +#: plugins/admin/departments/class_divListDepartment.inc:75 +msgid "Regular expression for matching department names" msgstr "" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" msgstr "" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "" + +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" msgstr "" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -msgid "Configuration error" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 +msgid "Edit this entry" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:163 -msgid "Cannot find group SID in your configuration!" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 +msgid "Delete this entry" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" +#: plugins/admin/departments/class_divListDepartment.inc:229 +#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 +msgid "Number of listed departments" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" +#: plugins/admin/departments/dep_move_confirm.tpl:2 +msgid "You are currently moving/renaming this department." msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%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 "" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" +#: 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/groups/class_groupGeneric.inc:918 -#, php-format -msgid "Cannot find any SID for '%s'!" +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 +msgid "Fatal error" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, php-format -msgid "Cannot find any RIDBASE for '%s'!" +#: plugins/admin/departments/class_departmentGeneric.inc:313 +msgid "Cannot find an unused tag for this administrative unit!" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -msgid "Generic group settings" +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -msgid "Phone pickup group" +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -msgid "Nagios group" +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -msgid "Group member" +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -msgid "Samba group type" +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -msgid "Samba domain name" +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" msgstr "" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -msgid "Samba SID" +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -msgid "Infrastructure error" +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" msgstr "" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -msgid "group" +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" msgstr "" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" +#: plugins/admin/departments/class_departmentManagement.inc:27 +msgid "Manage Departments" 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" +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 +msgid "Permission error" msgstr "" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, php-format +msgid "You're about to delete the whole LDAP subtree placed under '%s'." msgstr "" -#: plugins/admin/groups/paste_generic.tpl:13 -#: plugins/admin/groups/generic.tpl:65 -msgid "Normally IDs are autogenerated, select to specify manually" +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +msgid "Manage access control lists" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 -#: plugins/admin/departments/generic.tpl:4 -#: plugins/admin/ogroups/class_divListOGroup.inc:84 -msgid "Properties" +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +msgid "Permission" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:84 -msgid "Select to see groups that are primary groups of users" +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +msgid "ACL management" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, php-format -msgid "Show %s" +#: 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/groups/class_divListGroup.inc:85 -msgid "primary groups" +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +msgid "List of acls" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:86 -msgid "samba groups mappings" +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:87 -msgid "samba groups" +#: plugins/admin/acl/class_divListACL.inc:84 +msgid "Display acls matching" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:88 -msgid "application settings" +#: plugins/admin/acl/class_divListACL.inc:215 +msgid "Edit acl role" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -msgid "application groups" +#: plugins/admin/acl/class_divListACL.inc:223 +msgid "Delete acl role" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:90 -msgid "mail settings" +#: plugins/admin/acl/class_divListACL.inc:242 +msgid "Edit acl" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:91 -msgid "mail groups" +#: plugins/admin/acl/class_divListACL.inc:246 +msgid "Delete acl" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 +msgid "Access control roles" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:93 -msgid "functional groups" +#: plugins/admin/acl/class_aclRole.inc:27 +msgid "Edit AC roles" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +msgid "All categories" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" +#: plugins/admin/acl/class_aclRole.inc:131 +msgid "Reset ACL" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +msgid "One level" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +msgid "Current object" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "Edit this entry" +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +msgid "Complete subtree" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "Delete this entry" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -msgid "Not allowed" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:359 -msgid "Number of listed groups" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 -#: plugins/admin/departments/class_divListDepartment.inc:229 -#: plugins/admin/ogroups/class_divListOGroup.inc:326 -msgid "Number of listed departments" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" msgstr "" -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" msgstr "" -#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 -msgid "Select to create a samba conform group" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" msgstr "" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" +#: plugins/admin/acl/class_aclRole.inc:403 +#, php-format +msgid "ACL for these objects: %s" msgstr "" -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" +#: plugins/admin/acl/class_aclRole.inc:408 +msgid "Edit category ACL" msgstr "" -#: plugins/admin/groups/generic.tpl:155 -msgid "Members are in a nagios group" +#: plugins/admin/acl/class_aclRole.inc:409 +msgid "Reset category ACL" msgstr "" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" 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." +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" msgstr "" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +#: plugins/admin/acl/class_aclRole.inc:621 +msgid "Object in use" msgstr "" -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" +#: plugins/admin/acl/class_aclRole.inc:621 +#, php-format +msgid "This role cannot be removed while it is in use by these objects:" 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." +#: plugins/admin/acl/tabs_acl_role.inc:28 +msgid "ACL Templates" msgstr "" -#: plugins/admin/users/password.tpl:21 -msgid "Strength" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" msgstr "" -#: plugins/admin/users/class_userManagement.inc:27 -msgid "Manage users" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" msgstr "" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -msgid "You have no permission to change this users password!" +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +msgid "New ACL" msgstr "" -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +msgid "ACL type" msgstr "" -#: plugins/admin/users/class_userManagement.inc:544 -#, php-format -msgid "You have no permission to modify object '%s'!" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +msgid "Select an acl type" msgstr "" -#: plugins/admin/users/class_userManagement.inc:548 -msgid "You have no permission to use this template!" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +msgid "List of available ACL categories" msgstr "" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 -msgid "user" +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" msgstr "" -#: plugins/admin/users/class_userManagement.inc:655 -msgid "You have no permission to change the lock status for this user!" +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +msgid "Manage object groups" msgstr "" -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +msgid "Infrastructure error" msgstr "" -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +msgid "object group" 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." +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" msgstr "" -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +msgid "Windows Install" msgstr "" -#: plugins/admin/users/remove.tpl:6 +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "" + +#: plugins/admin/ogroups/remove.tpl:7 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." +"Please double check if you really want to do this since there is no way for " +"GOsa to get your data back." msgstr "" -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "" + +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "" + +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "" + +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +msgid "List of object groups" msgstr "" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 #: plugins/admin/users/class_divListUsers.inc:84 -msgid "templates" +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, php-format +msgid "Show %s" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:85 -msgid "GOsa object" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +msgid "user groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:85 -msgid "functional users" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +msgid "nested groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:86 -msgid "POSIX users" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +msgid "application groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:87 -msgid "mail users" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +msgid "department groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:88 -msgid "samba users" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +msgid "server groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +msgid "workstation groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:89 -msgid "proxy users" +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +msgid "windows workstation groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +msgid "terminal groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +msgid "printer groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:189 -msgid "Apply template" +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 +msgid "phone groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +msgid "Number of listed object groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 +msgid "people" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" +#: plugins/admin/ogroups/class_ogroup.inc:440 +msgid "printer" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:297 -msgid "inactive" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" msgstr "" -#: plugins/admin/users/class_divListUsers.inc:421 -msgid "Number of listed users" +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" msgstr "" -#: plugins/admin/users/templatize.tpl:2 -msgid "Applying a template" +#: plugins/admin/ogroups/class_ogroup.inc:479 +msgid "winstations" msgstr "" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" msgstr "" -#: plugins/admin/users/templatize.tpl:33 -msgid "No templates available!" +#: plugins/admin/ogroups/class_ogroup.inc:872 +msgid "You can combine two different object types at maximum, only!" msgstr "" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" +#: plugins/admin/ogroups/class_ogroup.inc:1056 +msgid "Object group generic" msgstr "" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" +#: plugins/admin/ogroups/class_ogroup.inc:1067 +msgid "Member" msgstr "" -#: plugins/admin/departments/class_divListDepartment.inc:75 -msgid "Regular expression for matching department names" +#: plugins/admin/ogroups/tabs_ogroups.inc:112 +#: plugins/admin/ogroups/tabs_ogroups.inc:298 +msgid "Phone queue" msgstr "" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" +#: plugins/admin/ogroups/tabs_ogroups.inc:140 +msgid "Systems" msgstr "" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" +#: plugins/admin/ogroups/tabs_ogroups.inc:150 +#: plugins/admin/ogroups/tabs_ogroups.inc:167 +#: plugins/admin/ogroups/tabs_ogroups.inc:275 +msgid "Devices" msgstr "" -#: plugins/admin/departments/dep_iframe.tpl:7 -msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." +#: plugins/admin/ogroups/tabs_ogroups.inc:159 +msgid "Startup" msgstr "" -#: plugins/admin/departments/dep_move_confirm.tpl:2 -msgid "You are currently moving/renaming this department." +#: plugins/admin/ogroups/tabs_ogroups.inc:176 +msgid "FAI summary" 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." +#: plugins/admin/ogroups/tabs_ogroups.inc:204 +msgid "Applications" msgstr "" -#: plugins/admin/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." +#: plugins/admin/ogroups/tabs_ogroups.inc:269 +msgid "Terminals" 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." +#: plugins/admin/ogroups/paste_generic.tpl:7 +msgid "Please enter the new object group name" msgstr "" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" +#: plugins/admin/ogroups/ogroup_objects.tpl:6 +msgid "Select objects to add" msgstr "" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:21 +msgid "Select to search within subtrees" msgstr "" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" +#: plugins/admin/ogroups/ogroup_objects.tpl:36 +msgid "Display objects of department" msgstr "" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" +#: plugins/admin/ogroups/ogroup_objects.tpl:40 +msgid "Display objects matching" msgstr "" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" +#: plugins/admin/ogroups/ogroup_objects.tpl:41 +msgid "Regular expression for matching object names" msgstr "" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" +#: plugins/admin/users/class_userManagement.inc:27 +msgid "Manage users" msgstr "" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 +msgid "You have no permission to change this users password!" msgstr "" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" +#: plugins/admin/users/class_userManagement.inc:544 +#, php-format +msgid "You have no permission to modify object '%s'!" msgstr "" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" +#: plugins/admin/users/class_userManagement.inc:548 +msgid "You have no permission to use this template!" msgstr "" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 +msgid "user" msgstr "" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" +#: plugins/admin/users/class_userManagement.inc:655 +msgid "You have no permission to change the lock status for this user!" msgstr "" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" msgstr "" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" msgstr "" -#: plugins/admin/departments/remove.tpl:6 +#: plugins/admin/users/template.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." +"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 "" -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" +#: plugins/admin/users/templatize.tpl:2 +msgid "Applying a template" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 -msgid "Fatal error" +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -msgid "Cannot find an unused tag for this administrative unit!" +#: plugins/admin/users/templatize.tpl:33 +msgid "No templates available!" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" +#: 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 "" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" +#: plugins/admin/users/class_divListUsers.inc:84 +msgid "templates" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" +#: plugins/admin/users/class_divListUsers.inc:85 +msgid "GOsa object" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" +#: plugins/admin/users/class_divListUsers.inc:85 +msgid "functional users" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" +#: plugins/admin/users/class_divListUsers.inc:86 +msgid "POSIX users" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" +#: plugins/admin/users/class_divListUsers.inc:87 +msgid "mail users" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:27 -msgid "Manage Departments" +#: plugins/admin/users/class_divListUsers.inc:88 +msgid "samba users" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, php-format -msgid "You're about to delete the whole LDAP subtree placed under '%s'." +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "proxy users" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." +#: plugins/admin/users/class_divListUsers.inc:96 +#: plugins/admin/groups/group_objects.tpl:46 +msgid "Display users matching" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:112 -#: plugins/admin/ogroups/tabs_ogroups.inc:298 -msgid "Phone queue" +#: plugins/admin/users/class_divListUsers.inc:189 +msgid "Apply template" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:140 -msgid "Systems" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:150 -#: plugins/admin/ogroups/tabs_ogroups.inc:167 -#: plugins/admin/ogroups/tabs_ogroups.inc:275 -msgid "Devices" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:159 -msgid "Startup" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:176 -msgid "FAI summary" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:204 -msgid "Applications" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:269 -msgid "Terminals" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" msgstr "" -#: plugins/admin/ogroups/ogroup_objects.tpl:6 -msgid "Select objects to add" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" msgstr "" -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:21 -msgid "Select to search within subtrees" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" msgstr "" -#: plugins/admin/ogroups/ogroup_objects.tpl:36 -msgid "Display objects of department" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" msgstr "" -#: plugins/admin/ogroups/ogroup_objects.tpl:40 -msgid "Display objects matching" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" msgstr "" -#: plugins/admin/ogroups/ogroup_objects.tpl:41 -msgid "Regular expression for matching object names" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 -msgid "Manage object groups" +#: plugins/admin/users/class_divListUsers.inc:297 +msgid "inactive" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 -msgid "object group" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 +msgid "Not allowed" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 -msgid "Windows Install" +#: plugins/admin/users/class_divListUsers.inc:421 +msgid "Number of listed users" msgstr "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" +#: 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 "" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" +#: plugins/admin/users/password.tpl:21 +msgid "Strength" msgstr "" -#: plugins/admin/ogroups/paste_generic.tpl:7 -msgid "Please enter the new object group name" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -msgid "List of object groups" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 -msgid "user groups" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 -msgid "nested groups" +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 -msgid "department groups" +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 -msgid "server groups" +#: 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 "" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 -msgid "workstation groups" +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 -msgid "windows workstation groups" +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 -msgid "terminal groups" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 -msgid "printer groups" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 -msgid "phone groups" +#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 +msgid "Select to create a samba conform group" msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 -msgid "Number of listed object groups" +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 -msgid "people" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +msgid "Configuration error" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" +#: plugins/admin/groups/class_groupGeneric.inc:163 +msgid "Cannot find group SID in your configuration!" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:440 -msgid "printer" +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" +#: plugins/admin/groups/class_groupGeneric.inc:469 +#, php-format +msgid "Special group (%d)" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" +#: plugins/admin/groups/class_groupGeneric.inc:692 +#, php-format +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, php-format +msgid "Cannot find any SID for '%s'!" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, php-format +msgid "Cannot find any RIDBASE for '%s'!" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:479 -msgid "winstations" +#: plugins/admin/groups/class_groupGeneric.inc:1213 +msgid "Generic group settings" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:872 -msgid "You can combine two different object types at maximum, only!" +#: plugins/admin/groups/class_groupGeneric.inc:1225 +msgid "Phone pickup group" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -msgid "Object group generic" +#: plugins/admin/groups/class_groupGeneric.inc:1226 +msgid "Nagios group" msgstr "" -#: plugins/admin/ogroups/class_ogroup.inc:1067 -msgid "Member" +#: plugins/admin/groups/class_groupGeneric.inc:1229 +msgid "Group member" msgstr "" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" +#: plugins/admin/groups/class_groupGeneric.inc:1230 +msgid "Samba group type" msgstr "" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" +#: plugins/admin/groups/class_groupGeneric.inc:1231 +msgid "Samba domain name" 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." +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +msgid "Samba SID" msgstr "" -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" msgstr "" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 +msgid "group" msgstr "" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" +#: plugins/admin/groups/class_divListGroup.inc:84 +msgid "Select to see groups that are primary groups of users" msgstr "" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" +#: plugins/admin/groups/class_divListGroup.inc:85 +msgid "primary groups" msgstr "" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." +#: plugins/admin/groups/class_divListGroup.inc:86 +msgid "samba groups mappings" 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." +#: plugins/admin/groups/class_divListGroup.inc:87 +msgid "samba groups" 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." +#: plugins/admin/groups/class_divListGroup.inc:88 +msgid "application settings" msgstr "" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" +#: plugins/admin/groups/class_divListGroup.inc:90 +msgid "mail settings" msgstr "" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" +#: plugins/admin/groups/class_divListGroup.inc:91 +msgid "mail groups" 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:92 +msgid "Select to see normal groups that have only functional aspects" msgstr "" -#: include/utils/class_msgPool.inc:15 -#, php-format -msgid "Select to list objects of type '%s'." +#: plugins/admin/groups/class_divListGroup.inc:93 +msgid "functional groups" msgstr "" -#: include/utils/class_msgPool.inc:17 -#, php-format -msgid "Select to list objects containig '%s'." +#: plugins/admin/groups/class_divListGroup.inc:359 +msgid "Number of listed groups" msgstr "" -#: include/utils/class_msgPool.inc:19 -#, php-format -msgid "Select to list objects that have '%s' enabled" +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" msgstr "" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +msgid "GOsa settings 2/3" msgstr "" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" +#: setup/class_setupStep_Config2.inc:88 +msgid "Customize special parameters" msgstr "" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" msgstr "" -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" msgstr "" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" +#: setup/setup_frame.tpl:12 +msgid "GOsa setup wizard" msgstr "" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" +#: setup/setup_frame.tpl:19 +msgid "Installation" msgstr "" -#: include/utils/class_msgPool.inc:53 -#, php-format -msgid "These objects will be deleted: %s" +#: setup/setup_frame.tpl:19 +msgid "Steps" msgstr "" -#: include/utils/class_msgPool.inc:55 -#, php-format -msgid "These '%s' objects will be deleted: %s" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" msgstr "" -#: include/utils/class_msgPool.inc:63 -msgid "You have no permission to delete this object!" +#: setup/class_setupStep_Finish.inc:38 +msgid "Write configuration file" msgstr "" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -msgid "You have no permission to delete the object:" +#: setup/class_setupStep_Finish.inc:39 +msgid "Finish - write the configuration file" msgstr "" -#: include/utils/class_msgPool.inc:74 -msgid "You have no permission to delete these objects:" +#: setup/class_setupStep_Finish.inc:101 +msgid "" +"Your configuration file is currently world readable. Please update the file " +"permissions!" msgstr "" -#: include/utils/class_msgPool.inc:81 -msgid "You have no permission to create this object!" +#: setup/class_setupStep_Finish.inc:103 +msgid "The configuration is currently not readable or it does not exists." msgstr "" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -msgid "You have no permission to create the object:" +#: setup/class_setupStep_Finish.inc:112 +#, 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 "" -#: include/utils/class_msgPool.inc:92 -msgid "You have no permission to create these objects:" +#: setup/setup_finish.tpl:3 +msgid "Create your configuration file" msgstr "" -#: include/utils/class_msgPool.inc:99 -msgid "You have no permission to modify this object!" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" msgstr "" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -msgid "You have no permission to modify the object:" +#: setup/setup_finish.tpl:18 +msgid "Status: " msgstr "" -#: include/utils/class_msgPool.inc:110 -msgid "You have no permission to modify these objects:" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:117 -msgid "You have no permission to view this object!" +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" msgstr "" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 -msgid "You have no permission to view the object:" +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 +#, php-format +msgid "Apply" msgstr "" -#: include/utils/class_msgPool.inc:128 -msgid "You have no permission to view these objects:" +#: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 +#: ihtml/themes/default/copyPasteDialog.tpl:21 +#: ihtml/themes/default/msg_dialog.tpl:79 +#: ihtml/themes/default/msg_dialog.tpl:134 +#, php-format +msgid "Cancel" msgstr "" -#: include/utils/class_msgPool.inc:135 -msgid "You have no permission to move this object!" +#: setup/setup_ldap.tpl:25 +msgid "LDAP connection" msgstr "" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 -msgid "You have no permission to move the object:" +#: setup/setup_ldap.tpl:29 +msgid "Location name" msgstr "" -#: include/utils/class_msgPool.inc:146 -msgid "You have no permission to move these objects:" +#: setup/setup_ldap.tpl:37 +msgid "Connection URL" msgstr "" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 -msgid "Connection information" +#: setup/setup_ldap.tpl:45 +msgid "TLS connection" msgstr "" -#: include/utils/class_msgPool.inc:158 -#, php-format -msgid "Cannot connect to %s database!" +#: setup/setup_ldap.tpl:65 +msgid "Reload" msgstr "" -#: include/utils/class_msgPool.inc:170 -#, php-format -msgid "Cannot select %s database!" +#: setup/setup_ldap.tpl:69 +msgid "Authentication" msgstr "" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" msgstr "" -#: include/utils/class_msgPool.inc:188 -#, php-format -msgid "Cannot query %s database!" +#: setup/setup_ldap.tpl:78 +msgid "Select user" msgstr "" -#: include/utils/class_msgPool.inc:194 -#, php-format -msgid "The field '%s' contains a reserved keyword!" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" msgstr "" -#: include/utils/class_msgPool.inc:200 -#, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" +#: setup/setup_ldap.tpl:93 +msgid "Admin password" msgstr "" -#: include/utils/class_msgPool.inc:207 -#, php-format -msgid "'%s' command is invalid!" +#: setup/setup_ldap.tpl:101 +msgid "Schema based settings" msgstr "" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" +#: setup/setup_ldap.tpl:117 +msgid "Current status" msgstr "" -#: include/utils/class_msgPool.inc:213 -#, php-format -msgid "'%s' command (%s) is invalid!" +#: setup/setup_language.tpl:3 +msgid "Please select the preferred language" msgstr "" -#: include/utils/class_msgPool.inc:221 -#, php-format -msgid "Cannot execute '%s' command!" +#: 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 "" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" +#: setup/setup_language.tpl:9 +msgid "Please select your preferred language here" msgstr "" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +msgid "Language setup" msgstr "" -#: include/utils/class_msgPool.inc:227 -#, php-format -msgid "Cannot execute '%s' command (%s)!" +#: setup/class_setupStep_Language.inc:42 +msgid "This step allows you to select your preferred language." msgstr "" -#: include/utils/class_msgPool.inc:235 -#, php-format -msgid "Value for '%s' is too large!" +#: setup/class_setupStep_Language.inc:47 +msgid "Automatic" msgstr "" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" +#: setup/setup_config3.tpl:2 +msgid "GOsa core settings" msgstr "" -#: include/utils/class_msgPool.inc:245 -#, php-format -msgid "Value for '%s' is too small!" +#: setup/setup_config3.tpl:6 +msgid "Disable primary group filter" msgstr "" -#: include/utils/class_msgPool.inc:247 -#, php-format -msgid "'%s' must be %d or above!" +#: setup/setup_config3.tpl:18 +msgid "Display summary in listings" msgstr "" -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" +#: setup/setup_config3.tpl:30 +msgid "Honour administrative units" msgstr "" -#: include/utils/class_msgPool.inc:260 -#, php-format -msgid "There is already an entry with this '%s' attribute in the system!" +#: setup/setup_config3.tpl:42 +msgid "Smarty compile directory" msgstr "" -#: include/utils/class_msgPool.inc:266 -#, php-format -msgid "The required field '%s' is empty!" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" msgstr "" -#: include/utils/class_msgPool.inc:274 -msgid "Example" +#: setup/setup_config3.tpl:60 +msgid "Path for PPD storage" msgstr "" -#: include/utils/class_msgPool.inc:291 -#, php-format -msgid "The Field '%s' contains invalid characters" +#: setup/setup_config3.tpl:77 +msgid "Path for kiosk profile storage" msgstr "" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" +#: setup/setup_config3.tpl:96 +msgid "Override sudo role ou" msgstr "" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' are not allowed!" +#: setup/setup_config3.tpl:115 +msgid "Mail queue script" msgstr "" -#: include/utils/class_msgPool.inc:295 -#, php-format -msgid "The Field '%s' contains invalid characters!" +#: setup/setup_config3.tpl:134 +msgid "Notification script" msgstr "" -#: include/utils/class_msgPool.inc:302 -#, php-format -msgid "Missing %s PHP extension!" +#: setup/setup_config3.tpl:153 +msgid "Enable edit locking" msgstr "" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 -#: 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/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 -#: ihtml/themes/default/msg_dialog.tpl:79 -#: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 -#, php-format -msgid "Cancel" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" +#: setup/setup_config3.tpl:175 +msgid "Login attribute" msgstr "" -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" msgstr "" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" msgstr "" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" +#: setup/setup_config3.tpl:210 +msgid "Warn if session is not encrypted" msgstr "" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add %s" +#: setup/setup_config3.tpl:222 +msgid "Remember dialog filter settings" msgstr "" -#: include/utils/class_msgPool.inc:338 -#, php-format -msgid "Delete %s" +#: setup/setup_config3.tpl:234 +msgid "Session lifetime" msgstr "" -#: include/utils/class_msgPool.inc:344 -#, php-format -msgid "Set %s" +#: setup/setup_config3.tpl:243 +msgid "Debugging" msgstr "" -#: include/utils/class_msgPool.inc:350 -#, php-format -msgid "Edit..." +#: setup/setup_config3.tpl:247 +msgid "Show PHP errors" msgstr "" -#: include/utils/class_msgPool.inc:350 -#, php-format -msgid "Edit %s..." +#: setup/setup_config3.tpl:259 +msgid "Maximum LDAP query time" msgstr "" -#: include/utils/class_msgPool.inc:356 -msgid "Back" +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/utils/class_msgPool.inc:375 -#, php-format -msgid "This account has no valid %s extensions!" +#: setup/setup_config3.tpl:289 +msgid "Debug level" msgstr "" -#: include/utils/class_msgPool.inc:381 -#, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +msgid "Disabled" msgstr "" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +msgid "Enabled" msgstr "" -#: include/utils/class_msgPool.inc:400 -#, php-format -msgid "" -"This account has %s settings disabled. You can enable them by clicking below." +#: setup/class_setupStep_Welcome.inc:38 +msgid "Welcome" msgstr "" -#: include/utils/class_msgPool.inc:403 -#, php-format -msgid "" -"This account has %s settings disabled. To enable them, you'll need to add " -"the %s settings first!" +#: setup/class_setupStep_Welcome.inc:39 +msgid "The welcome message" msgstr "" -#: include/utils/class_msgPool.inc:410 -#, php-format -msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +#: setup/class_setupStep_Welcome.inc:40 +msgid "Welcome to GOsa setup wizard" msgstr "" -#: include/utils/class_msgPool.inc:418 -#, php-format -msgid "Add %s settings" +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +msgid "GOsa settings 1/3" msgstr "" -#: include/utils/class_msgPool.inc:424 -#, php-format -msgid "Remove %s settings" +#: setup/class_setupStep_Config1.inc:76 +msgid "GOsa generic settings" msgstr "" -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" +#: setup/class_setupStep_Config1.inc:118 +#, php-format +msgid "The specified value for '%s' must be a numeric value" msgstr "" -#: include/utils/class_msgPool.inc:436 -msgid "January" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" msgstr "" -#: include/utils/class_msgPool.inc:436 -msgid "February" +#: 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/utils/class_msgPool.inc:436 -msgid "March" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" msgstr "" -#: include/utils/class_msgPool.inc:436 -msgid "April" +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "May" +#: setup/class_setupStep_Config1.inc:130 +msgid "Uid base must be numeric" msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "June" +#: setup/class_setupStep_Config1.inc:134 +msgid "The given password minimum length is not numeric." msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "July" +#: setup/class_setupStep_Config1.inc:137 +msgid "The given password differ value is not numeric." msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "August" +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +msgid "LDAP schema check" msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "September" +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" msgstr "" -#: include/utils/class_msgPool.inc:438 -msgid "October" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" msgstr "" -#: include/utils/class_msgPool.inc:438 -msgid "November" +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" msgstr "" -#: include/utils/class_msgPool.inc:438 -msgid "December" +#: setup/setup_config2.tpl:31 +msgid "RID base" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Sunday" +#: setup/setup_config2.tpl:46 +msgid "Workstation container" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Monday" +#: setup/setup_config2.tpl:61 +msgid "Samba SID mapping" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" +#: setup/setup_config2.tpl:71 +msgid "Timezone" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Wednesday" +#: setup/setup_config2.tpl:74 +msgid "Please choose your preferred timezone here" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config2.tpl:96 +msgid "Additional GOsa settings" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config2.tpl:112 +msgid "Enable DNS extension" msgstr "" -#: include/utils/class_msgPool.inc:451 -msgid "read operation" +#: setup/setup_config2.tpl:124 +msgid "Enable DHCP extension" msgstr "" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config2.tpl:136 +msgid "Enable mime type management" msgstr "" -#: include/utils/class_msgPool.inc:451 -msgid "modify operation" +#: setup/setup_config2.tpl:148 +msgid "Enable FAI release management" msgstr "" -#: include/utils/class_msgPool.inc:452 -msgid "delete operation" +#: setup/setup_config2.tpl:160 +msgid "Enable user netatalk plugin" msgstr "" -#: include/utils/class_msgPool.inc:452 -msgid "search operation" +#: setup/setup_config2.tpl:171 +msgid "Government mode" msgstr "" -#: include/utils/class_msgPool.inc:452 -msgid "authentication" +#: setup/setup_config2.tpl:182 +msgid "Logging options" msgstr "" -#: include/utils/class_msgPool.inc:455 -#, php-format -msgid "LDAP %s failed!" +#: setup/setup_config2.tpl:186 +msgid "Syslog" msgstr "" -#: include/utils/class_msgPool.inc:457 -msgid "LDAP operation failed!" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +msgid "MySQL" msgstr "" -#: include/utils/class_msgPool.inc:472 -msgid "Upload failed!" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" msgstr "" -#: include/utils/class_msgPool.inc:475 -#, php-format -msgid "Upload failed: %s" +#: setup/setup_config2.tpl:197 +msgid "Mail method" msgstr "" -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" +#: setup/setup_config2.tpl:227 +msgid "Vacation templates" msgstr "" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -#: include/utils/class_msgPool.inc:497 -#, php-format -msgid "This '%s' is still in use." +#: setup/setup_config2.tpl:253 +msgid "Snapshots / Undo" msgstr "" -#: include/utils/class_msgPool.inc:499 -#, php-format -msgid "This '%s' is still in use by these objects: %s" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +msgid "Enable snapshots" msgstr "" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +msgid "Snapshot base" msgstr "" -#: include/utils/class_msgPool.inc:511 -#, php-format -msgid "Cannot open file '%s' for reading!" +#: 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/utils/class_msgPool.inc:517 -#, php-format -msgid "Cannot open file '%s' for writing!" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" msgstr "" -#: include/utils/class_msgPool.inc:523 -#, php-format -msgid "Cannot delete file '%s'!" +#: setup/setup_welcome.tpl:11 +msgid "Create a basic, single site configuration" msgstr "" -#: include/utils/class_msgPool.inc:529 -#, php-format -msgid "Cannot create folder '%s'!" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" msgstr "" -#: include/utils/class_msgPool.inc:535 -#, php-format -msgid "Cannot delete folder '%s'!" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" msgstr "" -#: include/utils/class_msgPool.inc:541 -#, php-format -msgid "Checking for %s support" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" msgstr "" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" msgstr "" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/setup_welcome.tpl:20 +msgid "Find every possible configuration error" msgstr "" -#: include/class_certificate.inc:73 -msgid "Certificate is empty!" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: setup/setup_welcome.tpl:25 +msgid "To continue..." msgstr "" -#: include/class_certificate.inc:115 -msgid "Cannot extract information for non PEM certificates!" +#: 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_certificate.inc:219 -msgid "No valid certificate loaded!" +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." msgstr "" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" +#: setup/class_setupStep_Ldap.inc:53 +msgid "LDAP setup" msgstr "" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" +#: setup/class_setupStep_Ldap.inc:54 +msgid "LDAP connection setup" msgstr "" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" +#: setup/class_setupStep_Ldap.inc:55 +msgid "" +"This dialog performs the basic configuration of the LDAP connectivity for " +"GOsa." msgstr "" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" +#: setup/class_setupStep_Ldap.inc:105 +#, php-format +msgid "Anonymous bind to server '%s' failed!" msgstr "" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" +#: setup/class_setupStep_Ldap.inc:107 +#, php-format +msgid "Bind as user '%s' failed!" msgstr "" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" +#: setup/class_setupStep_Ldap.inc:112 +#, php-format +msgid "Anonymous bind to server '%s' succeeded." msgstr "" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" +#: setup/class_setupStep_Ldap.inc:113 +msgid "Please specify user and password!" msgstr "" -#: include/class_MultiSelectWindow.inc:530 +#: setup/class_setupStep_Ldap.inc:115 #, php-format -msgid "Inconsistent DN encoding detected: '%s'" +msgid "Bind as user '%s' to server '%s' succeeded!" msgstr "" -#: include/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" +#: 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/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" +#: setup/setup_migrate.tpl:33 +msgid "Check again" msgstr "" -#: include/php_setup.inc:100 -msgid "Send bugreport" +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" msgstr "" -#: include/php_setup.inc:105 -msgid "Toggle information" +#: setup/setup_migrate.tpl:39 +msgid "" +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -#: include/php_setup.inc:115 -msgid "PHP error" +#: 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/php_setup.inc:134 -msgid "class" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" msgstr "" -#: include/php_setup.inc:140 -msgid "function" +#: setup/setup_migrate.tpl:72 +msgid "Move selected workstations" msgstr "" -#: include/php_setup.inc:145 -msgid "static" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" msgstr "" -#: include/php_setup.inc:149 -msgid "method" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" msgstr "" -#: include/php_setup.inc:182 -msgid "Trace" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" msgstr "" -#: include/php_setup.inc:183 -msgid "File" +#: 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/php_setup.inc:183 -msgid "Line" +#: 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/php_setup.inc:183 -msgid "Type" +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" +#: 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:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: 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:108 -#, php-format +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" +msgstr "" + +#: setup/setup_migrate.tpl:142 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"This dialog allows moving a couple of users to the configured user 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'." +#: 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:380 -msgid "Username / UID is not unique inside the LDAP tree!" +#: setup/setup_migrate.tpl:148 +msgid "Move selected users into this people tree" msgstr "" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 -msgid "Internal error" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +msgid "Next" msgstr "" -#: include/functions.inc:450 -msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." +#: setup/setup_migrate.tpl:199 +msgid "Abort" msgstr "" -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +#: setup/setup_migrate.tpl:201 +msgid "Create a new GOsa administrator account" msgstr "" -#: include/functions.inc:605 -#, php-format +#: setup/setup_migrate.tpl:204 msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/functions.inc:605 -#, php-format -msgid "LDAP server returned: %s" +#: setup/setup_migrate.tpl:233 +msgid "Password (again)" msgstr "" -#: include/functions.inc:699 +#: setup/setup_migrate.tpl:258 msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." -msgstr "" - -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" +"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:998 -#, php-format +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"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:1294 -msgid "Continue anyway" +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +msgid "After migration" msgstr "" -#: include/functions.inc:1296 -msgid "Edit anyway" +#: 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:1298 -#, php-format -msgid "You're going to edit the LDAP entry/entries %s" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +msgid "LDAP inspection" msgstr "" -#: include/functions.inc:1482 -msgid "Entries per page" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" msgstr "" -#: include/functions.inc:1510 -msgid "Apply filter" +#: setup/class_setupStep_Migrate.inc:114 +msgid "Checking for root object" msgstr "" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" msgstr "" -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" +#: setup/class_setupStep_Migrate.inc:126 +msgid "Checking for invisible departments" msgstr "" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: setup/class_setupStep_Migrate.inc:131 +msgid "Checking for invisible users" msgstr "" -#: include/functions.inc:1919 include/functions.inc:1939 -msgid "Cannot write to revision file!" +#: setup/class_setupStep_Migrate.inc:137 +msgid "Checking for super administrator" msgstr "" -#: include/functions.inc:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" +#: setup/class_setupStep_Migrate.inc:143 +msgid "Checking for users outside the people tree" msgstr "" -#: include/functions.inc:2213 -msgid "LDAP warning" +#: setup/class_setupStep_Migrate.inc:149 +msgid "Checking for groups outside the groups tree" msgstr "" -#: include/functions.inc:2213 -msgid "Cannot get schema information from server. No schema check possible!" +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: setup/class_setupStep_Migrate.inc:162 +msgid "Checking for duplicated UID numbers" msgstr "" -#: include/functions.inc:2246 -msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +#: setup/class_setupStep_Migrate.inc:168 +msgid "Checking for duplicate GID numbers" msgstr "" -#: include/functions.inc:2289 -#, php-format -msgid "Missing required object class '%s'!" +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +msgid "LDAP query failed" msgstr "" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." msgstr "" -#: include/functions.inc:2297 +#: setup/class_setupStep_Migrate.inc:217 #, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" +msgid "Found %s duplicate values for attribute 'uidNumber'." msgstr "" -#: include/functions.inc:2299 +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 #, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" +msgid "Ok" msgstr "" -#: include/functions.inc:2303 +#: setup/class_setupStep_Migrate.inc:269 #, php-format -msgid "Class(es) available" +msgid "Found %s duplicate values for attribute 'gidNumber'." msgstr "" -#: include/functions.inc:2325 -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:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" msgstr "" -#: include/functions.inc:2326 +#: setup/class_setupStep_Migrate.inc:329 +#, php-format msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"Found %s winstations outside the predefined winstation department ou '%s'." msgstr "" -#: include/functions.inc:2330 -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:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +msgid "Migrate" msgstr "" -#: include/functions.inc:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/class_setupStep_Migrate.inc:402 +#, php-format +msgid "Found %s groups outside the configured tree '%s'." msgstr "" -#: include/functions.inc:2354 -msgid "German" +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +msgid "Move" msgstr "" -#: include/functions.inc:2355 -msgid "French" +#: setup/class_setupStep_Migrate.inc:479 +#, php-format +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/functions.inc:2356 -msgid "Italian" +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#, php-format +msgid "" +"The specified user '%s' does not have full access to your ldap database." msgstr "" -#: include/functions.inc:2357 -msgid "Spanish" +#: setup/class_setupStep_Migrate.inc:617 +#, php-format +msgid "Found %s user(s) that will not be visible in GOsa." msgstr "" -#: include/functions.inc:2358 -msgid "English" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +msgid "Migration error" msgstr "" -#: include/functions.inc:2359 -msgid "Dutch" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#, php-format +msgid "Cannot migrate department '%s':" msgstr "" -#: include/functions.inc:2360 -msgid "Polish" +#: setup/class_setupStep_Migrate.inc:758 +#, php-format +msgid "Found %s department(s) that will not be visible in GOsa." msgstr "" -#: include/functions.inc:2361 -msgid "Swedish" +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." msgstr "" -#: include/functions.inc:2362 -msgid "Chinese" +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" msgstr "" -#: include/functions.inc:2363 -msgid "Russian" +#: setup/class_setupStep_Migrate.inc:1004 +msgid "Password error" msgstr "" -#: include/functions.inc:2544 -#, php-format -msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +#: setup/class_setupStep_Migrate.inc:1004 +msgid "Provided passwords do not match!" msgstr "" -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" +#: setup/class_setupStep_Migrate.inc:1009 +msgid "Input error" msgstr "" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." +#: setup/class_setupStep_Migrate.inc:1009 +msgid "Specify a valid user ID!" msgstr "" -#: include/class_socketClient.inc:108 +#: setup/class_setupStep_Migrate.inc:1051 #, php-format -msgid "Socket connection to host '%s:%s' failed: %s" +msgid "Adding an administrative user failed: object '%s' already exists!" msgstr "" -#: include/class_socketClient.inc:191 -#, php-format -msgid "Socket timeout of %s seconds reached." +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +msgid "Cannot move users to the requested department!" msgstr "" -#: include/class_tabs.inc:238 -#, php-format -msgid "Delete process has been canceled by plugin '%s': %s" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" msgstr "" -#: include/class_tabs.inc:373 -msgid "References" +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 +msgid "to" msgstr "" -#: include/class_plugin.inc:497 -msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" msgstr "" -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 -#, php-format -msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" msgstr "" -#: include/class_plugin.inc:1527 -#, php-format -msgid "You are not allowed to create a snapshot for %s." +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" msgstr "" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 -#, php-format -msgid "You are not allowed to restore a snapshot for %s." +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" msgstr "" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." msgstr "" -#: include/class_plugin.inc:1786 -msgid "from" +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 +msgid "Try to create root object" msgstr "" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -msgid "to" +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." msgstr "" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 -msgid "Restore" +#: setup/class_setupStep_Migrate.inc:1955 +#, php-format +msgid "Copy '%s' to '%s' failed:" msgstr "" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" msgstr "" -#: include/class_plugin.inc:1993 -msgid "Create snapshot" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" msgstr "" -#: include/class_plugin.inc:1994 -msgid "Create a new snapshot from this object" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." msgstr "" -#: include/class_plugin.inc:2011 -msgid "cut" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." msgstr "" -#: include/class_plugin.inc:2011 -msgid "Cut this entry" +#: setup/setup_checks.tpl:67 +msgid "PHP setup configuration" msgstr "" -#: include/class_plugin.inc:2019 -msgid "copy" +#: setup/setup_checks.tpl:67 +msgid "show information" msgstr "" -#: include/class_plugin.inc:2019 -msgid "Copy this entry" +#: setup/setup_schema.tpl:3 +msgid "Schema specific settings" msgstr "" -#: include/class_plugin.inc:2053 -msgid "Copy" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" msgstr "" -#: include/class_plugin.inc:2057 -msgid "Cut" +#: setup/setup_schema.tpl:16 +msgid "Check status" msgstr "" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_acl.inc:26 -msgid "Access control" +#: setup/setup_schema.tpl:23 +msgid "Schema check failed" msgstr "" -#: include/class_acl.inc:207 -msgid "Reset ACLs" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." msgstr "" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" +#: 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 "" -#: include/class_acl.inc:489 -msgid "No ACL settings for this category!" +#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 +msgid "GOsa settings 3/3" +msgstr "" + +#: setup/class_setupStep_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" msgstr "" -#: include/class_acl.inc:491 -#, php-format -msgid "Contains ACLs for these objects: %s" +#: setup/class_setupStep_Config3.inc:198 +msgid "Session lifetime must be a numeric value!" msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 -msgid "category ACL" +#: setup/class_setupStep_Config3.inc:202 +msgid "Maximum LDAP query time must be a numeric value!" msgstr "" -#: include/class_acl.inc:543 -#, php-format -msgid "Edit ACL for '%s' - scope is '%s'" +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +msgid "License" msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 -msgid "Show/hide advanced settings" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" msgstr "" -#: include/class_acl.inc:723 -msgid "Create objects" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" msgstr "" -#: include/class_acl.inc:724 -msgid "Move objects" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_acl.inc:725 -msgid "Remove objects" +#: setup/class_setupStep_Checks.inc:64 +msgid "Checking PHP version" msgstr "" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/class_setupStep_Checks.inc:65 +#, php-format +msgid "PHP must be of version %s or above." msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." msgstr "" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." msgstr "" -#: include/class_acl.inc:743 -msgid "Complete object" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." msgstr "" -#: include/class_acl.inc:879 -#, php-format -msgid "Unkown ACL type '%s'!" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." msgstr "" -#: include/class_acl.inc:922 -#, php-format -msgid "Unknown entry '%s'!" +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, php-format -msgid "Role: %s" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." msgstr "" -#: include/class_acl.inc:984 -msgid "unknown role" +#: setup/class_setupStep_Checks.inc:112 +msgid "mbstring" msgstr "" -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." msgstr "" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" +#: setup/class_setupStep_Checks.inc:121 +msgid "" +"GOsa requires this module to communicate with several supported databases." msgstr "" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" msgstr "" -#: include/class_acl.inc:1177 -msgid "Access control list" +#: setup/class_setupStep_Checks.inc:129 +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." msgstr "" -#: include/class_acl.inc:1182 -msgid "ACL roles" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" msgstr "" -#: include/class_acl.inc:1185 -msgid "Role name" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/class_acl.inc:1186 -msgid "Role description" +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_pluglist.inc:56 -msgid "All objects in this category" +#: setup/class_setupStep_Checks.inc:158 +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 "" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/class_setupStep_Checks.inc:159 +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." msgstr "" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/class_setupStep_Checks.inc:168 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." +#: setup/class_setupStep_Checks.inc:169 +msgid "" +"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " +"higher." msgstr "" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" msgstr "" -#: include/class_config.inc:242 -msgid "Cannot bind to LDAP. Please contact the system administrator." +#: setup/class_setupStep_Checks.inc:177 +msgid "" +"In Order to use GOsa without any trouble, the session.auto_register option " +"in your php.ini should be set to 'Off'." msgstr "" -#: include/class_config.inc:574 -msgid "SID and/or RIDBASE missing in the configuration!" +#: setup/class_setupStep_Checks.inc:178 +msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." msgstr "" -#: include/class_config.inc:878 -msgid "Configuration" +#: setup/class_setupStep_Checks.inc:185 +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 "" -#: include/class_config.inc:878 +#: setup/class_setupStep_Checks.inc:186 msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, php-format -msgid "Copy and paste failed!" +#: setup/class_setupStep_Checks.inc:193 +msgid "" +"This option influences the PHP output handling. Turn this Option off, to " +"increase performance." msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, php-format -msgid "Cannot set permission for '%s'" +#: setup/class_setupStep_Checks.inc:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." msgstr "" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Checks.inc:201 +msgid "The Execution time should be at least 30 seconds." msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, php-format -msgid "No write permission in '%s'" +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." msgstr "" -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" +#: setup/class_setupStep_Checks.inc:209 +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 "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." msgstr "" -#: include/class_CopyPasteHandler.inc:508 -msgid "Cannot paste" +#: setup/class_setupStep_Checks.inc:216 +msgid "On" msgstr "" -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:217 +msgid "" +"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " +"escape all quotes in strings in this case." msgstr "" -#: include/class_gosaSupportDaemon.inc:851 -msgid "Cannot not parse XML!" +#: setup/class_setupStep_Checks.inc:218 +msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." msgstr "" -#: include/class_gosaSupportDaemon.inc:1177 -#, php-format -msgid "Cannot send abort event for entry %s!" +#: setup/class_setupStep_Checks.inc:225 +msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." msgstr "" -#: include/class_gosaSupportDaemon.inc:1197 -#, php-format -msgid "Cannot remove entry %s!" +#: setup/class_setupStep_Checks.inc:226 +msgid "" +"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." msgstr "" -#: include/functions_helpviewer.inc:45 -#, php-format -msgid "XML error in guide.xml: %s at line %d" +#: setup/class_setupStep_Checks.inc:236 +msgid "Configuration writeable" msgstr "" -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." +#: setup/class_setupStep_Checks.inc:237 +msgid "The configuration file can't be written" msgstr "" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" +#: setup/class_setupStep_Checks.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 "" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" msgstr "" -#: include/functions_helpviewer.inc:389 -#, php-format -msgid "%s results for your search with the keyword %s" +#: setup/setup_config1.tpl:6 +msgid "Theme" msgstr "" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" +#: setup/setup_config1.tpl:15 +msgid "Apache" msgstr "" -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" msgstr "" -#: include/class_SnapShotDialog.inc:145 -msgid "Remove snapshot" +#: setup/setup_config1.tpl:27 +msgid "People and group storage" msgstr "" -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +#: setup/setup_config1.tpl:30 +msgid "People DN attribute" msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/setup_config1.tpl:41 +msgid "People storage subtree" msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/setup_config1.tpl:50 +msgid "Group storage subtree" msgstr "" -#: include/class_ldap.inc:636 -#, php-format -msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" msgstr "" -#: include/class_ldap.inc:768 -#, php-format -msgid "while operating on '%s' using LDAP server '%s'" +#: setup/setup_config1.tpl:81 +msgid "Automatic UIDs" msgstr "" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" +#: setup/setup_config1.tpl:113 +msgid "Number base for people/groups" msgstr "" -#: include/class_ldap.inc:992 -#, php-format -msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" msgstr "" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/setup_config1.tpl:140 +msgid "Password encryption algorithm" msgstr "" -#: include/class_multi_plug.inc:362 -msgid "You are currently editing mutliple entries." +#: setup/setup_config1.tpl:151 +msgid "Password restrictions" msgstr "" -#: include/class_multi_plug.inc:391 -msgid "Password reset" +#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 +msgid "Password minimum length" msgstr "" -#: include/class_multi_plug.inc:391 -msgid "The user password was resetted, please set a new password value!" +#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 +msgid "Different characters from old password" msgstr "" -#: include/class_log.inc:88 -#, php-format -msgid "Logging failed: %s" +#: setup/setup_config1.tpl:182 +msgid "Password change hook" msgstr "" -#: include/class_log.inc:107 -msgid "MySQL error" +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" msgstr "" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/setup_config1.tpl:209 +msgid "Use account expiration" msgstr "" -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" +#: 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 "" -#: include/class_log.inc:124 -msgid "Specified objectType is empty or invalid!" +#: 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 "" -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: 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 "" -#: include/class_log.inc:205 -#, php-format -msgid "Cannot add location to the database!" +#: 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 "" -#: include/class_baseSelectDialog.inc:44 -msgid "Choose a base" +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 +msgid "Setup error" msgstr "" -#: include/class_baseSelectDialog.inc:55 -msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +#: setup/class_setup.inc:197 +msgid "Completed" msgstr "" -#: include/class_baseSelectDialog.inc:61 -msgid "Use" +#: setup/class_setupStep_Feedback.inc:92 +msgid "UNIX accounts/groups" msgstr "" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" +#: setup/class_setupStep_Feedback.inc:94 +msgid "Samba management" msgstr "" -#: include/class_baseSelectDialog.inc:72 -msgid "Filter entries with this syntax" +#: setup/class_setupStep_Feedback.inc:96 +msgid "Mailsystem management" msgstr "" -#: include/class_baseSelectDialog.inc:136 -#, php-format -msgid "Select this base" +#: setup/class_setupStep_Feedback.inc:98 +msgid "FAX system administration" msgstr "" -#: setup/class_setupStep_Ldap.inc:53 -msgid "LDAP setup" +#: setup/class_setupStep_Feedback.inc:100 +msgid "Asterisk administration" msgstr "" -#: setup/class_setupStep_Ldap.inc:54 -msgid "LDAP connection setup" +#: setup/class_setupStep_Feedback.inc:102 +msgid "System inventory" msgstr "" -#: setup/class_setupStep_Ldap.inc:55 -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +#: setup/class_setupStep_Feedback.inc:104 +msgid "System-/Configmanagement" msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" +#: setup/class_setupStep_Feedback.inc:106 +msgid "Addressbook" msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" +#: setup/class_setupStep_Feedback.inc:112 +#: setup/class_setupStep_Feedback.inc:114 +msgid "Notification and feedback" msgstr "" -#: setup/class_setupStep_Ldap.inc:105 -#, php-format -msgid "Anonymous bind to server '%s' failed!" +#: setup/class_setupStep_Feedback.inc:113 +msgid "Get notifications or send feedback" msgstr "" -#: setup/class_setupStep_Ldap.inc:107 -#, php-format -msgid "Bind as user '%s' failed!" +#: setup/class_setupStep_Feedback.inc:141 +#: setup/class_setupStep_Feedback.inc:148 +msgid "Feedback error" msgstr "" -#: setup/class_setupStep_Ldap.inc:112 +#: setup/class_setupStep_Feedback.inc:141 #, php-format -msgid "Anonymous bind to server '%s' succeeded." +msgid "Cannot send feedback to '%s': %s" msgstr "" -#: setup/class_setupStep_Ldap.inc:113 -msgid "Please specify user and password!" +#: setup/class_setupStep_Feedback.inc:148 +msgid "Cannot send feedback: service temporarily unavailable" msgstr "" -#: setup/class_setupStep_Ldap.inc:115 -#, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" +#: setup/class_setupStep_Feedback.inc:150 +msgid "Feedback sucessfully send" msgstr "" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" +#: setup/class_setupStep_Feedback.inc:180 +msgid "Please specify a valid email address." msgstr "" -#: setup/class_setupStep_Finish.inc:38 -msgid "Write configuration file" +#: setup/class_setupStep_Feedback.inc:184 +msgid "" +"You have to select at least one of both options, subscribe or send feedback." msgstr "" -#: setup/class_setupStep_Finish.inc:39 -msgid "Finish - write the configuration file" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" msgstr "" -#: setup/class_setupStep_Finish.inc:101 +#: setup/setup_feedback.tpl:9 msgid "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" +"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 "" -#: setup/class_setupStep_Finish.inc:103 -msgid "The configuration is currently not readable or it does not exists." +#: setup/setup_feedback.tpl:30 +msgid "Mail address" msgstr "" -#: setup/class_setupStep_Finish.inc:112 -#, php-format +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "" + +#: setup/setup_feedback.tpl:44 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:" +"When checking this option, GOsa will try to connect http://oss.gonicus.de in " +"order to submit your form anonymously." msgstr "" -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 -msgid "License" +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" msgstr "" -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" msgstr "" -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 -msgid "Language setup" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" msgstr "" -#: setup/class_setupStep_Language.inc:42 -msgid "This step allows you to select your preferred language." +#: setup/setup_feedback.tpl:74 +msgid "I use it since" msgstr "" -#: setup/class_setupStep_Language.inc:47 -msgid "Automatic" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" msgstr "" -#: setup/class_setupStep_Feedback.inc:92 -msgid "UNIX accounts/groups" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:94 -msgid "Samba management" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:96 -msgid "Mailsystem management" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "" + +#: setup/setup_feedback.tpl:106 +msgid "LDAP" msgstr "" -#: setup/class_setupStep_Feedback.inc:98 -msgid "FAX system administration" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:100 -msgid "Asterisk administration" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" msgstr "" -#: setup/class_setupStep_Feedback.inc:102 -msgid "System inventory" +#: setup/setup_feedback.tpl:123 +msgid "Features" msgstr "" -#: setup/class_setupStep_Feedback.inc:104 -msgid "System-/Configmanagement" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:106 -msgid "Addressbook" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" msgstr "" -#: setup/class_setupStep_Feedback.inc:112 -#: setup/class_setupStep_Feedback.inc:114 -msgid "Notification and feedback" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/class_setupStep_Feedback.inc:113 -msgid "Get notifications or send feedback" +#: include/class_SnapShotDialog.inc:90 +#, php-format +msgid "You're about to delete the snapshot '%s'." msgstr "" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -msgid "Setup error" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" msgstr "" -#: setup/class_setupStep_Feedback.inc:141 -#: setup/class_setupStep_Feedback.inc:148 -msgid "Feedback error" +#: include/class_SnapShotDialog.inc:145 +msgid "Remove snapshot" msgstr "" -#: setup/class_setupStep_Feedback.inc:141 -#, php-format -msgid "Cannot send feedback to '%s': %s" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" msgstr "" -#: setup/class_setupStep_Feedback.inc:148 -msgid "Cannot send feedback: service temporarily unavailable" +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Feedback.inc:150 -msgid "Feedback sucessfully send" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, php-format +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." msgstr "" -#: setup/class_setupStep_Feedback.inc:180 -msgid "Please specify a valid email address." +#: include/class_plugin.inc:1527 +#, php-format +msgid "You are not allowed to create a snapshot for %s." msgstr "" -#: setup/class_setupStep_Feedback.inc:184 -msgid "" -"You have to select at least one of both options, subscribe or send feedback." +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, php-format +msgid "You are not allowed to restore a snapshot for %s." msgstr "" -#: setup/class_setup.inc:197 -msgid "Completed" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" msgstr "" -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -msgid "Next" +#: include/class_plugin.inc:1786 +msgid "from" msgstr "" -#: setup/setup_finish.tpl:3 -msgid "Create your configuration file" +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +msgid "Restore" msgstr "" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" +#: include/class_plugin.inc:1994 +msgid "Create snapshot" msgstr "" -#: setup/setup_finish.tpl:18 -msgid "Status: " +#: include/class_plugin.inc:1995 +msgid "Create a new snapshot from this object" msgstr "" -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: include/class_plugin.inc:2013 +msgid "cut" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" +#: include/class_plugin.inc:2013 +msgid "Cut this entry" msgstr "" -#: setup/setup_ldap.tpl:25 -msgid "LDAP connection" +#: include/class_plugin.inc:2021 +msgid "copy" msgstr "" -#: setup/setup_ldap.tpl:29 -msgid "Location name" +#: include/class_plugin.inc:2021 +msgid "Copy this entry" msgstr "" -#: setup/setup_ldap.tpl:37 -msgid "Connection URL" +#: include/class_plugin.inc:2055 +msgid "Copy" msgstr "" -#: setup/setup_ldap.tpl:45 -msgid "TLS connection" +#: include/class_plugin.inc:2059 +msgid "Cut" msgstr "" -#: setup/setup_ldap.tpl:65 -msgid "Reload" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" msgstr "" -#: setup/setup_ldap.tpl:69 -msgid "Authentication" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, php-format +msgid "Copy and paste failed!" msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, php-format +msgid "Cannot set permission for '%s'" msgstr "" -#: setup/setup_ldap.tpl:78 -msgid "Select user" +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" msgstr "" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +msgid "Internal error" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" +#: include/class_CopyPasteHandler.inc:175 +#, php-format +msgid "No write permission in '%s'" msgstr "" -#: setup/setup_ldap.tpl:101 -msgid "Schema based settings" +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: include/class_CopyPasteHandler.inc:410 +#, php-format +msgid "This object will be pasted: %s" msgstr "" -#: setup/setup_ldap.tpl:117 -msgid "Current status" +#: include/class_CopyPasteHandler.inc:508 +msgid "Cannot paste" msgstr "" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 -msgid "GOsa settings 1/3" +#: include/utils/class_msgPool.inc:15 +#, php-format +msgid "Select to list objects of type '%s'." msgstr "" -#: setup/class_setupStep_Config1.inc:76 -msgid "GOsa generic settings" +#: include/utils/class_msgPool.inc:17 +#, php-format +msgid "Select to list objects containig '%s'." msgstr "" -#: setup/class_setupStep_Config1.inc:118 +#: include/utils/class_msgPool.inc:19 #, php-format -msgid "The specified value for '%s' must be a numeric value" +msgid "Select to list objects that have '%s' enabled" msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "Don't add a trailing comma to '%s'." +msgid "This '%s' object will be deleted!" msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" +#: include/utils/class_msgPool.inc:40 +#, php-format +msgid "This object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" msgstr "" -#: setup/class_setupStep_Config1.inc:134 -msgid "The given password minimum length is not numeric." +#: include/utils/class_msgPool.inc:49 +#, php-format +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Config1.inc:137 -msgid "The given password differ value is not numeric." +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -msgid "GOsa settings 2/3" +#: include/utils/class_msgPool.inc:55 +#, php-format +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config2.inc:88 -msgid "Customize special parameters" +#: include/utils/class_msgPool.inc:63 +msgid "You have no permission to delete this object!" msgstr "" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 +msgid "You have no permission to delete the object:" msgstr "" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -msgid "LDAP inspection" +#: include/utils/class_msgPool.inc:74 +msgid "You have no permission to delete these objects:" msgstr "" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" +#: include/utils/class_msgPool.inc:81 +msgid "You have no permission to create this object!" msgstr "" -#: setup/class_setupStep_Migrate.inc:114 -msgid "Checking for root object" +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +msgid "You have no permission to create the object:" msgstr "" -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" +#: include/utils/class_msgPool.inc:92 +msgid "You have no permission to create these objects:" msgstr "" -#: setup/class_setupStep_Migrate.inc:126 -msgid "Checking for invisible departments" +#: include/utils/class_msgPool.inc:99 +msgid "You have no permission to modify this object!" msgstr "" -#: setup/class_setupStep_Migrate.inc:131 -msgid "Checking for invisible users" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +msgid "You have no permission to modify the object:" msgstr "" -#: setup/class_setupStep_Migrate.inc:137 -msgid "Checking for super administrator" +#: include/utils/class_msgPool.inc:110 +msgid "You have no permission to modify these objects:" msgstr "" -#: setup/class_setupStep_Migrate.inc:143 -msgid "Checking for users outside the people tree" +#: include/utils/class_msgPool.inc:117 +msgid "You have no permission to view this object!" msgstr "" -#: setup/class_setupStep_Migrate.inc:149 -msgid "Checking for groups outside the groups tree" +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +msgid "You have no permission to view the object:" msgstr "" -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" +#: include/utils/class_msgPool.inc:128 +msgid "You have no permission to view these objects:" msgstr "" -#: setup/class_setupStep_Migrate.inc:162 -msgid "Checking for duplicated UID numbers" +#: include/utils/class_msgPool.inc:135 +msgid "You have no permission to move this object!" msgstr "" -#: setup/class_setupStep_Migrate.inc:168 -msgid "Checking for duplicate GID numbers" +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +msgid "You have no permission to move the object:" msgstr "" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 -msgid "LDAP query failed" +#: include/utils/class_msgPool.inc:146 +msgid "You have no permission to move these objects:" msgstr "" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +msgid "Connection information" msgstr "" -#: setup/class_setupStep_Migrate.inc:217 +#: include/utils/class_msgPool.inc:158 #, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." +msgid "Cannot connect to %s database!" msgstr "" -#: setup/class_setupStep_Migrate.inc:269 +#: include/utils/class_msgPool.inc:170 #, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "" - -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" +msgid "Cannot select %s database!" msgstr "" -#: setup/class_setupStep_Migrate.inc:329 +#: include/utils/class_msgPool.inc:176 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "No %s server defined!" msgstr "" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 -msgid "Migrate" +#: include/utils/class_msgPool.inc:188 +#, php-format +msgid "Cannot query %s database!" msgstr "" -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:194 #, php-format -msgid "Found %s groups outside the configured tree '%s'." +msgid "The field '%s' contains a reserved keyword!" msgstr "" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -msgid "Move" +#: include/utils/class_msgPool.inc:200 +#, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" -#: setup/class_setupStep_Migrate.inc:479 +#: include/utils/class_msgPool.inc:207 #, php-format -msgid "Found %s user(s) outside the configured tree '%s'." +msgid "'%s' command is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:209 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:211 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "'%s' command for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -msgid "Migration error" +#: include/utils/class_msgPool.inc:213 +#, php-format +msgid "'%s' command (%s) is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: include/utils/class_msgPool.inc:221 #, php-format -msgid "Cannot migrate department '%s':" +msgid "Cannot execute '%s' command!" msgstr "" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:223 #, php-format -msgid "Found %s department(s) that will not be visible in GOsa." +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" msgstr "" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:227 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "Cannot execute '%s' command (%s)!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 -msgid "Password error" +#: include/utils/class_msgPool.inc:235 +#, php-format +msgid "Value for '%s' is too large!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 -msgid "Provided passwords do not match!" +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1009 -msgid "Input error" +#: include/utils/class_msgPool.inc:245 +#, php-format +msgid "Value for '%s' is too small!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1009 -msgid "Specify a valid user ID!" +#: include/utils/class_msgPool.inc:247 +#, php-format +msgid "'%s' must be %d or above!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1051 +#: include/utils/class_msgPool.inc:254 #, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -msgid "Cannot move users to the requested department!" +#: include/utils/class_msgPool.inc:260 +#, php-format +msgid "There is already an entry with this '%s' attribute in the system!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" +#: include/utils/class_msgPool.inc:266 +#, php-format +msgid "The required field '%s' is empty!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" +#: include/utils/class_msgPool.inc:291 +#, php-format +msgid "The Field '%s' contains invalid characters" msgstr "" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" msgstr "" -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' are not allowed!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." +#: include/utils/class_msgPool.inc:295 +#, php-format +msgid "The Field '%s' contains invalid characters!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -msgid "Try to create root object" +#: include/utils/class_msgPool.inc:302 +#, php-format +msgid "Missing %s PHP extension!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" msgstr "" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:332 #, php-format -msgid "Copy '%s' to '%s' failed:" +msgid "Add" msgstr "" -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -msgid "GOsa settings 3/3" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add %s" msgstr "" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" +#: include/utils/class_msgPool.inc:338 +#, php-format +msgid "Delete %s" msgstr "" -#: setup/class_setupStep_Config3.inc:198 -msgid "Session lifetime must be a numeric value!" +#: include/utils/class_msgPool.inc:344 +#, php-format +msgid "Set %s" msgstr "" -#: setup/class_setupStep_Config3.inc:202 -msgid "Maximum LDAP query time must be a numeric value!" +#: include/utils/class_msgPool.inc:350 +#, php-format +msgid "Edit..." msgstr "" -#: setup/setup_language.tpl:3 -msgid "Please select the preferred language" +#: include/utils/class_msgPool.inc:350 +#, php-format +msgid "Edit %s..." 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." +#: include/utils/class_msgPool.inc:356 +msgid "Back" msgstr "" -#: setup/setup_language.tpl:9 -msgid "Please select your preferred language here" +#: include/utils/class_msgPool.inc:375 +#, php-format +msgid "This account has no valid %s extensions!" msgstr "" -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:381 +#, php-format +msgid "" +"This account has %s settings enabled. You can disable them by clicking below." msgstr "" -#: setup/setup_feedback.tpl:9 +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, php-format 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 account has %s settings enabled. To disable them, you'll need to remove " +"the %s settings first!" msgstr "" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" +#: include/utils/class_msgPool.inc:400 +#, php-format +msgid "" +"This account has %s settings disabled. You can enable them by clicking below." msgstr "" -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" +#: include/utils/class_msgPool.inc:403 +#, php-format +msgid "" +"This account has %s settings disabled. To enable them, you'll need to add " +"the %s settings first!" msgstr "" -#: setup/setup_feedback.tpl:44 +#: include/utils/class_msgPool.inc:410 +#, php-format msgid "" -"When checking this option, GOsa will try to connect http://oss.gonicus.de in " -"order to submit your form anonymously." +"This account has %s features settings. To disable them, you'll need to add " +"the %s settings first!" msgstr "" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" +#: include/utils/class_msgPool.inc:418 +#, php-format +msgid "Add %s settings" msgstr "" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" +#: include/utils/class_msgPool.inc:424 +#, php-format +msgid "Remove %s settings" +msgstr "" + +#: include/utils/class_msgPool.inc:430 +msgid "Click the 'Edit' button below to change informations in this dialog" msgstr "" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" +#: include/utils/class_msgPool.inc:436 +msgid "January" msgstr "" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" +#: include/utils/class_msgPool.inc:436 +msgid "February" msgstr "" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" +#: include/utils/class_msgPool.inc:436 +msgid "March" msgstr "" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" +#: include/utils/class_msgPool.inc:436 +msgid "April" msgstr "" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" +#: include/utils/class_msgPool.inc:437 +msgid "May" msgstr "" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" +#: include/utils/class_msgPool.inc:437 +msgid "June" msgstr "" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" +#: include/utils/class_msgPool.inc:437 +msgid "July" msgstr "" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" +#: include/utils/class_msgPool.inc:437 +msgid "August" msgstr "" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" +#: include/utils/class_msgPool.inc:437 +msgid "September" msgstr "" -#: setup/setup_feedback.tpl:123 -msgid "Features" +#: include/utils/class_msgPool.inc:438 +msgid "October" msgstr "" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" +#: include/utils/class_msgPool.inc:438 +msgid "November" msgstr "" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" +#: include/utils/class_msgPool.inc:438 +msgid "December" msgstr "" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" +#: include/utils/class_msgPool.inc:444 +msgid "Sunday" msgstr "" -#: setup/class_setupStep_Welcome.inc:38 -msgid "Welcome" +#: include/utils/class_msgPool.inc:444 +msgid "Monday" msgstr "" -#: setup/class_setupStep_Welcome.inc:39 -msgid "The welcome message" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" msgstr "" -#: setup/class_setupStep_Welcome.inc:40 -msgid "Welcome to GOsa setup wizard" +#: include/utils/class_msgPool.inc:444 +msgid "Wednesday" msgstr "" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" msgstr "" -#: setup/setup_config1.tpl:6 -msgid "Theme" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" msgstr "" -#: setup/setup_config1.tpl:15 -msgid "Apache" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" msgstr "" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" +#: include/utils/class_msgPool.inc:451 +msgid "read operation" msgstr "" -#: setup/setup_config1.tpl:27 -msgid "People and group storage" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" msgstr "" -#: setup/setup_config1.tpl:30 -msgid "People DN attribute" +#: include/utils/class_msgPool.inc:451 +msgid "modify operation" msgstr "" -#: setup/setup_config1.tpl:41 -msgid "People storage subtree" +#: include/utils/class_msgPool.inc:452 +msgid "delete operation" msgstr "" -#: setup/setup_config1.tpl:50 -msgid "Group storage subtree" +#: include/utils/class_msgPool.inc:452 +msgid "search operation" msgstr "" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" +#: include/utils/class_msgPool.inc:452 +msgid "authentication" msgstr "" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" +#: include/utils/class_msgPool.inc:455 +#, php-format +msgid "LDAP %s failed!" msgstr "" -#: setup/setup_config1.tpl:81 -msgid "Automatic UIDs" +#: include/utils/class_msgPool.inc:457 +msgid "LDAP operation failed!" msgstr "" -#: setup/setup_config1.tpl:113 -msgid "Number base for people/groups" +#: include/utils/class_msgPool.inc:472 +msgid "Upload failed!" msgstr "" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" +#: include/utils/class_msgPool.inc:475 +#, php-format +msgid "Upload failed: %s" msgstr "" -#: setup/setup_config1.tpl:140 -msgid "Password encryption algorithm" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" msgstr "" -#: setup/setup_config1.tpl:151 -msgid "Password restrictions" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" msgstr "" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" msgstr "" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" +#: include/utils/class_msgPool.inc:497 +#, php-format +msgid "This '%s' is still in use." msgstr "" -#: setup/setup_config1.tpl:182 -msgid "Password change hook" +#: include/utils/class_msgPool.inc:499 +#, php-format +msgid "This '%s' is still in use by these objects: %s" msgstr "" -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" msgstr "" -#: setup/setup_config1.tpl:209 -msgid "Use account expiration" +#: include/utils/class_msgPool.inc:511 +#, php-format +msgid "Cannot open file '%s' for reading!" 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." +#: include/utils/class_msgPool.inc:517 +#, php-format +msgid "Cannot open file '%s' for writing!" 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." +#: include/utils/class_msgPool.inc:523 +#, php-format +msgid "Cannot delete file '%s'!" 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." +#: include/utils/class_msgPool.inc:529 +#, php-format +msgid "Cannot create folder '%s'!" 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." +#: include/utils/class_msgPool.inc:535 +#, php-format +msgid "Cannot delete folder '%s'!" msgstr "" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" +#: include/utils/class_msgPool.inc:541 +#, php-format +msgid "Checking for %s support" msgstr "" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config2.tpl:31 -msgid "RID base" +#: 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 "" -#: setup/setup_config2.tpl:46 -msgid "Workstation container" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." msgstr "" -#: setup/setup_config2.tpl:61 -msgid "Samba SID mapping" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" msgstr "" -#: setup/setup_config2.tpl:71 -msgid "Timezone" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" msgstr "" -#: setup/setup_config2.tpl:74 -msgid "Please choose your preferred timezone here" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" msgstr "" -#: setup/setup_config2.tpl:96 -msgid "Additional GOsa settings" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" msgstr "" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" msgstr "" -#: setup/setup_config2.tpl:112 -msgid "Enable DNS extension" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" msgstr "" -#: setup/setup_config2.tpl:124 -msgid "Enable DHCP extension" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" msgstr "" -#: setup/setup_config2.tpl:136 -msgid "Enable mime type management" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." msgstr "" -#: setup/setup_config2.tpl:148 -msgid "Enable FAI release management" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" msgstr "" -#: setup/setup_config2.tpl:160 -msgid "Enable user netatalk plugin" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." msgstr "" -#: setup/setup_config2.tpl:171 -msgid "Government mode" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" msgstr "" -#: setup/setup_config2.tpl:182 -msgid "Logging options" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" msgstr "" -#: setup/setup_config2.tpl:186 -msgid "Syslog" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -msgid "MySQL" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config2.tpl:193 -msgid "Mail settings" +#: include/class_ldap.inc:768 +#, php-format +msgid "while operating on '%s' using LDAP server '%s'" msgstr "" -#: setup/setup_config2.tpl:197 -msgid "Mail method" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" msgstr "" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/class_ldap.inc:992 +#, php-format +msgid "" +"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " +"in line %s" msgstr "" -#: setup/setup_config2.tpl:227 -msgid "Vacation templates" +#: include/class_ldap.inc:1021 +#, php-format +msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" msgstr "" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" msgstr "" -#: setup/setup_config2.tpl:253 -msgid "Snapshots / Undo" +#: include/class_config.inc:242 +msgid "Cannot bind to LDAP. Please contact the system administrator." msgstr "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -msgid "Enable snapshots" +#: include/class_config.inc:574 +msgid "SID and/or RIDBASE missing in the configuration!" msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -msgid "Snapshot base" +#: include/class_config.inc:878 +msgid "Configuration" msgstr "" -#: setup/setup_config3.tpl:2 -msgid "GOsa core settings" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config3.tpl:6 -msgid "Disable primary group filter" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" msgstr "" -#: setup/setup_config3.tpl:18 -msgid "Display summary in listings" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" msgstr "" -#: setup/setup_config3.tpl:30 -msgid "Honour administrative units" +#: include/class_gosaSupportDaemon.inc:851 +msgid "Cannot not parse XML!" msgstr "" -#: setup/setup_config3.tpl:42 -msgid "Smarty compile directory" +#: include/class_gosaSupportDaemon.inc:1177 +#, php-format +msgid "Cannot send abort event for entry %s!" msgstr "" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_gosaSupportDaemon.inc:1197 +#, php-format +msgid "Cannot remove entry %s!" msgstr "" -#: setup/setup_config3.tpl:60 -msgid "Path for PPD storage" +#: include/class_multi_plug.inc:362 +msgid "You are currently editing mutliple entries." msgstr "" -#: setup/setup_config3.tpl:77 -msgid "Path for kiosk profile storage" +#: include/class_multi_plug.inc:391 +msgid "Password reset" msgstr "" -#: setup/setup_config3.tpl:96 -msgid "Override sudo role ou" +#: include/class_multi_plug.inc:391 +msgid "The user password was resetted, please set a new password value!" msgstr "" -#: setup/setup_config3.tpl:115 -msgid "Mail queue script" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" msgstr "" -#: setup/setup_config3.tpl:134 -msgid "Notification script" +#: include/class_tabs.inc:373 +msgid "References" msgstr "" -#: setup/setup_config3.tpl:153 -msgid "Enable edit locking" +#: include/class_baseSelectDialog.inc:44 +msgid "Choose a base" msgstr "" -#: setup/setup_config3.tpl:172 -msgid "Login and session" +#: include/class_baseSelectDialog.inc:55 +msgid "" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -#: setup/setup_config3.tpl:175 -msgid "Login attribute" +#: include/class_baseSelectDialog.inc:61 +msgid "Use" msgstr "" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" msgstr "" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/class_baseSelectDialog.inc:72 +msgid "Filter entries with this syntax" msgstr "" -#: setup/setup_config3.tpl:210 -msgid "Warn if session is not encrypted" +#: include/class_baseSelectDialog.inc:136 +#, php-format +msgid "Select this base" msgstr "" -#: setup/setup_config3.tpl:222 -msgid "Remember dialog filter settings" +#: include/functions_helpviewer.inc:45 +#, php-format +msgid "XML error in guide.xml: %s at line %d" msgstr "" -#: setup/setup_config3.tpl:234 -msgid "Session lifetime" +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." msgstr "" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" msgstr "" -#: setup/setup_config3.tpl:247 -msgid "Show PHP errors" +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" msgstr "" -#: setup/setup_config3.tpl:259 -msgid "Maximum LDAP query time" +#: include/functions_helpviewer.inc:389 +#, php-format +msgid "%s results for your search with the keyword %s" msgstr "" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" msgstr "" -#: setup/setup_config3.tpl:289 -msgid "Debug level" +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" msgstr "" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -msgid "Disabled" +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 -msgid "Enabled" +#: include/php_setup.inc:100 +msgid "Send bugreport" 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." +#: include/php_setup.inc:105 +msgid "Toggle information" msgstr "" -#: setup/setup_migrate.tpl:33 -msgid "Check again" +#: include/php_setup.inc:115 +msgid "PHP error" msgstr "" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" +#: include/php_setup.inc:134 +msgid "class" msgstr "" -#: setup/setup_migrate.tpl:39 -msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" +#: include/php_setup.inc:140 +msgid "function" 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." +#: include/php_setup.inc:145 +msgid "static" msgstr "" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" +#: include/php_setup.inc:149 +msgid "method" msgstr "" -#: setup/setup_migrate.tpl:72 -msgid "Move selected workstations" +#: include/php_setup.inc:182 +msgid "Trace" msgstr "" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" +#: include/php_setup.inc:183 +msgid "File" msgstr "" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" +#: include/php_setup.inc:183 +msgid "Line" 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." +#: include/php_setup.inc:183 +msgid "Type" 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." +#: include/php_setup.inc:184 +msgid "Arguments" msgstr "" -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" msgstr "" -#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 -#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 -msgid "Hide changes" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 -#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 -msgid "Show changes" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" msgstr "" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +msgid "" +"You are currently editing a database entry. Do you want to dismiss the " +"changes?" 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." +#: include/class_log.inc:88 +#, php-format +msgid "Logging failed: %s" 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." +#: include/class_log.inc:107 +msgid "MySQL error" msgstr "" -#: setup/setup_migrate.tpl:148 -msgid "Move selected users into this people tree" +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" msgstr "" -#: setup/setup_migrate.tpl:199 -msgid "Abort" +#: include/class_log.inc:120 +#, php-format +msgid "Invalid option '%s' specified!" msgstr "" -#: setup/setup_migrate.tpl:201 -msgid "Create a new GOsa administrator account" +#: include/class_log.inc:124 +msgid "Specified objectType is empty or invalid!" msgstr "" -#: setup/setup_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" msgstr "" -#: setup/setup_migrate.tpl:233 -msgid "Password (again)" +#: include/class_log.inc:205 +#, php-format +msgid "Cannot add location to the database!" 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." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 +#: include/functions.inc:125 +#, php-format msgid "" -"If you want to know what will be done when migrating the selected entries, " -"use the 'Show changes' button to see the LDIF." +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -msgid "Current" +#: include/functions.inc:335 +#, php-format +msgid "FATAL: Error when connecting the LDAP. Server said '%s'." msgstr "" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -msgid "After migration" +#: include/functions.inc:397 +msgid "Username / UID is not unique inside the LDAP tree!" msgstr "" -#: setup/setup_migrate.tpl:313 +#: include/functions.inc:467 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." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -#: setup/setup_frame.tpl:12 -msgid "GOsa setup wizard" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/setup_frame.tpl:19 -msgid "Installation" +#: include/functions.inc:622 +#, php-format +msgid "" +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" msgstr "" -#: setup/setup_frame.tpl:19 -msgid "Steps" +#: include/functions.inc:622 +#, php-format +msgid "LDAP server returned: %s" msgstr "" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -msgid "LDAP schema check" +#: include/functions.inc:716 +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." msgstr "" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" msgstr "" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" +#: include/functions.inc:1015 +#, php-format +msgid "" +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" msgstr "" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" +#: include/functions.inc:1032 +msgid "incomplete" msgstr "" -#: setup/class_setupStep_Checks.inc:64 -msgid "Checking PHP version" +#: include/functions.inc:1311 +msgid "Continue anyway" msgstr "" -#: setup/class_setupStep_Checks.inc:65 -#, php-format -msgid "PHP must be of version %s or above." +#: include/functions.inc:1313 +msgid "Edit anyway" msgstr "" -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." +#: include/functions.inc:1315 +#, php-format +msgid "You're going to edit the LDAP entry/entries %s" msgstr "" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." +#: include/functions.inc:1499 +msgid "Entries per page" msgstr "" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." +#: include/functions.inc:1527 +msgid "Apply filter" msgstr "" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" msgstr "" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" msgstr "" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." msgstr "" -#: setup/class_setupStep_Checks.inc:112 -msgid "mbstring" +#: include/functions.inc:1936 include/functions.inc:1956 +msgid "Cannot write to revision file!" msgstr "" -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" msgstr "" -#: setup/class_setupStep_Checks.inc:121 -msgid "" -"GOsa requires this module to communicate with several supported databases." +#: include/functions.inc:2230 +msgid "LDAP warning" msgstr "" -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:2230 +msgid "Cannot get schema information from server. No schema check possible!" msgstr "" -#: setup/class_setupStep_Checks.inc:129 -msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." msgstr "" -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" +#: include/functions.inc:2263 +msgid "" +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." msgstr "" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:2306 +#, php-format +msgid "Missing required object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:148 -msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:158 -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." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:159 -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" msgstr "" -#: setup/class_setupStep_Checks.inc:168 +#: include/functions.inc:2342 msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." msgstr "" -#: setup/class_setupStep_Checks.inc:169 +#: include/functions.inc:2343 msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." -msgstr "" - -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:2347 msgid "" -"In Order to use GOsa without any trouble, the session.auto_register option " -"in your php.ini should be set to 'Off'." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." msgstr "" -#: setup/class_setupStep_Checks.inc:178 -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:185 -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." +#: include/functions.inc:2371 +msgid "German" msgstr "" -#: setup/class_setupStep_Checks.inc:186 -msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +#: include/functions.inc:2372 +msgid "French" msgstr "" -#: setup/class_setupStep_Checks.inc:193 -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2373 +msgid "Italian" msgstr "" -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2374 +msgid "Spanish" msgstr "" -#: setup/class_setupStep_Checks.inc:201 -msgid "The Execution time should be at least 30 seconds." +#: include/functions.inc:2375 +msgid "English" msgstr "" -#: setup/class_setupStep_Checks.inc:202 -msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +#: include/functions.inc:2376 +msgid "Dutch" msgstr "" -#: setup/class_setupStep_Checks.inc:209 -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." +#: include/functions.inc:2377 +msgid "Polish" msgstr "" -#: setup/class_setupStep_Checks.inc:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -#: setup/class_setupStep_Checks.inc:216 -msgid "On" +#: include/functions.inc:2379 +msgid "Chinese" msgstr "" -#: setup/class_setupStep_Checks.inc:217 -msgid "" -"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " -"escape all quotes in strings in this case." +#: include/functions.inc:2380 +msgid "Russian" msgstr "" -#: setup/class_setupStep_Checks.inc:218 -msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." +#: include/functions.inc:2561 +#, php-format +msgid "" +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." msgstr "" -#: setup/class_setupStep_Checks.inc:225 -msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/class_setupStep_Checks.inc:226 -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +#: include/class_acl.inc:26 +msgid "Access control" msgstr "" -#: setup/class_setupStep_Checks.inc:236 -msgid "Configuration writeable" +#: include/class_acl.inc:207 +msgid "Reset ACLs" msgstr "" -#: setup/class_setupStep_Checks.inc:237 -msgid "The configuration file can't be written" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/class_setupStep_Checks.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." +#: include/class_acl.inc:489 +msgid "No ACL settings for this category!" 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." +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" msgstr "" -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/class_acl.inc:496 include/class_acl.inc:497 +msgid "category ACL" msgstr "" -#: setup/setup_welcome.tpl:11 -msgid "Create a basic, single site configuration" +#: include/class_acl.inc:543 +#, php-format +msgid "Edit ACL for '%s' - scope is '%s'" msgstr "" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" +#: include/class_acl.inc:698 include/class_acl.inc:705 +msgid "Show/hide advanced settings" msgstr "" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" +#: include/class_acl.inc:723 +msgid "Create objects" msgstr "" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" +#: include/class_acl.inc:724 +msgid "Move objects" msgstr "" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" +#: include/class_acl.inc:725 +msgid "Remove objects" msgstr "" -#: setup/setup_welcome.tpl:20 -msgid "Find every possible configuration error" +#: include/class_acl.inc:727 +msgid "Modifyable by owner" msgstr "" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" msgstr "" -#: setup/setup_welcome.tpl:25 -msgid "To continue..." +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" 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:" +#: include/class_acl.inc:743 +msgid "Complete object" msgstr "" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." +#: include/class_acl.inc:879 +#, php-format +msgid "Unkown ACL type '%s'!" msgstr "" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" msgstr "" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, php-format +msgid "Role: %s" msgstr "" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." +#: include/class_acl.inc:984 +msgid "unknown role" msgstr "" -#: setup/setup_checks.tpl:67 -msgid "PHP setup configuration" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" msgstr "" -#: setup/setup_checks.tpl:67 -msgid "show information" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" msgstr "" -#: setup/setup_schema.tpl:3 -msgid "Schema specific settings" +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" +#: include/class_acl.inc:1177 +msgid "Access control list" msgstr "" -#: setup/setup_schema.tpl:16 -msgid "Check status" +#: include/class_acl.inc:1182 +msgid "ACL roles" msgstr "" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" +#: include/class_acl.inc:1185 +msgid "Role name" msgstr "" -#: setup/setup_schema.tpl:23 -msgid "Schema check failed" +#: include/class_acl.inc:1186 +msgid "Role description" msgstr "" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." +#: include/class_certificate.inc:73 +msgid "Certificate is empty!" 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!" +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -#: html/helpviewer.php:70 -msgid "Help browser" +#: include/class_certificate.inc:115 +msgid "Cannot extract information for non PEM certificates!" msgstr "" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" +#: include/class_certificate.inc:219 +msgid "No valid certificate loaded!" msgstr "" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: ihtml/themes/default/accountexpired.tpl:15 +msgid "Your password has expired. Please choose a new one!" msgstr "" -#: html/setup.php:66 -msgid "Smarty" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +msgid "Old password" msgstr "" -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +msgid "Verify password" msgstr "" -#: html/password.php:58 html/index.php:142 -#, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +msgid "Click here to change your password" msgstr "" -#: html/password.php:163 -msgid "Error: Password method not available!" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" msgstr "" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." +#: 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 "" -#: html/password.php:232 -msgid "You have no permissions to change your password." +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" msgstr "" -#: html/password.php:253 -msgid "External password changer reported a problem: " +#: 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 "" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" msgstr "" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" +#: ihtml/themes/default/acl.tpl:31 +msgid "Additional filter options" msgstr "" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" msgstr "" -#: html/main.php:172 -msgid "PHP configuration" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" msgstr "" -#: html/main.php:173 -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:107 +msgid "ACL for this object" msgstr "" -#: html/main.php:361 -msgid "Your password is about to expire, please change your password!" +#: ihtml/themes/default/acl.tpl:113 +msgid "Available roles" msgstr "" -#: html/main.php:370 -msgid "Plugin" +#: 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 "" -#: html/main.php:371 -#, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" msgstr "" -#: html/index.php:57 -msgid "Session is not encrypted!" +#: 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 "" -#: html/index.php:64 +#: ihtml/themes/default/snapshotdialog.tpl:9 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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 "" -#: html/index.php:167 -msgid "Smarty error" +#: 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 "" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +msgid "There is no snapshot available that could be restored" msgstr "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: ihtml/themes/default/snapshotdialog.tpl:49 +msgid "Creating object snapshots" msgstr "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: 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 "" - -#: html/index.php:283 -msgid "Your LDAP setup contains old schema definitions:" + +#: 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 "" -#: html/index.php:304 -msgid "Please specify a valid username!" +#: ihtml/themes/default/snapshotdialog.tpl:70 +msgid "Timestamp" msgstr "" -#: html/index.php:307 -msgid "Please specify your password!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" msgstr "" -#: html/index.php:319 -msgid "Authentication error" +#: 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 "" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/sizelimit.tpl:6 +msgid "Please choose the way to react for this session" msgstr "" -#: html/index.php:375 -msgid "Account locked. Please contact your system administrator!" +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" msgstr "" -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" #: ihtml/themes/default/copyPasteDialog.tpl:1 @@ -5570,17 +5583,6 @@ msgstr "" msgid "Index" msgstr "" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -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 "" - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "" @@ -5601,38 +5603,41 @@ msgstr "" msgid "GOsa main menu" 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." +#: ihtml/themes/default/logout-close.tpl:5 +msgid "Your GOsa session has been closed!" msgstr "" -#: ihtml/themes/default/acl.tpl:31 -msgid "Additional filter options" +#: 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 "" -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" +#: ihtml/themes/default/login.tpl:27 +msgid "Login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: ihtml/themes/default/login.tpl:34 +msgid "" +"Please use your username and your password to log into the site " +"administration system." msgstr "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" +#: 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 "" -#: ihtml/themes/default/acl.tpl:107 -msgid "ACL for this object" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" msgstr "" -#: ihtml/themes/default/acl.tpl:113 -msgid "Available roles" +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" msgstr "" #: ihtml/themes/default/conflict.tpl:2 @@ -5676,11 +5681,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 msgid "New password repeated" msgstr "" @@ -5689,146 +5689,149 @@ msgstr "" msgid "Change" msgstr "" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -msgid "Click here to change your password" +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:172 +msgid "PHP configuration" msgstr "" -#: ihtml/themes/default/login.tpl:27 -msgid "Login screen" +#: html/main.php:173 +msgid "" +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." msgstr "" -#: ihtml/themes/default/login.tpl:34 -msgid "" -"Please use your username and your password to log into the site " -"administration system." +#: html/main.php:218 +msgid "Running out of memory!" msgstr "" -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" +#: html/main.php:292 +msgid "User ACL checks disabled" msgstr "" -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" +#: html/main.php:361 +msgid "Your password is about to expire, please change your password!" msgstr "" -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" +#: html/main.php:370 +msgid "Plugin" 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." +#: html/main.php:371 +#, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" msgstr "" -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" +#: html/index.php:57 +msgid "Session is not encrypted!" msgstr "" -#: ihtml/themes/default/sizelimit.tpl:3 +#: html/index.php:64 msgid "" -"The size limit option makes LDAP operations faster and saves the LDAP server " -"from getting too much load. The easiest way to handle big databases without " -"long timeouts would be to limit your search to smaller values and use " -"filters to get the entries you are looking for." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/sizelimit.tpl:6 -msgid "Please choose the way to react for this session" +#: html/index.php:142 html/password.php:58 +#, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." msgstr "" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" +#: html/index.php:167 +msgid "Smarty error" 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" +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" msgstr "" -#: ihtml/themes/default/logout-close.tpl:5 -msgid "Your GOsa session has been closed!" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" 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." +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -msgid "Your password has expired. Please choose a new one!" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 -msgid "Old password" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 -msgid "Verify password" +#: html/index.php:283 +msgid "Your LDAP setup contains old schema definitions:" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" +#: html/index.php:304 +msgid "Please specify a valid username!" 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." +#: html/index.php:307 +msgid "Please specify your password!" 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)." +#: html/index.php:319 +msgid "Authentication error" 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 ?" +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 -msgid "There is no snapshot available that could be restored" +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" +#: html/index.php:375 +msgid "Account locked. Please contact your system administrator!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:49 -msgid "Creating object snapshots" +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." 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." +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:55 +#: html/index.php:426 msgid "" -"Remember that database entries, DNS configurations and possibly created " -"zones in server extensions will not be stored in the snapshot." +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:70 -msgid "Timestamp" +#: html/password.php:163 +msgid "Error: Password method not available!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: 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/helpviewer.php:70 +msgid "Help browser" +msgstr "" + +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "" + +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +msgstr "" + +#: html/setup.php:66 +msgid "Smarty" msgstr "" diff --git a/gosa-core/locale/core/nl/LC_MESSAGES/messages.po b/gosa-core/locale/core/nl/LC_MESSAGES/messages.po index d3692c19c..d5c462f3e 100644 --- a/gosa-core/locale/core/nl/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/nl/LC_MESSAGES/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2006-06-02 16:58+0100\n" "Last-Translator: Niels Klomp (CareWorks ICT Services) \n" "Language-Team: CareWorks ICT Services \n" @@ -19,11 +19,91 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "Het veranderen van het wachtwoord is niet toegestaan" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#, fuzzy +msgid "Password settings" +msgstr "Gebruikersinstellingen" + +#: 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!" + +#: 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." + +#: 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." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Huidig wachtwoord" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Nieuw wachtwoord" + +#: 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" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "Wachtwoord encryptie" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "Wachtwoord instellen" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Wis velden" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Wachtwoord" @@ -42,8 +122,8 @@ msgstr "Verander wachtwoord" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "Het veranderen van het wachtwoord is niet toegestaan" @@ -100,1054 +180,207 @@ msgid "User password" msgstr "Wachtwoord wissen" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Mijn account" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "Het veranderen van het wachtwoord is niet toegestaan" - -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Persoonlijk plaatje" -#: 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." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Plaatje verwijderen" -#: 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." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Algemeen" -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Huidig wachtwoord" +#: plugins/personal/generic/class_user.inc:38 +#, fuzzy +msgid "Edit organizational user settings" +msgstr "Programma instellingen" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Nieuw wachtwoord" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "vrouw" -#: 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" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "man" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -#, fuzzy -msgid "Password strength" -msgstr "Wachtwoord encryptie" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "Fout" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "Wachtwoord instellen" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Wis velden" +#: plugins/personal/generic/class_user.inc:503 +#, fuzzy +msgid "Serial number" +msgstr "Telefoonnummer" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" msgstr "" -"U heeft succesvol uw wachtwoord veranderd. Denkt u eraan dat u alle " -"programma's die dit wachtwoord gebruiken ook aanpast!" -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -#, fuzzy -msgid "Password settings" -msgstr "Gebruikersinstellingen" +#: plugins/personal/generic/class_user.inc:558 +#, 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'." -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Selecteer de toe te voegen groepen" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "geldig" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Filters" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "ongeldig" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "Toon groepen van afdeling" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "Geen certificaat geinstalleerd" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "Selecteer de afdeling waarbinnen gezocht zal worden" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "Wachtwoord encryptie" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "Toon overeenkomende groepen" +#: plugins/personal/generic/class_user.inc:592 +#, fuzzy +msgid "The selected password method is no longer available." +msgstr "Dit programma is niet meer beschikbaar." -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -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:101 -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/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -#, fuzzy -msgid "Search in subtrees" -msgstr "Zoek binnen subtree" - -#: 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" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "Wachtwoord verloopt op" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" -msgstr "Posix instellingen" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Persoonlijke map" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "Forceer UID/GID" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -msgstr "Groep lidmaatschap" - -#: 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!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Selecteer de toe te voegen systemen" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Toon systemen van afdeling" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Toon de overeenkomende systemen" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Reguliere expresie voor overeenkomende adressen" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Algemeen" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Primaire groep" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Status" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "Primaire groep" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, fuzzy -msgid "Not in all groups" -msgstr "Toon E-mail groepen" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "Account" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "Systeem vertrouwen" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "Vertrouwensmodus" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "Unix" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Posix instellingen" - -#: plugins/personal/posix/class_posixAccount.inc:154 -msgid "expired" -msgstr "verlopen" - -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" -msgstr "gratie tijd actief" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" -msgstr "actief" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "actief, wachtwoord onveranderbaar" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "actief, wachtwoord verlopen" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "niet geconfigureerd" - -#: 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 "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" -msgstr "Omgeving" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "gedeactiveerd" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "volledige toegang" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "sta toegang op deze computers toe" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -#, fuzzy -msgid "LDAP error" -msgstr "LDAP fout:" - -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Waarschuwing" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Gebruikersgroep" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -#, fuzzy -msgid "shadowMax" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "Fout" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "" -"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -#, fuzzy -msgid "POSIX account" -msgstr "GLPI account" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "Gebruikers ID" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -#, fuzzy -msgid "Group ID" -msgstr "Groep" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -#, fuzzy -msgid "Force password change on login" -msgstr "Het veranderen van het wachtwoord is niet toegestaan" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -#, fuzzy -msgid "Shadow min" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -#, fuzzy -msgid "Shadow max" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -#, fuzzy -msgid "Shadow warning" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -#, fuzzy -msgid "Shadow inactive" -msgstr "Schaduwen van andere sessie" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -#, fuzzy -msgid "Shadow expire" -msgstr "Toon personen" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -#, fuzzy -msgid "System trust model" -msgstr "Systeem vertrouwen" - -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Posix instellingen" - -#: 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 "" -"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." - -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Persoonlijk plaatje" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Plaatje verwijderen" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Persoonlijke informatie" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Academische titel" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "Voorkeurstaal" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Basis" - -#: 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" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -msgstr "Selecteer een basis" - -#: 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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Adres" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Telefoon privé" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Homepage" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Wachtwoord encryptie" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Certificaten" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Bewerk certificaten" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Organisatie informatie" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Organisatie" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Afdeling" - -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "Afdeling nr." - -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "Personeel nr." - -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Functie" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "Kamer nr." - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Telefoon" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "GSM" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "Pieper" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Plaats" - -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Provincie" - -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Beroep" - -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Eenheid omschrijving" - -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Werkgebied" - -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Functionele titel" - -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Funktie" - -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Werkplaats" - -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Eenheid" - -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Straat" - -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Postcode" - -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Huis identificatie" - -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Laatste levering" - -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Publiek zichtbaar" - -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "Gebruikersinstellingen" - -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 -msgid "Last name" -msgstr "Achternaam" - -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" -msgstr "Voornaam" - -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Inlognaam" - -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "Wachtwoord wissen" - -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "Nieuw wachtwoord instellen" - -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "Persoonlijk plaatje" - -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" -msgstr "Verander plaatje" - -#: 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 "" - -#: plugins/personal/generic/generic.tpl:62 -msgid "Template name" -msgstr "Sjabloon naam" - -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Aanhef" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Geboortedatum" - -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" -msgstr "Stel in" - -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" -msgstr "Geslacht" - -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "Instellen" - -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -msgstr "Gebruik a.u.b. de telefoon tab" - -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" -msgstr "Standaard certificaat" - -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Verwijderen" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "S/MIME certificaat" - -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "PKCS12 certificaat" - -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "Certificaat serienummer" - -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Programma instellingen" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "vrouw" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "man" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Telefoonnummer" - -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "" - -#: plugins/personal/generic/class_user.inc:558 -#, 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'." - -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "geldig" - -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "ongeldig" - -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "Geen certificaat geinstalleerd" - -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" -msgstr "Wachtwoord encryptie" - -#: plugins/personal/generic/class_user.inc:592 +#: plugins/personal/generic/class_user.inc:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 #, fuzzy -msgid "The selected password method is no longer available." -msgstr "Dit programma is niet meer beschikbaar." +msgid "LDAP error" +msgstr "LDAP fout:" #: plugins/personal/generic/class_user.inc:1149 #, fuzzy msgid "The selected password method requires initial configuration!" msgstr "Dit programma is niet meer beschikbaar." +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Inlognaam" + #: plugins/personal/generic/class_user.inc:1184 #: plugins/personal/generic/class_user.inc:1195 #: plugins/personal/generic/class_user.inc:1232 #: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 #: plugins/admin/departments/class_departmentGeneric.inc:239 #: plugins/admin/departments/class_departmentGeneric.inc:241 #: plugins/admin/departments/class_departmentGeneric.inc:246 #: plugins/admin/departments/class_departmentGeneric.inc:253 #: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 #: plugins/admin/ogroups/class_ogroup.inc:857 #: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 msgid "Name" msgstr "Naam" @@ -1160,10 +393,140 @@ msgstr "Naam" msgid "Given name" msgstr "Naam" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "Het opgegeven certificaat kon geopend worden!" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Homepage" + +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Telefoon" + +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" + +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" +msgstr "GSM" + +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "Pieper" + +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "Het opgegeven certificaat kon geopend worden!" + +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Eenheid" + +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Huis identificatie" + +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Beroep" + +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Laatste levering" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Werkplaats" + +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Eenheid omschrijving" + +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Werkgebied" + +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Functionele titel" + +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Certificaat serienummer" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Publiek zichtbaar" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Straat" + +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Funktie" + +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Postcode" #: plugins/personal/generic/class_user.inc:1487 #, fuzzy @@ -1175,6 +538,25 @@ msgstr "Algemene wachtrij instellingen" msgid "Users" msgstr "Gebruikers" +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Basis" + #: plugins/personal/generic/class_user.inc:1498 msgid "Surename" msgstr "Achternaam" @@ -1184,6 +566,17 @@ msgstr "Achternaam" msgid "User identification" msgstr "Gebruikersinformatie" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Aanhef" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Academische titel" + #: plugins/personal/generic/class_user.inc:1503 msgid "Home postal address" msgstr "Adres thuis" @@ -1193,6 +586,30 @@ msgstr "Adres thuis" msgid "Home phone number" msgstr "Telefoonnummer" +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Organisatie" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Afdeling" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Geboortedatum" + #: plugins/personal/generic/class_user.inc:1509 #, fuzzy msgid "Gender" @@ -1213,6 +630,34 @@ msgstr "Afdelingnaam" msgid "Employee number" msgstr "Functie" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Functie" + +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Plaats" + +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Provincie" + +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "Persoonlijk plaatje" + #: plugins/personal/generic/class_user.inc:1517 #, fuzzy msgid "Room number" @@ -1233,1196 +678,1549 @@ msgstr "GSM nummer" msgid "Pager number" msgstr "Telefoonnummer" -#: plugins/personal/generic/class_user.inc:1521 -#, fuzzy -msgid "User certificates" -msgstr "Standaard certificaat" +#: plugins/personal/generic/class_user.inc:1521 +#, fuzzy +msgid "User certificates" +msgstr "Standaard certificaat" + +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "Adres thuis" + +#: plugins/personal/generic/class_user.inc:1524 +#, fuzzy +msgid "Fax number" +msgstr "Serienummer" + +#: plugins/personal/generic/main.inc:104 +#, fuzzy +msgid "You have no permission to set your password!" +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." + +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Algemene gebruikersinformatie" + +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Persoonlijke informatie" + +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" +msgstr "Verander plaatje" + +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +msgstr "Achternaam" + +#: 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 "" + +#: plugins/personal/generic/generic.tpl:62 +msgid "Template name" +msgstr "Sjabloon naam" + +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "Voornaam" + +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" +msgstr "Stel in" + +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" +msgstr "Geslacht" + +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "Voorkeurstaal" + +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Kies de subtree waaronder de gebruiker geplaatst wordt" + +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "Selecteer een basis" + +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Adres" + +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Telefoon privé" + +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "Wachtwoord encryptie" + +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "Instellen" + +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Certificaten" + +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Bewerk certificaten" + +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Organisatie informatie" + +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "Afdeling nr." + +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "Personeel nr." + +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "Kamer nr." + +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "Gebruik a.u.b. de telefoon tab" + +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "Standaard certificaat" + +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Verwijderen" + +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "S/MIME certificaat" + +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "PKCS12 certificaat" + +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" +msgstr "Gebruikersinstellingen" + +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" +msgstr "Wachtwoord wissen" + +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "Nieuw wachtwoord instellen" + +#: 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 "" +"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." + +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Selecteer de toe te voegen groepen" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "Adres thuis" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Filters" -#: plugins/personal/generic/class_user.inc:1524 -#, fuzzy -msgid "Fax number" -msgstr "Serienummer" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Toon groepen van afdeling" -#: plugins/personal/generic/main.inc:104 -#, fuzzy -msgid "You have no permission to set your password!" -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: 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" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Algemene gebruikersinformatie" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Toon overeenkomende groepen" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Reguliere expressie voor overeenkomende groepnamen" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "Toon groepen van gebruiker" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "Rechten" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Gebruikersnaam van wie de groepen getoond worden" -#: plugins/admin/acl/tabs_acl_role.inc:28 +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 #, fuzzy -msgid "ACL Templates" -msgstr "Sjablonen" +msgid "Search in subtrees" +msgstr "Zoek binnen subtree" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -#, fuzzy -msgid "Manage access control lists" -msgstr "Toegangsopties" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Selecteer de toe te voegen systemen" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "Rechten" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Toon systemen van afdeling" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -#, fuzzy -msgid "Permission" -msgstr "Rechten" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Toon de overeenkomende systemen" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -#, fuzzy -msgid "List of acls" -msgstr "Lijst met macro's" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Reguliere expresie voor overeenkomende adressen" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix/main.inc:131 #, fuzzy -msgid "Select all" -msgstr "Selecteer" +msgid "POSIX settings" +msgstr "Posix instellingen" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "Samenvatting" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Persoonlijke map" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Acties" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/admin/acl/class_divListACL.inc:84 -#, fuzzy -msgid "Display acls matching" -msgstr "Toon overeenkomende macro's" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Primaire groep" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Verwerk afdeling" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Status" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "Verwerk" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "Forceer UID/GID" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Aanmaken" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "Bewerk" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" -#: plugins/admin/acl/class_divListACL.inc:215 -#, fuzzy -msgid "Edit acl role" -msgstr "Bewerk share" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "Groep lidmaatschap" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "Verwijder" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "(Waarschuwing: NFS ondersteunt niet meer dan 16 groepen!)" -#: plugins/admin/acl/class_divListACL.inc:223 +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy -msgid "Delete acl role" -msgstr "Verwijder gebruiker" +msgid "In all groups" +msgstr "Primaire groep" -#: plugins/admin/acl/class_divListACL.inc:242 +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 #, fuzzy -msgid "Edit acl" -msgstr "Bewerk klasse" +msgid "Not in all groups" +msgstr "Toon E-mail groepen" -#: plugins/admin/acl/class_divListACL.inc:246 -#, fuzzy -msgid "Delete acl" -msgstr "Verwijder klasse" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "Account" -#: 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 "" -"Dit omvat alle systeem en configuratie informatie. Verzeker uzelf " -"hiervan, aangezien er geen manier is voor GOsa om deze gegevens terug te " -"halen." +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "Systeem vertrouwen" -#: 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." -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/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" +msgstr "Vertrouwensmodus" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "Unix" + +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "ACL management" -msgstr "Blokkeerlijst beheer" +msgid "Edit users POSIX settings" +msgstr "Posix instellingen" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" +msgstr "verlopen" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Omschrijving" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "gratie tijd actief" -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "Selecteer de subtree waaronder deze groep geplaatst wordt" +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" +msgstr "actief" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "New ACL" -msgstr "Nieuw" +msgid "password not changable" +msgstr "actief, wachtwoord onveranderbaar" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +#: plugins/personal/posix/class_posixAccount.inc:161 #, fuzzy -msgid "ACL type" -msgstr "type" +msgid "password expired" +msgstr "actief, wachtwoord verlopen" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -#, fuzzy -msgid "Select an acl type" -msgstr "Selecteer een basis" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "niet geconfigureerd" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -#, fuzzy -msgid "List of available ACL categories" -msgstr "Lijst met beschikbare pakketten" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "automatisch" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -#, fuzzy -msgid "Access control roles" -msgstr "Toegangsopties" +#: 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 "" -#: plugins/admin/acl/class_aclRole.inc:27 -#, fuzzy -msgid "Edit AC roles" -msgstr "Rechten" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -#, fuzzy -msgid "All categories" -msgstr "Categorie toevoegen" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "Omgeving" -#: plugins/admin/acl/class_aclRole.inc:131 -#, fuzzy -msgid "Reset ACL" -msgstr "Verwijderen" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -#, fuzzy -msgid "One level" -msgstr "Log prioriteit" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -#, fuzzy -msgid "Current object" -msgstr "Nieuw FAI object aanmaken" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -#, fuzzy -msgid "Complete subtree" -msgstr "Subonderdelen negeren" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "gedeactiveerd" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "Omhoog" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "volledige toegang" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" -msgstr "Omlaag" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "sta toegang op deze computers toe" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Bewerken" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Waarschuwing" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" -msgstr "Verwijderen" +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" +msgstr "" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" +#: plugins/personal/posix/class_posixAccount.inc:910 +msgid "" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "Nieuw FAI object aanmaken" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Gebruikersgroep" -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 +#, fuzzy +msgid "shadowMin" +msgstr "Schaduwen van andere sessie" + +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 #, fuzzy -msgid "Edit category ACL" -msgstr "Bewerk klasse" +msgid "shadowMax" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/acl/class_aclRole.inc:409 +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 #, fuzzy -msgid "Reset category ACL" -msgstr "Categorie" +msgid "shadowWarning" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 +#, fuzzy +msgid "shadowInactive" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#, fuzzy +msgid "Cannot allocate a free ID!" msgstr "" +"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!" -#: plugins/admin/acl/class_aclRole.inc:621 +#: plugins/personal/posix/class_posixAccount.inc:1494 #, fuzzy -msgid "Object in use" -msgstr "Objectnaam" +msgid "POSIX account" +msgstr "GLPI account" -#: plugins/admin/acl/class_aclRole.inc:621 -#, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "Gebruikers ID" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Selecteer de toe te voegen gebruikers" +#: plugins/personal/posix/class_posixAccount.inc:1507 +#, fuzzy +msgid "Group ID" +msgstr "Groep" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Selecteer om servers te zien" +#: plugins/personal/posix/class_posixAccount.inc:1509 +#, fuzzy +msgid "Force password change on login" +msgstr "Het veranderen van het wachtwoord is niet toegestaan" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" -msgstr "Zoek binnen subtree" +#: plugins/personal/posix/class_posixAccount.inc:1510 +#, fuzzy +msgid "Shadow min" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "Toon gebruikers van afdeling" +#: plugins/personal/posix/class_posixAccount.inc:1511 +#, fuzzy +msgid "Shadow max" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Toon overeenkomende gebruikers" +#: plugins/personal/posix/class_posixAccount.inc:1512 +#, fuzzy +msgid "Shadow warning" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "Reguliere expressie voor overeenkomende gebruikersnamen" +#: plugins/personal/posix/class_posixAccount.inc:1513 +#, fuzzy +msgid "Shadow inactive" +msgstr "Schaduwen van andere sessie" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 +#: plugins/personal/posix/class_posixAccount.inc:1514 #, fuzzy -msgid "Configuration error" -msgstr "Configuratie bestand" +msgid "Shadow expire" +msgstr "Toon personen" -#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/personal/posix/class_posixAccount.inc:1515 #, 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 "System trust model" +msgstr "Systeem vertrouwen" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Samba groep" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "Posix instellingen" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Windows beheerders" +#: 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" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Windows gebruikers" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "Wachtwoord verloopt op" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Windows gasten" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "Objectnaam" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Speciale groep (%d)" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Omschrijving" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "! onbekend id" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "Inhoud" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -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." -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Kan bestand '%s' niet aanmaken." +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "E-mail" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Kan bestand '%s' niet aanmaken." +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "Fax" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -#, fuzzy -msgid "Generic group settings" -msgstr "Algemene wachtrij instellingen" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Groepen" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "Ftp" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -#, fuzzy -msgid "Phone pickup group" -msgstr "Leden zitten in een telefoon beantwoordgroep" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Groep" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -#, fuzzy -msgid "Nagios group" -msgstr "Nagios account" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Programma" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -#, fuzzy -msgid "Group member" -msgstr "Groepsleden" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Server" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -#, fuzzy -msgid "Samba group type" -msgstr "Samba groep" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "Thin Client" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -#, fuzzy -msgid "Samba domain name" -msgstr "Samba home" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Werkstation" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -#, fuzzy -msgid "Samba SID" -msgstr "Samba" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Objectgroep" + +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Printer" + +#: 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." -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: 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." -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -#, fuzzy -msgid "Infrastructure error" -msgstr "PHP fout" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "Het GOsa team" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -#, fuzzy -msgid "group" -msgstr "groepen" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Welkom %s!" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" -msgstr "Groep instellingen" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +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 "Groepnaam" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" -#: 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" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Afdeling beheer" -#: 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" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "Bezig met verwerken van de gevraagde opdracht" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Forceer GID" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"Your browser doesn't support iframes, please use this link to perform the " +"requested operation." +msgstr "" +"Uw browser heeft geen ondersteuning voor frames. Gebruik a.u.b. deze link om " +"de gewenste opdracht uit te voeren." -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Geforceerd ID nummer" +#: 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." -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Lijst met groepen" +#: 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 "" +"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/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 #: plugins/admin/departments/generic.tpl:4 #: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 msgid "Properties" msgstr "Eigenschappen" -#: 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" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "Naam van de afdeling" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "Toon groepen" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "Naam van de aan te maken subtree" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "Primaire groep" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "Omschrijving voor de afdeling" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "Samba" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Categorie" -#: plugins/admin/groups/class_divListGroup.inc:87 -#, fuzzy -msgid "samba groups" -msgstr "Samba groep" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "Categorie voor deze subtree" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "programma's" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" +msgstr "Selecteer de subtree waaronder deze afdeling geplaatst wordt" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Toon programma groepen" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "Provincie waar deze subtree zich bevindt" -#: plugins/admin/groups/class_divListGroup.inc:90 -#, fuzzy -msgid "mail settings" -msgstr "E-mail instellingen" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "Plaats van deze subtree" -#: plugins/admin/groups/class_divListGroup.inc:91 -#, fuzzy -msgid "mail groups" -msgstr "Toon E-mail groepen" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "Post adres van deze subtree" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "" -"Selecteer om normale groepen die alleen functionele aspecten hebben te zien" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "Basis telefoonnummer van deze subtree" -#: plugins/admin/groups/class_divListGroup.inc:93 +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "Basis Fax nummer van deze subtree" + +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "Administratieve instellingen" + +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "Markeer de afdeling als een onafhankelijke administratieve eenheid" + +#: 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:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "functional groups" -msgstr "Toon functionele groepen" +msgid "Select all" +msgstr "Selecteer" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Groep" +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" +msgstr "Afdelingnaam" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Acties" + +#: plugins/admin/departments/class_divListDepartment.inc:75 +msgid "Regular expression for matching department names" +msgstr "Reguliere expressie voor overeenkomende afdelingen" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "E-mail" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Verwerk afdeling" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Programma" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "Verwerk" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Aanmaken" + +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 #: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "Bewerk" + #: plugins/admin/departments/class_divListDepartment.inc:186 #: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 msgid "Edit this entry" msgstr "Bewerk deze invoer" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 #: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "Verwijder" + #: plugins/admin/departments/class_divListDepartment.inc:190 #: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 msgid "Delete this entry" msgstr "Verwijder deze invoer" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -#, fuzzy -msgid "Not allowed" -msgstr "Het veranderen van het wachtwoord is niet toegestaan" - -#: plugins/admin/groups/class_divListGroup.inc:359 -#, fuzzy -msgid "Number of listed groups" -msgstr "Naam van de groep" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "afdeling" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 #: plugins/admin/departments/class_divListDepartment.inc:229 #: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 #, fuzzy msgid "Number of listed departments" msgstr "Naam van de afdeling" -#: 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: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)" - -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "Groepsleden" +#: 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." -#: plugins/admin/groups/remove.tpl:6 +#: plugins/admin/departments/dep_move_confirm.tpl:5 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." +"Modifying a departments naming attribute 'ou' or base may corrupt acls and " +"snapshot entries for all entire objects." 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/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." msgstr "" -"Indien u zeker bent drukt u dan 'Verwijderen' om door te gaan of 'Annuleren' " -"om te annuleren." - -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Groepen beheer" -#: plugins/admin/users/password.tpl:4 +#: plugins/admin/departments/dep_move_confirm.tpl:11 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." +"Before you confirm this action, ensure that everything will be as expected, " +"possibly the best solution is a backup." 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." -#: plugins/admin/users/password.tpl:21 +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 #, fuzzy -msgid "Strength" -msgstr "Straat" +msgid "Fatal error" +msgstr "Terminal server" -#: plugins/admin/users/class_userManagement.inc:27 +#: plugins/admin/departments/class_departmentGeneric.inc:313 #, fuzzy -msgid "Manage users" -msgstr "Windows gebruikers" +msgid "Cannot find an unused tag for this administrative unit!" +msgstr "" +"Fatale fout: Kon geen ongebruikte markering vinden om de administratieve " +"eenheid te markeren!" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -#, fuzzy -msgid "You have no permission to change this users password!" -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "Markeren van '%s'." -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "geen" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Doorgaan" + +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "Verplaatsen van %s naar %s" + +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Object" + +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "Kopieren van %s is mislukt. Bewerking afgebroken." + +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Afdelingen" + +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Land" + +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Telefoon" + +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "Object '%s' is al gemarkeerd" + +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "Toevoegen van markering (%s) aan object '%s'" + +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "Verwijderen van markering van object '%s'" + +#: plugins/admin/departments/class_departmentManagement.inc:27 +#, fuzzy +msgid "Manage Departments" +msgstr "Afdelingen" +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 #: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 +#, fuzzy +msgid "Permission error" +msgstr "Rechten" + +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, 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." + +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "Rechten" -#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 #, fuzzy -msgid "You have no permission to use this template!" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "Manage access control lists" +msgstr "Toegangsopties" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 #, fuzzy -msgid "user" -msgstr "gebruikers" +msgid "Permission" +msgstr "Rechten" -#: plugins/admin/users/class_userManagement.inc:655 +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 #, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." - -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "Sjabloon" - -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "Een nieuwe gebruiker aanmaken m.b.v. een sjabloon" - -#: 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." - -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Doorgaan" +msgid "ACL management" +msgstr "Blokkeerlijst beheer" -#: plugins/admin/users/remove.tpl:6 +#: plugins/admin/acl/remove.tpl:6 +#, fuzzy 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." +"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 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." +"Dit omvat alle systeem en configuratie informatie. Verzeker uzelf " +"hiervan, aangezien er geen manier is voor GOsa om deze gegevens terug te " +"halen." -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Gebruikersbeheer" +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +#, fuzzy +msgid "List of acls" +msgstr "Lijst met macro's" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Lijst met gebruikers" +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "Samenvatting" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Gebruikersnaam" +#: plugins/admin/acl/class_divListACL.inc:84 +#, fuzzy +msgid "Display acls matching" +msgstr "Toon overeenkomende macro's" -#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/acl/class_divListACL.inc:215 #, fuzzy -msgid "templates" -msgstr "Sjablonen" +msgid "Edit acl role" +msgstr "Bewerk share" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:223 #, fuzzy -msgid "GOsa object" -msgstr "Object" +msgid "Delete acl role" +msgstr "Verwijder gebruiker" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:242 #, fuzzy -msgid "functional users" -msgstr "Toon functionele gebruikers" +msgid "Edit acl" +msgstr "Bewerk klasse" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/acl/class_divListACL.inc:246 #, fuzzy -msgid "POSIX users" -msgstr "Posix instellingen" +msgid "Delete acl" +msgstr "Verwijder klasse" -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 #, fuzzy -msgid "mail users" -msgstr "Windows gebruikers" +msgid "Access control roles" +msgstr "Toegangsopties" -#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/acl/class_aclRole.inc:27 #, fuzzy -msgid "samba users" -msgstr "Windows gebruikers" +msgid "Edit AC roles" +msgstr "Rechten" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +#, fuzzy +msgid "All categories" +msgstr "Categorie toevoegen" -#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/acl/class_aclRole.inc:131 #, fuzzy -msgid "proxy users" -msgstr "Toon Proxy gebruikers" +msgid "Reset ACL" +msgstr "Verwijderen" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Gebruiker" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +#, fuzzy +msgid "One level" +msgstr "Log prioriteit" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Verander wachtwoord" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +#, fuzzy +msgid "Current object" +msgstr "Nieuw FAI object aanmaken" -#: plugins/admin/users/class_divListUsers.inc:189 +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 #, fuzzy -msgid "Apply template" -msgstr "Sjablonen" +msgid "Complete subtree" +msgstr "Subonderdelen negeren" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "Bewerk algemene eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "Omhoog" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "Bewerk UNIX eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" +msgstr "Omlaag" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "Bewerk omgeving eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Bewerken" -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "Bewerk E-mail eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" +msgstr "Verwijderen" -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "Bewerk telefoon eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "Bewerk Fax eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "Nieuw FAI object aanmaken" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "Bewerk Samba eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:408 +#, fuzzy +msgid "Edit category ACL" +msgstr "Bewerk klasse" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "Netatalk" +#: plugins/admin/acl/class_aclRole.inc:409 +#, fuzzy +msgid "Reset category ACL" +msgstr "Categorie" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "Bewerk Netatalk eigenschappen" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "Maak gebruiker aan vanuit sjabloon" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "" + +#: plugins/admin/acl/class_aclRole.inc:621 +#, fuzzy +msgid "Object in use" +msgstr "Objectnaam" -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "Maak gebruiker aan met dit sjabloon" +#: plugins/admin/acl/class_aclRole.inc:621 +#, php-format +msgid "This role cannot be removed while it is in use by these objects:" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:297 +#: plugins/admin/acl/tabs_acl_role.inc:28 #, fuzzy -msgid "inactive" -msgstr "actief" +msgid "ACL Templates" +msgstr "Sjablonen" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "wachtwoord" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "Verwijder gebruiker" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "Selecteer de subtree waaronder deze groep geplaatst wordt" -#: plugins/admin/users/class_divListUsers.inc:421 +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 #, fuzzy -msgid "Number of listed users" -msgstr "Naam van de afdeling" +msgid "New ACL" +msgstr "Nieuw" -#: plugins/admin/users/templatize.tpl:2 +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 #, fuzzy -msgid "Applying a template" -msgstr "Sjablonen" - -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." -msgstr "" +msgid "ACL type" +msgstr "type" -#: plugins/admin/users/templatize.tpl:33 +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 #, fuzzy -msgid "No templates available!" -msgstr "Bestand is beschikbaar" +msgid "Select an acl type" +msgstr "Selecteer een basis" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "Lijst met afdelingen" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +#, fuzzy +msgid "List of available ACL categories" +msgstr "Lijst met beschikbare pakketten" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" -msgstr "Afdelingnaam" +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" +msgstr "Objectgroepen" -#: plugins/admin/departments/class_divListDepartment.inc:75 -msgid "Regular expression for matching department names" -msgstr "Reguliere expressie voor overeenkomende afdelingen" +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#, fuzzy +msgid "Manage object groups" +msgstr "Naam van objectgroepen" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "afdeling" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "PHP fout" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "Bezig met verwerken van de gevraagde opdracht" +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#, fuzzy +msgid "object group" +msgstr "Objectgroep" -#: plugins/admin/departments/dep_iframe.tpl:7 -msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." -msgstr "" -"Uw browser heeft geen ondersteuning voor frames. Gebruik a.u.b. deze link om " -"de gewenste opdracht uit te voeren." +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Gebruiker" -#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 #, fuzzy -msgid "You are currently moving/renaming this department." -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +msgid "Windows Install" +msgstr "Windows werkstation" -#: plugins/admin/departments/dep_move_confirm.tpl:5 +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "Terminal" + +#: plugins/admin/ogroups/remove.tpl:7 msgid "" -"Modifying a departments naming attribute 'ou' or base may corrupt acls and " -"snapshot entries for all entire objects." +"Please double check if you really want to do this since there is no way for " +"GOsa to get your data back." 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/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +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/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/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Groepnaam" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "Naam van de afdeling" +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Naam van de groep" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "Naam van de aan te maken subtree" +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "Omschrijving voor deze groep" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "Omschrijving voor de afdeling" +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Lidmaatschap objecten" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Categorie" +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +msgid "List of object groups" +msgstr "Lijst met objectgroepen" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "Categorie voor deze subtree" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "Toon groepen" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "Selecteer de subtree waaronder deze afdeling geplaatst wordt" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "groepen" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "Provincie waar deze subtree zich bevindt" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "Objectgroepen" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "Plaats van deze subtree" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Toon programma groepen" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "Post adres van deze subtree" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "afdelingen" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "Basis telefoonnummer van deze subtree" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "servers" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "Basis Fax nummer van deze subtree" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "werkstations" + +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "Toon werkstations" + +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "Toon E-mail groepen" + +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#, fuzzy +msgid "printer groups" +msgstr "Primaire groep" + +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#, fuzzy +msgid "phone groups" +msgstr "Toon groepen" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "Administratieve instellingen" +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#, fuzzy +msgid "Number of listed object groups" +msgstr "Naam van objectgroepen" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "Markeer de afdeling als een onafhankelijke administratieve eenheid" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" +msgstr "Informatie" -#: 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." +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" 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." -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Afdeling beheer" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "afdelingen" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, fuzzy -msgid "Fatal error" -msgstr "Terminal server" +msgid "people" +msgstr "Toon personen" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#, 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!" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "groepen" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "Markeren van '%s'." +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "servers" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "Verplaatsen van %s naar %s" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" +msgstr "werkstations" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Object" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" +msgstr "terminals" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "Kopieren van %s is mislukt. Bewerking afgebroken." +#: plugins/admin/ogroups/class_ogroup.inc:440 +#, fuzzy +msgid "printer" +msgstr "printers" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Afdelingen" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "printers" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Land" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" +msgstr "telefoons" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Telefoon" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" +msgstr "programma's" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "Object '%s' is al gemarkeerd" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "geen" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "Toevoegen van markering (%s) aan object '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" +msgstr "te veel verschillende object tpyes!" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" -msgstr "Verwijderen van markering van object '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "gebruikers" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Manage Departments" -msgstr "Afdelingen" +msgid "winstations" +msgstr "Windows werkstation" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, 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." +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "Niet bestaande dn: " -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:872 +#, fuzzy +msgid "You can combine two different object types at maximum, only!" +msgstr "U kunt maximaal twee verschillende object types tegelijk combineren!" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:1056 +#, fuzzy +msgid "Object group generic" +msgstr "Objectgroep" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +#, fuzzy +msgid "Member" +msgstr "Groepsleden" #: plugins/admin/ogroups/tabs_ogroups.inc:112 #: plugins/admin/ogroups/tabs_ogroups.inc:298 @@ -2456,6 +2254,11 @@ msgstr "Programma's" msgid "Terminals" msgstr "Terminals" +#: 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" + #: plugins/admin/ogroups/ogroup_objects.tpl:6 msgid "Select objects to add" msgstr "Selecteer de toe te voegen objecten" @@ -2477,1927 +2280,2027 @@ msgstr "Toon overeenkomende objecten" msgid "Regular expression for matching object names" msgstr "Reguliere expressie voor overeenkomende objectnamen" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "Objectgroepen" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#: plugins/admin/users/class_userManagement.inc:27 #, fuzzy -msgid "Manage object groups" -msgstr "Naam van objectgroepen" +msgid "Manage users" +msgstr "Windows gebruikers" -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 #, fuzzy -msgid "object group" -msgstr "Objectgroep" +msgid "You have no permission to change this users password!" +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Server" +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Werkstation" +#: plugins/admin/users/class_userManagement.inc:548 +#, fuzzy +msgid "You have no permission to use this template!" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 #, fuzzy -msgid "Windows Install" -msgstr "Windows werkstation" +msgid "user" +msgstr "gebruikers" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" -msgstr "Terminal" +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." + +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "Sjabloon" + +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" +msgstr "Een nieuwe gebruiker aanmaken m.b.v. een sjabloon" + +#: 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." -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Printer" +#: plugins/admin/users/templatize.tpl:2 +#, fuzzy +msgid "Applying a template" +msgstr "Sjablonen" -#: plugins/admin/ogroups/paste_generic.tpl:7 +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" + +#: plugins/admin/users/templatize.tpl:33 #, fuzzy -msgid "Please enter the new object group name" -msgstr "Geef a.u.b. een nieuwe naam op" +msgid "No templates available!" +msgstr "Bestand is beschikbaar" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -msgid "List of object groups" -msgstr "Lijst met objectgroepen" +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Gebruikersbeheer" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Objectgroep" +#: 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." -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 -#, fuzzy -msgid "user groups" -msgstr "groepen" +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Lijst met gebruikers" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 -#, fuzzy -msgid "nested groups" -msgstr "Objectgroepen" +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Gebruikersnaam" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "department groups" -msgstr "afdelingen" +msgid "templates" +msgstr "Sjablonen" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "server groups" -msgstr "servers" +msgid "GOsa object" +msgstr "Object" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "workstation groups" -msgstr "werkstations" +msgid "functional users" +msgstr "Toon functionele gebruikers" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 -#, fuzzy -msgid "windows workstation groups" -msgstr "Toon werkstations" +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#: plugins/admin/users/class_divListUsers.inc:86 #, fuzzy -msgid "terminal groups" -msgstr "Toon E-mail groepen" +msgid "POSIX users" +msgstr "Posix instellingen" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#: plugins/admin/users/class_divListUsers.inc:87 #, fuzzy -msgid "printer groups" -msgstr "Primaire groep" +msgid "mail users" +msgstr "Windows gebruikers" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "phone groups" -msgstr "Toon groepen" +msgid "samba users" +msgstr "Windows gebruikers" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#: plugins/admin/users/class_divListUsers.inc:89 #, fuzzy -msgid "Number of listed object groups" -msgstr "Naam van objectgroepen" - -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "Informatie" +msgid "proxy users" +msgstr "Toon Proxy gebruikers" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -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/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "afdelingen" +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Verander wachtwoord" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "people" -msgstr "Toon personen" +msgid "Apply template" +msgstr "Sjablonen" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "groepen" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "servers" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "Bewerk algemene eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "werkstations" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "Bewerk UNIX eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "terminals" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "Bewerk omgeving eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:440 -#, fuzzy -msgid "printer" -msgstr "printers" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "Bewerk E-mail eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "printers" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "Bewerk telefoon eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" -msgstr "telefoons" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "Bewerk Fax eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "programma's" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "Bewerk Samba eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" -msgstr "te veel verschillende object tpyes!" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" +msgstr "Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "gebruikers" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "Bewerk Netatalk eigenschappen" -#: plugins/admin/ogroups/class_ogroup.inc:479 -#, fuzzy -msgid "winstations" -msgstr "Windows werkstation" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "Maak gebruiker aan vanuit sjabloon" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "Niet bestaande dn: " +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "Maak gebruiker aan met dit sjabloon" -#: plugins/admin/ogroups/class_ogroup.inc:872 +#: plugins/admin/users/class_divListUsers.inc:297 #, fuzzy -msgid "You can combine two different object types at maximum, only!" -msgstr "U kunt maximaal twee verschillende object types tegelijk combineren!" +msgid "inactive" +msgstr "actief" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -#, fuzzy -msgid "Object group generic" -msgstr "Objectgroep" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "wachtwoord" -#: plugins/admin/ogroups/class_ogroup.inc:1067 +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 #, fuzzy -msgid "Member" -msgstr "Groepsleden" +msgid "Not allowed" +msgstr "Het veranderen van het wachtwoord is niet toegestaan" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "Naam van de groep" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "Verwijder gebruiker" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Lidmaatschap objecten" +#: plugins/admin/users/class_divListUsers.inc:421 +#, fuzzy +msgid "Number of listed users" +msgstr "Naam van de afdeling" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/users/password.tpl:4 msgid "" -"Please double check if you really want to do this since there is no way for " -"GOsa to get your data back." +"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 "" -"Controleer a.u.b. of u dit daadwerkelijk wil doen, aangezien er geen " -"mogelijkheid voor GOsa is om uw data terug te krijgen." +"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." -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "Fax" +#: plugins/admin/users/password.tpl:21 +#, fuzzy +msgid "Strength" +msgstr "Straat" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "Ftp" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Groepen beheer" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "Thin Client" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Selecteer de toe te voegen gebruikers" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Objectnaam" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Selecteer om servers te zien" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "Inhoud" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "Zoek binnen subtree" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." -msgstr "Dit object heeft geen relatie met andere objecten." +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Toon gebruikers van afdeling" -#: plugins/generic/welcome/welcome.tpl:4 +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "Reguliere expressie voor overeenkomende gebruikersnamen" + +#: plugins/admin/groups/remove.tpl:6 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." +"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 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." +"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/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." +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "POSIX naam van de groep" + +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" msgstr "" -"Gebruik 'Uitloggen' bovenin om de verbinding te verbreken en 'Hoofdmenu' om " -"terug te keren naar het onderstaande pictogrammen overzicht." +"Normaliter worden IDs automatisch gegenereerd. Selecteer om handmatig te " +"specificeren" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "Het GOsa team" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Forceer GID" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Welkom %s!" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Geforceerd ID nummer" -#: 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/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/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Selecteer de toe te voegen objecten" +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "in domein" -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Selecteer om groepen die gebruikers bevatten te tonen" +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "Leden zitten in een telefoon beantwoordgroep" -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Selecteer de toe te voegen objecten" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" +msgstr "Leden zitten in een systeeminformatie groep (Nagios)" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Groepsleden" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "Configuratie bestand" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#, 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." -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Samba groep" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Windows beheerders" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Windows gebruikers" -#: include/utils/class_msgPool.inc:53 +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Windows gasten" + +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "These objects will be deleted: %s" -msgstr "" +msgid "Special group (%d)" +msgstr "Speciale groep (%d)" -#: include/utils/class_msgPool.inc:55 +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "! onbekend id" + +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "These '%s' objects will be deleted: %s" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:63 -#, fuzzy -msgid "You have no permission to delete this object!" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." - -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, fuzzy, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "Kan bestand '%s' niet aanmaken." -#: include/utils/class_msgPool.inc:74 -#, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Kan bestand '%s' niet aanmaken." -#: include/utils/class_msgPool.inc:81 +#: plugins/admin/groups/class_groupGeneric.inc:1213 #, fuzzy -msgid "You have no permission to create this object!" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +msgid "Generic group settings" +msgstr "Algemene wachtrij instellingen" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -#, fuzzy -msgid "You have no permission to create the object:" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Groepen" -#: include/utils/class_msgPool.inc:92 +#: plugins/admin/groups/class_groupGeneric.inc:1225 #, fuzzy -msgid "You have no permission to create these objects:" -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +msgid "Phone pickup group" +msgstr "Leden zitten in een telefoon beantwoordgroep" -#: include/utils/class_msgPool.inc:99 +#: plugins/admin/groups/class_groupGeneric.inc:1226 #, fuzzy -msgid "You have no permission to modify this object!" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "Nagios group" +msgstr "Nagios account" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#: plugins/admin/groups/class_groupGeneric.inc:1229 #, fuzzy -msgid "You have no permission to modify the object:" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "Group member" +msgstr "Groepsleden" -#: include/utils/class_msgPool.inc:110 +#: plugins/admin/groups/class_groupGeneric.inc:1230 #, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "Samba group type" +msgstr "Samba groep" -#: include/utils/class_msgPool.inc:117 +#: plugins/admin/groups/class_groupGeneric.inc:1231 #, fuzzy -msgid "You have no permission to view this object!" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "Samba domain name" +msgstr "Samba home" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 #, fuzzy -msgid "You have no permission to view the object:" +msgid "Samba SID" +msgstr "Samba" + +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" msgstr "" -"U heeft geen toestemming om een telefoon aan te maken onder deze 'Basis'." -#: include/utils/class_msgPool.inc:128 +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "You have no permission to view these objects:" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "group" +msgstr "groepen" -#: include/utils/class_msgPool.inc:135 +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" +msgstr "Lijst met groepen" + +#: 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" + +#: plugins/admin/groups/class_divListGroup.inc:85 #, fuzzy -msgid "You have no permission to move this object!" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "primary groups" +msgstr "Primaire groep" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#: plugins/admin/groups/class_divListGroup.inc:86 #, fuzzy -msgid "You have no permission to move the object:" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "samba groups mappings" +msgstr "Samba" -#: include/utils/class_msgPool.inc:146 +#: plugins/admin/groups/class_divListGroup.inc:87 #, fuzzy -msgid "You have no permission to move these objects:" -msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." +msgid "samba groups" +msgstr "Samba groep" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "Connection information" -msgstr "Persoonlijke informatie" +msgid "application settings" +msgstr "programma's" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "Kan niet verbinden met de database server!" +#: plugins/admin/groups/class_divListGroup.inc:90 +#, fuzzy +msgid "mail settings" +msgstr "E-mail instellingen" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "De opgegeven database kon niet geselecteerd worden!" +#: plugins/admin/groups/class_divListGroup.inc:91 +#, fuzzy +msgid "mail groups" +msgstr "Toon E-mail groepen" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" msgstr "" +"Selecteer om normale groepen die alleen functionele aspecten hebben te zien" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "De opgegeven database kon niet geselecteerd worden!" - -#: include/utils/class_msgPool.inc:194 -#, fuzzy, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "Het veld 'Fax' bevat een ongeldig Faxnummer." +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Toon functionele groepen" -#: include/utils/class_msgPool.inc:200 -#, 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/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "Naam van de groep" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "De opgegeven naam is ongeldig." +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" +msgstr "Groep instellingen" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#, fuzzy +msgid "GOsa settings 2/3" +msgstr "Gebruikersinstellingen" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:88 +#, fuzzy +msgid "Customize special parameters" +msgstr "Controleer parameter" -#: include/utils/class_msgPool.inc:213 -#, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "De opgegeven naam is ongeldig." +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "Nee" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "De opgegeven database kon niet geselecteerd worden!" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "Ja" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: setup/setup_frame.tpl:12 +#, fuzzy +msgid "GOsa setup wizard" +msgstr "GOsa help" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Installation" +msgstr "Windows werkstation" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "De opgegeven database kon niet geselecteerd worden!" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Steps" +msgstr "Systemen" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "De opgegeven 'UID' waarde is te klein." +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Opslaan" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: setup/class_setupStep_Finish.inc:38 +#, fuzzy +msgid "Write configuration file" +msgstr "Configuratie bestand" -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "De opgegeven 'UID' waarde is te klein." +#: setup/class_setupStep_Finish.inc:39 +#, fuzzy +msgid "Finish - write the configuration file" +msgstr "Configuratie bestand" -#: include/utils/class_msgPool.inc:247 -#, 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." +#: setup/class_setupStep_Finish.inc:101 +#, fuzzy +msgid "" +"Your configuration file is currently world readable. Please update the file " +"permissions!" +msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "" +#: setup/class_setupStep_Finish.inc:103 +#, fuzzy +msgid "The configuration is currently not readable or it does not exists." +msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." -#: include/utils/class_msgPool.inc:260 +#: setup/class_setupStep_Finish.inc:112 #, 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." +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: " -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "Het vereiste veld '(Achter)naam' is leeg." +#: setup/setup_finish.tpl:3 +#, fuzzy +msgid "Create your configuration file" +msgstr "Configuratie bestand" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "Systeem configuratie" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "Het veld 'Naam' bevat ongeldige karakters." +#: setup/setup_finish.tpl:18 +#, fuzzy +msgid "Status: " +msgstr "Status" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "Het veranderen van het wachtwoord is niet toegestaan" - -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "Het veld 'Naam' bevat ongeldige karakters." +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Zoeken" -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Verwijder printer mogelijkheden" +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 +#, php-format +msgid "Apply" +msgstr "Toepassen" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "Annuleren" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "" - -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Toepassen" +#: setup/setup_ldap.tpl:25 +#, fuzzy +msgid "LDAP connection" +msgstr "Max. verbrekingsduur" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Opslaan" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Naam van de locatie" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Toevoegen" +#: setup/setup_ldap.tpl:37 +#, fuzzy +msgid "Connection URL" +msgstr "Verbindingings URL" -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Toevoegen" +#: setup/setup_ldap.tpl:45 +#, fuzzy +msgid "TLS connection" +msgstr "Bel..." -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Verwijderen" +#: setup/setup_ldap.tpl:65 +#, fuzzy +msgid "Reload" +msgstr "Lezen" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "Stel in" +#: setup/setup_ldap.tpl:69 +#, fuzzy +msgid "Authentication" +msgstr "Nagios authenticatie" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Bewerken" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "Beheerders DN" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Bewerk gebruiker" +#: setup/setup_ldap.tpl:78 +#, fuzzy +msgid "Select user" +msgstr "Verwijder gebruiker" -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Terug" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" +msgstr "" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "Dit account heeft geen geldige GOsa extensies." +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Beheerders wachtwoord" -#: include/utils/class_msgPool.inc:381 -#, 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." +#: setup/setup_ldap.tpl:101 +#, fuzzy +msgid "Schema based settings" +msgstr "Samba Instellingen" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen " -"moet u eerst het samba / omgevings account verwijderen." -#: include/utils/class_msgPool.inc:400 -#, 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." +#: setup/setup_ldap.tpl:117 +#, fuzzy +msgid "Current status" +msgstr "Systeem status" -#: include/utils/class_msgPool.inc:403 -#, 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." +#: setup/setup_language.tpl:3 +#, fuzzy +msgid "Please select the preferred language" +msgstr "Voorkeurstaal" -#: include/utils/class_msgPool.inc:410 -#, fuzzy, php-format +#: setup/setup_language.tpl:5 msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +"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 "" -"Dit account heeft Unix mogelijkheden ingeschakeld. Om deze te verwijderen " -"moet u eerst het samba / omgevings account verwijderen." -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Programma instellingen" +#: setup/setup_language.tpl:9 +#, fuzzy +msgid "Please select your preferred language here" +msgstr "Voorkeurstaal" -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Posix instellingen" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#, fuzzy +msgid "Language setup" +msgstr "Taal" -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" +#: setup/class_setupStep_Language.inc:42 +#, fuzzy +msgid "This step allows you to select your preferred language." msgstr "" -"Gebruik de 'Bewerk' knop hieronder om de informatie in deze dialoog te " -"veranderen" - -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Januari" - -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Februari" +"Deze dialoog maakt het mogelijk om een apparaat te verbinden aan de computer " +"die u momenteel aan het bewerken bent." -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Maart" +#: setup/class_setupStep_Language.inc:47 +#, fuzzy +msgid "Automatic" +msgstr "automatisch" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "April" +#: setup/setup_config3.tpl:2 +#, fuzzy +msgid "GOsa core settings" +msgstr "E-mail instellingen" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Mei" +#: setup/setup_config3.tpl:6 +#, fuzzy +msgid "Disable primary group filter" +msgstr "Toon groepen van gebruiker" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Juni" +#: setup/setup_config3.tpl:18 +#, fuzzy +msgid "Display summary in listings" +msgstr "Toon overeenkomende macro's" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Juli" +#: setup/setup_config3.tpl:30 +#, fuzzy +msgid "Honour administrative units" +msgstr "Groepen beheer" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "Augustus" +#: setup/setup_config3.tpl:42 +#, fuzzy +msgid "Smarty compile directory" +msgstr "Persoonlijke map" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "September" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" +msgstr "" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Oktober" +#: setup/setup_config3.tpl:60 +#, fuzzy +msgid "Path for PPD storage" +msgstr "Wachtwoord encryptie" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "November" +#: setup/setup_config3.tpl:77 +#, fuzzy +msgid "Path for kiosk profile storage" +msgstr "Kiosk profiel instellingen" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "December" +#: setup/setup_config3.tpl:96 +#, fuzzy +msgid "Override sudo role ou" +msgstr "! onbekend id" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:115 #, fuzzy -msgid "Sunday" -msgstr "Achternaam" +msgid "Mail queue script" +msgstr "Inlogscript" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:134 #, fuzzy -msgid "Monday" -msgstr "maand" +msgid "Notification script" +msgstr "Geen certificaat geinstalleerd" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" +#: setup/setup_config3.tpl:153 +msgid "Enable edit locking" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Wednesday" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config3.tpl:175 +#, fuzzy +msgid "Login attribute" +msgstr "Telefoon attributen " + +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config3.tpl:210 +#, fuzzy +msgid "Warn if session is not encrypted" +msgstr "De sessie zal niet versleuteld zijn." + +#: setup/setup_config3.tpl:222 +#, fuzzy +msgid "Remember dialog filter settings" +msgstr "Algemene wachtrij instellingen" + +#: setup/setup_config3.tpl:234 +#, fuzzy +msgid "Session lifetime" +msgstr "Er is een sessie conflict gedetecteerd" + +#: setup/setup_config3.tpl:243 +msgid "Debugging" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:247 #, fuzzy -msgid "read operation" -msgstr "E-mail opties" +msgid "Show PHP errors" +msgstr "PHP fout" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config3.tpl:259 +#, fuzzy +msgid "Maximum LDAP query time" +msgstr "E-mail grootte" + +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:289 #, fuzzy -msgid "modify operation" -msgstr "Persoonlijke informatie" +msgid "Debug level" +msgstr "Log prioriteit" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 #, fuzzy -msgid "delete operation" -msgstr "Selecteer om werkstations te zien" +msgid "Disabled" +msgstr "gedeactiveerd" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 #, fuzzy -msgid "search operation" -msgstr "Het account verloopt op" +msgid "Enabled" +msgstr "gedeactiveerd" -#: include/utils/class_msgPool.inc:452 +#: setup/class_setupStep_Welcome.inc:38 #, fuzzy -msgid "authentication" -msgstr "Nagios authenticatie" +msgid "Welcome" +msgstr "Welkom %s!" -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "De database zoekopdracht is mislukt" +#: setup/class_setupStep_Welcome.inc:39 +#, fuzzy +msgid "The welcome message" +msgstr "Verwijder dit bericht" -#: include/utils/class_msgPool.inc:457 +#: setup/class_setupStep_Welcome.inc:40 #, fuzzy -msgid "LDAP operation failed!" -msgstr "De database zoekopdracht is mislukt" +msgid "Welcome to GOsa setup wizard" +msgstr "Welkom bij het GOsa installatie programma!" -#: include/utils/class_msgPool.inc:472 +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 #, fuzzy -msgid "Upload failed!" -msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." +msgid "GOsa settings 1/3" +msgstr "Gebruikersinstellingen" -#: include/utils/class_msgPool.inc:475 +#: setup/class_setupStep_Config1.inc:76 +#, fuzzy +msgid "GOsa generic settings" +msgstr "Algemene wachtrij instellingen" + +#: setup/class_setupStep_Config1.inc:118 #, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Log DB gebruiker" +msgid "The specified value for '%s' must be a numeric value" +msgstr "De sieve poort dient nummeriek te zijn." -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" msgstr "" -#: include/utils/class_msgPool.inc:484 +#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 #, php-format -msgid "Communication failure with the infrastructure service: %s" +msgid "Don't add a trailing comma to '%s'." msgstr "" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" -msgstr "" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "OU voor gebruikers opslag" -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "Deze 'dn' is geen groep." +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "OU voor groepen opslag" -#: include/utils/class_msgPool.inc:499 -#, php-format -msgid "This '%s' is still in use by these objects: %s" +#: setup/class_setupStep_Config1.inc:130 +#, fuzzy +msgid "Uid base must be numeric" +msgstr "Timeout dient nummeriek te zijn" + +#: setup/class_setupStep_Config1.inc:134 +#, fuzzy +msgid "The given password minimum length is not numeric." +msgstr "De sieve poort dient nummeriek te zijn." + +#: setup/class_setupStep_Config1.inc:137 +#, fuzzy +msgid "The given password differ value is not numeric." +msgstr "De sieve poort dient nummeriek te zijn." + +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +#, fuzzy +msgid "LDAP schema check" +msgstr "Ldap server" + +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" msgstr "" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Samba Instellingen" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" msgstr "" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Kan bestand '%s' niet openen." +#: setup/setup_config2.tpl:31 +#, fuzzy +msgid "RID base" +msgstr "Database" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Kan bestand '%s' niet openen." +#: setup/setup_config2.tpl:46 +#, fuzzy +msgid "Workstation container" +msgstr "Werkstation naam" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "Kan bestand '%s' niet openen." +#: setup/setup_config2.tpl:61 +#, fuzzy +msgid "Samba SID mapping" +msgstr "Samba" -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Ga naar basis afdelingen" +#: setup/setup_config2.tpl:71 +#, fuzzy +msgid "Timezone" +msgstr "Tijdzone" -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Kan bestand '%s' niet openen." +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "Voorkeurstaal" -#: include/utils/class_msgPool.inc:541 -#, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Zoeken naar iconv ondersteuning" +#: setup/setup_config2.tpl:96 +#, fuzzy +msgid "Additional GOsa settings" +msgstr "Programma instellingen" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" -msgstr "" +#: setup/setup_config2.tpl:112 +#, fuzzy +msgid "Enable DNS extension" +msgstr "Verwijder printer mogelijkheden" -#: include/class_certificate.inc:73 +#: setup/setup_config2.tpl:124 #, fuzzy -msgid "Certificate is empty!" -msgstr "Certificaten" - -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" -msgstr "" +msgid "Enable DHCP extension" +msgstr "Verwijder printer mogelijkheden" -#: include/class_certificate.inc:115 +#: setup/setup_config2.tpl:136 #, fuzzy -msgid "Cannot extract information for non PEM certificates!" -msgstr "Kan quota informatie niet ophaleven voor '%s'." +msgid "Enable mime type management" +msgstr "Systeembeheer" -#: include/class_certificate.inc:219 +#: setup/setup_config2.tpl:148 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "Geen geldig certificaat geladen" +msgid "Enable FAI release management" +msgstr "Blokkeerlijst beheer" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" -msgstr "Sluiten" +#: setup/setup_config2.tpl:160 +#, fuzzy +msgid "Enable user netatalk plugin" +msgstr "Netatalk account beheren" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Ga naar basis afdelingen" +#: setup/setup_config2.tpl:171 +#, fuzzy +msgid "Government mode" +msgstr "naar map" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Basis" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "Onbekend" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Ga een afdeling omhoog" +#: setup/setup_config2.tpl:186 +#, fuzzy +msgid "Syslog" +msgstr "Systeem logs" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Ga naar gebruikers afdeling" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "LDAP fout:" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Home" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "E-mail instellingen" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "Lijst herladen" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "E-mail methode" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/php_setup.inc:95 -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!" +#: setup/setup_config2.tpl:227 +#, fuzzy +msgid "Vacation templates" +msgstr "Werkstation sjabloon" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -#: include/php_setup.inc:100 +#: setup/setup_config2.tpl:253 #, fuzzy -msgid "Send bugreport" -msgstr "Afzender" - -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "Informatie weergeven/verbergen" +msgid "Snapshots / Undo" +msgstr "Het opslaan van de telefoon is mislukt" -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "PHP fout" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +#, fuzzy +msgid "Enable snapshots" +msgstr "Nagios account aanmaken" -#: include/php_setup.inc:134 -msgid "class" -msgstr "klasse" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +#, fuzzy +msgid "Snapshot base" +msgstr "Het opslaan van de telefoon is mislukt" -#: include/php_setup.inc:140 -msgid "function" -msgstr "functie" +#: 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:145 -msgid "static" -msgstr "statisch" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "" -#: include/php_setup.inc:149 -msgid "method" -msgstr "methode" +#: setup/setup_welcome.tpl:11 +#, fuzzy +msgid "Create a basic, single site configuration" +msgstr "FAX database" -#: include/php_setup.inc:182 -msgid "Trace" -msgstr "Trace" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" +msgstr "" -#: include/php_setup.inc:183 -msgid "File" -msgstr "Bestand" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" +msgstr "" -#: include/php_setup.inc:183 -msgid "Line" -msgstr "Regel" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" +msgstr "" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Type" +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" +msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" -msgstr "Argumenten" +#: setup/setup_welcome.tpl:20 +#, fuzzy +msgid "Find every possible configuration error" +msgstr "Configuratie bestand" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:25 +#, fuzzy +msgid "To continue..." +msgstr "Installatie vervolg..." + +#: setup/setup_welcome.tpl:28 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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/functions.inc:318 -#, php-format -msgid "FATAL: Error when connecting the LDAP. Server said '%s'." +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." msgstr "" -"FATAAL: Fout bij het verbinden met de LDAP server. De server meldt: '%s'." -#: include/functions.inc:380 +#: setup/class_setupStep_Ldap.inc:53 #, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "Gebruikersnaam / UID is niet uniek. Controleer uw LDAP database a.u.b." +msgid "LDAP setup" +msgstr "LDAP server" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 +#: setup/class_setupStep_Ldap.inc:54 #, fuzzy -msgid "Internal error" -msgstr "Terminal server" +msgid "LDAP connection setup" +msgstr "Bel..." -#: include/functions.inc:450 +#: setup/class_setupStep_Ldap.inc:55 #, 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." - -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +"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." + +#: setup/class_setupStep_Ldap.inc:105 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' failed!" +msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." + +#: setup/class_setupStep_Ldap.inc:107 +#, fuzzy, php-format +msgid "Bind as user '%s' failed!" +msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." + +#: setup/class_setupStep_Ldap.inc:113 +#, fuzzy +msgid "Please specify user and password!" +msgstr "Geef a.u.b. uw wachtwoord op!" + +#: setup/class_setupStep_Ldap.inc:115 #, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." + +#: setup/setup_migrate.tpl:5 msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +"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 "" -"Kan de blokkade informatie niet ophalen uit de LDAP database. Controleer a.u." -"b. de 'config' regel in gosa.conf!" -#: include/functions.inc:605 -#, fuzzy, php-format -msgid "LDAP server returned: %s" -msgstr "LDAP server" +#: setup/setup_migrate.tpl:33 +#, fuzzy +msgid "Check again" +msgstr "Controleer" + +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" +msgstr "" -#: include/functions.inc:699 -#, fuzzy +#: setup/setup_migrate.tpl:39 msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -"Er zijn meerdere blokkades voor het te blokkeren object gevonden. Dat zou " -"niet mogelijk moeten zijn. Meervoudige verwijzingen worden opgeschoond." - -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" -msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!" -#: include/functions.inc:998 -#, php-format +#: setup/setup_migrate.tpl:41 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"Be careful with this tool, there may be references pointing to this " +"workstations that can't be migrated." msgstr "" -"Stel de nieuwe hoeveelheidslimiet in op %s en toon me dit bericht indien de " -"limiet nog steeds overschreden wordt." - -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "onvolledig" - -#: include/functions.inc:1294 -msgid "Continue anyway" -msgstr "Toch doorgaan" -#: include/functions.inc:1296 -msgid "Edit anyway" -msgstr "Alsnog bewerken" - -#: include/functions.inc:1298 -#, 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." +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" +msgstr "" -#: include/functions.inc:1482 -msgid "Entries per page" -msgstr "Regels per pagina" +#: setup/setup_migrate.tpl:72 +#, fuzzy +msgid "Move selected workstations" +msgstr "Selecteer om werkstations te zien" -#: include/functions.inc:1510 -msgid "Apply filter" -msgstr "Filter toepassen" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" +msgstr "" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" +msgstr "Sluiten" -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "GOsa ontwikkelversie (Revisie %s)" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" +msgstr "" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: 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:1919 include/functions.inc:1939 -#, fuzzy -msgid "Cannot write to revision file!" -msgstr "Kan bestand '%s' niet aanmaken." +#: 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:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:2213 +#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 +#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 #, fuzzy -msgid "LDAP warning" -msgstr "LDAP beheer" +msgid "Hide changes" +msgstr "Open-Xchange" -#: include/functions.inc:2213 +#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 +#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 #, fuzzy -msgid "Cannot get schema information from server. No schema check possible!" +msgid "Show changes" +msgstr "Toon pakketten" + +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" msgstr "" -"Kan de schema informatie niet ophalen van de server. Schema controle is " -"onmogelijk!" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: 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:2246 +#: setup/setup_migrate.tpl:145 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"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:2289 -#, fuzzy, php-format -msgid "Missing required object class '%s'!" -msgstr "Toon FAI sjabloon objecten" +#: setup/setup_migrate.tpl:148 +#, fuzzy +msgid "Move selected users into this people tree" +msgstr "Maak gebruiker aan met dit sjabloon" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" -msgstr "" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +#, fuzzy +msgid "Next" +msgstr "tekst" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "" +#: setup/setup_migrate.tpl:199 +#, fuzzy +msgid "Abort" +msgstr "Poort" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:201 +#, fuzzy +msgid "Create a new GOsa administrator account" +msgstr "Netatalk account aanmaken" + +#: setup/setup_migrate.tpl:204 +msgid "" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/functions.inc:2303 -#, fuzzy, php-format -msgid "Class(es) available" -msgstr "Bestand is beschikbaar" +#: setup/setup_migrate.tpl:233 +#, fuzzy +msgid "Password (again)" +msgstr "Wachtwoord encryptie" -#: include/functions.inc:2325 +#: setup/setup_migrate.tpl:258 msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +"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:2326 +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"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:2330 +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#, fuzzy +msgid "Current" +msgstr "Nieuw FAI object aanmaken" + +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#, fuzzy +msgid "After migration" +msgstr "Gebruikersbeheer" + +#: setup/setup_migrate.tpl:313 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#, fuzzy +msgid "LDAP inspection" +msgstr "PHP configuratie inspectie" + +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" msgstr "" -#: include/functions.inc:2354 -msgid "German" -msgstr "Duits" +#: setup/class_setupStep_Migrate.inc:114 +#, fuzzy +msgid "Checking for root object" +msgstr "Zoeken naar iconv ondersteuning" -#: include/functions.inc:2355 -msgid "French" -msgstr "Frans" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "" -#: include/functions.inc:2356 -msgid "Italian" -msgstr "Italiaans" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "Zoeken naar iconv ondersteuning" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Spaans" +#: setup/class_setupStep_Migrate.inc:131 +#, fuzzy +msgid "Checking for invisible users" +msgstr "Zoeken naar iconv ondersteuning" -#: include/functions.inc:2358 -msgid "English" -msgstr "Engels" +#: setup/class_setupStep_Migrate.inc:137 +#, fuzzy +msgid "Checking for super administrator" +msgstr "Zoeken naar enkele additionele programma's" -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "Nederlands" +#: setup/class_setupStep_Migrate.inc:143 +#, fuzzy +msgid "Checking for users outside the people tree" +msgstr "Zoeken naar CUPS module" -#: include/functions.inc:2360 -msgid "Polish" -msgstr "Pools" +#: setup/class_setupStep_Migrate.inc:149 +#, fuzzy +msgid "Checking for groups outside the groups tree" +msgstr "Zoeken naar CUPS module" -#: include/functions.inc:2361 -msgid "Swedish" +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" +msgstr "" + +#: setup/class_setupStep_Migrate.inc:162 +#, fuzzy +msgid "Checking for duplicated UID numbers" +msgstr "Zoeken naar functie %s" + +#: setup/class_setupStep_Migrate.inc:168 +#, fuzzy +msgid "Checking for duplicate GID numbers" +msgstr "Zoeken naar functie %s" + +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +#, fuzzy +msgid "LDAP query failed" +msgstr "De database zoekopdracht is mislukt" + +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:217 +#, 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:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 +#, php-format +msgid "Ok" msgstr "" -#: include/functions.inc:2362 -#, fuzzy -msgid "Chinese" -msgstr "Chipset" +#: setup/class_setupStep_Migrate.inc:269 +#, 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:2363 -msgid "Russian" -msgstr "Russisch" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Mislukt" -#: include/functions.inc:2544 +#: setup/class_setupStep_Migrate.inc:329 #, php-format msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +"Found %s winstations outside the predefined winstation department ou '%s'." msgstr "" -"Het commando '%s' dat gespecificeerd is als POSTMODIFY voor module '%s' " -"bestaat niet." -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" -msgstr "" +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +#, fuzzy +msgid "Migrate" +msgstr "Aanmaken" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." -msgstr "" +#: setup/class_setupStep_Migrate.inc:402 +#, fuzzy, php-format +msgid "Found %s groups outside the configured tree '%s'." +msgstr "U staat op het punt de invoer '%s' te kopieren." -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "" +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +#, fuzzy +msgid "Move" +msgstr "Modus" -#: include/class_socketClient.inc:191 +#: setup/class_setupStep_Migrate.inc:479 #, php-format -msgid "Socket timeout of %s seconds reached." +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 #, php-format -msgid "Delete process has been canceled by plugin '%s': %s" -msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s" - -#: include/class_tabs.inc:373 -msgid "References" -msgstr "Referenties" - -#: include/class_plugin.inc:497 msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"The specified user '%s' does not have full access to your ldap database." msgstr "" -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: setup/class_setupStep_Migrate.inc:617 #, php-format -msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +msgid "Found %s user(s) that will not be visible in GOsa." msgstr "" -#: include/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +#, fuzzy +msgid "Migration error" +msgstr "Aanmaken" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 #, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!" +msgid "Cannot migrate department '%s':" +msgstr "Ga naar basis afdelingen" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" +#: setup/class_setupStep_Migrate.inc:758 +#, php-format +msgid "Found %s department(s) that will not be visible in GOsa." msgstr "" -#: include/class_plugin.inc:1786 -#, fuzzy -msgid "from" -msgstr "willekeurig" +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." +msgstr "" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -#, fuzzy -msgid "to" -msgstr "Stop" +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" +msgstr "" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Restore" -msgstr "Opnieuw proberen" +msgid "Password error" +msgstr "Wachtwoord verloopt op" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/class_setupStep_Migrate.inc:1004 +#, fuzzy +msgid "Provided passwords do not match!" msgstr "" +"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar " +"overeen!" -#: include/class_plugin.inc:1993 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Create snapshot" -msgstr "Nagios account aanmaken" +msgid "Input error" +msgstr "PHP fout" -#: include/class_plugin.inc:1994 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Create a new snapshot from this object" -msgstr "Nieuw FAI object aanmaken" - -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "knippen" - -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "Deze invoer knippen" - -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "kopieer" - -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "Deze invoer kopieren" +msgid "Specify a valid user ID!" +msgstr "Geef a.u.b. een geldige gebruikersnaam op!" -#: include/class_plugin.inc:2053 -#, fuzzy -msgid "Copy" -msgstr "kopieer" +#: setup/class_setupStep_Migrate.inc:1051 +#, php-format +msgid "Adding an administrative user failed: object '%s' already exists!" +msgstr "" -#: include/class_plugin.inc:2057 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 #, fuzzy -msgid "Cut" -msgstr "knippen" +msgid "Cannot move users to the requested department!" +msgstr "Ga naar de afdeling van de gebruiker" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "Plakken" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "" -#: include/class_acl.inc:26 +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 #, fuzzy -msgid "Access control" -msgstr "Toegangsopties" +msgid "to" +msgstr "Stop" -#: include/class_acl.inc:207 -msgid "Reset ACLs" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" msgstr "" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" msgstr "" -#: include/class_acl.inc:489 -msgid "No ACL settings for this category!" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" msgstr "" -#: include/class_acl.inc:491 -#, php-format -msgid "Contains ACLs for these objects: %s" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 -#, fuzzy -msgid "category ACL" -msgstr "Categorie" - -#: include/class_acl.inc:543 -#, php-format -msgid "Edit ACL for '%s' - scope is '%s'" +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 -#, fuzzy -msgid "Show/hide advanced settings" -msgstr "Geavanceerde telefoon instellingen" - -#: include/class_acl.inc:723 +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 #, fuzzy -msgid "Create objects" +msgid "Try to create root object" msgstr "Nieuw FAI object aanmaken" -#: include/class_acl.inc:724 -#, fuzzy -msgid "Move objects" -msgstr "Lidmaatschap objecten" - -#: include/class_acl.inc:725 -#, fuzzy -msgid "Remove objects" -msgstr "Lidmaatschap objecten" - -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "alleen lezen" - -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "afleveren, lezen & schrijven" - -#: include/class_acl.inc:743 -#, fuzzy -msgid "Complete object" -msgstr "Nieuw FAI object aanmaken" - -#: include/class_acl.inc:879 -#, fuzzy, php-format -msgid "Unkown ACL type '%s'!" -msgstr "Onbekende FAI status %s" - -#: include/class_acl.inc:922 -#, fuzzy, php-format -msgid "Unknown entry '%s'!" -msgstr "Onbekende FAI status %s" - -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, fuzzy, php-format -msgid "Role: %s" -msgstr "Funktie" - -#: include/class_acl.inc:984 -#, fuzzy -msgid "unknown role" -msgstr "! onbekend id" - -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" +#: setup/class_setupStep_Migrate.inc:1955 +#, fuzzy, php-format +msgid "Copy '%s' to '%s' failed:" +msgstr "Verplaatsen van %s naar %s" + +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" msgstr "" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "Groepsleden" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." msgstr "" -#: include/class_acl.inc:1177 -#, fuzzy -msgid "Access control list" -msgstr "Toegangsopties" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." +msgstr "" -#: include/class_acl.inc:1182 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "ACL roles" -msgstr "Rechten" +msgid "PHP setup configuration" +msgstr "FAX database" -#: include/class_acl.inc:1185 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Role name" -msgstr "Hernoemen" +msgid "show information" +msgstr "Persoonlijke informatie" -#: include/class_acl.inc:1186 +#: setup/setup_schema.tpl:3 #, fuzzy -msgid "Role description" -msgstr "Eenheid omschrijving" +msgid "Schema specific settings" +msgstr "Samba Instellingen" -#: include/class_pluglist.inc:56 -msgid "All objects in this category" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" msgstr "" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/setup_schema.tpl:16 +#, fuzzy +msgid "Check status" +msgstr "Systeem status" + +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" -msgstr "Onbekend" +#: setup/setup_schema.tpl:23 +#, fuzzy +msgid "Schema check failed" +msgstr "Het opslaan van de telefoon is mislukt" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/setup_schema.tpl:31 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." msgstr "" -"U bent momenteel database gegevens aan het bewerken. Wilt u eventuele " -"wijzigingen ongedaan maken?" -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." +#: 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 "" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" -msgstr "XML fout in gosa.conf: %s op regel %d" - -#: include/class_config.inc:242 +#: 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:574 +#: setup/class_setupStep_Config3.inc:198 #, 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_config.inc:878 +#: setup/class_setupStep_Config3.inc:202 #, fuzzy -msgid "Configuration" -msgstr "Configuratie bestand" - -#: include/class_config.inc:878 -msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." -msgstr "" - -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "Kopieren & plakken wizard" +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Toekomstige dagen moet een waarde bevatten." -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "Kan bestand '%s' niet aanmaken." +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +#, fuzzy +msgid "License" +msgstr "Regel" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "Kan bestand '%s' niet aanmaken." - -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" msgstr "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_CopyPasteHandler.inc:508 +#: setup/class_setupStep_Checks.inc:64 #, fuzzy -msgid "Cannot paste" -msgstr "Plakken onmogelijk" +msgid "Checking PHP version" +msgstr "Controle op PHP versie (>=4.1.0)" -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: 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." -#: include/class_gosaSupportDaemon.inc:851 -#, fuzzy -msgid "Cannot not parse XML!" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." msgstr "" -"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!" -#: include/class_gosaSupportDaemon.inc:1177 -#, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Kan bestand '%s' niet aanmaken." +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "" -#: include/class_gosaSupportDaemon.inc:1197 -#, fuzzy, php-format -msgid "Cannot remove entry %s!" -msgstr "Onbekende FAI status %s" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." +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/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." +msgstr "" -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." -msgstr "Help is (nog) niet beschikbaar voor deze module." +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" -msgstr "vorige" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." +msgstr "" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "volgende" +#: setup/class_setupStep_Checks.inc:112 +#, fuzzy +msgid "mbstring" +msgstr "Samba Instellingen" -#: 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/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." +msgstr "" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" -msgstr "%s%% resultaat in bestand %s" +#: setup/class_setupStep_Checks.inc:121 +#, fuzzy +msgid "" +"GOsa requires this module to communicate with several supported databases." +msgstr "" +"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit " +"databases." -#: include/class_SnapShotDialog.inc:90 -#, 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_Checks.inc:128 +msgid "CUPS" +msgstr "" -#: include/class_SnapShotDialog.inc:145 +#: setup/class_setupStep_Checks.inc:129 #, fuzzy -msgid "Remove snapshot" -msgstr "Nagios account aanmaken" - -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." msgstr "" +"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit " +"databases." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:148 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:158 +#, 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." -#: include/class_ldap.inc:768 -#, php-format -msgid "while operating on '%s' using LDAP server '%s'" -msgstr "bij het bewerken van '%s' op LDAP server '%s'" +#: setup/class_setupStep_Checks.inc:159 +#, fuzzy +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +msgstr "Controle of 'register_globals' ingesteld staat op 'off'" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" -msgstr "bij het bewerken van LDAP server %s" +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." +msgstr "" -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:168 +#, fuzzy msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -"Dit is geen geldige DN: '%s'. Een blok dat geïmporteerd wordt, dient te " -"beginnen met 'dn: ...' op regel %s" +"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." -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +#: setup/class_setupStep_Checks.inc:169 +#, fuzzy +msgid "" +"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " +"higher." msgstr "" -"Fout bij het importeren van dn: '%s', controleer uw LDIF bestand a.u.b. " -"vanaf regel %s!" +"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie " +"in uw php.ini ingesteld zijn op 'Off'." -#: include/class_multi_plug.inc:362 +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 #, fuzzy -msgid "You are currently editing mutliple entries." -msgstr "U heeft geen toestemming om deze afdeling te verwijderen." +msgid "Off" +msgstr "Offline" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:177 #, fuzzy -msgid "Password reset" -msgstr "Wachtwoord verloopt op" +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'." -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:178 #, 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. " - -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Log DB gebruiker" +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'." -#: include/class_log.inc:107 +#: setup/class_setupStep_Checks.inc:185 #, fuzzy -msgid "MySQL error" -msgstr "LDAP fout:" +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." -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:186 +msgid "" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." msgstr "" -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" +#: setup/class_setupStep_Checks.inc:193 +#, 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" -#: include/class_log.inc:124 +#: setup/class_setupStep_Checks.inc:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:201 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "De opgegeven naam is ongeldig." +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." -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." msgstr "" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "Kan niet verbinden met de database server!" +#: setup/class_setupStep_Checks.inc:209 +#, 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." -#: include/class_baseSelectDialog.inc:44 +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:216 #, fuzzy -msgid "Choose a base" -msgstr "Selecteer een basis" +msgid "On" +msgstr "Open" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:217 msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"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." -#: include/class_baseSelectDialog.inc:61 +#: setup/class_setupStep_Checks.inc:218 #, fuzzy -msgid "Use" -msgstr "Gebruiker" +msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." +msgstr "Controle of 'register_globals' ingesteld staat op 'off'" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Actie" +#: setup/class_setupStep_Checks.inc:225 +#, 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." -#: include/class_baseSelectDialog.inc:72 +#: setup/class_setupStep_Checks.inc:226 #, fuzzy -msgid "Filter entries with this syntax" -msgstr "Filter regels met deze syntax" +msgid "" +"Search for 'zend.ze1_compatibility_mode' 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'." -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Selecteer een basis" +#: setup/class_setupStep_Checks.inc:236 +#, fuzzy +msgid "Configuration writeable" +msgstr "Configuratie bestand" -#: setup/class_setupStep_Ldap.inc:53 +#: setup/class_setupStep_Checks.inc:237 #, fuzzy -msgid "LDAP setup" -msgstr "LDAP server" +msgid "The configuration file can't be written" +msgstr "Configuratie bestand" -#: setup/class_setupStep_Ldap.inc:54 +#: setup/class_setupStep_Checks.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 "" + +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "" + +#: setup/setup_config1.tpl:6 #, fuzzy -msgid "LDAP connection setup" -msgstr "Bel..." +msgid "Theme" +msgstr "MIME" -#: setup/class_setupStep_Ldap.inc:55 +#: setup/setup_config1.tpl:15 #, fuzzy -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +msgid "Apache" +msgstr "Cache" + +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" 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:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "Nee" +#: setup/setup_config1.tpl:27 +#, fuzzy +msgid "People and group storage" +msgstr "OU voor gebruikers opslag" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "Ja" +#: setup/setup_config1.tpl:30 +#, fuzzy +msgid "People DN attribute" +msgstr "DN atribuut voor gebruikers" -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." +#: setup/setup_config1.tpl:41 +#, fuzzy +msgid "People storage subtree" +msgstr "OU voor gebruikers opslag" + +#: setup/setup_config1.tpl:50 +#, fuzzy +msgid "Group storage subtree" +msgstr "OU voor groepen opslag" -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" +msgstr "" -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "" -#: setup/class_setupStep_Ldap.inc:113 +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "Please specify user and password!" -msgstr "Geef a.u.b. uw wachtwoord op!" +msgid "Automatic UIDs" +msgstr "Automatische modusregels" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." +#: setup/setup_config1.tpl:113 +#, fuzzy +msgid "Number base for people/groups" +msgstr "ID basis voor gebruikers/groepen" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Opslaan" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 +#: setup/setup_config1.tpl:140 #, fuzzy -msgid "Write configuration file" -msgstr "Configuratie bestand" +msgid "Password encryption algorithm" +msgstr "Encryptie algoritme" -#: setup/class_setupStep_Finish.inc:39 +#: setup/setup_config1.tpl:151 #, fuzzy -msgid "Finish - write the configuration file" -msgstr "Configuratie bestand" +msgid "Password restrictions" +msgstr "Wachtwoord verloopt op" -#: setup/class_setupStep_Finish.inc:101 +#: 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 "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" -msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." +msgid "Password change hook" +msgstr "Het veranderen van het wachtwoord is niet toegestaan" -#: setup/class_setupStep_Finish.inc:103 +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" + +#: setup/setup_config1.tpl:209 #, fuzzy -msgid "The configuration is currently not readable or it does not exists." -msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." +msgid "Use account expiration" +msgstr "Het account verloopt op" -#: setup/class_setupStep_Finish.inc:112 -#, fuzzy, php-format +#: setup/setup_config1.tpl:221 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:" +"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 "" -"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: " +"GOsa ondersteunt diverse encryptie types voor uw wachtwoorden. Normaliter is " +"dit aanpasbaar via gebruikerssjablonen. Hier kunt u echter een standaard te " +"gebruiken methode opgeven." -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +#: setup/setup_config1.tpl:222 #, fuzzy -msgid "License" -msgstr "Regel" +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." -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +#: 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." -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#: setup/setup_config1.tpl:224 #, fuzzy -msgid "Language setup" -msgstr "Taal" +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." -#: setup/class_setupStep_Language.inc:42 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, 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 "Setup error" +msgstr "Systeem status" -#: setup/class_setupStep_Language.inc:47 +#: setup/class_setup.inc:197 #, fuzzy -msgid "Automatic" -msgstr "automatisch" +msgid "Completed" +msgstr "onvolledig" #: setup/class_setupStep_Feedback.inc:92 #, fuzzy @@ -4449,11 +4352,6 @@ msgstr "Geen certificaat geinstalleerd" msgid "Get notifications or send feedback" msgstr "Secties voor deze versie" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -#, fuzzy -msgid "Setup error" -msgstr "Systeem status" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" @@ -4482,1612 +4380,1736 @@ msgid "" "You have to select at least one of both options, subscribe or send feedback." msgstr "" -#: setup/class_setup.inc:197 -#, fuzzy -msgid "Completed" -msgstr "onvolledig" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" +msgstr "" -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -#, fuzzy -msgid "Next" -msgstr "tekst" +#: 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 "" -#: setup/setup_finish.tpl:3 -#, fuzzy -msgid "Create your configuration file" -msgstr "Configuratie bestand" +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "E-mail adres" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "Systeem configuratie" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "" -#: setup/setup_finish.tpl:18 -#, fuzzy -msgid "Status: " -msgstr "Status" +#: 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 "" -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Zoeken" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" +msgstr "" -#: setup/setup_ldap.tpl:25 -#, fuzzy -msgid "LDAP connection" -msgstr "Max. verbrekingsduur" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" +msgstr "" -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Naam van de locatie" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" +msgstr "" -#: setup/setup_ldap.tpl:37 -#, fuzzy -msgid "Connection URL" -msgstr "Verbindingings URL" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" +msgstr "" -#: setup/setup_ldap.tpl:45 -#, fuzzy -msgid "TLS connection" -msgstr "Bel..." +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" +msgstr "" -#: setup/setup_ldap.tpl:65 -#, fuzzy -msgid "Reload" -msgstr "Lezen" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" +msgstr "" -#: setup/setup_ldap.tpl:69 -#, fuzzy -msgid "Authentication" -msgstr "Nagios authenticatie" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "Beheerders DN" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" +msgstr "" -#: setup/setup_ldap.tpl:78 +#: 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 #, fuzzy -msgid "Select user" -msgstr "Verwijder gebruiker" +msgid "Features" +msgstr "Toekomstig" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Beheerders wachtwoord" - -#: setup/setup_ldap.tpl:101 -#, fuzzy -msgid "Schema based settings" -msgstr "Samba Instellingen" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" +msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/setup_ldap.tpl:117 -#, fuzzy -msgid "Current status" -msgstr "Systeem status" +#: include/class_SnapShotDialog.inc:90 +#, 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_Config1.inc:74 setup/class_setupStep_Config1.inc:75 -#, fuzzy -msgid "GOsa settings 1/3" -msgstr "Gebruikersinstellingen" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "" -#: setup/class_setupStep_Config1.inc:76 +#: include/class_SnapShotDialog.inc:145 #, fuzzy -msgid "GOsa generic settings" -msgstr "Algemene wachtrij instellingen" +msgid "Remove snapshot" +msgstr "Nagios account 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_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 #, php-format -msgid "Don't add a trailing comma to '%s'." +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "OU voor gebruikers opslag" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "OU voor groepen opslag" +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen!" -#: setup/class_setupStep_Config1.inc:130 -#, fuzzy -msgid "Uid base must be numeric" -msgstr "Timeout dient nummeriek te zijn" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" +msgstr "" -#: setup/class_setupStep_Config1.inc:134 +#: include/class_plugin.inc:1786 #, fuzzy -msgid "The given password minimum length is not numeric." -msgstr "De sieve poort dient nummeriek te zijn." +msgid "from" +msgstr "willekeurig" -#: setup/class_setupStep_Config1.inc:137 +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 #, fuzzy -msgid "The given password differ value is not numeric." -msgstr "De sieve poort dient nummeriek te zijn." +msgid "Restore" +msgstr "Opnieuw proberen" -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#: include/class_plugin.inc:1994 #, fuzzy -msgid "GOsa settings 2/3" -msgstr "Gebruikersinstellingen" +msgid "Create snapshot" +msgstr "Nagios account aanmaken" -#: setup/class_setupStep_Config2.inc:88 +#: include/class_plugin.inc:1995 #, fuzzy -msgid "Customize special parameters" -msgstr "Controleer parameter" - -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" -msgstr "" +msgid "Create a new snapshot from this object" +msgstr "Nieuw FAI object aanmaken" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -#, fuzzy -msgid "LDAP inspection" -msgstr "PHP configuratie inspectie" +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "knippen" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "" +#: include/class_plugin.inc:2013 +msgid "Cut this entry" +msgstr "Deze invoer knippen" -#: setup/class_setupStep_Migrate.inc:114 -#, fuzzy -msgid "Checking for root object" -msgstr "Zoeken naar iconv ondersteuning" +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "kopieer" -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "" +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "Deze invoer kopieren" -#: setup/class_setupStep_Migrate.inc:126 +#: include/class_plugin.inc:2055 #, fuzzy -msgid "Checking for invisible departments" -msgstr "Zoeken naar iconv ondersteuning" +msgid "Copy" +msgstr "kopieer" -#: setup/class_setupStep_Migrate.inc:131 +#: include/class_plugin.inc:2059 #, fuzzy -msgid "Checking for invisible users" -msgstr "Zoeken naar iconv ondersteuning" +msgid "Cut" +msgstr "knippen" -#: setup/class_setupStep_Migrate.inc:137 -#, fuzzy -msgid "Checking for super administrator" -msgstr "Zoeken naar enkele additionele programma's" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "Plakken" -#: setup/class_setupStep_Migrate.inc:143 -#, fuzzy -msgid "Checking for users outside the people tree" -msgstr "Zoeken naar CUPS module" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, fuzzy, php-format +msgid "Copy and paste failed!" +msgstr "Kopieren & plakken wizard" -#: setup/class_setupStep_Migrate.inc:149 -#, fuzzy -msgid "Checking for groups outside the groups tree" -msgstr "Zoeken naar CUPS module" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, fuzzy, php-format +msgid "Cannot set permission for '%s'" +msgstr "Kan bestand '%s' niet aanmaken." -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" msgstr "" -#: setup/class_setupStep_Migrate.inc:162 -#, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Zoeken naar functie %s" - -#: setup/class_setupStep_Migrate.inc:168 -#, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Zoeken naar functie %s" - -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 #, fuzzy -msgid "LDAP query failed" -msgstr "De database zoekopdracht is mislukt" - -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "" - -#: setup/class_setupStep_Migrate.inc:217 -#, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Er is een dubbele waarde gevonden voor record type '%s'." +msgid "Internal error" +msgstr "Terminal server" -#: setup/class_setupStep_Migrate.inc:269 +#: include/class_CopyPasteHandler.inc:175 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Er is een dubbele waarde gevonden voor record type '%s'." +msgid "No write permission in '%s'" +msgstr "Kan bestand '%s' niet aanmaken." -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Mislukt" +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:329 +#: include/class_CopyPasteHandler.inc:410 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "This object will be pasted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 +#: include/class_CopyPasteHandler.inc:508 #, fuzzy -msgid "Migrate" -msgstr "Aanmaken" +msgid "Cannot paste" +msgstr "Plakken onmogelijk" -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:15 #, fuzzy, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "U staat op het punt de invoer '%s' te kopieren." +msgid "Select to list objects of type '%s'." +msgstr "Selecteer de toe te voegen objecten" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -#, fuzzy -msgid "Move" -msgstr "Modus" +#: include/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Selecteer om groepen die gebruikers bevatten te tonen" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Selecteer de toe te voegen objecten" -#: setup/class_setupStep_Migrate.inc:479 -#, php-format -msgid "Found %s user(s) outside the configured tree '%s'." +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "This '%s' object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:40 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "This object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Aanmaken" +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Ga naar basis afdelingen" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Found %s department(s) that will not be visible in GOsa." +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:55 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:63 #, fuzzy -msgid "Password error" -msgstr "Wachtwoord verloopt op" +msgid "You have no permission to delete this object!" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 #, fuzzy -msgid "Provided passwords do not match!" -msgstr "" -"Het nieuwe wachtwoord en het herhaalde wachtwoord komen niet met elkaar " -"overeen!" +msgid "You have no permission to delete the object:" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:74 #, fuzzy -msgid "Input error" -msgstr "PHP fout" +msgid "You have no permission to delete these objects:" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:81 #, fuzzy -msgid "Specify a valid user ID!" -msgstr "Geef a.u.b. een geldige gebruikersnaam op!" +msgid "You have no permission to create this object!" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1051 -#, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "" +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#, fuzzy +msgid "You have no permission to create the object:" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 +#: include/utils/class_msgPool.inc:92 #, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "Ga naar de afdeling van de gebruiker" +msgid "You have no permission to create these objects:" +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:99 +#, fuzzy +msgid "You have no permission to modify this object!" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:110 +#, fuzzy +msgid "You have no permission to modify these objects:" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." + +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#, fuzzy +msgid "You have no permission to view the object:" msgstr "" +"U heeft geen toestemming om een telefoon aan te maken onder deze 'Basis'." -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" +#: include/utils/class_msgPool.inc:128 +#, fuzzy +msgid "You have no permission to view these objects:" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." + +#: include/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." + +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#, fuzzy +msgid "You have no permission to move the object:" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." + +#: include/utils/class_msgPool.inc:146 +#, fuzzy +msgid "You have no permission to move these objects:" +msgstr "U heeft geen toestemming om deze blokkeerlijst te verwijderen." + +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +#, fuzzy +msgid "Connection information" +msgstr "Persoonlijke informatie" + +#: include/utils/class_msgPool.inc:158 +#, fuzzy, php-format +msgid "Cannot connect to %s database!" +msgstr "Kan niet verbinden met de database server!" + +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "De opgegeven database kon niet geselecteerd worden!" + +#: include/utils/class_msgPool.inc:176 +#, php-format +msgid "No %s server defined!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "De opgegeven database kon niet geselecteerd worden!" + +#: include/utils/class_msgPool.inc:194 +#, fuzzy, php-format +msgid "The field '%s' contains a reserved keyword!" +msgstr "Het veld 'Fax' bevat een ongeldig Faxnummer." + +#: include/utils/class_msgPool.inc:200 +#, 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." -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -#, fuzzy -msgid "Try to create root object" -msgstr "Nieuw FAI object aanmaken" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "De opgegeven naam is ongeldig." -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:209 +#, php-format +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:211 +#, php-format +msgid "'%s' command for plugin %s is invalid!" +msgstr "" + +#: include/utils/class_msgPool.inc:213 #, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Verplaatsen van %s naar %s" +msgid "'%s' command (%s) is invalid!" +msgstr "De opgegeven naam is ongeldig." -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -#, fuzzy -msgid "GOsa settings 3/3" -msgstr "Gebruikersinstellingen" +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "De opgegeven database kon niet geselecteerd worden!" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/class_setupStep_Config3.inc:198 -#, fuzzy -msgid "Session lifetime must be a numeric value!" -msgstr "Toekomstige dagen moet een waarde bevatten." +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" +msgstr "" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Toekomstige dagen moet een waarde bevatten." +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "De opgegeven database kon niet geselecteerd worden!" -#: setup/setup_language.tpl:3 -#, fuzzy -msgid "Please select the preferred language" -msgstr "Voorkeurstaal" +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "De opgegeven 'UID' waarde is te klein." -#: 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." +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "Voorkeurstaal" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "De opgegeven 'UID' waarde is te klein." -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:247 +#, 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." -#: 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." +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "E-mail adres" +#: include/utils/class_msgPool.inc:260 +#, 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." -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" -msgstr "" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "Het vereiste veld '(Achter)naam' is leeg." -#: 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." +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" -msgstr "" +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "Het veld 'Naam' bevat ongeldige karakters." -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" msgstr "" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +msgstr "Het veranderen van het wachtwoord is niet toegestaan" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "Het veld 'Naam' bevat ongeldige karakters." -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Verwijder printer mogelijkheden" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Opslaan" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Toevoegen" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Toevoegen" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" -msgstr "" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +msgstr "Verwijderen" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "Stel in" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "Bewerken" -#: setup/setup_feedback.tpl:123 -#, fuzzy -msgid "Features" -msgstr "Toekomstig" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Bewerk gebruiker" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Terug" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "Dit account heeft geen geldige GOsa extensies." -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" +#: include/utils/class_msgPool.inc:381 +#, 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." -#: setup/class_setupStep_Welcome.inc:38 -#, fuzzy -msgid "Welcome" -msgstr "Welkom %s!" +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, 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." -#: setup/class_setupStep_Welcome.inc:39 -#, fuzzy -msgid "The welcome message" -msgstr "Verwijder dit bericht" +#: include/utils/class_msgPool.inc:400 +#, 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." -#: setup/class_setupStep_Welcome.inc:40 -#, fuzzy -msgid "Welcome to GOsa setup wizard" -msgstr "Welkom bij het GOsa installatie programma!" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: setup/setup_config1.tpl:2 -msgid "Look and feel" +#: include/utils/class_msgPool.inc:410 +#, 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." -#: setup/setup_config1.tpl:6 -#, fuzzy -msgid "Theme" -msgstr "MIME" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Programma instellingen" -#: setup/setup_config1.tpl:15 -#, fuzzy -msgid "Apache" -msgstr "Cache" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Posix instellingen" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" +#: include/utils/class_msgPool.inc:430 +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" -#: setup/setup_config1.tpl:27 -#, fuzzy -msgid "People and group storage" -msgstr "OU voor gebruikers opslag" - -#: setup/setup_config1.tpl:30 -#, fuzzy -msgid "People DN attribute" -msgstr "DN atribuut voor gebruikers" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Januari" -#: setup/setup_config1.tpl:41 -#, fuzzy -msgid "People storage subtree" -msgstr "OU voor gebruikers opslag" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Februari" -#: setup/setup_config1.tpl:50 -#, fuzzy -msgid "Group storage subtree" -msgstr "OU voor groepen opslag" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Maart" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "April" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Mei" -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "Automatische modusregels" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Juni" -#: setup/setup_config1.tpl:113 -#, fuzzy -msgid "Number base for people/groups" -msgstr "ID basis voor gebruikers/groepen" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Juli" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Augustus" -#: setup/setup_config1.tpl:140 -#, fuzzy -msgid "Password encryption algorithm" -msgstr "Encryptie algoritme" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "September" -#: setup/setup_config1.tpl:151 -#, fuzzy -msgid "Password restrictions" -msgstr "Wachtwoord verloopt op" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Oktober" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "November" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "December" -#: setup/setup_config1.tpl:182 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Password change hook" -msgstr "Het veranderen van het wachtwoord is niet toegestaan" - -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +msgid "Sunday" +msgstr "Achternaam" -#: setup/setup_config1.tpl:209 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Use account expiration" -msgstr "Het account verloopt op" +msgid "Monday" +msgstr "maand" -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" 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." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Wednesday" 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." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" 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." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Friday" 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_config2.tpl:2 -msgid "Samba settings" -msgstr "Samba Instellingen" - -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" msgstr "" -#: setup/setup_config2.tpl:31 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "RID base" -msgstr "Database" +msgid "read operation" +msgstr "E-mail opties" -#: setup/setup_config2.tpl:46 -#, fuzzy -msgid "Workstation container" -msgstr "Werkstation naam" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" +msgstr "" -#: setup/setup_config2.tpl:61 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Samba SID mapping" -msgstr "Samba" +msgid "modify operation" +msgstr "Persoonlijke informatie" -#: setup/setup_config2.tpl:71 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Timezone" -msgstr "Tijdzone" +msgid "delete operation" +msgstr "Selecteer om werkstations te zien" -#: setup/setup_config2.tpl:74 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "Voorkeurstaal" +msgid "search operation" +msgstr "Het account verloopt op" -#: setup/setup_config2.tpl:96 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Additional GOsa settings" -msgstr "Programma instellingen" +msgid "authentication" +msgstr "Nagios authenticatie" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" -msgstr "" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "De database zoekopdracht is mislukt" -#: setup/setup_config2.tpl:112 +#: include/utils/class_msgPool.inc:457 #, fuzzy -msgid "Enable DNS extension" -msgstr "Verwijder printer mogelijkheden" +msgid "LDAP operation failed!" +msgstr "De database zoekopdracht is mislukt" -#: setup/setup_config2.tpl:124 +#: include/utils/class_msgPool.inc:472 #, fuzzy -msgid "Enable DHCP extension" -msgstr "Verwijder printer mogelijkheden" +msgid "Upload failed!" +msgstr "Gebruikers inlog mislukt. De LDAP server meldt: '%s'." -#: setup/setup_config2.tpl:136 -#, fuzzy -msgid "Enable mime type management" -msgstr "Systeembeheer" +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Log DB gebruiker" -#: setup/setup_config2.tpl:148 -#, fuzzy -msgid "Enable FAI release management" -msgstr "Blokkeerlijst beheer" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +msgstr "" -#: setup/setup_config2.tpl:160 -#, fuzzy -msgid "Enable user netatalk plugin" -msgstr "Netatalk account beheren" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" +msgstr "" -#: setup/setup_config2.tpl:171 -#, fuzzy -msgid "Government mode" -msgstr "naar map" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" +msgstr "" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "Onbekend" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." +msgstr "Deze 'dn' is geen groep." -#: setup/setup_config2.tpl:186 -#, fuzzy -msgid "Syslog" -msgstr "Systeem logs" +#: include/utils/class_msgPool.inc:499 +#, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "LDAP fout:" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" +msgstr "" -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "E-mail instellingen" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Kan bestand '%s' niet openen." -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "E-mail methode" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Kan bestand '%s' niet openen." -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" -msgstr "" +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "Kan bestand '%s' niet openen." -#: setup/setup_config2.tpl:227 -#, fuzzy -msgid "Vacation templates" -msgstr "Werkstation sjabloon" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Ga naar basis afdelingen" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Kan bestand '%s' niet openen." + +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Zoeken naar iconv ondersteuning" + +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config2.tpl:253 -#, fuzzy -msgid "Snapshots / Undo" -msgstr "Het opslaan van de telefoon is mislukt" +#: 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 "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -#, fuzzy -msgid "Enable snapshots" -msgstr "Nagios account aanmaken" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." +msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -#, fuzzy -msgid "Snapshot base" -msgstr "Het opslaan van de telefoon is mislukt" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Ga naar basis afdelingen" -#: setup/setup_config3.tpl:2 -#, fuzzy -msgid "GOsa core settings" -msgstr "E-mail instellingen" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Basis" -#: setup/setup_config3.tpl:6 -#, fuzzy -msgid "Disable primary group filter" -msgstr "Toon groepen van gebruiker" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Ga een afdeling omhoog" -#: setup/setup_config3.tpl:18 -#, fuzzy -msgid "Display summary in listings" -msgstr "Toon overeenkomende macro's" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Ga naar gebruikers afdeling" -#: setup/setup_config3.tpl:30 -#, fuzzy -msgid "Honour administrative units" -msgstr "Groepen beheer" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Home" -#: setup/setup_config3.tpl:42 -#, fuzzy -msgid "Smarty compile directory" -msgstr "Persoonlijke map" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "Lijst herladen" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" msgstr "" -#: setup/setup_config3.tpl:60 -#, fuzzy -msgid "Path for PPD storage" -msgstr "Wachtwoord encryptie" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config3.tpl:77 -#, fuzzy -msgid "Path for kiosk profile storage" -msgstr "Kiosk profiel instellingen" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" +msgstr "" -#: setup/setup_config3.tpl:96 -#, fuzzy -msgid "Override sudo role ou" -msgstr "! onbekend id" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "" -#: setup/setup_config3.tpl:115 -#, fuzzy -msgid "Mail queue script" -msgstr "Inlogscript" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" +msgstr "" -#: setup/setup_config3.tpl:134 -#, fuzzy -msgid "Notification script" -msgstr "Geen certificaat geinstalleerd" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" +msgstr "" -#: setup/setup_config3.tpl:153 -msgid "Enable edit locking" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" msgstr "" -#: setup/setup_config3.tpl:172 -msgid "Login and session" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config3.tpl:175 -#, fuzzy -msgid "Login attribute" -msgstr "Telefoon attributen " +#: include/class_ldap.inc:768 +#, php-format +msgid "while operating on '%s' using LDAP server '%s'" +msgstr "bij het bewerken van '%s' op LDAP server '%s'" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" +msgstr "bij het bewerken van LDAP server %s" + +#: include/class_ldap.inc:992 +#, php-format +msgid "" +"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" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/class_ldap.inc:1021 +#, 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_config3.tpl:210 +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" +msgstr "XML fout in gosa.conf: %s op regel %d" + +#: include/class_config.inc:242 #, fuzzy -msgid "Warn if session is not encrypted" -msgstr "De sessie zal niet versleuteld zijn." +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." -#: setup/setup_config3.tpl:222 +#: include/class_config.inc:574 #, fuzzy -msgid "Remember dialog filter settings" -msgstr "Algemene wachtrij instellingen" +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "SID en/of RIDBASE ontbreken in uw configuratie!" -#: setup/setup_config3.tpl:234 +#: include/class_config.inc:878 #, fuzzy -msgid "Session lifetime" -msgstr "Er is een sessie conflict gedetecteerd" +msgid "Configuration" +msgstr "Configuratie bestand" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config3.tpl:247 -#, fuzzy -msgid "Show PHP errors" -msgstr "PHP fout" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" +msgstr "" -#: setup/setup_config3.tpl:259 -#, fuzzy -msgid "Maximum LDAP query time" -msgstr "E-mail grootte" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" +msgstr "" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" +#: include/class_gosaSupportDaemon.inc:851 +#, fuzzy +msgid "Cannot not parse XML!" msgstr "" +"Er zitten te veel gebruikers in de database. Kan geen vrij ID toewijzen!" -#: setup/setup_config3.tpl:289 +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Kan bestand '%s' niet aanmaken." + +#: include/class_gosaSupportDaemon.inc:1197 +#, fuzzy, php-format +msgid "Cannot remove entry %s!" +msgstr "Onbekende FAI status %s" + +#: include/class_multi_plug.inc:362 #, fuzzy -msgid "Debug level" -msgstr "Log prioriteit" +msgid "You are currently editing mutliple entries." +msgstr "U heeft geen toestemming om deze afdeling te verwijderen." -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Disabled" -msgstr "gedeactiveerd" +msgid "Password reset" +msgstr "Wachtwoord verloopt op" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Enabled" -msgstr "gedeactiveerd" +msgid "The user password was resetted, please set a new password value!" +msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. " -#: 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_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" +msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s" -#: setup/setup_migrate.tpl:33 -#, fuzzy -msgid "Check again" -msgstr "Controleer" +#: include/class_tabs.inc:373 +msgid "References" +msgstr "Referenties" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" -msgstr "" +#: include/class_baseSelectDialog.inc:44 +#, fuzzy +msgid "Choose a base" +msgstr "Selecteer een basis" -#: setup/setup_migrate.tpl:39 +#: include/class_baseSelectDialog.inc:55 msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." 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 "" +#: include/class_baseSelectDialog.inc:61 +#, fuzzy +msgid "Use" +msgstr "Gebruiker" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" -msgstr "" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Actie" -#: setup/setup_migrate.tpl:72 +#: include/class_baseSelectDialog.inc:72 #, fuzzy -msgid "Move selected workstations" -msgstr "Selecteer om werkstations te zien" - -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "" +msgid "Filter entries with this syntax" +msgstr "Filter regels met deze syntax" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "Selecteer een basis" -#: 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: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: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:88 +msgid "No help available for this plugin." +msgstr "Help is (nog) niet beschikbaar voor deze module." -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" -msgstr "" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" +msgstr "vorige" -#: 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_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" +msgstr "volgende" -#: 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/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:140 -msgid "Move users into configured user 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:142 -msgid "" -"This dialog allows moving a couple of users to the configured user tree. " -"Doing this may straighten your LDAP service." +#: include/php_setup.inc:95 +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!" -#: 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." +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_migrate.tpl:148 -#, fuzzy -msgid "Move selected users into this people tree" -msgstr "Maak gebruiker aan met dit sjabloon" - -#: setup/setup_migrate.tpl:199 -#, fuzzy -msgid "Abort" -msgstr "Poort" - -#: setup/setup_migrate.tpl:201 +#: include/php_setup.inc:100 #, fuzzy -msgid "Create a new GOsa administrator account" -msgstr "Netatalk account aanmaken" +msgid "Send bugreport" +msgstr "Afzender" -#: setup/setup_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." -msgstr "" +#: include/php_setup.inc:105 +msgid "Toggle information" +msgstr "Informatie weergeven/verbergen" -#: setup/setup_migrate.tpl:233 -#, fuzzy -msgid "Password (again)" -msgstr "Wachtwoord encryptie" +#: include/php_setup.inc:115 +msgid "PHP error" +msgstr "PHP fout" -#: 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/php_setup.inc:134 +msgid "class" +msgstr "klasse" -#: 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/php_setup.inc:140 +msgid "function" +msgstr "functie" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -#, fuzzy -msgid "Current" -msgstr "Nieuw FAI object aanmaken" +#: include/php_setup.inc:145 +msgid "static" +msgstr "statisch" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -#, fuzzy -msgid "After migration" -msgstr "Gebruikersbeheer" +#: include/php_setup.inc:149 +msgid "method" +msgstr "methode" -#: 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/php_setup.inc:182 +msgid "Trace" +msgstr "Trace" -#: setup/setup_frame.tpl:12 -#, fuzzy -msgid "GOsa setup wizard" -msgstr "GOsa help" +#: include/php_setup.inc:183 +msgid "File" +msgstr "Bestand" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Installation" -msgstr "Windows werkstation" +#: include/php_setup.inc:183 +msgid "Line" +msgstr "Regel" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Steps" -msgstr "Systemen" +#: include/php_setup.inc:183 +msgid "Type" +msgstr "Type" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -#, fuzzy -msgid "LDAP schema check" -msgstr "Ldap server" +#: include/php_setup.inc:184 +msgid "Arguments" +msgstr "Argumenten" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" msgstr "" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" +msgstr "Onbekend" + +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +msgid "" +"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:64 +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Log DB gebruiker" + +#: include/class_log.inc:107 #, fuzzy -msgid "Checking PHP version" -msgstr "Controle op PHP versie (>=4.1.0)" +msgid "MySQL error" +msgstr "LDAP fout:" -#: setup/class_setupStep_Checks.inc:65 -#, fuzzy, php-format -msgid "PHP must be of version %s or above." +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for 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." -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." +#: include/class_log.inc:120 +#, php-format +msgid "Invalid option '%s' specified!" msgstr "" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." +#: include/class_log.inc:124 +#, fuzzy +msgid "Specified objectType is empty or invalid!" +msgstr "De opgegeven naam is ongeldig." + +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" msgstr "" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." -msgstr "" +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +msgstr "Kan niet verbinden met de database server!" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:125 +#, php-format +msgid "" +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/functions.inc:335 +#, 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_Checks.inc:112 +#: include/functions.inc:397 #, fuzzy -msgid "mbstring" -msgstr "Samba Instellingen" - -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." -msgstr "" +msgid "Username / UID is not unique inside the LDAP tree!" +msgstr "Gebruikersnaam / UID is niet uniek. Controleer uw LDAP database a.u.b." -#: setup/class_setupStep_Checks.inc:121 +#: include/functions.inc:467 #, fuzzy msgid "" -"GOsa requires this module to communicate with several supported databases." -msgstr "" -"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit " -"databases." +"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." -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/class_setupStep_Checks.inc:129 -#, fuzzy +#: include/functions.inc:622 +#, fuzzy, php-format msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." -msgstr "" -"MySQL ondersteuning is nodig voor het lezen van GOfax rapporten uit " -"databases." - -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" +"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_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." -msgstr "" +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "LDAP server returned: %s" +msgstr "LDAP server" -#: setup/class_setupStep_Checks.inc:148 +#: include/functions.inc:716 +#, fuzzy msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +"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_Checks.inc:158 -#, fuzzy +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!" + +#: include/functions.inc:1015 +#, php-format 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." +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" 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." +"Stel de nieuwe hoeveelheidslimiet in op %s en toon me dit bericht indien de " +"limiet nog steeds overschreden wordt." -#: setup/class_setupStep_Checks.inc:159 -#, fuzzy -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." -msgstr "Controle of 'register_globals' ingesteld staat op 'off'" +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "onvolledig" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." -msgstr "" +#: include/functions.inc:1311 +msgid "Continue anyway" +msgstr "Toch doorgaan" -#: setup/class_setupStep_Checks.inc:168 -#, fuzzy -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:1313 +msgid "Edit anyway" +msgstr "Alsnog bewerken" + +#: include/functions.inc:1315 +#, 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:1499 +msgid "Entries per page" +msgstr "Regels per pagina" + +#: include/functions.inc:1527 +msgid "Apply filter" +msgstr "Filter toepassen" + +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "GOsa ontwikkelversie (Revisie %s)" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." 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:169 +#: include/functions.inc:1936 include/functions.inc:1956 #, fuzzy -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +msgid "Cannot write to revision file!" +msgstr "Kan bestand '%s' niet aanmaken." + +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" 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:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +#: include/functions.inc:2230 #, fuzzy -msgid "Off" -msgstr "Offline" +msgid "LDAP warning" +msgstr "LDAP beheer" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:2230 #, 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 "Cannot get schema information from server. No schema check possible!" msgstr "" -"Om GOsa zonder problemen te gebruiken, moet de session.auto_register optie " -"in uw php.ini ingesteld zijn op 'Off'." +"Kan de schema informatie niet ophalen van de server. Schema controle is " +"onmogelijk!" -#: setup/class_setupStep_Checks.inc:178 -#, fuzzy -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." 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:185 -#, fuzzy +#: include/functions.inc:2263 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." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." msgstr "" -"GOsa heeft tenminste 16MB geheugen nodig. Minder geheugen kan diverse " -"onvoorspelbare fouten opleveren!.Verhoog deze waarde nog verder voor zeer " -"grote omgevingen." -#: setup/class_setupStep_Checks.inc:186 -msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +#: include/functions.inc:2306 +#, fuzzy, php-format +msgid "Missing required object class '%s'!" +msgstr "Toon FAI sjabloon objecten" + +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:193 -#, fuzzy -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -"Deze Optie definieert Uitvoer afhandeling. Zet deze Optie uit om " -"snelheiswinst te behalen" -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:201 -#, fuzzy -msgid "The Execution time should be at least 30 seconds." +#: include/functions.inc:2320 +#, fuzzy, php-format +msgid "Class(es) available" +msgstr "Bestand is beschikbaar" + +#: include/functions.inc:2342 +msgid "" +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." msgstr "" -"De uitvoer tijd moet minimaal 30 seconden zijn, omdat sommige acties lang " -"kunnen duren." -#: setup/class_setupStep_Checks.inc:202 +#: include/functions.inc:2343 msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -#: setup/class_setupStep_Checks.inc:209 -#, fuzzy +#: include/functions.inc:2347 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." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." 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:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:216 -#, fuzzy -msgid "On" -msgstr "Open" +#: include/functions.inc:2371 +msgid "German" +msgstr "Duits" -#: setup/class_setupStep_Checks.inc:217 -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." +#: include/functions.inc:2372 +msgid "French" +msgstr "Frans" -#: setup/class_setupStep_Checks.inc:218 -#, 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'" +#: include/functions.inc:2373 +msgid "Italian" +msgstr "Italiaans" -#: setup/class_setupStep_Checks.inc:225 -#, 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." +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Spaans" + +#: include/functions.inc:2375 +msgid "English" +msgstr "Engels" + +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Nederlands" + +#: include/functions.inc:2377 +msgid "Polish" +msgstr "Pools" -#: setup/class_setupStep_Checks.inc:226 -#, fuzzy -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +#: include/functions.inc:2378 +msgid "Swedish" 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:236 +#: include/functions.inc:2379 #, fuzzy -msgid "Configuration writeable" -msgstr "Configuratie bestand" +msgid "Chinese" +msgstr "Chipset" -#: setup/class_setupStep_Checks.inc:237 -#, fuzzy -msgid "The configuration file can't be written" -msgstr "Configuratie bestand" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Russisch" -#: setup/class_setupStep_Checks.inc:238 +#: include/functions.inc:2561 #, 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_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." +"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." -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/setup_welcome.tpl:11 +#: include/class_acl.inc:26 #, fuzzy -msgid "Create a basic, single site configuration" -msgstr "FAX database" +msgid "Access control" +msgstr "Toegangsopties" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" +#: include/class_acl.inc:207 +msgid "Reset ACLs" msgstr "" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" +#: include/class_acl.inc:489 +msgid "No ACL settings for this category!" msgstr "" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" msgstr "" -#: setup/setup_welcome.tpl:20 +#: include/class_acl.inc:496 include/class_acl.inc:497 #, fuzzy -msgid "Find every possible configuration error" -msgstr "Configuratie bestand" +msgid "category ACL" +msgstr "Categorie" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" +#: include/class_acl.inc:543 +#, php-format +msgid "Edit ACL for '%s' - scope is '%s'" msgstr "" -#: setup/setup_welcome.tpl:25 +#: include/class_acl.inc:698 include/class_acl.inc:705 #, fuzzy -msgid "To continue..." -msgstr "Installatie vervolg..." +msgid "Show/hide advanced settings" +msgstr "Geavanceerde telefoon instellingen" -#: 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:723 +#, fuzzy +msgid "Create objects" +msgstr "Nieuw FAI object aanmaken" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "" +#: include/class_acl.inc:724 +#, fuzzy +msgid "Move objects" +msgstr "Lidmaatschap objecten" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "" +#: include/class_acl.inc:725 +#, fuzzy +msgid "Remove objects" +msgstr "Lidmaatschap objecten" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." +#: include/class_acl.inc:727 +msgid "Modifyable by owner" msgstr "" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." -msgstr "" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "alleen lezen" -#: setup/setup_checks.tpl:67 -#, fuzzy -msgid "PHP setup configuration" -msgstr "FAX database" +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "afleveren, lezen & schrijven" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:743 #, fuzzy -msgid "show information" -msgstr "Persoonlijke informatie" +msgid "Complete object" +msgstr "Nieuw FAI object aanmaken" -#: setup/setup_schema.tpl:3 +#: include/class_acl.inc:879 +#, fuzzy, php-format +msgid "Unkown ACL type '%s'!" +msgstr "Onbekende FAI status %s" + +#: include/class_acl.inc:922 +#, fuzzy, php-format +msgid "Unknown entry '%s'!" +msgstr "Onbekende FAI status %s" + +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, fuzzy, php-format +msgid "Role: %s" +msgstr "Funktie" + +#: include/class_acl.inc:984 #, fuzzy -msgid "Schema specific settings" -msgstr "Samba Instellingen" +msgid "unknown role" +msgstr "! onbekend id" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" msgstr "" -#: setup/setup_schema.tpl:16 -#, fuzzy -msgid "Check status" -msgstr "Systeem status" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "Groepsleden" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: setup/setup_schema.tpl:23 +#: include/class_acl.inc:1177 #, fuzzy -msgid "Schema check failed" -msgstr "Het opslaan van de telefoon is mislukt" +msgid "Access control list" +msgstr "Toegangsopties" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_acl.inc:1182 +#, fuzzy +msgid "ACL roles" +msgstr "Rechten" -#: 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 "" +#: include/class_acl.inc:1185 +#, fuzzy +msgid "Role name" +msgstr "Hernoemen" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "Help verkenner" +#: include/class_acl.inc:1186 +#, fuzzy +msgid "Role description" +msgstr "Eenheid omschrijving" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "Er is (nog) geen help bestand aanwezig voor deze klasse." +#: include/class_certificate.inc:73 +#, fuzzy +msgid "Certificate is empty!" +msgstr "Certificaten" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -"Help directory '%s' is niet toegankelijk. Er kunnen geen helpbestanden " -"gelezen worden." -#: html/setup.php:66 +#: include/class_certificate.inc:115 #, fuzzy -msgid "Smarty" -msgstr "Samenvatting" +msgid "Cannot extract information for non PEM certificates!" +msgstr "Kan quota informatie niet ophaleven voor '%s'." -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "" -"Directory '%s' die opgegeven is als compileer directory is niet toegankelijk!" +#: include/class_certificate.inc:219 +#, fuzzy +msgid "No valid certificate loaded!" +msgstr "Geen geldig certificaat geladen" -#: html/password.php:58 html/index.php:142 -#, fuzzy, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. " -#: html/password.php:163 -msgid "Error: Password method not available!" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "Oud wachtwoord" + +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Nogmaals wachtwoord" + +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here to change your password" +msgstr "Klik hier om uw wachtwoord te veranderen." + +#: 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 "" +"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 Alsnog bewerken knop te gebruiken." -#: html/password.php:228 html/index.php:326 -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." +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "Uw GOsa sessie is verlopen!" -#: html/password.php:253 -msgid "External password changer reported a problem: " -msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:" +#: 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." -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -msgstr "De sessie zal niet versleuteld zijn." +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" +msgstr "Opnieuw inloggen" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "Gebruik een SSL sessie" +#: ihtml/themes/default/acl.tpl:31 +#, fuzzy +msgid "Additional filter options" +msgstr "Programma instellingen" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" msgstr "" -#: html/main.php:172 -#, fuzzy -msgid "PHP configuration" -msgstr "FAX database" - -#: html/main.php:173 -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" msgstr "" -"FATAAL: 'Register globals' is geactiveerd in PHP. GOsa zal niemand laten " -"inloggen totdat dit opgelost is door een systeembeheerder." -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" msgstr "" -#: html/main.php:361 +#: ihtml/themes/default/acl.tpl:107 #, 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 "ACL for this object" +msgstr "Zoeken naar iconv ondersteuning" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:113 #, fuzzy -msgid "Plugin" -msgstr "in" +msgid "Available roles" +msgstr "Beschikbare programma's" -#: html/main.php:371 -#, fuzzy, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "FATAAL: Kan geen enkele module defenities vinden voor module '%s'!" +#: 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." -#: html/index.php:57 +#: ihtml/themes/default/snapshotdialog.tpl:3 #, fuzzy -msgid "Session is not encrypted!" -msgstr "De sessie zal niet versleuteld zijn." +msgid "Restoring object snapshots" +msgstr "Nieuwe objectgroep aanmaken" -#: html/index.php:64 +#: ihtml/themes/default/snapshotdialog.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"This procedure will restore a snapshot of the selected object. It will " +"replace the existing object after pressing the restore button." msgstr "" -#: html/index.php:167 -#, fuzzy -msgid "Smarty error" -msgstr "Systeem status" - -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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 "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +#, 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." -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -#: html/index.php:283 +#: ihtml/themes/default/snapshotdialog.tpl:49 #, 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." +msgid "Creating object snapshots" +msgstr "Nieuwe objectgroep aanmaken" -#: html/index.php:304 -msgid "Please specify a valid username!" -msgstr "Geef a.u.b. een geldige gebruikersnaam op!" +#: 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 "" -#: html/index.php:307 -msgid "Please specify your password!" -msgstr "Geef a.u.b. uw wachtwoord op!" +#: 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 "" -#: html/index.php:319 +#: ihtml/themes/default/snapshotdialog.tpl:70 #, fuzzy -msgid "Authentication error" -msgstr "Nagios authenticatie" +msgid "Timestamp" +msgstr "Timeout" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" msgstr "" -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" +#: 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 "" -"Account is geblokkeerd. Neem a.u.b. contact op met de systeembeheerder." +"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." -#: html/index.php:426 +#: 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" + +#: 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" + +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" -"Cookies zijn uitgeschakeld in uw browser. Schakel cookies a.u.b. in en " -"herlaad deze pagina voordat u inlogt!" +"Negeer deze fout en toon alle gegevens die passen binnen de gedefiniëerde " +"grootte limiet en laat me daarvoor in de plaats filters gebruiken" #: ihtml/themes/default/copyPasteDialog.tpl:1 #, fuzzy @@ -6131,21 +6153,6 @@ msgstr "GOsa help" msgid "Index" msgstr "Index" -#: 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 "" -"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 Alsnog bewerken knop te gebruiken." - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Hoofdmenu" @@ -6166,45 +6173,45 @@ msgstr "Aangemeld:" msgid "GOsa main menu" 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 "" -"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." - -#: ihtml/themes/default/acl.tpl:31 +#: ihtml/themes/default/logout-close.tpl:5 #, fuzzy -msgid "Additional filter options" -msgstr "Programma instellingen" - -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" -msgstr "" +msgid "Your GOsa session has been closed!" +msgstr "Uw GOsa sessie is verlopen!" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" +#: 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 "" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" -msgstr "" +#: ihtml/themes/default/login.tpl:27 +#, fuzzy +msgid "Login screen" +msgstr "Log DB gebruiker" -#: ihtml/themes/default/acl.tpl:107 +#: ihtml/themes/default/login.tpl:34 #, fuzzy -msgid "ACL for this object" -msgstr "Zoeken naar iconv ondersteuning" +msgid "" +"Please use your username and your password to log into the site " +"administration system." +msgstr "Voer uw gebruikersnaam en wachtwoord in" + +#: 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" -#: ihtml/themes/default/acl.tpl:113 -#, fuzzy -msgid "Available roles" -msgstr "Beschikbare programma's" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Inloggen" + +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Klik hier om in te loggen" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6258,11 +6265,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Directory" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -6273,170 +6275,171 @@ msgstr "Nieuw wachtwoord" msgid "Change" msgstr "Kanaal" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -#, fuzzy -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" +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: ihtml/themes/default/login.tpl:27 -#, fuzzy -msgid "Login screen" -msgstr "Log DB gebruiker" - -#: ihtml/themes/default/login.tpl:34 +#: html/main.php:172 #, fuzzy -msgid "" -"Please use your username and your password to log into the site " -"administration system." -msgstr "Voer uw gebruikersnaam en wachtwoord in" - -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Inloggen" - -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Klik hier om in te loggen" - -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" -msgstr "Uw GOsa sessie is verlopen!" +msgid "PHP configuration" +msgstr "FAX database" -#: ihtml/themes/default/logout.tpl:7 +#: html/main.php:173 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." +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." 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." +"FATAAL: 'Register globals' is geactiveerd in PHP. GOsa zal niemand laten " +"inloggen totdat dit opgelost is door een systeembeheerder." -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" -msgstr "Opnieuw inloggen" +#: html/main.php:218 +msgid "Running out of memory!" +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." +#: html/main.php:292 +msgid "User ACL checks disabled" msgstr "" -"De grootte limiet optie maakt LDAP bewerkingen sneller en behoedt de LDAP " -"server voor een te grote werkdruk. De eenvoudigste manier om met grote " -"databases te werken zonder lange timeouts is door zoekopdrachten in grootte " -"te beperken en door filters te gebruiken voor de informatie die u zoekt." -#: ihtml/themes/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" +#: html/main.php:361 +#, 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." -#: 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" +#: html/main.php:370 +#, fuzzy +msgid "Plugin" +msgstr "in" -#: 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" +#: html/main.php:371 +#, fuzzy, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "FATAAL: Kan geen enkele module defenities vinden voor module '%s'!" -#: ihtml/themes/default/logout-close.tpl:5 +#: html/index.php:57 #, fuzzy -msgid "Your GOsa session has been closed!" -msgstr "Uw GOsa sessie is verlopen!" +msgid "Session is not encrypted!" +msgstr "De sessie zal niet versleuteld zijn." -#: ihtml/themes/default/logout-close.tpl:7 +#: html/index.php:64 msgid "" -"Please close this browser window and clean the authentication caches to " -"avoid an automatic re-authentication by your browser." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "Uw wachtwoord is verlopen! Kies a.u.b. een nieuw wachtwoord. " +#: html/index.php:142 html/password.php:58 +#, fuzzy, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "GOsa configuratie %s/gosa.conf is niet leesbaar. Geannuleerd." -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 +#: html/index.php:167 #, fuzzy -msgid "Old password" -msgstr "Oud wachtwoord" +msgid "Smarty error" +msgstr "Systeem status" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 -#, fuzzy -msgid "Verify password" -msgstr "Nogmaals wachtwoord" +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" +msgstr "" +"Directory '%s' die opgegeven is als compileer directory is niet toegankelijk!" -#: ihtml/themes/default/snapshotdialog.tpl:3 -#, fuzzy -msgid "Restoring object snapshots" -msgstr "Nieuwe objectgroep aanmaken" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" +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." +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" 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)." +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" 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 ?" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 +#: html/index.php:283 #, fuzzy -msgid "There is no snapshot available that could be restored" +msgid "Your LDAP setup contains old schema definitions:" msgstr "" -"Er is geen MySQL extensie beschikbaar. Controleer uw PHP installatie a.u.b." +"Uw LDAP installatie bevat oude schema definities. Draai het installatie " +"programma a.u.b. opnieuw." -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "Geef a.u.b. een geldige gebruikersnaam op!" + +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "Geef a.u.b. uw wachtwoord op!" + +#: html/index.php:319 +#, fuzzy +msgid "Authentication error" +msgstr "Nagios authenticatie" + +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:49 +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie." + +#: html/index.php:375 #, fuzzy -msgid "Creating object snapshots" -msgstr "Nieuwe objectgroep aanmaken" +msgid "Account locked. Please contact your system administrator!" +msgstr "" +"Account is geblokkeerd. Neem a.u.b. contact op met de systeembeheerder." -#: ihtml/themes/default/snapshotdialog.tpl:52 +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "De sessie zal niet versleuteld zijn." + +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "Gebruik een SSL sessie" + +#: html/index.php:426 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." +"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!" -#: 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." +#: html/password.php:163 +msgid "Error: Password method not available!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:70 -#, fuzzy -msgid "Timestamp" -msgstr "Timeout" +#: html/password.php:232 +msgid "You have no permissions to change your password." +msgstr "U heeft geen toestemming om uw wachtwoord te veranderen." -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: html/password.php:253 +msgid "External password changer reported a problem: " +msgstr "Extern wachtwoord verander mechanisme rapporteerde een probleem:" + +#: html/helpviewer.php:70 +msgid "Help browser" +msgstr "Help verkenner" + +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "Er is (nog) geen help bestand aanwezig voor deze klasse." + +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." msgstr "" +"Help directory '%s' is niet toegankelijk. Er kunnen geen helpbestanden " +"gelezen worden." + +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Samenvatting" #, fuzzy #~ msgid "Move object" diff --git a/gosa-core/locale/core/pl/LC_MESSAGES/messages.po b/gosa-core/locale/core/pl/LC_MESSAGES/messages.po index 0306d4494..a9c359e8a 100644 --- a/gosa-core/locale/core/pl/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/pl/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: polski\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2007-07-14 21:45+0100\n" "Last-Translator: Piotr Rybicki \n" "Language-Team: Piotr Rybicki \n" @@ -14,11 +14,91 @@ msgstr "" "X-Poedit-SourceCharset: iso-8859-2\n" "X-Poedit-Basepath: tedst\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "Brak uprawnień do zmiay hasła" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "Brak uprawnień do zmiany własnego hasła" + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#, fuzzy +msgid "Password settings" +msgstr "Ustawienia użytkownika" + +#: 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." + +#: 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." + +#: 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." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Obecne hasło" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Nowe hasło" + +#: 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" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "Przechowywanie hasła" + +#: 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" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Wyczyść pola" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Hasło" @@ -37,8 +117,8 @@ msgstr "Zmień hasło" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "Brak uprawnień do zmiay hasła" @@ -89,887 +169,530 @@ msgid "User password" msgstr "Hasło użytkownika" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Moje konto " -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "Brak uprawnień do zmiay hasła" - -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -msgstr "Brak uprawnień do zmiany własnego hasła" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Osobiste zdjęcie" -#: 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." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Usuń obrazek" -#: 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." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Ogólne" -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Obecne hasło" +#: plugins/personal/generic/class_user.inc:38 +#, fuzzy +msgid "Edit organizational user settings" +msgstr "Ustawienia Aplikacji" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Nowe hasło" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "kobieta" -#: 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" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "mężczyzna" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -#, fuzzy -msgid "Password strength" -msgstr "Przechowywanie hasła" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "Błąd" -#: 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" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Wyczyść pola" +#: plugins/personal/generic/class_user.inc:503 +#, fuzzy +msgid "Serial number" +msgstr "Numer pagera" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" 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/main.inc:48 setup/setup_config1.tpl:136 -#, fuzzy -msgid "Password settings" -msgstr "Ustawienia użytkownika" +#: plugins/personal/generic/class_user.inc:558 +#, 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." -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Wybierz grupy do dodania" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "prawidłowy" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Filtry" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "nieprawidłowy" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "Wyświetl grupy departamentu" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "Brak zainstalowanych certyfikatów" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "Wybierz departament na którym wyszukiwanie będzie bazować" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "Przechowywanie hasła" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "Wyświetl grupy pasujące" +#: plugins/personal/generic/class_user.inc:592 +#, fuzzy +msgid "The selected password method is no longer available." +msgstr "Ta aplikacja nie jest już dostępna." -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "Wyrażenie regularne dla dopasowania nazw grup" - -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "Wyświetl grupy użytkownika" - -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -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/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -#, fuzzy -msgid "Search in subtrees" -msgstr "Szukaj wewnątrz tego poddrzewa" - -#: 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" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "Hasło wygasa" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" -msgstr "Ustawienia Posix" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Katalog domowy" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "Wymuś UID/GID" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -msgstr "Przynależność do grup" - -#: 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!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Wybierz systemy do dodania" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Wyświetl systemy departamentu" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Wyświetl systemy pasujące" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Wyrażenie regularne dla dopasowania adresów" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Ogólne" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Grupa podstawowa" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Status" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "Grupa pocztowa" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, fuzzy -msgid "Not in all groups" -msgstr "Pokaż grupy pocztowe" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "Konto" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "Zaufanie systemowe" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "Tryb zaufania" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "UNIX" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Ustawienia Posix" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" -msgstr "Aktywne" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "aktywne, hasło niezmienialne" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "aktywne, hasło wygasło" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "nieskonfigurowane" - -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" -msgstr "automatyczne" - -#: 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 "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" -msgstr "Środowisko" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "wyłączone" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "pełen dostęp" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "zezwól na dostęp do tych hostów" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/personal/generic/class_user.inc:702 #: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/admin/departments/class_departmentGeneric.inc:185 #: plugins/admin/departments/class_departmentGeneric.inc:358 #: plugins/admin/departments/class_departmentGeneric.inc:626 #: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 #: plugins/admin/ogroups/class_ogroup.inc:968 #: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 #: setup/class_setupStep_Migrate.inc:1090 #: setup/class_setupStep_Migrate.inc:1139 #: setup/class_setupStep_Migrate.inc:1188 #: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 #: html/index.php:270 html/index.php:283 #, fuzzy msgid "LDAP error" msgstr "błąd LDAP:" -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Ostrzeżenie" +#: plugins/personal/generic/class_user.inc:1149 +#, fuzzy +msgid "The selected password method requires initial configuration!" +msgstr "Ta aplikacja nie jest już dostępna." -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Login" -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" +msgstr "Imię" -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Grupa użytkownika" +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" +msgstr "Imię" -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "Shadow min" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Strona domowa" + +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Telefon" -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -#, fuzzy -msgid "shadowMax" -msgstr "Shadow max" +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Fax" -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "Shadow ostrzeżenie" +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" +msgstr "Komórka" -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "Shadow nieaktywne" +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "Pager" -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 #: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "Błąd" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -msgid "POSIX account" -msgstr "Konto POSIX" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "Identyfikator użytkownika" +msgid "Cannot open certificate!" +msgstr "Nie można otworzyć wybranego certyfikatu!" -#: plugins/personal/posix/class_posixAccount.inc:1507 -msgid "Group ID" -msgstr "ID grupy" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Jednostka" -#: plugins/personal/posix/class_posixAccount.inc:1509 -msgid "Force password change on login" -msgstr "Wymuś zmianę hasła podczas logowania" +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Identyfikator budynku" -#: plugins/personal/posix/class_posixAccount.inc:1510 -msgid "Shadow min" -msgstr "Shadow min" +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Wywołanie" -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "Shadow max" +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Ostatnia dostawa" -#: plugins/personal/posix/class_posixAccount.inc:1512 -msgid "Shadow warning" -msgstr "Shadow ostrzeżenie" +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Lokalizacja osoby" -#: plugins/personal/posix/class_posixAccount.inc:1513 -msgid "Shadow inactive" -msgstr "Shadow nieaktywne" +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Opis jednostki" -#: plugins/personal/posix/class_posixAccount.inc:1514 -msgid "Shadow expire" -msgstr "Shadow wygasa" +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Sektor" -#: plugins/personal/posix/class_posixAccount.inc:1515 -msgid "System trust model" -msgstr "Zaufanie do systemów" +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Tytuł funkcjonalny" -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Ustawienia Posix" +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Nmer seryjny certyfikatu" -#: 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." +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Publicznie widoczne" -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Osobiste zdjęcie" +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Ulica" -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Usuń obrazek" +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Pełniona funkcja" -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Informacje osobiste" +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Kod pocztowy" -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Tytuł naukowy" +#: plugins/personal/generic/class_user.inc:1487 +msgid "Generic user settings" +msgstr "Ogólne ustawienia użytkownika" -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "Preferowany język" +#: plugins/personal/generic/class_user.inc:1492 +#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 +msgid "Users" +msgstr "Użytkownicy" -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 #: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 #: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -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." - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -msgstr "Wybierz bazę" - -#: 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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Adres" +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Kontener" -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Telefon prywatny" +#: plugins/personal/generic/class_user.inc:1498 +msgid "Surename" +msgstr "Nazwisko" -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Strona domowa" +#: plugins/personal/generic/class_user.inc:1500 +msgid "User identification" +msgstr "Identyfikacja użytkownika" -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Przechowywanie hasła" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Osobisty tytuł" -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Certyfikaty" +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Tytuł naukowy" -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Edytuj certyfikaty" +#: plugins/personal/generic/class_user.inc:1503 +msgid "Home postal address" +msgstr "Adres domowy" -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Informacje organizacyjne" +#: plugins/personal/generic/class_user.inc:1504 +msgid "Home phone number" +msgstr "Numer telefonu domowego" -#: plugins/personal/generic/multiple_generic.tpl:149 +#: plugins/personal/generic/class_user.inc:1506 #: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 msgid "Organization" msgstr "Organizacja" -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 #: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 #: plugins/admin/departments/class_divListDepartment.inc:156 #: plugins/admin/ogroups/class_ogroupManagement.inc:529 #: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 msgid "Department" msgstr "Departament" -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Data urodzenia" + +#: plugins/personal/generic/class_user.inc:1509 +msgid "Gender" +msgstr "Płeć" + +#: plugins/personal/generic/class_user.inc:1510 +msgid "Preferred language" +msgstr "Preferowany język" + +#: plugins/personal/generic/class_user.inc:1511 +msgid "Department number" msgstr "Numer departamentu" -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." +#: plugins/personal/generic/class_user.inc:1512 +msgid "Employee number" msgstr "Numer pracownika" -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 #: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 msgid "Employee type" msgstr "Typ pracownika" -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "Numer pokoju" - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Telefon" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "Komórka" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "Pager" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Fax" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 #: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 #: plugins/admin/departments/generic.tpl:56 #: plugins/admin/departments/generic.tpl:68 #: plugins/admin/departments/class_departmentGeneric.inc:546 msgid "Location" msgstr "Lokalizacja" -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 #: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 #: plugins/admin/departments/generic.tpl:60 #: plugins/admin/departments/class_departmentGeneric.inc:550 msgid "State" msgstr "Stan" -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Wywołanie" - -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Opis jednostki" - -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Sektor" - -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Tytuł funkcjonalny" - -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Pełniona funkcja" - -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Lokalizacja osoby" - -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Jednostka" - -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Ulica" - -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Kod pocztowy" +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "Zdjęcie użytkownika" -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Identyfikator budynku" +#: plugins/personal/generic/class_user.inc:1517 +msgid "Room number" +msgstr "Numer pokoju" -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Ostatnia dostawa" +#: plugins/personal/generic/class_user.inc:1518 +msgid "Telefon number" +msgstr "Numer telefonu" -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Publicznie widoczne" +#: plugins/personal/generic/class_user.inc:1519 +msgid "Mobile number" +msgstr "Telefon komórkowy" -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "Ustawienia użytkownika" +#: plugins/personal/generic/class_user.inc:1520 +msgid "Pager number" +msgstr "Numer pagera" -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 -msgid "Last name" -msgstr "Nazwisko" +#: plugins/personal/generic/class_user.inc:1521 +msgid "User certificates" +msgstr "Certyfikaty użytkownika" -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" -msgstr "Imię" +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "Adres pocztowy" -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Login" +#: plugins/personal/generic/class_user.inc:1524 +msgid "Fax number" +msgstr "Numer fax" -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "Wyczyść hasło" +#: 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" -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "Ustaw nowe hasło" +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Ogólne informacje o użytkowniku" -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "Zdjęcie użytkownika" +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Informacje osobiste" #: plugins/personal/generic/generic.tpl:29 #: plugins/personal/generic/generic.tpl:40 msgid "Change picture" msgstr "Zmień zdjęcie" +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +msgstr "Nazwisko" + #: plugins/personal/generic/generic.tpl:52 #: plugins/personal/generic/generic.tpl:73 #: plugins/personal/generic/generic.tpl:89 plugins/admin/groups/generic.tpl:14 @@ -980,15 +703,11 @@ msgstr "" msgid "Template name" msgstr "Nazwa Szablonu" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Osobisty tytuł" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Data urodzenia" +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "Imię" #: plugins/personal/generic/generic.tpl:137 #: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 @@ -1000,1367 +719,1452 @@ msgstr "Ustaw" msgid "Sex" msgstr "Płeć" -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "Konfiguruj" - -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -msgstr "Proszę użyć zakładki telefony" - -#: plugins/personal/generic/generic_certs.tpl:8 -msgid "Standard certificate" -msgstr "Standardowy certyfikat" - -#: plugins/personal/generic/generic_certs.tpl:21 -#: plugins/personal/generic/generic_certs.tpl:45 -#: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Usuń" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "certyfikat S/MIME" - -#: 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:1479 -msgid "Certificate serial number" -msgstr "Nmer seryjny certyfikatu" - -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Ustawienia Aplikacji" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "kobieta" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "mężczyzna" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Numer pagera" - -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "" +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "Preferowany język" -#: plugins/personal/generic/class_user.inc:558 -#, 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." +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Wybierz poddrzewo do umieszczenia konta." -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "prawidłowy" +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "Wybierz bazę" -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "nieprawidłowy" +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Adres" -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "Brak zainstalowanych certyfikatów" +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Telefon prywatny" -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" msgstr "Przechowywanie hasła" -#: plugins/personal/generic/class_user.inc:592 -#, fuzzy -msgid "The selected password method is no longer available." -msgstr "Ta aplikacja nie jest już dostępna." - -#: plugins/personal/generic/class_user.inc:1149 -#, fuzzy -msgid "The selected password method requires initial configuration!" -msgstr "Ta aplikacja nie jest już dostępna." - -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "Name" -msgstr "Imię" - -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" -msgstr "Imię" +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "Konfiguruj" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "Nie można otworzyć wybranego certyfikatu!" +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Certyfikaty" -#: plugins/personal/generic/class_user.inc:1487 -msgid "Generic user settings" -msgstr "Ogólne ustawienia użytkownika" +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Edytuj certyfikaty" -#: plugins/personal/generic/class_user.inc:1492 -#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 -msgid "Users" -msgstr "Użytkownicy" +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Informacje organizacyjne" -#: plugins/personal/generic/class_user.inc:1498 -msgid "Surename" -msgstr "Nazwisko" +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "Numer departamentu" -#: plugins/personal/generic/class_user.inc:1500 -msgid "User identification" -msgstr "Identyfikacja użytkownika" +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "Numer pracownika" -#: plugins/personal/generic/class_user.inc:1503 -msgid "Home postal address" -msgstr "Adres domowy" +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "Numer pokoju" -#: plugins/personal/generic/class_user.inc:1504 -msgid "Home phone number" -msgstr "Numer telefonu domowego" +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "Proszę użyć zakładki telefony" -#: plugins/personal/generic/class_user.inc:1509 -msgid "Gender" -msgstr "Płeć" +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "Standardowy certyfikat" -#: plugins/personal/generic/class_user.inc:1510 -msgid "Preferred language" -msgstr "Preferowany język" +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" +msgstr "Usuń" -#: plugins/personal/generic/class_user.inc:1511 -msgid "Department number" -msgstr "Numer departamentu" +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "certyfikat S/MIME" -#: plugins/personal/generic/class_user.inc:1512 -msgid "Employee number" -msgstr "Numer pracownika" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "certyfikat PKCS12" -#: plugins/personal/generic/class_user.inc:1517 -msgid "Room number" -msgstr "Numer pokoju" +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" +msgstr "Ustawienia użytkownika" -#: plugins/personal/generic/class_user.inc:1518 -msgid "Telefon number" -msgstr "Numer telefonu" +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" +msgstr "Wyczyść hasło" -#: plugins/personal/generic/class_user.inc:1519 -msgid "Mobile number" -msgstr "Telefon komórkowy" +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "Ustaw nowe hasło" -#: plugins/personal/generic/class_user.inc:1520 -msgid "Pager number" -msgstr "Numer pagera" +#: 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." -#: plugins/personal/generic/class_user.inc:1521 -msgid "User certificates" -msgstr "Certyfikaty użytkownika" +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Wybierz grupy do dodania" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "Adres pocztowy" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Filtry" -#: plugins/personal/generic/class_user.inc:1524 -msgid "Fax number" -msgstr "Numer fax" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Wyświetl grupy departamentu" -#: 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" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: 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ć" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Ogólne informacje o użytkowniku" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Wyświetl grupy pasujące" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Wyrażenie regularne dla dopasowania nazw grup" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "Wyświetl grupy użytkownika" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "ACL" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Nazwa użytkownika którego grupy są pokazane" -#: plugins/admin/acl/tabs_acl_role.inc:28 +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 #, fuzzy -msgid "ACL Templates" -msgstr "Szablony" +msgid "Search in subtrees" +msgstr "Szukaj wewnątrz tego poddrzewa" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -#, fuzzy -msgid "Manage access control lists" -msgstr "Kontrola dostępu" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Wybierz systemy do dodania" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "Uprawnienia" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Wyświetl systemy departamentu" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -#, fuzzy -msgid "Permission" -msgstr "Uprawnienia" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Wyświetl systemy pasujące" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -msgid "List of acls" -msgstr "Lista ACLi" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Wyrażenie regularne dla dopasowania adresów" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix/main.inc:131 #, fuzzy -msgid "Select all" -msgstr "Wybierz" +msgid "POSIX settings" +msgstr "Ustawienia Posix" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "Podsumowanie" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Katalog domowy" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Akcje" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/admin/acl/class_divListACL.inc:84 -msgid "Display acls matching" -msgstr "Wyświetl ACL pasujące" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Grupa podstawowa" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "Zatwierdź departament" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Status" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "Wyślij" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "Wymuś UID/GID" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Utwórz" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "edytuj" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" -#: plugins/admin/acl/class_divListACL.inc:215 -#, fuzzy -msgid "Edit acl role" -msgstr "Edytuj makro" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "Przynależność do grup" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "Usuń" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "(Uwaga: NFS nie wspiera więcej niż 16 grup!)" -#: plugins/admin/acl/class_divListACL.inc:223 +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy -msgid "Delete acl role" -msgstr "Usuń makro" +msgid "In all groups" +msgstr "Grupa pocztowa" -#: plugins/admin/acl/class_divListACL.inc:242 +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 #, fuzzy -msgid "Edit acl" -msgstr "Edytuj klasę" +msgid "Not in all groups" +msgstr "Pokaż grupy pocztowe" -#: plugins/admin/acl/class_divListACL.inc:246 +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "Konto" + +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "Zaufanie systemowe" + +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" +msgstr "Tryb zaufania" + +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "UNIX" + +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "Delete acl" -msgstr "Usuń klasę" +msgid "Edit users POSIX settings" +msgstr "Ustawienia Posix" -#: 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." +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" +msgstr "wygasło" -#: 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." -msgstr "" -"Przed wykonaniem tej operacji zaleca się wykonanie kopii bezpieczeństwa " -"drzewa LDAP. Naciśnij 'Usuń' aby kontynuować, lub 'Anuluj' aby przerwać." +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "Czas prolongaty aktywny" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 -msgid "ACL management" -msgstr "Zarządzanie ACL" +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" +msgstr "Aktywne" -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "Assigned ACL for current entry" -msgstr "Przypisane ACL'e dla obecnego wpisu" +msgid "password not changable" +msgstr "aktywne, hasło niezmienialne" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Opis" +#: plugins/personal/posix/class_posixAccount.inc:161 +#, fuzzy +msgid "password expired" +msgstr "aktywne, hasło wygasło" -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "Wybierz poddrzewo do umieszczenia grupy" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "nieskonfigurowane" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -msgid "New ACL" -msgstr "Nowy ACL" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "automatyczne" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -msgid "ACL type" -msgstr "typ ACL" +#: 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 "" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -msgid "Select an acl type" -msgstr "Wybierz typ ACL" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -msgid "List of available ACL categories" -msgstr "Lista dostępnych kategorii ACL" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "Środowisko" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -#, fuzzy -msgid "Access control roles" -msgstr "Kontrola dostępu" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:27 -#, fuzzy -msgid "Edit AC roles" -msgstr "ACLe" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -msgid "All categories" -msgstr "Wszystkie kategorie" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:131 -#, fuzzy -msgid "Reset ACL" -msgstr "Resetuj ACL'e" +#: 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" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -msgid "One level" -msgstr "Jeden poziom" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "wyłączone" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -msgid "Current object" -msgstr "Obecny obiekt" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "pełen dostęp" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -msgid "Complete subtree" -msgstr "Pełne poddrzewo" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "zezwól na dostęp do tych hostów" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "Pełne poddrzewo (trwałe)" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Ostrzeżenie" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "Góra" +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" +msgstr "" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" -msgstr "W dół" +#: plugins/personal/posix/class_posixAccount.inc:910 +msgid "" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" +msgstr "" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Edytuj" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Grupa użytkownika" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" -msgstr "Usuń" +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 +#, fuzzy +msgid "shadowMin" +msgstr "Shadow min" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" -msgstr "Brak ustawień ACL w tej kategorii" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +#, fuzzy +msgid "shadowMax" +msgstr "Shadow max" -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "Zawiera ACL'e w tych kategoriach: %s" +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 +#, fuzzy +msgid "shadowWarning" +msgstr "Shadow ostrzeżenie" -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 #, fuzzy -msgid "Edit category ACL" -msgstr "Edytuj kategorie ACL'i" +msgid "shadowInactive" +msgstr "Shadow nieaktywne" -#: plugins/admin/acl/class_aclRole.inc:409 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy -msgid "Reset category ACL" -msgstr "Kategoria" +msgid "Cannot allocate a free ID!" +msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "Edytuj ACL dla '%s', zakres to '%s'" +#: plugins/personal/posix/class_posixAccount.inc:1494 +msgid "POSIX account" +msgstr "Konto POSIX" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "Wszystkie obiekty w obecnym poddrzewie" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "Identyfikator użytkownika" -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy -msgid "Object in use" -msgstr "Nazwa obiektu" +#: plugins/personal/posix/class_posixAccount.inc:1507 +msgid "Group ID" +msgstr "ID grupy" -#: plugins/admin/acl/class_aclRole.inc:621 -#, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "" +#: plugins/personal/posix/class_posixAccount.inc:1509 +msgid "Force password change on login" +msgstr "Wymuś zmianę hasła podczas logowania" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Wybierz użytkowników do dodania" +#: plugins/personal/posix/class_posixAccount.inc:1510 +msgid "Shadow min" +msgstr "Shadow min" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Proszę aby zobaczyć serwery" +#: plugins/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" +msgstr "Shadow max" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Search within subtree" -msgstr "Szukaj wewnątrz tego poddrzewa" +#: plugins/personal/posix/class_posixAccount.inc:1512 +msgid "Shadow warning" +msgstr "Shadow ostrzeżenie" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "Wyświetl użytkowników departamentu" +#: plugins/personal/posix/class_posixAccount.inc:1513 +msgid "Shadow inactive" +msgstr "Shadow nieaktywne" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Wyświetl użytkowników pasujących" +#: plugins/personal/posix/class_posixAccount.inc:1514 +msgid "Shadow expire" +msgstr "Shadow wygasa" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "Wyrażenie regularne do dopasowania nazw użytkowników" +#: plugins/personal/posix/class_posixAccount.inc:1515 +msgid "System trust model" +msgstr "Zaufanie do systemów" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -#, fuzzy -msgid "Configuration error" -msgstr "Plik konfiguracyjny" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "Ustawienia Posix" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#, fuzzy -msgid "Cannot find group SID in your configuration!" -msgstr "" -"Nie można znaleźć SID tych grup ani w LDAP, ani w pliku konfiguracyjnym!" +#: 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" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Grupa Samba" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "Hasło wygasa" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Administratorzy domeny" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "Nazwa obiektu" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Użytkownicy domeny" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Opis" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Goście domeny" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "Zawartość" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Specjalna grupa (%d)" +#: 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." -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "! nieznane id" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Poczta" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -msgstr "" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "FAX" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Nie można stworzyć pliku '%s'." +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Proxy" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Nie można stworzyć pliku '%s'." +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -msgid "Generic group settings" -msgstr "Ogólne ustawienia grupy" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Grupa" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Grupy" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Aplikacja" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -msgid "Phone pickup group" -msgstr "Grupie odbioru telefonu" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Serwer" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -msgid "Nagios group" -msgstr "Grupa nagios" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "Cienki klient" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -msgid "Group member" -msgstr "Członek grupy" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Stacja robocza" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -msgid "Samba group type" -msgstr "Typ grupy Samba" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Grupa obiektu" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -#, fuzzy -msgid "Samba domain name" -msgstr "Katalog domowy Samba" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Drukarka" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -msgid "Samba SID" -msgstr "Samba SID" +#: 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 "" +"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." -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: 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." -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -#, fuzzy -msgid "Infrastructure error" -msgstr "błąd PHP:" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "Zespół GOsa" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -#, fuzzy -msgid "group" -msgstr "grupy" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Witaj %s!" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" -msgstr "Ustawienia grupy" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +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 "Nazwa grupy" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" -msgstr "Posixowa nazwa grupy" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Zarządzanie departamentem" -#: 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" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "Przetwarzam zadaną operację" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Wymuś GID" +#: 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ę." -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Wymuś numer ID" +#: 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." -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Lista grup" +#: 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ć." -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 #: plugins/admin/departments/generic.tpl:4 #: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 msgid "Properties" msgstr "Właściwości" -#: 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" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "Nazwa departamentu" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "Pokaż grupy" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "Nazwa tworzonego poddrzewa" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "Grupa podstawowa" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "Tekst opisujący departament" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "Samba SID" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Kategoria" -#: plugins/admin/groups/class_divListGroup.inc:87 -#, fuzzy -msgid "samba groups" -msgstr "Grupa Samba" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "Kategoria dla tego poddrzewa" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "aplikacje" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" +msgstr "Wybierz poddrzewo do umieszczenia departamentu" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Pokaż grupy aplikacji" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "Stan w którym jest umieszczone to poddrzewo" -#: plugins/admin/groups/class_divListGroup.inc:90 -#, fuzzy -msgid "mail settings" -msgstr "Ustawienia pocztowe" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "Lokalizacja tego poddrzewa" -#: plugins/admin/groups/class_divListGroup.inc:91 -#, fuzzy -msgid "mail groups" -msgstr "Pokaż grupy pocztowe" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "Kod pocztowy tego poddrzewa" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "Zaznacz aby zobaczyć grupy, które posiadają tylko aspekty funkcjonalne" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "Bazowy numer telefonu tego poddrzewa" -#: plugins/admin/groups/class_divListGroup.inc:93 +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "Bazowy numer faxu tego poddrzewa" + +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "Ustawienia administracyjne" + +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "Zaznacz departament jako niezależną jednostkę administracyjną" + +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "Lista departamentów" + +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "functional groups" -msgstr "Pokaż grupy funkcjonalne" +msgid "Select all" +msgstr "Wybierz" + +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" +msgstr "Nazwa departamentu" + +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Akcje" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Grupa" +#: plugins/admin/departments/class_divListDepartment.inc:75 +msgid "Regular expression for matching department names" +msgstr "Wyrażenie regularne dla dopasowania nazw departamentów" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "Zatwierdź departament" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Poczta" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "Wyślij" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Aplikacja" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Utwórz" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 #: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "edytuj" + #: plugins/admin/departments/class_divListDepartment.inc:186 #: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 msgid "Edit this entry" msgstr "Edytuj ten obiekt" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 #: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "Usuń" + #: plugins/admin/departments/class_divListDepartment.inc:190 #: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 msgid "Delete this entry" msgstr "Usuń ten obiekt" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -#, fuzzy -msgid "Not allowed" -msgstr "Brak uprawnień do zmiay hasła" - -#: plugins/admin/groups/class_divListGroup.inc:359 -#, fuzzy -msgid "Number of listed groups" -msgstr "Nazwa grupy" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "departament" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 #: plugins/admin/departments/class_divListDepartment.inc:229 #: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 #, fuzzy msgid "Number of listed departments" msgstr "Nazwa departamentu" -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" -msgstr "Tekst opisowy dla tej grupy" - -#: 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" - -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "w domenie" - -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" -msgstr "Członkowie są w grupie odbioru telefonu" - -#: plugins/admin/groups/generic.tpl:155 -msgid "Members are in a nagios group" -msgstr "Członkowie są w grupie nagios." - -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "Członkowie grupy" +#: 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." -#: plugins/admin/groups/remove.tpl:6 +#: plugins/admin/departments/dep_move_confirm.tpl:5 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." +"Modifying a departments naming attribute 'ou' or base may corrupt acls and " +"snapshot entries for all entire objects." 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/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." msgstr "" -"Jeśli jesteś pewien - naciśnij 'Usuń' aby kontynuować lub 'Anuluj' aby " -"anulować." - -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Administracja Grupą" -#: plugins/admin/users/password.tpl:4 +#: plugins/admin/departments/dep_move_confirm.tpl:11 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." +"Before you confirm this action, ensure that everything will be as expected, " +"possibly the best solution is a backup." 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 +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 #, fuzzy -msgid "Strength" -msgstr "Ulica" +msgid "Fatal error" +msgstr "Terminal Server" -#: plugins/admin/users/class_userManagement.inc:27 +#: plugins/admin/departments/class_departmentGeneric.inc:313 #, fuzzy -msgid "Manage users" -msgstr "Użytkownicy domeny" +msgid "Cannot find an unused tag for this administrative unit!" +msgstr "" +"Błąd krytyczny: Nie można znaleźć nieużywnego znacznika dla jednostki " +"administracyjnej!" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -#, fuzzy -msgid "You have no permission to change this users password!" -msgstr "Brak uprawnień do zmiany własnego hasła" +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "Zaznaczanie '%s'." -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "żaden" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Kontynuuj" -#: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "Przenoszenie '%s' do '%s'" -#: plugins/admin/users/class_userManagement.inc:548 -#, fuzzy -msgid "You have no permission to use this template!" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Obiekt" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "BŁĄD kopiowania %s, anulowanie operacji" + +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Departamenty" + +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Kraj" + +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Telefon" + +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "Obiekt '%s' jest już zaznaczony" + +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "Dodawanie znacznika (%s) do obiektu '%s'" + +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "Usuwanie znacznika z obiektu '%s'" + +#: plugins/admin/departments/class_departmentManagement.inc:27 #, fuzzy -msgid "user" -msgstr "użytkownicy" +msgid "Manage Departments" +msgstr "Departamenty" -#: plugins/admin/users/class_userManagement.inc:655 +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 #, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "Brak uprawnień do zmiany własnego hasła" +msgid "Permission error" +msgstr "Uprawnienia" -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "Szablon" +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, 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'." -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "Utwórz nowego użytkownika używając szablonów" +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" -#: plugins/admin/users/template.tpl:6 +#: plugins/admin/departments/class_departmentManagement.inc:336 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." +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." 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:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Kontynuuj" +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "ACL" -#: plugins/admin/users/remove.tpl:6 +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +#, fuzzy +msgid "Manage access control lists" +msgstr "Kontrola dostępu" + +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +#, fuzzy +msgid "Permission" +msgstr "Uprawnienia" + +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +msgid "ACL management" +msgstr "Zarządzanie ACL" + +#: plugins/admin/acl/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." +"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 "" -"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." +"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/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Administracja użytkownikami" +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +msgid "List of acls" +msgstr "Lista ACLi" -#: 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/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "Podsumowanie" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Nazwa użytkownika" +#: plugins/admin/acl/class_divListACL.inc:84 +msgid "Display acls matching" +msgstr "Wyświetl ACL pasujące" -#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/acl/class_divListACL.inc:215 #, fuzzy -msgid "templates" -msgstr "Szablony" +msgid "Edit acl role" +msgstr "Edytuj makro" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:223 #, fuzzy -msgid "GOsa object" -msgstr "Obiekt" +msgid "Delete acl role" +msgstr "Usuń makro" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:242 #, fuzzy -msgid "functional users" -msgstr "Pokaż użytkowników funkcjonalnych" +msgid "Edit acl" +msgstr "Edytuj klasę" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/acl/class_divListACL.inc:246 #, fuzzy -msgid "POSIX users" -msgstr "Ustawienia Posix" +msgid "Delete acl" +msgstr "Usuń klasę" -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 #, fuzzy -msgid "mail users" -msgstr "Użytkownicy domeny" +msgid "Access control roles" +msgstr "Kontrola dostępu" -#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/acl/class_aclRole.inc:27 #, fuzzy -msgid "samba users" -msgstr "Użytkownicy domeny" +msgid "Edit AC roles" +msgstr "ACLe" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Proxy" +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +msgid "All categories" +msgstr "Wszystkie kategorie" -#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/acl/class_aclRole.inc:131 #, fuzzy -msgid "proxy users" -msgstr "Pokaż użytkowników proxy" +msgid "Reset ACL" +msgstr "Resetuj ACL'e" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Użytkownik" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +msgid "One level" +msgstr "Jeden poziom" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Zmień hasło" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +msgid "Current object" +msgstr "Obecny obiekt" -#: plugins/admin/users/class_divListUsers.inc:189 -#, fuzzy -msgid "Apply template" -msgstr "Szablony" +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +msgid "Complete subtree" +msgstr "Pełne poddrzewo" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" +msgstr "Pełne poddrzewo (trwałe)" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "Edytuj ogólne właściwości" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "Góra" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "Edytuj właściwości UNIX" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" +msgstr "W dół" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "Edytuj właściwości Środowiska" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Edytuj" -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "Edytuj właściwości Poczty" +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" +msgstr "Usuń" -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "Edytuj właściwości Telefonu" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" +msgstr "Brak ustawień ACL w tej kategorii" -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "Edytuj właściwości Fax" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "Zawiera ACL'e w tych kategoriach: %s" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "Edytuj właściwości Samba" +#: plugins/admin/acl/class_aclRole.inc:408 +#, fuzzy +msgid "Edit category ACL" +msgstr "Edytuj kategorie ACL'i" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "Netatalk" +#: plugins/admin/acl/class_aclRole.inc:409 +#, fuzzy +msgid "Reset category ACL" +msgstr "Kategoria" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "Edytuj właściwości Netatalk" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "Edytuj ACL dla '%s', zakres to '%s'" + +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "Wszystkie obiekty w obecnym poddrzewie" + +#: plugins/admin/acl/class_aclRole.inc:621 +#, fuzzy +msgid "Object in use" +msgstr "Nazwa obiektu" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "Utwórz użytkownika z szablonu" +#: plugins/admin/acl/class_aclRole.inc:621 +#, php-format +msgid "This role cannot be removed while it is in use by these objects:" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "Utwórz użytkownika z tego szablonu" +#: plugins/admin/acl/tabs_acl_role.inc:28 +#, fuzzy +msgid "ACL Templates" +msgstr "Szablony" -#: plugins/admin/users/class_divListUsers.inc:297 +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 #, fuzzy -msgid "inactive" -msgstr "Aktywne" +msgid "Assigned ACL for current entry" +msgstr "Przypisane ACL'e dla obecnego wpisu" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "hasło" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "Wybierz poddrzewo do umieszczenia grupy" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "Usuń użytkownika" +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +msgid "New ACL" +msgstr "Nowy ACL" -#: plugins/admin/users/class_divListUsers.inc:421 -#, fuzzy -msgid "Number of listed users" -msgstr "Nazwa departamentu" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +msgid "ACL type" +msgstr "typ ACL" -#: plugins/admin/users/templatize.tpl:2 -#, fuzzy -msgid "Applying a template" -msgstr "Szablony" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +msgid "Select an acl type" +msgstr "Wybierz typ ACL" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." -msgstr "" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +msgid "List of available ACL categories" +msgstr "Lista dostępnych kategorii ACL" -#: plugins/admin/users/templatize.tpl:33 +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" +msgstr "Grupy obiektów" + +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 #, fuzzy -msgid "No templates available!" -msgstr "Plik jest dostępny" +msgid "Manage object groups" +msgstr "Nazwa grupy obiektów" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "Lista departamentów" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "błąd PHP:" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" -msgstr "Nazwa departamentu" +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#, fuzzy +msgid "object group" +msgstr "Grupa obiektu" -#: plugins/admin/departments/class_divListDepartment.inc:75 -msgid "Regular expression for matching department names" -msgstr "Wyrażenie regularne dla dopasowania nazw departamentów" +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Użytkownik" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "departament" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#, fuzzy +msgid "Windows Install" +msgstr "Stacja robocza Windows" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "Przetwarzam zadaną operację" +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "Terminal" -#: plugins/admin/departments/dep_iframe.tpl:7 +#: plugins/admin/ogroups/remove.tpl:7 msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." +"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." + +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." msgstr "" -"Twoja przeglądarka nie obsługuje iframes, proszę użyć tego linku aby wykonać " -"żądaną operację." +"Jeśli jesteś pewien - naciśnij 'Usuń' aby kontynuować lub 'Anuluj' aby " +"anulować." -#: 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." +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Nazwa grupy" -#: 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 "" +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Nazwa grupy" -#: plugins/admin/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." -msgstr "" +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "Tekst opisowy dla tej grupy" -#: 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/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Dodaj członka" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "Nazwa departamentu" +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +msgid "List of object groups" +msgstr "Lista grupy obiektów" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "Nazwa tworzonego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "Pokaż grupy" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "Tekst opisujący departament" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "grupy" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Kategoria" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "Grupy obiektów" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "Kategoria dla tego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Pokaż grupy aplikacji" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "Wybierz poddrzewo do umieszczenia departamentu" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "departamenty" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "Stan w którym jest umieszczone to poddrzewo" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "serwery" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "Lokalizacja tego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "stacje robocze" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "Kod pocztowy tego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "Pokaż stacje robocze" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "Bazowy numer telefonu tego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "Pokaż grupy pocztowe" + +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#, fuzzy +msgid "printer groups" +msgstr "Grupa podstawowa" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "Bazowy numer faxu tego poddrzewa" +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#, fuzzy +msgid "phone groups" +msgstr "Pokaż grupy" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "Ustawienia administracyjne" +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#, fuzzy +msgid "Number of listed object groups" +msgstr "Nazwa grupy obiektów" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "Zaznacz departament jako niezależną jednostkę administracyjną" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" +msgstr "Informacja" -#: 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." +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" msgstr "" -"Operacja odnosi sie do 'wszystkich' kont, systemów, etc w tym poddrzewie. " -"Proszę upewnić się czy kontynuować, gdyż nie ma operacji powrotu." -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Zarządzanie departamentem" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "departamenty" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, fuzzy -msgid "Fatal error" -msgstr "Terminal Server" +msgid "people" +msgstr "Pokaż ludzi" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#, 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!" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "grupy" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "Zaznaczanie '%s'." +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "serwery" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "Przenoszenie '%s' do '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" +msgstr "stacje robocze" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Obiekt" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" +msgstr "terminale" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "BŁĄD kopiowania %s, anulowanie operacji" +#: plugins/admin/ogroups/class_ogroup.inc:440 +#, fuzzy +msgid "printer" +msgstr "drukarki" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Departamenty" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "drukarki" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Kraj" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" +msgstr "telefony" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Telefon" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" +msgstr "aplikacje" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "Obiekt '%s' jest już zaznaczony" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "żaden" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "Dodawanie znacznika (%s) do obiektu '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" +msgstr "za dużo różnych obiektów!" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" -msgstr "Usuwanie znacznika z obiektu '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "użytkownicy" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Manage Departments" -msgstr "Departamenty" +msgid "winstations" +msgstr "Stacja Windows" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, 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'." +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "Nieistniejące dn:" -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:872 +#, 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!" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:1056 +msgid "Object group generic" +msgstr "Podstawowa grupa obiektu" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +msgid "Member" +msgstr "Członek" #: plugins/admin/ogroups/tabs_ogroups.inc:112 #: plugins/admin/ogroups/tabs_ogroups.inc:298 @@ -2394,6 +2198,11 @@ msgstr "Aplikacje" msgid "Terminals" msgstr "Terminale" +#: plugins/admin/ogroups/paste_generic.tpl:7 +#, fuzzy +msgid "Please enter the new object group name" +msgstr "Proszę podać nową nazwę." + #: plugins/admin/ogroups/ogroup_objects.tpl:6 msgid "Select objects to add" msgstr "Wybierz obiekty do dodania" @@ -2415,1898 +2224,2006 @@ msgstr "Wyświetl obiekty pasujące" msgid "Regular expression for matching object names" msgstr "Wyrażenie regularne dla dopasowania nazw obiektów" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "Grupy obiektów" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#: plugins/admin/users/class_userManagement.inc:27 #, fuzzy -msgid "Manage object groups" -msgstr "Nazwa grupy obiektów" +msgid "Manage users" +msgstr "Użytkownicy domeny" -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 #, fuzzy -msgid "object group" -msgstr "Grupa obiektu" +msgid "You have no permission to change this users password!" +msgstr "Brak uprawnień do zmiany własnego hasła" -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Serwer" +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Stacja robocza" +#: plugins/admin/users/class_userManagement.inc:548 +#, fuzzy +msgid "You have no permission to use this template!" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 #, fuzzy -msgid "Windows Install" -msgstr "Stacja robocza Windows" +msgid "user" +msgstr "użytkownicy" + +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "Brak uprawnień do zmiany własnego hasła" + +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "Szablon" + +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" +msgstr "Utwórz nowego użytkownika używając szablonów" + +#: 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 "" +"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/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" -msgstr "Terminal" +#: plugins/admin/users/templatize.tpl:2 +#, fuzzy +msgid "Applying a template" +msgstr "Szablony" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "Drukarka" +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" -#: plugins/admin/ogroups/paste_generic.tpl:7 +#: plugins/admin/users/templatize.tpl:33 #, fuzzy -msgid "Please enter the new object group name" -msgstr "Proszę podać nową nazwę." +msgid "No templates available!" +msgstr "Plik jest dostępny" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -msgid "List of object groups" -msgstr "Lista grupy obiektów" +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "Administracja użytkownikami" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Grupa obiektu" +#: 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 "" +"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/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 -#, fuzzy -msgid "user groups" -msgstr "grupy" +#: 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/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 -#, fuzzy -msgid "nested groups" -msgstr "Grupy obiektów" +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Nazwa użytkownika" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "department groups" -msgstr "departamenty" +msgid "templates" +msgstr "Szablony" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "server groups" -msgstr "serwery" +msgid "GOsa object" +msgstr "Obiekt" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "workstation groups" -msgstr "stacje robocze" +msgid "functional users" +msgstr "Pokaż użytkowników funkcjonalnych" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" + +#: plugins/admin/users/class_divListUsers.inc:86 #, fuzzy -msgid "windows workstation groups" -msgstr "Pokaż stacje robocze" +msgid "POSIX users" +msgstr "Ustawienia Posix" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#: plugins/admin/users/class_divListUsers.inc:87 #, fuzzy -msgid "terminal groups" -msgstr "Pokaż grupy pocztowe" +msgid "mail users" +msgstr "Użytkownicy domeny" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "printer groups" -msgstr "Grupa podstawowa" +msgid "samba users" +msgstr "Użytkownicy domeny" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#: plugins/admin/users/class_divListUsers.inc:89 #, fuzzy -msgid "phone groups" -msgstr "Pokaż grupy" +msgid "proxy users" +msgstr "Pokaż użytkowników proxy" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#: 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" + +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Zmień hasło" + +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "Number of listed object groups" -msgstr "Nazwa grupy obiektów" +msgid "Apply template" +msgstr "Szablony" -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "Informacja" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "Edytuj ogólne właściwości" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "departamenty" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "Edytuj właściwości UNIX" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#, fuzzy -msgid "people" -msgstr "Pokaż ludzi" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "Edytuj właściwości Środowiska" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "grupy" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "Edytuj właściwości Poczty" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "serwery" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "Edytuj właściwości Telefonu" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "stacje robocze" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "Edytuj właściwości Fax" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "terminale" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "Edytuj właściwości Samba" -#: plugins/admin/ogroups/class_ogroup.inc:440 -#, fuzzy -msgid "printer" -msgstr "drukarki" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" +msgstr "Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "drukarki" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "Edytuj właściwości Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" -msgstr "telefony" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "Utwórz użytkownika z szablonu" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "aplikacje" +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "Utwórz użytkownika z tego szablonu" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" -msgstr "za dużo różnych obiektów!" +#: plugins/admin/users/class_divListUsers.inc:297 +#, fuzzy +msgid "inactive" +msgstr "Aktywne" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "użytkownicy" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "hasło" -#: plugins/admin/ogroups/class_ogroup.inc:479 +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 +#, fuzzy +msgid "Not allowed" +msgstr "Brak uprawnień do zmiay hasła" + +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "Usuń użytkownika" + +#: plugins/admin/users/class_divListUsers.inc:421 #, fuzzy -msgid "winstations" -msgstr "Stacja Windows" +msgid "Number of listed users" +msgstr "Nazwa departamentu" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "Nieistniejące dn:" +#: 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 "" +"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/ogroups/class_ogroup.inc:872 +#: plugins/admin/users/password.tpl:21 #, 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!" +msgid "Strength" +msgstr "Ulica" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -msgid "Object group generic" -msgstr "Podstawowa grupa obiektu" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Administracja Grupą" -#: plugins/admin/ogroups/class_ogroup.inc:1067 -msgid "Member" -msgstr "Członek" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Wybierz użytkowników do dodania" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "Nazwa grupy" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Proszę aby zobaczyć serwery" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Dodaj członka" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "Szukaj wewnątrz tego poddrzewa" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Wyświetl użytkowników departamentu" + +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "Wyrażenie regularne do dopasowania nazw użytkowników" + +#: plugins/admin/groups/remove.tpl:6 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." +"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ąć." -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "FAX" +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "Posixowa nazwa grupy" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" +msgstr "Zwyczajowo ID są generowane automatycznie, wybierz aby podać ręcznie" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "Cienki klient" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Wymuś GID" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Nazwa obiektu" +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Wymuś numer ID" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "Zawartość" +#: 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" -#: 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." +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "w domenie" -#: 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 "" -"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." +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "Członkowie są w grupie odbioru telefonu" -#: 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." +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" +msgstr "Członkowie są w grupie nagios." -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "Zespół GOsa" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Członkowie grupy" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Witaj %s!" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "Plik konfiguracyjny" -#: 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_groupGeneric.inc:163 +#, 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/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Wybierz obiekty do dodania" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Grupa Samba" -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Zaznacz aby zobaczyć grupy zawierające użytkowników" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Administratorzy domeny" -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Wybierz obiekty do dodania" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Użytkownicy domeny" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Goście domeny" -#: include/utils/class_msgPool.inc:35 +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +msgid "Special group (%d)" +msgstr "Specjalna grupa (%d)" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "! nieznane id" -#: include/utils/class_msgPool.inc:42 +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" - -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, fuzzy, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "Nie można stworzyć pliku '%s'." -#: include/utils/class_msgPool.inc:53 -#, php-format -msgid "These objects will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Nie można stworzyć pliku '%s'." -#: include/utils/class_msgPool.inc:55 -#, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1213 +msgid "Generic group settings" +msgstr "Ogólne ustawienia grupy" -#: include/utils/class_msgPool.inc:63 -#, fuzzy -msgid "You have no permission to delete this object!" -msgstr "Brak uprawnień do usunięcia tego departamentu." +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Grupy" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "Brak uprawnień do usunięcia tego departamentu." +#: plugins/admin/groups/class_groupGeneric.inc:1225 +msgid "Phone pickup group" +msgstr "Grupie odbioru telefonu" -#: include/utils/class_msgPool.inc:74 -#, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "Brak uprawnień do usunięcia tego departamentu." +#: plugins/admin/groups/class_groupGeneric.inc:1226 +msgid "Nagios group" +msgstr "Grupa nagios" -#: include/utils/class_msgPool.inc:81 -#, fuzzy -msgid "You have no permission to create this object!" -msgstr "Brak uprawnień do usunięcia tego departamentu." +#: plugins/admin/groups/class_groupGeneric.inc:1229 +msgid "Group member" +msgstr "Członek grupy" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 -#, fuzzy -msgid "You have no permission to create the object:" -msgstr "Brak uprawnień do usunięcia tego departamentu." +#: plugins/admin/groups/class_groupGeneric.inc:1230 +msgid "Samba group type" +msgstr "Typ grupy Samba" -#: include/utils/class_msgPool.inc:92 +#: plugins/admin/groups/class_groupGeneric.inc:1231 #, fuzzy -msgid "You have no permission to create these objects:" -msgstr "Brak uprawnień do usunięcia tego departamentu." +msgid "Samba domain name" +msgstr "Katalog domowy Samba" -#: include/utils/class_msgPool.inc:99 -#, fuzzy -msgid "You have no permission to modify this object!" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +msgid "Samba SID" +msgstr "Samba SID" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -#, fuzzy -msgid "You have no permission to modify the object:" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "" -#: include/utils/class_msgPool.inc:110 +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +msgid "group" +msgstr "grupy" -#: include/utils/class_msgPool.inc:117 -#, fuzzy -msgid "You have no permission to view this object!" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" +msgstr "Lista grup" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 -#, fuzzy -msgid "You have no permission to view the object:" -msgstr "Brak uprawnień do tworzenia telefonu w tym elemencie." +#: 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/utils/class_msgPool.inc:128 +#: plugins/admin/groups/class_divListGroup.inc:85 #, fuzzy -msgid "You have no permission to view these objects:" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +msgid "primary groups" +msgstr "Grupa podstawowa" -#: include/utils/class_msgPool.inc:135 +#: plugins/admin/groups/class_divListGroup.inc:86 #, fuzzy -msgid "You have no permission to move this object!" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +msgid "samba groups mappings" +msgstr "Samba SID" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#: plugins/admin/groups/class_divListGroup.inc:87 #, fuzzy -msgid "You have no permission to move the object:" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +msgid "samba groups" +msgstr "Grupa Samba" -#: include/utils/class_msgPool.inc:146 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "You have no permission to move these objects:" -msgstr "Brak uprawnień do usunięcia grupy obiektowej." +msgid "application settings" +msgstr "aplikacje" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/class_divListGroup.inc:90 #, fuzzy -msgid "Connection information" -msgstr "Informacje osobiste" +msgid "mail settings" +msgstr "Ustawienia pocztowe" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "Nie można połączyć się z serwerem baz danych!" +#: plugins/admin/groups/class_divListGroup.inc:91 +#, fuzzy +msgid "mail groups" +msgstr "Pokaż grupy pocztowe" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "Nie można wybrać bazy danych!" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "Zaznacz aby zobaczyć grupy, które posiadają tylko aspekty funkcjonalne" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Pokaż grupy funkcjonalne" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "Nie można wybrać bazy danych!" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "Nazwa grupy" -#: include/utils/class_msgPool.inc:194 -#, fuzzy, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "Pole 'Fax' zawiera nieprawidłowy numer telefonu." +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" +msgstr "Ustawienia grupy" -#: include/utils/class_msgPool.inc:200 -#, 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." +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#, fuzzy +msgid "GOsa settings 2/3" +msgstr "Ustawienia użytkownika" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "Podana nazwa jest nieprawidłowa" +#: setup/class_setupStep_Config2.inc:88 +#, fuzzy +msgid "Customize special parameters" +msgstr "Sprawdź parametr" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "Nie" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "Tak" -#: include/utils/class_msgPool.inc:213 -#, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "Podana nazwa jest nieprawidłowa" +#: setup/setup_frame.tpl:12 +#, fuzzy +msgid "GOsa setup wizard" +msgstr "Podgląd pomocy GOsa" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "Nie można wybrać bazy danych!" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Installation" +msgstr "Stacja Windows" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Steps" +msgstr "Systemy" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Zakończ" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "Nie można wybrać bazy danych!" +#: setup/class_setupStep_Finish.inc:38 +#, fuzzy +msgid "Write configuration file" +msgstr "Plik konfiguracyjny" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "Wartość podana jako 'UID' jest za mała." +#: setup/class_setupStep_Finish.inc:39 +#, fuzzy +msgid "Finish - write the configuration file" +msgstr "Plik konfiguracyjny" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: setup/class_setupStep_Finish.inc:101 +#, 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ę." -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "Wartość podana jako 'UID' jest za mała." +#: setup/class_setupStep_Finish.inc:103 +#, 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ę." -#: include/utils/class_msgPool.inc:247 +#: setup/class_setupStep_Finish.inc:112 #, 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:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" +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:" -#: include/utils/class_msgPool.inc:260 -#, 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." - -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "Wymagane pole 'Nazwa' jest puste." +#: setup/setup_finish.tpl:3 +#, fuzzy +msgid "Create your configuration file" +msgstr "Plik konfiguracyjny" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "Konfiguracja pobierania" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "Pole 'Nazwa' zawiera niedozwolone znaki." +#: setup/setup_finish.tpl:18 +#, fuzzy +msgid "Status: " +msgstr "Status" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "Brak uprawnień do zmiay hasła" - -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "Pole 'Nazwa' zawiera niedozwolone znaki." +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Szukaj" -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Rozszerzenie inwentarza" +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 +#, php-format +msgid "Apply" +msgstr "Zastosuj" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "Anuluj" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "Ok" - -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Zastosuj" +#: setup/setup_ldap.tpl:25 +#, fuzzy +msgid "LDAP connection" +msgstr "Rozłączenie" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Zapisz" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Nazwa lokalizacji" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Dodaj" +#: setup/setup_ldap.tpl:37 +#, fuzzy +msgid "Connection URL" +msgstr "Połączeniowy URL" -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Dodaj" +#: setup/setup_ldap.tpl:45 +#, fuzzy +msgid "TLS connection" +msgstr "Połączenie dzwonienia..." -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Usuń" +#: setup/setup_ldap.tpl:65 +#, fuzzy +msgid "Reload" +msgstr "Odczyt" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "Ustaw" +#: setup/setup_ldap.tpl:69 +#, fuzzy +msgid "Authentication" +msgstr "Autentykacja Nagios" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Edytuj" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "DN Administratora" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Edytuj użytkownika" +#: setup/setup_ldap.tpl:78 +#, fuzzy +msgid "Select user" +msgstr "Usuń użytkownika" -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Wróć" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" +msgstr "" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "To konto nie posiada poprawnych rozszerzeń GOsa." +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Hasło Administratora" -#: include/utils/class_msgPool.inc:381 -#, 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." +#: setup/setup_ldap.tpl:101 +#, fuzzy +msgid "Schema based settings" +msgstr "Ustawienia Samba" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć " -"konto Samba/Środowisko." -#: include/utils/class_msgPool.inc:400 -#, 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." +#: setup/setup_ldap.tpl:117 +#, fuzzy +msgid "Current status" +msgstr "Ustaw status" -#: include/utils/class_msgPool.inc:403 -#, 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." +#: setup/setup_language.tpl:3 +#, fuzzy +msgid "Please select the preferred language" +msgstr "Preferowany język" -#: include/utils/class_msgPool.inc:410 -#, fuzzy, php-format +#: setup/setup_language.tpl:5 msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +"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 "" -"To konto posiada rozszerzenia unix, Aby je wyłączyć należy najpierw usunąć " -"konto Samba/Środowisko." - -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Ustawienia Aplikacji" -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Ustawienia Posix" +#: setup/setup_language.tpl:9 +#, fuzzy +msgid "Please select your preferred language here" +msgstr "Preferowany język" -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" -msgstr "Kliknij przycisk 'Edytuj' poniżej, aby zmienić informacje w tym oknie" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#, fuzzy +msgid "Language setup" +msgstr "Język" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Styczeń" +#: setup/class_setupStep_Language.inc:42 +#, fuzzy +msgid "This step allows you to select your preferred language." +msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych grup." -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Luty" +#: setup/class_setupStep_Language.inc:47 +#, fuzzy +msgid "Automatic" +msgstr "automatyczne" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Marzec" +#: setup/setup_config3.tpl:2 +#, fuzzy +msgid "GOsa core settings" +msgstr "Ustawienia pocztowe" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "Kwiecień" +#: setup/setup_config3.tpl:6 +#, fuzzy +msgid "Disable primary group filter" +msgstr "Wyświetl grupy użytkownika" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Maj" +#: setup/setup_config3.tpl:18 +#, fuzzy +msgid "Display summary in listings" +msgstr "Wyświetl makra pasujące" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Czerwiec" +#: setup/setup_config3.tpl:30 +#, fuzzy +msgid "Honour administrative units" +msgstr "Administracja Grupą" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "Lipiec" +#: setup/setup_config3.tpl:42 +#, fuzzy +msgid "Smarty compile directory" +msgstr "Katalog domowy" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "Sierpień" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "Wrzesień" +#: setup/setup_config3.tpl:60 +#, fuzzy +msgid "Path for PPD storage" +msgstr "Przechowywanie hasła" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Październik" +#: setup/setup_config3.tpl:77 +#, fuzzy +msgid "Path for kiosk profile storage" +msgstr "Ustawienia profilu Kiosk" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "Listopad" +#: setup/setup_config3.tpl:96 +#, fuzzy +msgid "Override sudo role ou" +msgstr "! nieznane id" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Grudzień" +#: setup/setup_config3.tpl:115 +#, fuzzy +msgid "Mail queue script" +msgstr "Ogólna ścieżka do skryptu" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:134 #, fuzzy -msgid "Sunday" -msgstr "Nazwisko" +msgid "Notification script" +msgstr "Cel powiadomienia" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:153 #, fuzzy -msgid "Monday" -msgstr "miesiąc" +msgid "Enable edit locking" +msgstr "Włącz skanowanie antyfirusowe" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:175 #, fuzzy -msgid "Wednesday" -msgstr "Środa" +msgid "Login attribute" +msgstr "Atrybuty telefonu" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config3.tpl:210 +#, fuzzy +msgid "Warn if session is not encrypted" +msgstr "Sesja nie będzie szyfrowana." + +#: setup/setup_config3.tpl:222 +#, fuzzy +msgid "Remember dialog filter settings" +msgstr "Ogólne ustawienia użytkownika" + +#: setup/setup_config3.tpl:234 +#, fuzzy +msgid "Session lifetime" +msgstr "Wykryto konflikt sesji" + +#: setup/setup_config3.tpl:243 +msgid "Debugging" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:247 #, fuzzy -msgid "read operation" -msgstr "Opcje poczty" +msgid "Show PHP errors" +msgstr "błąd PHP:" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config3.tpl:259 +#, fuzzy +msgid "Maximum LDAP query time" +msgstr "Max rozmiar nagłówków poczty" + +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:289 #, fuzzy -msgid "modify operation" -msgstr "Informacje osobiste" +msgid "Debug level" +msgstr "Jeden poziom" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 #, fuzzy -msgid "delete operation" -msgstr "Wybierz aby zobaczyc stacje robocze" +msgid "Disabled" +msgstr "wyłączone" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 #, fuzzy -msgid "search operation" -msgstr "Konto wygasa po" +msgid "Enabled" +msgstr "włączone" -#: include/utils/class_msgPool.inc:452 +#: setup/class_setupStep_Welcome.inc:38 #, fuzzy -msgid "authentication" -msgstr "Autentykacja Nagios" +msgid "Welcome" +msgstr "Witaj %s!" -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "Zapytanie do bazy danych nieudane" +#: setup/class_setupStep_Welcome.inc:39 +#, fuzzy +msgid "The welcome message" +msgstr "Usuń tą wiadomosc" -#: include/utils/class_msgPool.inc:457 +#: setup/class_setupStep_Welcome.inc:40 #, fuzzy -msgid "LDAP operation failed!" -msgstr "Zapytanie do bazy danych nieudane" +msgid "Welcome to GOsa setup wizard" +msgstr "Witaj w instalacji GOsa!" -#: include/utils/class_msgPool.inc:472 +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 #, fuzzy -msgid "Upload failed!" -msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." +msgid "GOsa settings 1/3" +msgstr "Ustawienia użytkownika" -#: include/utils/class_msgPool.inc:475 +#: setup/class_setupStep_Config1.inc:76 +#, fuzzy +msgid "GOsa generic settings" +msgstr "Ogólne ustawienia użytkownika" + +#: setup/class_setupStep_Config1.inc:118 #, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Użytkownik bazy logowania" +msgid "The specified value for '%s' must be a numeric value" +msgstr "Port sieve musi być liczbą." -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" +#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 +msgid "GID / UID min id" msgstr "" -#: include/utils/class_msgPool.inc:484 +#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 #, php-format -msgid "Communication failure with the infrastructure service: %s" +msgid "Don't add a trailing comma to '%s'." msgstr "" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" -msgstr "" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "Prosze wyszczególnić długość pamięci." -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "Zawiera ustawienia dla tych obiektów: %s" +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "Proszę wybrać grupę obiektów" -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "Zawiera ustawienia dla tych obiektów: %s" +#: setup/class_setupStep_Config1.inc:130 +#, fuzzy +msgid "Uid base must be numeric" +msgstr "Limit czasu musi być liczbą" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: setup/class_setupStep_Config1.inc:134 +#, fuzzy +msgid "The given password minimum length is not numeric." +msgstr "Port sieve musi być liczbą." + +#: setup/class_setupStep_Config1.inc:137 +#, fuzzy +msgid "The given password differ value is not numeric." +msgstr "Port sieve musi być liczbą." + +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +#, fuzzy +msgid "LDAP schema check" +msgstr "Usługa Ldap" + +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" msgstr "" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Nie można otworzyć pliku '%s'." +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Ustawienia Samba" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Nie można otworzyć pliku '%s'." +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" +msgstr "" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "Nie można otworzyć pliku '%s'." +#: setup/setup_config2.tpl:31 +#, fuzzy +msgid "RID base" +msgstr "Baza" -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Utwórz nowy departament" +#: setup/setup_config2.tpl:46 +#, fuzzy +msgid "Workstation container" +msgstr "Nazwa stacji roboczej" -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Nie można otworzyć pliku '%s'." +#: setup/setup_config2.tpl:61 +#, fuzzy +msgid "Samba SID mapping" +msgstr "Samba SID" -#: include/utils/class_msgPool.inc:541 -#, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Sprawdzam wsparcie dla iconv" +#: setup/setup_config2.tpl:71 +#, fuzzy +msgid "Timezone" +msgstr "Strefa czasowa użytkownika" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." -msgstr "" +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "Preferowany język" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/setup_config2.tpl:96 +#, fuzzy +msgid "Additional GOsa settings" +msgstr "Ustawienia Aplikacji" + +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/class_certificate.inc:73 +#: setup/setup_config2.tpl:112 #, fuzzy -msgid "Certificate is empty!" -msgstr "Certyfikaty" +msgid "Enable DNS extension" +msgstr "Rozszerzenie inwentarza" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" -msgstr "" +#: setup/setup_config2.tpl:124 +#, fuzzy +msgid "Enable DHCP extension" +msgstr "Rozszerzenie inwentarza" -#: include/class_certificate.inc:115 +#: setup/setup_config2.tpl:136 #, fuzzy -msgid "Cannot extract information for non PEM certificates!" -msgstr "Nie można pobrać informacji o quota dla '%s'." +msgid "Enable mime type management" +msgstr "Zarządzanie typami mime" -#: include/class_certificate.inc:219 +#: setup/setup_config2.tpl:148 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "Nie załadowano prawidłowego certyfikatu" +msgid "Enable FAI release management" +msgstr "Zarządzanie FAI" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" -msgstr "Zamknij" +#: setup/setup_config2.tpl:160 +#, fuzzy +msgid "Enable user netatalk plugin" +msgstr "Zarządzaj kontem Netatalk" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "Idź do głównego departamentu" +#: setup/setup_config2.tpl:171 +#, fuzzy +msgid "Government mode" +msgstr "do folferu" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "Główny" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "Nieznane" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "Idź jeden departament wyżej" +#: setup/setup_config2.tpl:186 +#, fuzzy +msgid "Syslog" +msgstr "Logi systemowe" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "Przejdź do departamentu użytkowników" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "błąd LDAP:" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" -msgstr "Katalog domowy" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "Ustawienia pocztowe" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "Przeładuj listę" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "Typ pocztowy" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/php_setup.inc:95 -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!" +#: setup/setup_config2.tpl:227 +#, fuzzy +msgid "Vacation templates" +msgstr "Szablon stacji roboczej" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -#: include/php_setup.inc:100 +#: setup/setup_config2.tpl:253 #, fuzzy -msgid "Send bugreport" -msgstr "Nadawca" - -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "Przełącz informacje" +msgid "Snapshots / Undo" +msgstr "Tworzenie snapshot'u nieudane" -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "błąd PHP:" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +#, fuzzy +msgid "Enable snapshots" +msgstr "Utwórz spanshot" -#: include/php_setup.inc:134 -msgid "class" -msgstr "klasa" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +#, fuzzy +msgid "Snapshot base" +msgstr "Tworzenie snapshot'u nieudane" -#: include/php_setup.inc:140 -msgid "function" -msgstr "funkcja" +#: 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:145 -msgid "static" -msgstr "statyczna" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "" -#: include/php_setup.inc:149 -msgid "method" -msgstr "metoda" +#: setup/setup_welcome.tpl:11 +#, fuzzy +msgid "Create a basic, single site configuration" +msgstr "Konfiguracja bazy FAX" -#: include/php_setup.inc:182 -msgid "Trace" -msgstr "Śledzenie" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" +msgstr "" -#: include/php_setup.inc:183 -msgid "File" -msgstr "Plik" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" +msgstr "" -#: include/php_setup.inc:183 -msgid "Line" -msgstr "Linia" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" +msgstr "" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Typ" +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" +msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" -msgstr "Argumenty" +#: setup/setup_welcome.tpl:20 +#, fuzzy +msgid "Find every possible configuration error" +msgstr "Plik konfiguracyjny" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:25 +#, fuzzy +msgid "To continue..." +msgstr "Ustawienia trwają..." + +#: setup/setup_welcome.tpl:28 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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/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_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." +msgstr "" -#: include/functions.inc:380 +#: setup/class_setupStep_Ldap.inc:53 #, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "Użytkownik /UID nie są unikalne. Proszę sprawdzić bazę LDAP." +msgid "LDAP setup" +msgstr "Serwer LDAP" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 +#: setup/class_setupStep_Ldap.inc:54 #, fuzzy -msgid "Internal error" -msgstr "Terminal Server" +msgid "LDAP connection setup" +msgstr "Połączenie dzwonienia..." -#: include/functions.inc:450 +#: setup/class_setupStep_Ldap.inc:55 #, 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." - -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +"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." -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:105 #, 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!" +msgid "Anonymous bind to server '%s' failed!" +msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." -#: include/functions.inc:605 +#: setup/class_setupStep_Ldap.inc:107 #, fuzzy, php-format -msgid "LDAP server returned: %s" -msgstr "Serwer LDAP" +msgid "Bind as user '%s' failed!" +msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." + +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." -#: include/functions.inc:699 +#: setup/class_setupStep_Ldap.inc:113 #, fuzzy +msgid "Please specify user and password!" +msgstr "Proszę podać prawidłowe hasło!" + +#: setup/class_setupStep_Ldap.inc:115 +#, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." + +#: setup/setup_migrate.tpl:5 msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." +"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 "" -"Znaleziono wiele blokad dla obiektu do zablokowania. Taka sytuacja nie " -"powinna się wydażyć - czyszczę wiele odwołań." -#: 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:33 +#, fuzzy +msgid "Check again" +msgstr "Sprawdź" + +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" +msgstr "" -#: include/functions.inc:998 -#, php-format +#: setup/setup_migrate.tpl:39 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -"Ustaw nowy limit rozmiaru na %s i pokaż ten komunikat jeśli limit wciąż jest " -"przekroczony" - -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "niepełne" - -#: include/functions.inc:1294 -msgid "Continue anyway" -msgstr "Kontynuuj mimo wszystko" -#: include/functions.inc:1296 -msgid "Edit anyway" -msgstr "Edytuj mimo wszystko" +#: 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/functions.inc:1298 -#, fuzzy, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Zamierzasz skopiować wpis '%s'." +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" +msgstr "" -#: include/functions.inc:1482 -msgid "Entries per page" -msgstr "Wpisów na stronie" +#: setup/setup_migrate.tpl:72 +#, fuzzy +msgid "Move selected workstations" +msgstr "Wybierz aby zobaczyc stacje robocze" -#: include/functions.inc:1510 -msgid "Apply filter" -msgstr "Zastosuj filtr" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" +msgstr "" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" +msgstr "Zamknij" -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "Wersja deweloperska GOsa (Rev %s)" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" +msgstr "" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: 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:1919 include/functions.inc:1939 -#, fuzzy -msgid "Cannot write to revision file!" -msgstr "Nie można stworzyć pliku '%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:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:2213 +#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 +#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 #, fuzzy -msgid "LDAP warning" -msgstr "Menedżer LDAP" +msgid "Hide changes" +msgstr "Open xchange" -#: include/functions.inc:2213 +#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 +#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 #, fuzzy -msgid "Cannot get schema information from server. No schema check possible!" +msgid "Show changes" +msgstr "Pokaż pakiety" + +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" msgstr "" -"Nie można pobrać informacji o schematach z serwera. Sprawdzenie schematów " -"niemożliwe!" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: 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:2246 +#: setup/setup_migrate.tpl:145 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"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:2289 -#, fuzzy, php-format -msgid "Missing required object class '%s'!" -msgstr "Wyświetl szablony FAI" +#: 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:2291 -#, php-format -msgid "Missing optional object class '%s'!" -msgstr "" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +#, fuzzy +msgid "Next" +msgstr "tekst" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "" +#: setup/setup_migrate.tpl:199 +#, fuzzy +msgid "Abort" +msgstr "Port" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:201 +#, fuzzy +msgid "Create a new GOsa administrator account" +msgstr "Utwórz konto Netatalk" + +#: setup/setup_migrate.tpl:204 +msgid "" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/functions.inc:2303 -#, fuzzy, php-format -msgid "Class(es) available" -msgstr "Plik jest dostępny" +#: setup/setup_migrate.tpl:233 +#, fuzzy +msgid "Password (again)" +msgstr "Przechowywanie hasła" -#: include/functions.inc:2325 +#: setup/setup_migrate.tpl:258 msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +"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:2326 +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"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:2330 +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#, fuzzy +msgid "Current" +msgstr "Obecny obiekt" + +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#, fuzzy +msgid "After migration" +msgstr "Administracja użytkownikami" + +#: setup/setup_migrate.tpl:313 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#, fuzzy +msgid "LDAP inspection" +msgstr "Inspekcja instalacji PHP" + +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" msgstr "" -#: include/functions.inc:2354 -msgid "German" -msgstr "Niemiecki" +#: setup/class_setupStep_Migrate.inc:114 +#, fuzzy +msgid "Checking for root object" +msgstr "Sprawdzam wsparcie dla iconv" -#: include/functions.inc:2355 -msgid "French" -msgstr "Francuski" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" +msgstr "" -#: include/functions.inc:2356 -msgid "Italian" -msgstr "Włoski" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "Sprawdzam wsparcie dla iconv" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Hiszpański" +#: setup/class_setupStep_Migrate.inc:131 +#, fuzzy +msgid "Checking for invisible users" +msgstr "Sprawdzam wsparcie dla iconv" -#: include/functions.inc:2358 -msgid "English" -msgstr "Angielski" +#: setup/class_setupStep_Migrate.inc:137 +#, fuzzy +msgid "Checking for super administrator" +msgstr "Sprawedzam dodatkowe programy" -#: include/functions.inc:2359 -msgid "Dutch" -msgstr "Holenderski" +#: setup/class_setupStep_Migrate.inc:143 +#, fuzzy +msgid "Checking for users outside the people tree" +msgstr "Sprawdzam moduł cups" -#: include/functions.inc:2360 -msgid "Polish" -msgstr "Polski" +#: setup/class_setupStep_Migrate.inc:149 +#, fuzzy +msgid "Checking for groups outside the groups tree" +msgstr "Sprawdzam moduł cups" -#: include/functions.inc:2361 -msgid "Swedish" +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" -#: include/functions.inc:2362 +#: setup/class_setupStep_Migrate.inc:162 #, fuzzy -msgid "Chinese" -msgstr "Chipset" +msgid "Checking for duplicated UID numbers" +msgstr "Sprawdzam funkcję %s" + +#: setup/class_setupStep_Migrate.inc:168 +#, fuzzy +msgid "Checking for duplicate GID numbers" +msgstr "Sprawdzam funkcję %s" + +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +#, fuzzy +msgid "LDAP query failed" +msgstr "Zapytanie do bazy danych nieudane" + +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:217 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'." + +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 +#, php-format +msgid "Ok" +msgstr "Ok" + +#: setup/class_setupStep_Migrate.inc:269 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'." -#: include/functions.inc:2363 -msgid "Russian" -msgstr "Rosyjski" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Niepowodzenie" -#: include/functions.inc:2544 +#: setup/class_setupStep_Migrate.inc:329 #, 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:2577 -msgid "Cannot generate samba hash!" +"Found %s winstations outside the predefined winstation department ou '%s'." msgstr "" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." -msgstr "" +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 +#, fuzzy +msgid "Migrate" +msgstr "Utwórz" -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "" +#: setup/class_setupStep_Migrate.inc:402 +#, fuzzy, php-format +msgid "Found %s groups outside the configured tree '%s'." +msgstr "Zamierzasz skopiować wpis '%s'." -#: include/class_socketClient.inc:191 +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +#, fuzzy +msgid "Move" +msgstr "Tryb" + +#: setup/class_setupStep_Migrate.inc:479 #, php-format -msgid "Socket timeout of %s seconds reached." +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/class_tabs.inc:238 +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 #, 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:373 -msgid "References" -msgstr "Zależności" - -#: include/class_plugin.inc:497 msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"The specified user '%s' does not have full access to your ldap database." msgstr "" -#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 -#, fuzzy, php-format -msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +#: setup/class_setupStep_Migrate.inc:617 +#, php-format +msgid "Found %s user(s) that will not be visible in GOsa." msgstr "" -"Funkcjonalność snapshot jest włączona, lecz wymagana zmienna '%s' nie jest " -"skonfigurowana w gosa.conf." -#: include/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "Brak uprawnień do zmiany przekazywania poczty" +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 +#, fuzzy +msgid "Migration error" +msgstr "Utwórz" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 #, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "Brak uprawnień do zmiany przekazywania poczty" +msgid "Cannot migrate department '%s':" +msgstr "Utwórz nowy departament" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" +#: setup/class_setupStep_Migrate.inc:758 +#, php-format +msgid "Found %s department(s) that will not be visible in GOsa." msgstr "" -#: include/class_plugin.inc:1786 -#, fuzzy -msgid "from" -msgstr "losowy" - -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -#, fuzzy -msgid "to" -msgstr "Zatrzymaj" - -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 -msgid "Restore" -msgstr "Odtwórz" - -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" -msgstr "Odtwórz snapshot" - -#: include/class_plugin.inc:1993 -msgid "Create snapshot" -msgstr "Utwórz spanshot" - -#: include/class_plugin.inc:1994 -msgid "Create a new snapshot from this object" -msgstr "Utwórz nowy snapshot z tego obiektu" - -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "wytnij" - -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "Wytnij ten obiekt" - -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "kopiuj" +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." +msgstr "" -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "Kopiuj ten obiekt" +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" +msgstr "" -#: include/class_plugin.inc:2053 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Copy" -msgstr "kopiuj" +msgid "Password error" +msgstr "Hasło wygasa" -#: include/class_plugin.inc:2057 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Cut" -msgstr "wytnij" - -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "Wklej" - -#: include/class_acl.inc:26 -msgid "Access control" -msgstr "Kontrola dostępu" - -#: include/class_acl.inc:207 -msgid "Reset ACLs" -msgstr "Resetuj ACL'e" +msgid "Provided passwords do not match!" +msgstr "Hasła podane jako nowe i powtórzone nie zgadzają się!" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" -msgstr "Użyj ACL zdefiniowanego w tej roli" +#: setup/class_setupStep_Migrate.inc:1009 +#, fuzzy +msgid "Input error" +msgstr "błąd PHP:" -#: include/class_acl.inc:489 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "No ACL settings for this category!" -msgstr "Brak ustawień ACL w tej kategorii" +msgid "Specify a valid user ID!" +msgstr "Proszę podać prawidłową nazwę użytkownika!" -#: include/class_acl.inc:491 +#: setup/class_setupStep_Migrate.inc:1051 #, php-format -msgid "Contains ACLs for these objects: %s" -msgstr "Zawiera ACL'e w tych kategoriach: %s" +msgid "Adding an administrative user failed: object '%s' already exists!" +msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 #, fuzzy -msgid "category ACL" -msgstr "Kategoria" +msgid "Cannot move users to the requested department!" +msgstr "Przejdź do domowego departamentu użytkowników" -#: include/class_acl.inc:543 -#, fuzzy, php-format -msgid "Edit ACL for '%s' - scope is '%s'" -msgstr "Edytuj ACL dla '%s', zakres to '%s'" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 #, fuzzy -msgid "Show/hide advanced settings" -msgstr "Zaawansowane ustawienia telefonu" - -#: include/class_acl.inc:723 -msgid "Create objects" -msgstr "Utwórz obiekty" +msgid "to" +msgstr "Zatrzymaj" -#: include/class_acl.inc:724 -msgid "Move objects" -msgstr "Przenieś obiekty" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "" -#: include/class_acl.inc:725 -msgid "Remove objects" -msgstr "Usuń obiekty" +#: setup/class_setupStep_Migrate.inc:1150 +#, fuzzy +msgid "Group will be moved from" +msgstr "Będzie możliwość odtworzenia z" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" -msgstr "Modyfikowalne przez właściciela" +#: setup/class_setupStep_Migrate.inc:1198 +#, fuzzy +msgid "User will be moved from" +msgstr "Użyj członków z" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "czytanie" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "zapisywanie" +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." +msgstr "" -#: include/class_acl.inc:743 +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 #, fuzzy -msgid "Complete object" +msgid "Try to create root object" msgstr "Utwórz obiekty" -#: include/class_acl.inc:879 -#, fuzzy, php-format -msgid "Unkown ACL type '%s'!" -msgstr "Nieznany wpis '%s'!" - -#: include/class_acl.inc:922 -#, php-format -msgid "Unknown entry '%s'!" -msgstr "Nieznany wpis '%s'!" +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." +msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 +#: setup/class_setupStep_Migrate.inc:1955 #, fuzzy, php-format -msgid "Role: %s" -msgstr "Pełniona funkcja" +msgid "Copy '%s' to '%s' failed:" +msgstr "Przenoszenie '%s' do '%s'" + +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "" -#: include/class_acl.inc:984 -#, fuzzy -msgid "unknown role" -msgstr "! nieznane id" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" +msgstr "" -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" -msgstr "Zawiera ustawienia dla tych obiektów: %s" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." +msgstr "" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "Członkowie" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." +msgstr "" -#: include/class_acl.inc:1007 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "ACL takes effect for all users" -msgstr "ACL jest prawidłowy dla wszystkich użytkowników" +msgid "PHP setup configuration" +msgstr "Konfiguracja bazy FAX" -#: include/class_acl.inc:1177 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Access control list" -msgstr "Kontrola dostępu" +msgid "show information" +msgstr "Informacje osobiste" -#: include/class_acl.inc:1182 +#: setup/setup_schema.tpl:3 #, fuzzy -msgid "ACL roles" -msgstr "ACLe" +msgid "Schema specific settings" +msgstr "Ustawienia Samba" -#: include/class_acl.inc:1185 -#, fuzzy -msgid "Role name" -msgstr "Zmień nazwę" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "" -#: include/class_acl.inc:1186 +#: setup/setup_schema.tpl:16 #, fuzzy -msgid "Role description" -msgstr "Opis jednostki" - -#: include/class_pluglist.inc:56 -msgid "All objects in this category" -msgstr "Wszystkie obiekty w tej kategorii" +msgid "Check status" +msgstr "Ustaw status" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" -msgstr "Nieznane" +#: setup/setup_schema.tpl:23 +#, fuzzy +msgid "Schema check failed" +msgstr "Zapisywanie telefonu nieudane" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/setup_schema.tpl:31 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" -msgstr "Obecnie edytujesz bazę danych. Czy chcesz porzucić zmiany?" - -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." msgstr "" -#: include/class_config.inc:107 -#, 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_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 "" -#: include/class_config.inc:242 +#: 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 "Ustawienia użytkownika" + +#: setup/class_setupStep_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" msgstr "" -"Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem." -#: include/class_config.inc:574 +#: setup/class_setupStep_Config3.inc:198 #, fuzzy -msgid "SID and/or RIDBASE missing in the configuration!" -msgstr "Brak parametru SID lub/i RIDBASE w konfiguracji!" +msgid "Session lifetime must be a numeric value!" +msgstr "Przyszłe dni muszą być liczbą." -#: include/class_config.inc:878 +#: setup/class_setupStep_Config3.inc:202 #, fuzzy -msgid "Configuration" -msgstr "Plik konfiguracyjny" - -#: include/class_config.inc:878 -msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." -msgstr "" - -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "Kreator Copy & paste" +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Przyszłe dni muszą być liczbą." -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "Nie można stworzyć pliku '%s'." +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +#, fuzzy +msgid "License" +msgstr "Linia" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "Nie można stworzyć pliku '%s'." - -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" msgstr "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_CopyPasteHandler.inc:508 +#: setup/class_setupStep_Checks.inc:64 #, fuzzy -msgid "Cannot paste" -msgstr "Nie można wkleić" +msgid "Checking PHP version" +msgstr "Sprawdzam wersję PHP (>=4.1.0)" -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: 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." -#: include/class_gosaSupportDaemon.inc:851 -#, fuzzy -msgid "Cannot not parse XML!" -msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID" - -#: include/class_gosaSupportDaemon.inc:1177 -#, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Nie można stworzyć pliku '%s'." +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." +msgstr "" -#: include/class_gosaSupportDaemon.inc:1197 -#, fuzzy, php-format -msgid "Cannot remove entry %s!" -msgstr "Nieznany wpis '%s'!" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +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" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." +msgstr "" -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." -msgstr "Pomoc nie jest dostępna dla tego dodatku." +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." +msgstr "" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" -msgstr "poprzednie" +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "następne" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." +msgstr "" -#: 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/class_setupStep_Checks.inc:112 +#, fuzzy +msgid "mbstring" +msgstr "Ustawienia Samba" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" -msgstr "%s%% trafień w pliku %s" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." +msgstr "" -#: include/class_SnapShotDialog.inc:90 -#, php-format -msgid "You're about to delete the snapshot '%s'." -msgstr "Zamierzasz usunąć snapshot '%s'." +#: setup/class_setupStep_Checks.inc:121 +#, fuzzy +msgid "" +"GOsa requires this module to communicate with several supported databases." +msgstr "" +"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych." -#: include/class_SnapShotDialog.inc:145 -msgid "Remove snapshot" -msgstr "Usuń snapshot" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" +msgstr "" -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" -msgstr "Y-m-d, H:i:s" +#: setup/class_setupStep_Checks.inc:129 +#, fuzzy +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." +msgstr "" +"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:148 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:158 +#, 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." -#: include/class_ldap.inc:768 -#, 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_Checks.inc:159 +#, fuzzy +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" -msgstr "podczas połączenia z serwerem LDAP '%s'" +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." +msgstr "" -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:168 +#, fuzzy msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -"To nie jest poprawne DN: '%s'. Blok dla importu powinien zaczynać się " -"'dn: ...' w linii %s" - -#: include/class_ldap.inc:1021 -#, 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 !" +"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ą." -#: include/class_multi_plug.inc:362 +#: setup/class_setupStep_Checks.inc:169 #, fuzzy -msgid "You are currently editing mutliple entries." -msgstr "Brak uprawnień do usunięcia tego departamentu." +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'." -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 #, fuzzy -msgid "Password reset" -msgstr "Hasło wygasa" +msgid "Off" +msgstr "Offline" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:177 #, 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 "" +"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'." -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Użytkownik bazy logowania" +#: setup/class_setupStep_Checks.inc:178 +#, 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'." -#: include/class_log.inc:107 +#: setup/class_setupStep_Checks.inc:185 #, fuzzy -msgid "MySQL error" -msgstr "błąd LDAP:" +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." -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:186 +msgid "" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." msgstr "" -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" +#: setup/class_setupStep_Checks.inc:193 +#, 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:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." msgstr "" -#: include/class_log.inc:124 +#: setup/class_setupStep_Checks.inc:201 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "Podana nazwa jest nieprawidłowa" +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." -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." msgstr "" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "Nie można połączyć się z serwerem baz danych!" +#: setup/class_setupStep_Checks.inc:209 +#, 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." -#: include/class_baseSelectDialog.inc:44 +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:216 #, fuzzy -msgid "Choose a base" -msgstr "Wybierz bazę" +msgid "On" +msgstr "Otwórz" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:217 msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"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." -#: include/class_baseSelectDialog.inc:61 +#: setup/class_setupStep_Checks.inc:218 #, fuzzy -msgid "Use" -msgstr "Użytkownik" +msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." +msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Akcja" +#: setup/class_setupStep_Checks.inc:225 +#, 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." -#: include/class_baseSelectDialog.inc:72 +#: setup/class_setupStep_Checks.inc:226 #, fuzzy -msgid "Filter entries with this syntax" -msgstr "Filtruj elementy z tą składnią" +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'." -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Wybierz bazę" +#: setup/class_setupStep_Checks.inc:236 +#, fuzzy +msgid "Configuration writeable" +msgstr "Plik konfiguracyjny" -#: setup/class_setupStep_Ldap.inc:53 +#: setup/class_setupStep_Checks.inc:237 #, fuzzy -msgid "LDAP setup" -msgstr "Serwer LDAP" +msgid "The configuration file can't be written" +msgstr "Plik konfiguracyjny" -#: setup/class_setupStep_Ldap.inc:54 +#: setup/class_setupStep_Checks.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 "" + +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "" + +#: setup/setup_config1.tpl:6 #, fuzzy -msgid "LDAP connection setup" -msgstr "Połączenie dzwonienia..." +msgid "Theme" +msgstr "Mime" -#: setup/class_setupStep_Ldap.inc:55 +#: setup/setup_config1.tpl:15 #, fuzzy -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +msgid "Apache" +msgstr "Cache" + +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" 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:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "Nie" +#: setup/setup_config1.tpl:27 +#, fuzzy +msgid "People and group storage" +msgstr "Prosze wyszczególnić długość pamięci." -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "Tak" +#: setup/setup_config1.tpl:30 +#, fuzzy +msgid "People DN attribute" +msgstr "Ten 'dn' nie jest aplikacją." -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." +#: setup/setup_config1.tpl:41 +#, fuzzy +msgid "People storage subtree" +msgstr "Prosze wyszczególnić długość pamięci." -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." +#: setup/setup_config1.tpl:50 +#, fuzzy +msgid "Group storage subtree" +msgstr "Proszę wybrać grupę obiektów" -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" +msgstr "" -#: setup/class_setupStep_Ldap.inc:113 +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "" + +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "Please specify user and password!" -msgstr "Proszę podać prawidłowe hasło!" +msgid "Automatic UIDs" +msgstr "Automatyczne tryby" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." +#: setup/setup_config1.tpl:113 +#, fuzzy +msgid "Number base for people/groups" +msgstr "Podstawowe ID dla użytkowników/grup" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Zakończ" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 +#: setup/setup_config1.tpl:140 #, fuzzy -msgid "Write configuration file" -msgstr "Plik konfiguracyjny" +msgid "Password encryption algorithm" +msgstr "Algorytm szyfrowania" -#: setup/class_setupStep_Finish.inc:39 +#: setup/setup_config1.tpl:151 #, fuzzy -msgid "Finish - write the configuration file" -msgstr "Plik konfiguracyjny" +msgid "Password restrictions" +msgstr "Hasło wygasa" -#: setup/class_setupStep_Finish.inc:101 +#: 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 "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" -msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę." +msgid "Password change hook" +msgstr "Brak uprawnień do zmiay hasła" -#: setup/class_setupStep_Finish.inc:103 +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" + +#: setup/setup_config1.tpl:209 #, 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ę." +msgid "Use account expiration" +msgstr "Konto wygasa po" -#: setup/class_setupStep_Finish.inc:112 -#, fuzzy, php-format +#: setup/setup_config1.tpl:221 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:" +"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 "" -"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:" +"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." -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +#: setup/setup_config1.tpl:222 #, fuzzy -msgid "License" -msgstr "Linia" +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." -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +#: 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ń." -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#: setup/setup_config1.tpl:224 #, fuzzy -msgid "Language setup" -msgstr "Język" +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." -#: setup/class_setupStep_Language.inc:42 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, fuzzy -msgid "This step allows you to select your preferred language." -msgstr "To menu umożliwia dodawanie, edycję i kasowanie wybranych grup." +msgid "Setup error" +msgstr "Ustaw status" -#: setup/class_setupStep_Language.inc:47 +#: setup/class_setup.inc:197 #, fuzzy -msgid "Automatic" -msgstr "automatyczne" +msgid "Completed" +msgstr "niepełne" #: setup/class_setupStep_Feedback.inc:92 #, fuzzy @@ -4358,11 +4275,6 @@ msgstr "Powiadomienie wysłane!" msgid "Get notifications or send feedback" msgstr "Ograniczenia dla nadawcy" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -#, fuzzy -msgid "Setup error" -msgstr "Ustaw status" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" @@ -4391,1603 +4303,1712 @@ msgid "" "You have to select at least one of both options, subscribe or send feedback." msgstr "" -#: setup/class_setup.inc:197 -#, fuzzy -msgid "Completed" -msgstr "niepełne" - -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -#, fuzzy -msgid "Next" -msgstr "tekst" - -#: setup/setup_finish.tpl:3 -#, fuzzy -msgid "Create your configuration file" -msgstr "Plik konfiguracyjny" - -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "Konfiguracja pobierania" - -#: setup/setup_finish.tpl:18 -#, fuzzy -msgid "Status: " -msgstr "Status" - -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Szukaj" +#: 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 "" -#: setup/setup_ldap.tpl:25 -#, fuzzy -msgid "LDAP connection" -msgstr "Rozłączenie" +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "Adres email" -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Nazwa lokalizacji" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "" -#: setup/setup_ldap.tpl:37 -#, fuzzy -msgid "Connection URL" -msgstr "Połączeniowy URL" +#: 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 "" -#: setup/setup_ldap.tpl:45 -#, fuzzy -msgid "TLS connection" -msgstr "Połączenie dzwonienia..." +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" +msgstr "" -#: setup/setup_ldap.tpl:65 -#, fuzzy -msgid "Reload" -msgstr "Odczyt" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" +msgstr "" -#: setup/setup_ldap.tpl:69 -#, fuzzy -msgid "Authentication" -msgstr "Autentykacja Nagios" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" +msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "DN Administratora" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" +msgstr "" -#: setup/setup_ldap.tpl:78 -#, fuzzy -msgid "Select user" -msgstr "Usuń użytkownika" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" +msgstr "" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Hasło Administratora" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" +msgstr "" -#: setup/setup_ldap.tpl:101 -#, fuzzy -msgid "Schema based settings" -msgstr "Ustawienia Samba" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: 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_ldap.tpl:117 -#, fuzzy -msgid "Current status" -msgstr "Ustaw status" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" +msgstr "" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +#: setup/setup_feedback.tpl:123 #, fuzzy -msgid "GOsa settings 1/3" -msgstr "Ustawienia użytkownika" +msgid "Features" +msgstr "Przyszłość" -#: setup/class_setupStep_Config1.inc:76 -#, fuzzy -msgid "GOsa generic settings" -msgstr "Ogólne ustawienia użytkownika" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "" -#: 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ą." +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/class_SnapShotDialog.inc:90 #, php-format -msgid "Don't add a trailing comma to '%s'." -msgstr "" +msgid "You're about to delete the snapshot '%s'." +msgstr "Zamierzasz usunąć snapshot '%s'." -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "Prosze wyszczególnić długość pamięci." +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "Odtwórz snapshot" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "Proszę wybrać grupę obiektów" +#: include/class_SnapShotDialog.inc:145 +msgid "Remove snapshot" +msgstr "Usuń snapshot" -#: setup/class_setupStep_Config1.inc:130 -#, fuzzy -msgid "Uid base must be numeric" -msgstr "Limit czasu musi być liczbą" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" +msgstr "Y-m-d, H:i:s" -#: setup/class_setupStep_Config1.inc:134 -#, fuzzy -msgid "The given password minimum length is not numeric." -msgstr "Port sieve musi być liczbą." +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Config1.inc:137 -#, fuzzy -msgid "The given password differ value is not numeric." -msgstr "Port sieve musi być liczbą." +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, 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." -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -#, fuzzy -msgid "GOsa settings 2/3" -msgstr "Ustawienia użytkownika" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "Brak uprawnień do zmiany przekazywania poczty" -#: setup/class_setupStep_Config2.inc:88 -#, fuzzy -msgid "Customize special parameters" -msgstr "Sprawdź parametr" +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "Brak uprawnień do zmiany przekazywania poczty" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" msgstr "" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#: include/class_plugin.inc:1786 #, fuzzy -msgid "LDAP inspection" -msgstr "Inspekcja instalacji PHP" +msgid "from" +msgstr "losowy" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "" +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +msgid "Restore" +msgstr "Odtwórz" -#: setup/class_setupStep_Migrate.inc:114 -#, fuzzy -msgid "Checking for root object" -msgstr "Sprawdzam wsparcie dla iconv" +#: include/class_plugin.inc:1994 +msgid "Create snapshot" +msgstr "Utwórz spanshot" -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "" +#: include/class_plugin.inc:1995 +msgid "Create a new snapshot from this object" +msgstr "Utwórz nowy snapshot z tego obiektu" -#: setup/class_setupStep_Migrate.inc:126 -#, fuzzy -msgid "Checking for invisible departments" -msgstr "Sprawdzam wsparcie dla iconv" +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "wytnij" -#: setup/class_setupStep_Migrate.inc:131 -#, fuzzy -msgid "Checking for invisible users" -msgstr "Sprawdzam wsparcie dla iconv" +#: include/class_plugin.inc:2013 +msgid "Cut this entry" +msgstr "Wytnij ten obiekt" -#: setup/class_setupStep_Migrate.inc:137 -#, fuzzy -msgid "Checking for super administrator" -msgstr "Sprawedzam dodatkowe programy" +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "kopiuj" -#: setup/class_setupStep_Migrate.inc:143 -#, fuzzy -msgid "Checking for users outside the people tree" -msgstr "Sprawdzam moduł cups" +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "Kopiuj ten obiekt" -#: setup/class_setupStep_Migrate.inc:149 +#: include/class_plugin.inc:2055 #, fuzzy -msgid "Checking for groups outside the groups tree" -msgstr "Sprawdzam moduł cups" - -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" -msgstr "" +msgid "Copy" +msgstr "kopiuj" -#: setup/class_setupStep_Migrate.inc:162 +#: include/class_plugin.inc:2059 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Sprawdzam funkcję %s" +msgid "Cut" +msgstr "wytnij" -#: setup/class_setupStep_Migrate.inc:168 -#, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Sprawdzam funkcję %s" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "Wklej" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 -#, fuzzy -msgid "LDAP query failed" -msgstr "Zapytanie do bazy danych nieudane" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, fuzzy, php-format +msgid "Copy and paste failed!" +msgstr "Kreator Copy & paste" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, fuzzy, php-format +msgid "Cannot set permission for '%s'" +msgstr "Nie można stworzyć pliku '%s'." + +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" msgstr "" -#: setup/class_setupStep_Migrate.inc:217 -#, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'." +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +#, fuzzy +msgid "Internal error" +msgstr "Terminal Server" -#: setup/class_setupStep_Migrate.inc:269 +#: include/class_CopyPasteHandler.inc:175 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Znaleziono powtórzoną wartość dla typu rekordu '%s'." +msgid "No write permission in '%s'" +msgstr "Nie można stworzyć pliku '%s'." -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Niepowodzenie" +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:329 +#: include/class_CopyPasteHandler.inc:410 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "This object will be pasted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 +#: include/class_CopyPasteHandler.inc:508 #, fuzzy -msgid "Migrate" -msgstr "Utwórz" +msgid "Cannot paste" +msgstr "Nie można wkleić" -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:15 #, fuzzy, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "Zamierzasz skopiować wpis '%s'." +msgid "Select to list objects of type '%s'." +msgstr "Wybierz obiekty do dodania" + +#: include/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Zaznacz aby zobaczyć grupy zawierające użytkowników" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Wybierz obiekty do dodania" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -#, fuzzy -msgid "Move" -msgstr "Tryb" +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:479 +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "Found %s user(s) outside the configured tree '%s'." +msgid "This '%s' object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:40 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "This object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:42 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "This '%s' object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Utwórz" - -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Utwórz nowy departament" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Found %s department(s) that will not be visible in GOsa." +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:55 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:63 #, fuzzy -msgid "Password error" -msgstr "Hasło wygasa" +msgid "You have no permission to delete this object!" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 #, fuzzy -msgid "Provided passwords do not match!" -msgstr "Hasła podane jako nowe i powtórzone nie zgadzają się!" +msgid "You have no permission to delete the object:" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:74 #, fuzzy -msgid "Input error" -msgstr "błąd PHP:" +msgid "You have no permission to delete these objects:" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:81 #, fuzzy -msgid "Specify a valid user ID!" -msgstr "Proszę podać prawidłową nazwę użytkownika!" - -#: setup/class_setupStep_Migrate.inc:1051 -#, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "" +msgid "You have no permission to create this object!" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 #, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "Przejdź do domowego departamentu użytkowników" - -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "" - -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" -msgstr "" +msgid "You have no permission to create the object:" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1150 +#: include/utils/class_msgPool.inc:92 #, fuzzy -msgid "Group will be moved from" -msgstr "Będzie możliwość odtworzenia z" +msgid "You have no permission to create these objects:" +msgstr "Brak uprawnień do usunięcia tego departamentu." -#: setup/class_setupStep_Migrate.inc:1198 +#: include/utils/class_msgPool.inc:99 #, fuzzy -msgid "User will be moved from" -msgstr "Użyj członków z" - -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" -msgstr "" +msgid "You have no permission to modify this object!" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." -msgstr "" +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 +#: include/utils/class_msgPool.inc:110 #, fuzzy -msgid "Try to create root object" -msgstr "Utwórz obiekty" +msgid "You have no permission to modify these objects:" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." -msgstr "" +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Migrate.inc:1955 -#, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Przenoszenie '%s' do '%s'" +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#, fuzzy +msgid "You have no permission to view the object:" +msgstr "Brak uprawnień do tworzenia telefonu w tym elemencie." -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 +#: include/utils/class_msgPool.inc:128 #, fuzzy -msgid "GOsa settings 3/3" -msgstr "Ustawienia użytkownika" +msgid "You have no permission to view these objects:" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" -msgstr "" +#: include/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Config3.inc:198 +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 #, fuzzy -msgid "Session lifetime must be a numeric value!" -msgstr "Przyszłe dni muszą być liczbą." +msgid "You have no permission to move the object:" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/class_setupStep_Config3.inc:202 +#: include/utils/class_msgPool.inc:146 #, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Przyszłe dni muszą być liczbą." +msgid "You have no permission to move these objects:" +msgstr "Brak uprawnień do usunięcia grupy obiektowej." -#: setup/setup_language.tpl:3 +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 #, fuzzy -msgid "Please select the preferred language" -msgstr "Preferowany język" +msgid "Connection information" +msgstr "Informacje osobiste" -#: 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 "" +#: include/utils/class_msgPool.inc:158 +#, fuzzy, php-format +msgid "Cannot connect to %s database!" +msgstr "Nie można połączyć się z serwerem baz danych!" -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "Preferowany język" +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "Nie można wybrać bazy danych!" -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:176 +#, php-format +msgid "No %s server defined!" 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 "" +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "Nie można wybrać bazy danych!" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "Adres email" +#: include/utils/class_msgPool.inc:194 +#, fuzzy, php-format +msgid "The field '%s' contains a reserved keyword!" +msgstr "Pole 'Fax' zawiera nieprawidłowy numer telefonu." -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" -msgstr "" +#: include/utils/class_msgPool.inc:200 +#, 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." -#: 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 "" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "Podana nazwa jest nieprawidłowa" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" +#: include/utils/class_msgPool.inc:209 +#, php-format +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" +#: include/utils/class_msgPool.inc:211 +#, php-format +msgid "'%s' command for plugin %s is invalid!" msgstr "" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" +#: include/utils/class_msgPool.inc:213 +#, fuzzy, php-format +msgid "'%s' command (%s) is invalid!" +msgstr "Podana nazwa jest nieprawidłowa" + +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "Nie można wybrać bazy danych!" + +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" msgstr "" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "Nie można wybrać bazy danych!" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "Wartość podana jako 'UID' jest za mała." -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "Wartość podana jako 'UID' jest za mała." -#: setup/setup_feedback.tpl:106 -msgid "LDAP" +#: include/utils/class_msgPool.inc:247 +#, 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." -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "" +#: include/utils/class_msgPool.inc:260 +#, 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." -#: setup/setup_feedback.tpl:123 -#, fuzzy -msgid "Features" -msgstr "Przyszłość" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "Wymagane pole 'Nazwa' jest puste." -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "Pole 'Nazwa' zawiera niedozwolone znaki." -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" msgstr "" -#: setup/class_setupStep_Welcome.inc:38 -#, fuzzy -msgid "Welcome" -msgstr "Witaj %s!" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +msgstr "Brak uprawnień do zmiay hasła" -#: setup/class_setupStep_Welcome.inc:39 -#, fuzzy -msgid "The welcome message" -msgstr "Usuń tą wiadomosc" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "Pole 'Nazwa' zawiera niedozwolone znaki." -#: setup/class_setupStep_Welcome.inc:40 -#, fuzzy -msgid "Welcome to GOsa setup wizard" -msgstr "Witaj w instalacji GOsa!" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Rozszerzenie inwentarza" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" -msgstr "" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Zapisz" -#: setup/setup_config1.tpl:6 -#, fuzzy -msgid "Theme" -msgstr "Mime" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Dodaj" -#: setup/setup_config1.tpl:15 -#, fuzzy -msgid "Apache" -msgstr "Cache" +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Dodaj" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" -msgstr "" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +msgstr "Usuń" -#: setup/setup_config1.tpl:27 -#, fuzzy -msgid "People and group storage" -msgstr "Prosze wyszczególnić długość pamięci." +#: include/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "Ustaw" -#: setup/setup_config1.tpl:30 -#, fuzzy -msgid "People DN attribute" -msgstr "Ten 'dn' nie jest aplikacją." +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "Edytuj" -#: setup/setup_config1.tpl:41 -#, fuzzy -msgid "People storage subtree" -msgstr "Prosze wyszczególnić długość pamięci." +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Edytuj użytkownika" -#: setup/setup_config1.tpl:50 -#, fuzzy -msgid "Group storage subtree" -msgstr "Proszę wybrać grupę obiektów" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Wróć" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "To konto nie posiada poprawnych rozszerzeń GOsa." + +#: include/utils/class_msgPool.inc:381 +#, 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." -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, 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." -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "Automatyczne tryby" +#: include/utils/class_msgPool.inc:400 +#, 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." -#: setup/setup_config1.tpl:113 -#, fuzzy -msgid "Number base for people/groups" -msgstr "Podstawowe ID dla użytkowników/grup" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" +#: include/utils/class_msgPool.inc:410 +#, 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." -#: setup/setup_config1.tpl:140 -#, fuzzy -msgid "Password encryption algorithm" -msgstr "Algorytm szyfrowania" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Ustawienia Aplikacji" -#: setup/setup_config1.tpl:151 -#, fuzzy -msgid "Password restrictions" -msgstr "Hasło wygasa" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Ustawienia Posix" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "" +#: include/utils/class_msgPool.inc:430 +msgid "Click the 'Edit' button below to change informations in this dialog" +msgstr "Kliknij przycisk 'Edytuj' poniżej, aby zmienić informacje w tym oknie" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Styczeń" -#: setup/setup_config1.tpl:182 -#, fuzzy -msgid "Password change hook" -msgstr "Brak uprawnień do zmiay hasła" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Luty" -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Marzec" + +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "Kwiecień" + +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Maj" -#: setup/setup_config1.tpl:209 -#, fuzzy -msgid "Use account expiration" -msgstr "Konto wygasa po" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Czerwiec" -#: 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." +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Lipiec" -#: 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." +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Sierpień" -#: 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ń." +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "Wrzesień" -#: 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 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." +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Październik" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Ustawienia Samba" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "Listopad" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Grudzień" -#: setup/setup_config2.tpl:31 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "RID base" -msgstr "Baza" +msgid "Sunday" +msgstr "Nazwisko" -#: setup/setup_config2.tpl:46 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Workstation container" -msgstr "Nazwa stacji roboczej" +msgid "Monday" +msgstr "miesiąc" -#: setup/setup_config2.tpl:61 -#, fuzzy -msgid "Samba SID mapping" -msgstr "Samba SID" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" +msgstr "" -#: setup/setup_config2.tpl:71 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Timezone" -msgstr "Strefa czasowa użytkownika" +msgid "Wednesday" +msgstr "Środa" -#: setup/setup_config2.tpl:74 -#, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "Preferowany język" +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" +msgstr "" -#: setup/setup_config2.tpl:96 -#, fuzzy -msgid "Additional GOsa settings" -msgstr "Ustawienia Aplikacji" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" +msgstr "" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" msgstr "" -#: setup/setup_config2.tpl:112 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Enable DNS extension" -msgstr "Rozszerzenie inwentarza" +msgid "read operation" +msgstr "Opcje poczty" -#: setup/setup_config2.tpl:124 -#, fuzzy -msgid "Enable DHCP extension" -msgstr "Rozszerzenie inwentarza" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" +msgstr "" -#: setup/setup_config2.tpl:136 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Enable mime type management" -msgstr "Zarządzanie typami mime" +msgid "modify operation" +msgstr "Informacje osobiste" -#: setup/setup_config2.tpl:148 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Enable FAI release management" -msgstr "Zarządzanie FAI" +msgid "delete operation" +msgstr "Wybierz aby zobaczyc stacje robocze" -#: setup/setup_config2.tpl:160 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Enable user netatalk plugin" -msgstr "Zarządzaj kontem Netatalk" +msgid "search operation" +msgstr "Konto wygasa po" -#: setup/setup_config2.tpl:171 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Government mode" -msgstr "do folferu" +msgid "authentication" +msgstr "Autentykacja Nagios" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "Nieznane" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "Zapytanie do bazy danych nieudane" -#: setup/setup_config2.tpl:186 +#: include/utils/class_msgPool.inc:457 #, fuzzy -msgid "Syslog" -msgstr "Logi systemowe" +msgid "LDAP operation failed!" +msgstr "Zapytanie do bazy danych nieudane" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#: include/utils/class_msgPool.inc:472 #, fuzzy -msgid "MySQL" -msgstr "błąd LDAP:" +msgid "Upload failed!" +msgstr "Logowanie użytkownika nieudane, odpowiedź serwera LDAP '%s'." -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "Ustawienia pocztowe" +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Użytkownik bazy logowania" -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "Typ pocztowy" +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +msgstr "" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" msgstr "" -#: setup/setup_config2.tpl:227 -#, fuzzy -msgid "Vacation templates" -msgstr "Szablon stacji roboczej" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" +msgstr "" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." +msgstr "Zawiera ustawienia dla tych obiektów: %s" + +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "Zawiera ustawienia dla tych obiektów: %s" + +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" msgstr "" -#: setup/setup_config2.tpl:253 -#, fuzzy -msgid "Snapshots / Undo" -msgstr "Tworzenie snapshot'u nieudane" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Nie można otworzyć pliku '%s'." -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -#, fuzzy -msgid "Enable snapshots" -msgstr "Utwórz spanshot" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Nie można otworzyć pliku '%s'." -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -#, fuzzy -msgid "Snapshot base" -msgstr "Tworzenie snapshot'u nieudane" +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "Nie można otworzyć pliku '%s'." -#: setup/setup_config3.tpl:2 -#, fuzzy -msgid "GOsa core settings" -msgstr "Ustawienia pocztowe" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Utwórz nowy departament" -#: setup/setup_config3.tpl:6 -#, fuzzy -msgid "Disable primary group filter" -msgstr "Wyświetl grupy użytkownika" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Nie można otworzyć pliku '%s'." -#: setup/setup_config3.tpl:18 -#, fuzzy -msgid "Display summary in listings" -msgstr "Wyświetl makra pasujące" +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Sprawdzam wsparcie dla iconv" -#: setup/setup_config3.tpl:30 -#, fuzzy -msgid "Honour administrative units" -msgstr "Administracja Grupą" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." +msgstr "" -#: setup/setup_config3.tpl:42 -#, fuzzy -msgid "Smarty compile directory" -msgstr "Katalog domowy" +#: 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 "" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." msgstr "" -#: setup/setup_config3.tpl:60 -#, fuzzy -msgid "Path for PPD storage" -msgstr "Przechowywanie hasła" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "Idź do głównego departamentu" -#: setup/setup_config3.tpl:77 -#, fuzzy -msgid "Path for kiosk profile storage" -msgstr "Ustawienia profilu Kiosk" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "Główny" -#: setup/setup_config3.tpl:96 -#, fuzzy -msgid "Override sudo role ou" -msgstr "! nieznane id" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "Idź jeden departament wyżej" -#: setup/setup_config3.tpl:115 -#, fuzzy -msgid "Mail queue script" -msgstr "Ogólna ścieżka do skryptu" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "Przejdź do departamentu użytkowników" -#: setup/setup_config3.tpl:134 -#, fuzzy -msgid "Notification script" -msgstr "Cel powiadomienia" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "Katalog domowy" -#: setup/setup_config3.tpl:153 -#, fuzzy -msgid "Enable edit locking" -msgstr "Włącz skanowanie antyfirusowe" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "Przeładuj listę" -#: setup/setup_config3.tpl:172 -msgid "Login and session" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" msgstr "" -#: setup/setup_config3.tpl:175 -#, fuzzy -msgid "Login attribute" -msgstr "Atrybuty telefonu" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" msgstr "" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." msgstr "" -#: setup/setup_config3.tpl:210 -#, fuzzy -msgid "Warn if session is not encrypted" -msgstr "Sesja nie będzie szyfrowana." +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" +msgstr "" -#: setup/setup_config3.tpl:222 -#, fuzzy -msgid "Remember dialog filter settings" -msgstr "Ogólne ustawienia użytkownika" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" +msgstr "" -#: setup/setup_config3.tpl:234 -#, fuzzy -msgid "Session lifetime" -msgstr "Wykryto konflikt sesji" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" +msgstr "" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config3.tpl:247 -#, fuzzy -msgid "Show PHP errors" -msgstr "błąd PHP:" +#: include/class_ldap.inc:768 +#, php-format +msgid "while operating on '%s' using LDAP server '%s'" +msgstr "podczas działania na '%s' używając serwera LDAP '%s'" -#: setup/setup_config3.tpl:259 -#, fuzzy -msgid "Maximum LDAP query time" -msgstr "Max rozmiar nagłówków poczty" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" +msgstr "podczas połączenia z serwerem LDAP '%s'" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" +#: include/class_ldap.inc:992 +#, php-format +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" -#: setup/setup_config3.tpl:289 -#, fuzzy -msgid "Debug level" -msgstr "Jeden poziom" +#: include/class_ldap.inc:1021 +#, 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 !" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -#, fuzzy -msgid "Disabled" -msgstr "wyłączone" +#: include/class_config.inc:107 +#, 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_config3.tpl:295 setup/setup_config3.tpl:298 +#: include/class_config.inc:242 #, fuzzy -msgid "Enabled" -msgstr "włączone" - -#: 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." +msgid "Cannot bind to LDAP. Please contact the system administrator." msgstr "" +"Nie można połączyć się z LDAP. Proszę skontaktować się z administratorem." -#: setup/setup_migrate.tpl:33 +#: include/class_config.inc:574 #, fuzzy -msgid "Check again" -msgstr "Sprawdź" +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "Brak parametru SID lub/i RIDBASE w konfiguracji!" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" -msgstr "" +#: include/class_config.inc:878 +#, fuzzy +msgid "Configuration" +msgstr "Plik konfiguracyjny" -#: setup/setup_migrate.tpl:39 +#: include/class_config.inc:878 msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." 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." +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" msgstr "" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" msgstr "" -#: setup/setup_migrate.tpl:72 +#: include/class_gosaSupportDaemon.inc:851 #, fuzzy -msgid "Move selected workstations" -msgstr "Wybierz aby zobaczyc stacje robocze" +msgid "Cannot not parse XML!" +msgstr "Zbyt wielu użytkowników, nie można nadać wolnego ID" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "" +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Nie można stworzyć pliku '%s'." -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "" +#: include/class_gosaSupportDaemon.inc:1197 +#, fuzzy, php-format +msgid "Cannot remove entry %s!" +msgstr "Nieznany wpis '%s'!" -#: 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_multi_plug.inc:362 +#, fuzzy +msgid "You are currently editing mutliple entries." +msgstr "Brak uprawnień do usunięcia tego departamentu." + +#: include/class_multi_plug.inc:391 +#, fuzzy +msgid "Password reset" +msgstr "Hasło wygasa" + +#: 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" + +#: include/class_tabs.inc:238 +#, 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:373 +msgid "References" +msgstr "Zależności" + +#: include/class_baseSelectDialog.inc:44 +#, fuzzy +msgid "Choose a base" +msgstr "Wybierz bazę" -#: setup/setup_migrate.tpl:91 +#: include/class_baseSelectDialog.inc:55 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" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 -#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 +#: include/class_baseSelectDialog.inc:61 #, fuzzy -msgid "Hide changes" -msgstr "Open xchange" +msgid "Use" +msgstr "Użytkownik" -#: setup/setup_migrate.tpl:127 setup/setup_migrate.tpl:179 -#: setup/setup_migrate.tpl:299 setup/setup_migrate.tpl:352 +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Akcja" + +#: include/class_baseSelectDialog.inc:72 #, fuzzy -msgid "Show changes" -msgstr "Pokaż pakiety" +msgid "Filter entries with this syntax" +msgstr "Filtruj elementy z tą składnią" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" -msgstr "" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "Wybierz bazę" -#: 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_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" -#: 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_helpviewer.inc:88 +msgid "No help available for this plugin." +msgstr "Pomoc nie jest dostępna dla tego dodatku." -#: setup/setup_migrate.tpl:148 -#, fuzzy -msgid "Move selected users into this people tree" -msgstr "Utwórz użytkownika z tego szablonu" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" +msgstr "poprzednie" -#: setup/setup_migrate.tpl:199 -#, fuzzy -msgid "Abort" -msgstr "Port" +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" +msgstr "następne" -#: setup/setup_migrate.tpl:201 -#, fuzzy -msgid "Create a new GOsa administrator account" -msgstr "Utwórz konto Netatalk" +#: 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_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" +msgstr "%s%% trafień w pliku %s" + +#: include/php_setup.inc:95 +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!" + +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_migrate.tpl:233 +#: include/php_setup.inc:100 #, fuzzy -msgid "Password (again)" -msgstr "Przechowywanie hasła" +msgid "Send bugreport" +msgstr "Nadawca" -#: 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/php_setup.inc:105 +msgid "Toggle information" +msgstr "Przełącz informacje" -#: 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/php_setup.inc:115 +msgid "PHP error" +msgstr "błąd PHP:" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -#, fuzzy -msgid "Current" -msgstr "Obecny obiekt" +#: include/php_setup.inc:134 +msgid "class" +msgstr "klasa" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 -#, fuzzy -msgid "After migration" -msgstr "Administracja użytkownikami" +#: include/php_setup.inc:140 +msgid "function" +msgstr "funkcja" -#: 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/php_setup.inc:145 +msgid "static" +msgstr "statyczna" -#: setup/setup_frame.tpl:12 -#, fuzzy -msgid "GOsa setup wizard" -msgstr "Podgląd pomocy GOsa" +#: include/php_setup.inc:149 +msgid "method" +msgstr "metoda" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Installation" -msgstr "Stacja Windows" +#: include/php_setup.inc:182 +msgid "Trace" +msgstr "Śledzenie" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Steps" -msgstr "Systemy" +#: include/php_setup.inc:183 +msgid "File" +msgstr "Plik" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -#, fuzzy -msgid "LDAP schema check" -msgstr "Usługa Ldap" +#: include/php_setup.inc:183 +msgid "Line" +msgstr "Linia" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" -msgstr "" +#: include/php_setup.inc:183 +msgid "Type" +msgstr "Typ" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" -msgstr "" +#: include/php_setup.inc:184 +msgid "Arguments" +msgstr "Argumenty" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" +msgstr "Wszystkie obiekty w tej kategorii" + +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/class_setupStep_Checks.inc:64 -#, fuzzy -msgid "Checking PHP version" -msgstr "Sprawdzam wersję PHP (>=4.1.0)" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" +msgstr "Nieznane" -#: 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." +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +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:66 -msgid "Please upgrade to a supported version." -msgstr "" +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Użytkownik bazy logowania" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." -msgstr "" +#: include/class_log.inc:107 +#, fuzzy +msgid "MySQL error" +msgstr "błąd LDAP:" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" msgstr "" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." +#: include/class_log.inc:120 +#, php-format +msgid "Invalid option '%s' specified!" msgstr "" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." -msgstr "" +#: include/class_log.inc:124 +#, fuzzy +msgid "Specified objectType is empty or invalid!" +msgstr "Podana nazwa jest nieprawidłowa" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" msgstr "" -#: setup/class_setupStep_Checks.inc:112 -#, fuzzy -msgid "mbstring" -msgstr "Ustawienia Samba" +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +msgstr "Nie można połączyć się z serwerem baz danych!" -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:121 -#, fuzzy +#: include/functions.inc:125 +#, php-format msgid "" -"GOsa requires this module to communicate with several supported databases." +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych." -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" -msgstr "" +#: include/functions.inc:335 +#, 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/class_setupStep_Checks.inc:129 +#: include/functions.inc:397 #, fuzzy -msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." -msgstr "" -"Wsparcie dla MySQL jest potrzebne do czytania raportów GOfax z bazy danych." +msgid "Username / UID is not unique inside the LDAP tree!" +msgstr "Użytkownik /UID nie są unikalne. Proszę sprawdzić bazę LDAP." -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" -msgstr "" +#: include/functions.inc:467 +#, 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." -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/class_setupStep_Checks.inc:148 +#: include/functions.inc:622 +#, fuzzy, php-format msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +"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!" -#: setup/class_setupStep_Checks.inc:158 +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "LDAP server returned: %s" +msgstr "Serwer LDAP" + +#: include/functions.inc:716 #, 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." +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." 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." +"Znaleziono wiele blokad dla obiektu do zablokowania. Taka sytuacja nie " +"powinna się wydażyć - czyszczę wiele odwołań." -#: setup/class_setupStep_Checks.inc:159 -#, fuzzy -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." -msgstr "Sprawdzam, czy register_globals jest ustawione na 'off'" +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "Limit wielkości %d elementów został przekroczony!" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:1015 +#, 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" -#: setup/class_setupStep_Checks.inc:168 -#, fuzzy -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "niepełne" + +#: include/functions.inc:1311 +msgid "Continue anyway" +msgstr "Kontynuuj mimo wszystko" + +#: include/functions.inc:1313 +msgid "Edit anyway" +msgstr "Edytuj mimo wszystko" + +#: include/functions.inc:1315 +#, fuzzy, php-format +msgid "You're going to edit the LDAP entry/entries %s" +msgstr "Zamierzasz skopiować wpis '%s'." + +#: include/functions.inc:1499 +msgid "Entries per page" +msgstr "Wpisów na stronie" + +#: include/functions.inc:1527 +msgid "Apply filter" +msgstr "Zastosuj filtr" + +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" + +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "Wersja deweloperska GOsa (Rev %s)" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." 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:169 +#: include/functions.inc:1936 include/functions.inc:1956 #, fuzzy -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +msgid "Cannot write to revision file!" +msgstr "Nie można stworzyć pliku '%s'." + +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" 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:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +#: include/functions.inc:2230 #, fuzzy -msgid "Off" -msgstr "Offline" +msgid "LDAP warning" +msgstr "Menedżer LDAP" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:2230 #, 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 "Cannot get schema information from server. No schema check possible!" msgstr "" -"Aby używać GOsa bez problemow, opcja session.auto_register w pliku php.ini " -"musi być ustawiona na 'off'." +"Nie można pobrać informacji o schematach z serwera. Sprawdzenie schematów " +"niemożliwe!" -#: setup/class_setupStep_Checks.inc:178 -#, fuzzy -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." 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:185 -#, fuzzy +#: include/functions.inc:2263 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." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." 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:186 -msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +#: include/functions.inc:2306 +#, fuzzy, php-format +msgid "Missing required object class '%s'!" +msgstr "Wyświetl szablony FAI" + +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:193 -#, fuzzy -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -"Ta opcja wpływa na obsługę output. Aby zwiększyć wydajność, należy ustawić " -"na 'off'." -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:201 -#, fuzzy -msgid "The Execution time should be at least 30 seconds." +#: include/functions.inc:2320 +#, fuzzy, php-format +msgid "Class(es) available" +msgstr "Plik jest dostępny" + +#: include/functions.inc:2342 +msgid "" +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." msgstr "" -"Ten parametr powinien byc ustawniony na co najmniej 30 sekund. Niektóre " -"funkcje mogą zabierać dużo czasu." -#: setup/class_setupStep_Checks.inc:202 +#: include/functions.inc:2343 msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -#: setup/class_setupStep_Checks.inc:209 -#, fuzzy +#: include/functions.inc:2347 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." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." 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:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:216 -#, fuzzy -msgid "On" -msgstr "Otwórz" +#: include/functions.inc:2371 +msgid "German" +msgstr "Niemiecki" -#: setup/class_setupStep_Checks.inc:217 -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." +#: include/functions.inc:2372 +msgid "French" +msgstr "Francuski" -#: setup/class_setupStep_Checks.inc:218 -#, 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'" +#: include/functions.inc:2373 +msgid "Italian" +msgstr "Włoski" -#: setup/class_setupStep_Checks.inc:225 -#, 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." +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Hiszpański" -#: setup/class_setupStep_Checks.inc:226 -#, 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'." +#: include/functions.inc:2375 +msgid "English" +msgstr "Angielski" -#: setup/class_setupStep_Checks.inc:236 -#, fuzzy -msgid "Configuration writeable" -msgstr "Plik konfiguracyjny" +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Holenderski" -#: setup/class_setupStep_Checks.inc:237 -#, fuzzy -msgid "The configuration file can't be written" -msgstr "Plik konfiguracyjny" +#: include/functions.inc:2377 +msgid "Polish" +msgstr "Polski" -#: setup/class_setupStep_Checks.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." +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -#: setup/setup_welcome.tpl:4 +#: include/functions.inc:2379 +#, fuzzy +msgid "Chinese" +msgstr "Chipset" + +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Rosyjski" + +#: include/functions.inc:2561 +#, php-format 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 "" +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +msgstr "Polecenie '%s', podane jako POSTMODIFY dla dodatku '%s' nie istnieje." -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/setup_welcome.tpl:11 -#, fuzzy -msgid "Create a basic, single site configuration" -msgstr "Konfiguracja bazy FAX" +#: include/class_acl.inc:26 +msgid "Access control" +msgstr "Kontrola dostępu" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" -msgstr "" +#: include/class_acl.inc:207 +msgid "Reset ACLs" +msgstr "Resetuj ACL'e" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" -msgstr "" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" +msgstr "Użyj ACL zdefiniowanego w tej roli" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "" +#: include/class_acl.inc:489 +#, fuzzy +msgid "No ACL settings for this category!" +msgstr "Brak ustawień ACL w tej kategorii" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" -msgstr "" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" +msgstr "Zawiera ACL'e w tych kategoriach: %s" -#: setup/setup_welcome.tpl:20 +#: include/class_acl.inc:496 include/class_acl.inc:497 #, fuzzy -msgid "Find every possible configuration error" -msgstr "Plik konfiguracyjny" +msgid "category ACL" +msgstr "Kategoria" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" -msgstr "" +#: include/class_acl.inc:543 +#, fuzzy, php-format +msgid "Edit ACL for '%s' - scope is '%s'" +msgstr "Edytuj ACL dla '%s', zakres to '%s'" -#: setup/setup_welcome.tpl:25 +#: include/class_acl.inc:698 include/class_acl.inc:705 #, fuzzy -msgid "To continue..." -msgstr "Ustawienia trwają..." +msgid "Show/hide advanced settings" +msgstr "Zaawansowane ustawienia telefonu" -#: 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:723 +msgid "Create objects" +msgstr "Utwórz obiekty" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "" +#: include/class_acl.inc:724 +msgid "Move objects" +msgstr "Przenieś obiekty" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "" +#: include/class_acl.inc:725 +msgid "Remove objects" +msgstr "Usuń obiekty" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." -msgstr "" +#: include/class_acl.inc:727 +msgid "Modifyable by owner" +msgstr "Modyfikowalne przez właściciela" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." -msgstr "" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "czytanie" -#: setup/setup_checks.tpl:67 -#, fuzzy -msgid "PHP setup configuration" -msgstr "Konfiguracja bazy FAX" +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "zapisywanie" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:743 #, fuzzy -msgid "show information" -msgstr "Informacje osobiste" +msgid "Complete object" +msgstr "Utwórz obiekty" -#: setup/setup_schema.tpl:3 -#, fuzzy -msgid "Schema specific settings" -msgstr "Ustawienia Samba" +#: include/class_acl.inc:879 +#, fuzzy, php-format +msgid "Unkown ACL type '%s'!" +msgstr "Nieznany wpis '%s'!" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "" +#: include/class_acl.inc:922 +#, php-format +msgid "Unknown entry '%s'!" +msgstr "Nieznany wpis '%s'!" -#: setup/setup_schema.tpl:16 +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, fuzzy, php-format +msgid "Role: %s" +msgstr "Pełniona funkcja" + +#: include/class_acl.inc:984 #, fuzzy -msgid "Check status" -msgstr "Ustaw status" +msgid "unknown role" +msgstr "! nieznane id" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" -msgstr "" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" +msgstr "Zawiera ustawienia dla tych obiektów: %s" -#: setup/setup_schema.tpl:23 +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "Członkowie" + +#: include/class_acl.inc:1007 #, fuzzy -msgid "Schema check failed" -msgstr "Zapisywanie telefonu nieudane" +msgid "ACL takes effect for all users" +msgstr "ACL jest prawidłowy dla wszystkich użytkowników" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_acl.inc:1177 +#, fuzzy +msgid "Access control list" +msgstr "Kontrola dostępu" -#: 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 "" +#: include/class_acl.inc:1182 +#, fuzzy +msgid "ACL roles" +msgstr "ACLe" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "Wyszukiwarka pomocy" +#: include/class_acl.inc:1185 +#, fuzzy +msgid "Role name" +msgstr "Zmień nazwę" -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "Pomoc nie jest dostępna dla tej klasy." +#: include/class_acl.inc:1186 +#, fuzzy +msgid "Role description" +msgstr "Opis jednostki" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: include/class_certificate.inc:73 +#, fuzzy +msgid "Certificate is empty!" +msgstr "Certyfikaty" + +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -"Katalog pomocy '%s' nie jest osiągalny, nie można czytać żadnych plików " -"pomocy." -#: html/setup.php:66 +#: include/class_certificate.inc:115 #, fuzzy -msgid "Smarty" -msgstr "Podsumowanie" +msgid "Cannot extract information for non PEM certificates!" +msgstr "Nie można pobrać informacji o quota dla '%s'." -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!" +#: include/class_certificate.inc:219 +#, fuzzy +msgid "No valid certificate loaded!" +msgstr "Nie załadowano prawidłowego certyfikatu" -#: html/password.php:58 html/index.php:142 -#, fuzzy, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę." +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło" -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "Stare hasło" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "Proszę sprawdzić kombinację login/hasło." +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Hasło ponownie" -#: html/password.php:232 -msgid "You have no permissions to change your password." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here 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:" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "Wykryto konflikt blokady" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -msgstr "Sesja nie będzie szyfrowana." +#: 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." -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "Sprowadź sesję SSL" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "Twoja sesja w GOsa wygasła!" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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." -#: html/main.php:172 +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" +msgstr "Zaloguj się ponownie" + +#: ihtml/themes/default/acl.tpl:31 #, fuzzy -msgid "PHP configuration" -msgstr "Konfiguracja bazy FAX" +msgid "Additional filter options" +msgstr "Ustawienia Aplikacji" -#: html/main.php:173 -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." +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" +msgstr "Użyj członków z" -#: html/main.php:218 -msgid "Running out of memory!" -msgstr "" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" +msgstr "Dostępni członkowie" -#: html/main.php:292 -msgid "User ACL checks disabled" -msgstr "" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" +msgstr "Wyświetl możliwe cele wiadomości" -#: html/main.php:361 -#, fuzzy -msgid "Your password is about to expire, please change your password!" -msgstr "Twoje hasło zaraz wygaśnie, proszę zmienić hasło" +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "Wyświetl odbiorców wiadomości" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Plugin" -msgstr "w" - -#: html/main.php:371 -#, fuzzy, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "BŁĄD: Nie można znaleźć żadnych definicji dla pluginu '%s'!" +msgid "ACL for this object" +msgstr "ACLe dla tego obiektu" -#: html/index.php:57 +#: ihtml/themes/default/acl.tpl:113 #, fuzzy -msgid "Session is not encrypted!" -msgstr "Sesja nie będzie szyfrowana." +msgid "Available roles" +msgstr "Dostępni członkowie" -#: html/index.php:64 +#: ihtml/themes/default/remove.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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." -#: html/index.php:167 -#, fuzzy -msgid "Smarty error" -msgstr "Ustaw status" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" +msgstr "Odtwarzanie obiektu snapshotów" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" +"Ta procedura przywróci snapshot wybranego obiektu. Obecny obiekt zostanie " +"zamieniony po naciśnięciu przycisku przywróć." -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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 "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: 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 "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" -msgstr "" +#: 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" -#: html/index.php:283 -#, fuzzy -msgid "Your LDAP setup contains old schema definitions:" +#: 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." + +#: ihtml/themes/default/snapshotdialog.tpl:49 +msgid "Creating object snapshots" +msgstr "Tworzenie obiektu snapshoty" + +#: 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 "" -"Ustawienia serwera LDAP zawierają stare definicje schema. Proszę uruchomić " -"setup." +"Ta procedura utworzy snapshot wybranego obiektu. Kopia obiektu zostanie " +"zachowana w specjalnej gałęzi i będzie mogła zostać przywrócona później." -#: html/index.php:304 -msgid "Please specify a valid username!" -msgstr "Proszę podać prawidłową nazwę użytkownika!" +#: 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 "" -#: html/index.php:307 -msgid "Please specify your password!" -msgstr "Proszę podać prawidłowe hasło!" +#: ihtml/themes/default/snapshotdialog.tpl:70 +msgid "Timestamp" +msgstr "Czas" -#: html/index.php:319 -#, fuzzy -msgid "Authentication error" -msgstr "Autentykacja Nagios" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" +msgstr "Przyczyna utworzenia tego snapshot'u" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: 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." -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" -msgstr "Konto zablokowane. Proszę skontaktować się z administratorem systemu." +#: 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" -#: html/index.php:426 +#: 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" + +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" -"Twoja przeglądarka ma wyłączone cookies. Proszę włączyć cookies i " -"przeładować stronę przed logowaniem!" +"ignoruj ten błąd i pokaż wszystkie elementy które zmieszczą się w " +"zdefiniowanych limicie rozmiaru i pozwól mi użyć filtrów" #: ihtml/themes/default/copyPasteDialog.tpl:1 #, fuzzy @@ -6031,20 +6052,6 @@ msgstr "Podgląd pomocy GOsa" msgid "Index" msgstr "Indeks" -#: 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/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Główne" @@ -6065,44 +6072,45 @@ msgstr "Zalogowano:" msgid "GOsa main menu" 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 "" -"To może być używane przez kilka grup. Proszę upewnić się czy kontynuować, " -"gdyż nie ma operacji powrotu." - -#: ihtml/themes/default/acl.tpl:31 +#: ihtml/themes/default/logout-close.tpl:5 #, fuzzy -msgid "Additional filter options" -msgstr "Ustawienia Aplikacji" - -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" -msgstr "Użyj członków z" +msgid "Your GOsa session has been closed!" +msgstr "Twoja sesja w GOsa wygasła!" -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" -msgstr "Dostępni członkowie" +#: 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 "" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" -msgstr "Wyświetl możliwe cele wiadomości" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" +msgstr "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" -msgstr "Wyświetl odbiorców wiadomości" +#: ihtml/themes/default/login.tpl:27 +#, fuzzy +msgid "Login screen" +msgstr "Usługa Logowania" -#: ihtml/themes/default/acl.tpl:107 +#: ihtml/themes/default/login.tpl:34 #, fuzzy -msgid "ACL for this object" -msgstr "ACLe dla tego obiektu" +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ć" + +#: 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" -#: ihtml/themes/default/acl.tpl:113 -#, fuzzy -msgid "Available roles" -msgstr "Dostępni członkowie" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Zaloguj" + +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Kliknij tutaj aby się zalogować" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6153,11 +6161,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Katalog" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -6168,169 +6171,169 @@ msgstr "Nowe hasło" msgid "Change" msgstr "Kanał" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" +msgstr "" + +#: html/main.php:172 #, fuzzy -msgid "Click here to change your password" -msgstr "Brak uprawnień do zmiany własnego hasła" +msgid "PHP configuration" +msgstr "Konfiguracja bazy FAX" -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:173 +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." -#: ihtml/themes/default/login.tpl:27 -#, fuzzy -msgid "Login screen" -msgstr "Usługa Logowania" +#: html/main.php:218 +msgid "Running out of memory!" +msgstr "" -#: ihtml/themes/default/login.tpl:34 +#: html/main.php:292 +msgid "User ACL checks disabled" +msgstr "" + +#: html/main.php:361 #, 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ć" +msgid "Your password is about to expire, please change your password!" +msgstr "Twoje hasło zaraz wygaśnie, proszę zmienić hasło" -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Zaloguj" +#: html/main.php:370 +#, fuzzy +msgid "Plugin" +msgstr "w" -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Kliknij tutaj aby się zalogować" +#: html/main.php:371 +#, fuzzy, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "BŁĄD: Nie można znaleźć żadnych definicji dla pluginu '%s'!" -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" -msgstr "Twoja sesja w GOsa wygasła!" +#: html/index.php:57 +#, fuzzy +msgid "Session is not encrypted!" +msgstr "Sesja nie będzie szyfrowana." -#: ihtml/themes/default/logout.tpl:7 +#: html/index.php:64 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." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." 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." -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" -msgstr "Zaloguj się ponownie" +#: html/index.php:142 html/password.php:58 +#, fuzzy, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "Nie można czytać pliku konfiguracji %s/gosa.conf. Kończę." -#: 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." +#: html/index.php:167 +#, fuzzy +msgid "Smarty error" +msgstr "Ustaw status" -#: 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" +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" +msgstr "Katalog '%s' podany jako katalog kompilacji jest niedostępny!" -#: 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" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" +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" +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" msgstr "" -"ignoruj ten błąd i pokaż wszystkie elementy które zmieszczą się w " -"zdefiniowanych limicie rozmiaru i pozwól mi użyć filtrów" -#: ihtml/themes/default/logout-close.tpl:5 -#, fuzzy -msgid "Your GOsa session has been closed!" -msgstr "Twoja sesja w GOsa wygasła!" +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" +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." +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 +#: html/index.php:283 #, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "Twoje hasło wygasło !! Proszę wybrać inne hasło" +msgid "Your LDAP setup contains old schema definitions:" +msgstr "" +"Ustawienia serwera LDAP zawierają stare definicje schema. Proszę uruchomić " +"setup." -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "Proszę podać prawidłową nazwę użytkownika!" + +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "Proszę podać prawidłowe hasło!" + +#: html/index.php:319 #, fuzzy -msgid "Old password" -msgstr "Stare hasło" +msgid "Authentication error" +msgstr "Autentykacja Nagios" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" +msgstr "" + +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "Proszę sprawdzić kombinację login/hasło." + +#: html/index.php:375 #, fuzzy -msgid "Verify password" -msgstr "Hasło ponownie" +msgid "Account locked. Please contact your system administrator!" +msgstr "Konto zablokowane. Proszę skontaktować się z administratorem systemu." -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" -msgstr "Odtwarzanie obiektu snapshotów" +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "Sesja nie będzie szyfrowana." -#: 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 "" -"Ta procedura przywróci snapshot wybranego obiektu. Obecny obiekt zostanie " -"zamieniony po naciśnięciu przycisku przywróć." +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "Sprowadź sesję SSL" -#: ihtml/themes/default/snapshotdialog.tpl:9 +#: html/index.php:426 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)." +"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!" -#: ihtml/themes/default/snapshotdialog.tpl:12 -msgid "" -"Don't forget to check references to other objects, for example does the " -"selected printer still exists ?" +#: html/password.php:163 +msgid "Error: Password method not available!" msgstr "" -#: 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" +#: html/password.php:232 +msgid "You have no permissions to change your password." +msgstr "Brak uprawnień do zmiany własnego hasła" -#: 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." +#: 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:" -#: ihtml/themes/default/snapshotdialog.tpl:49 -msgid "Creating object snapshots" -msgstr "Tworzenie obiektu snapshoty" +#: html/helpviewer.php:70 +msgid "Help browser" +msgstr "Wyszukiwarka pomocy" -#: 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." +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "Pomoc nie jest dostępna dla tej klasy." -#: 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." +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." msgstr "" +"Katalog pomocy '%s' nie jest osiągalny, nie można czytać żadnych plików " +"pomocy." -#: ihtml/themes/default/snapshotdialog.tpl:70 -msgid "Timestamp" -msgstr "Czas" - -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" -msgstr "Przyczyna utworzenia tego snapshot'u" +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Podsumowanie" #~ msgid "Restore snapshopts of already deleted objects" #~ msgstr "Otwórz snapshoty usuniętych obiektów" diff --git a/gosa-core/locale/core/ru/LC_MESSAGES/messages.po b/gosa-core/locale/core/ru/LC_MESSAGES/messages.po index 103182fc2..a2a0833b0 100644 --- a/gosa-core/locale/core/ru/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/ru/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2005-04-18 14:35+0300\n" "Last-Translator: Igor Muratov \n" "Language-Team: ALT Linux Team\n" @@ -14,11 +14,94 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: poEdit 1.3.1\n" +#: plugins/personal/password/nochange.tpl:2 +#, fuzzy +msgid "Password change not allowed" +msgstr "Сменить пароль" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "У вас недостаточно прав для смены своего пароля." + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#, fuzzy +msgid "Password settings" +msgstr "Почтовые настройки пользователя" + +#: 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/password.tpl:4 +#, 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." +msgstr "" +"В полях ниже вы можете изменить свой пароль. Изменения вступят в силу " +"немедленно. Пожалуйста, запомните новый пароль, так как иначе вы не сможете " +"войти в систему." + +#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8 +#, fuzzy +msgid "" +"Changing the password affects your authentification on mail, proxy, samba " +"and unix services." +msgstr "" +"Изменение пароля влияет на аутентификацию при использовании почты, прокси-" +"сервера, Samba и служб UNIX." + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "Текущий пароль" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "Новый пароль" + +#: plugins/personal/password/password.tpl:23 +#: plugins/personal/generic/password.tpl:11 +#: plugins/admin/users/password.tpl:17 +msgid "Repeat new password" +msgstr "Подтверждение" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "Хэширование паролей" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "Изменить пароль" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "Очистить поля" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "Пароль" @@ -37,8 +120,8 @@ msgstr "Сменить пароль" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "Сменить пароль" @@ -90,1072 +173,208 @@ msgid "User password" msgstr "Новый пароль" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "Моя учетная запись" -#: plugins/personal/password/nochange.tpl:2 -#, fuzzy -msgid "Password change not allowed" -msgstr "Сменить пароль" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "Изображение" -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -msgstr "У вас недостаточно прав для смены своего пароля." +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "Удалить изображение" -#: plugins/personal/password/password.tpl:4 -#, 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." -msgstr "" -"В полях ниже вы можете изменить свой пароль. Изменения вступят в силу " -"немедленно. Пожалуйста, запомните новый пароль, так как иначе вы не сможете " -"войти в систему." +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "Общее" -#: plugins/personal/password/password.tpl:8 plugins/admin/users/password.tpl:8 +#: plugins/personal/generic/class_user.inc:38 #, fuzzy -msgid "" -"Changing the password affects your authentification on mail, proxy, samba " -"and unix services." -msgstr "" -"Изменение пароля влияет на аутентификацию при использовании почты, прокси-" -"сервера, Samba и служб UNIX." - -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "Текущий пароль" +msgid "Edit organizational user settings" +msgstr "Дополнительные записи в fstab" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "Новый пароль" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "женский" -#: plugins/personal/password/password.tpl:23 -#: plugins/personal/generic/password.tpl:11 -#: plugins/admin/users/password.tpl:17 -msgid "Repeat new password" -msgstr "Подтверждение" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "мужской" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 -#, fuzzy -msgid "Password strength" -msgstr "Хэширование паролей" +#: plugins/personal/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "Изменить пароль" +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "Очистить поля" +#: plugins/personal/generic/class_user.inc:503 +#, fuzzy +msgid "Serial number" +msgstr "Телефонные номера" -#: plugins/personal/password/changed.tpl:3 +#: plugins/personal/generic/class_user.inc:548 msgid "" -"You've successfully changed your password. Remember to change all programms " -"configured to use it as well." +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" msgstr "" -"Вы успешно сменили свой пароль. Не забудьте изменить нужные настройки " -"использующих его программ." -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 -#, fuzzy -msgid "Password settings" -msgstr "Почтовые настройки пользователя" - -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "Выберите группы для добавления" +#: plugins/personal/generic/class_user.inc:558 +#, php-format +msgid "Certificate is valid from %s to %s and is currently %s." +msgstr "" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "Фильтры" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "Объединения в подразделении" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "Выбрать раздел, для которого будет осуществлен поиск" +#: plugins/personal/generic/class_user.inc:567 +#, fuzzy +msgid "No certificate installed" +msgstr "Изменить сертификаты" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "Шаблон для групп" - -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "Регулярное выражение, соответствующее именам групп" - -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "Показать группы пользователей" - -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" -msgstr "Имя пользователя, для которого перечисляются группы" - -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -#, fuzzy -msgid "Search in subtrees" -msgstr "Искать в поддеревьях" - -#: plugins/personal/posix/posix_shadow.tpl:9 -msgid "User must change password on first login" -msgstr "Пользователь должен сменить пароль при первом входе в систему" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "Срок действия пароля истекает" - -#: plugins/personal/posix/paste_generic.tpl:4 -#, fuzzy -msgid "Posix settings" -msgstr "Атрибуты UNIX" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "Домашний каталог" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "Указать UID/GID вручную" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -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 групп для одного пользователя!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "Выберите системы для добавления" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "Показать системы в подразделении" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "Показать подходяшие системы" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "Регулярное выражение для поиска адреса" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "Общее" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Оболочка" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "Основная группа" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "Состояние" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "Основная группа" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, fuzzy -msgid "Not in all groups" -msgstr "Показать группы с эл. почтой" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "Учетная запись" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "Системные доверия" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -#, fuzzy -msgid "Trust mode" -msgstr "Режим" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "Unix" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Атрибуты UNIX" - -#: plugins/personal/posix/class_posixAccount.inc:154 -#, fuzzy -msgid "expired" -msgstr "Экспорт" - -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -#, fuzzy -msgid "active" -msgstr "Личный" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "Новый пароль" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "Срок действия пароля истекает" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "Не настроено" - -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" -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" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" -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 дн. с последней смены (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)" - -#: plugins/personal/posix/class_posixAccount.inc:477 -#, php-format -msgid "Warn user %s days before password expiery" -msgstr "" -"Предупреждать пользователей за %s дн. до истечения срока действия пароля " -"(shadowWarning)" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "отключен" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "полный доступ" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "разрешить доступ только на эти хосты" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 -#: plugins/personal/generic/class_user.inc:702 -#: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 -#: plugins/admin/departments/class_departmentGeneric.inc:185 -#: plugins/admin/departments/class_departmentGeneric.inc:358 -#: plugins/admin/departments/class_departmentGeneric.inc:626 -#: plugins/admin/departments/class_departmentGeneric.inc:657 -#: plugins/admin/ogroups/class_ogroup.inc:968 -#: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 -#: html/index.php:270 html/index.php:283 -#, fuzzy -msgid "LDAP error" -msgstr "Ошибка LDAP:" - -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "Предупреждение" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "Группа пользователя" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -#, fuzzy -msgid "shadowMax" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "Слишком много пользователей, невозможно создать идентификатор!" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -#, fuzzy -msgid "POSIX account" -msgstr "Аккаунт FTP" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "Идентификатор пользователя" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -#, fuzzy -msgid "Group ID" -msgstr "Группа" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -#, fuzzy -msgid "Force password change on login" -msgstr "Сменить пароль" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -#, fuzzy -msgid "Shadow min" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -#, fuzzy -msgid "Shadow max" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -#, fuzzy -msgid "Shadow warning" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -#, fuzzy -msgid "Shadow inactive" -msgstr "Затенение" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -#, fuzzy -msgid "Shadow expire" -msgstr "Показать людей" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -#, fuzzy -msgid "System trust model" -msgstr "Системные доверия" - -#: plugins/personal/posix/main.inc:131 -#, fuzzy -msgid "POSIX settings" -msgstr "Атрибуты UNIX" - -#: 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 "" -"Вы изменили метод шифрования паролей в базе LDAP. В связи с этим введите " -"свой пароль снова. GOsa произведет шифрование в соответствии с выбраной " -"схемой." - -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "Изображение" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "Удалить изображение" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "Личная информация" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "Академическое звание" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -#, fuzzy -msgid "Preferred langage" -msgstr "Язык по умолчанию" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "Ветка" - -#: plugins/personal/generic/multiple_generic.tpl:53 -#: plugins/personal/generic/generic.tpl:175 -msgid "Choose subtree to place user in" -msgstr "Выберите ветку для пользователя" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -#, fuzzy -msgid "Select a base" -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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "Адрес" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "Личный телефон" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "Домашняя страница" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "Хэширование паролей" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "Сертификаты" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "Изменить сертификаты" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "Информация об организации" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "Организация" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "Подразделение" - -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "Номер подразделения" - -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "Номер работника" - -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "Форма трудоустройства" - -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "Номер комнаты" - -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 -#: plugins/personal/generic/class_user.inc:1215 -#: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 -#: plugins/admin/departments/generic.tpl:83 -#: plugins/admin/departments/class_departmentGeneric.inc:260 -#: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 -msgid "Phone" -msgstr "Телефон" - -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 -#: plugins/personal/generic/class_user.inc:1221 -#: plugins/personal/generic/class_user.inc:1613 -msgid "Mobile" -msgstr "Мобильный" - -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 -#: plugins/personal/generic/class_user.inc:1224 -#: plugins/personal/generic/class_user.inc:1616 -msgid "Pager" -msgstr "Пейджер" - -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "Факс" - -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "Местоположение" - -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "Адм. единица" - -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 -#: plugins/personal/generic/class_user.inc:1473 -msgid "Vocation" -msgstr "Специальность" - -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 -#: plugins/personal/generic/class_user.inc:1476 -msgid "Unit description" -msgstr "Описание подразделения" - -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 -#: plugins/personal/generic/class_user.inc:1477 -msgid "Subject area" -msgstr "Область деятельности" - -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 -#: plugins/personal/generic/class_user.inc:1478 -msgid "Functional title" -msgstr "Должность" - -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 -#: plugins/personal/generic/class_user.inc:1482 -#: plugins/admin/acl/class_divListACL.inc:165 -#: plugins/admin/acl/class_divListACL.inc:202 -#: plugins/admin/acl/class_aclRole.inc:697 -msgid "Role" -msgstr "Роль" - -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "Местоположение сотрудника" - -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "Подразделение" - -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "Улица" - -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "Почтовый индекс" - -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "Номер дома" - -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "Последняя доставка" - -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "Видимый всем" - -#: plugins/personal/generic/paste_generic.tpl:1 -#, fuzzy -msgid "User settings" -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 "Список" - -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -#, fuzzy -msgid "First name" -msgstr "Список" - -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "Имя пользователя" - -#: plugins/personal/generic/paste_generic.tpl:23 -#, fuzzy -msgid "Clear password" -msgstr "Новый пароль" - -#: plugins/personal/generic/paste_generic.tpl:24 -#, fuzzy -msgid "Set new password" -msgstr "Изменить пароль" - -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -#, fuzzy -msgid "User picture" -msgstr "Изображение" - -#: plugins/personal/generic/generic.tpl:29 -#: plugins/personal/generic/generic.tpl:40 -msgid "Change picture" -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" -msgstr "" - -#: plugins/personal/generic/generic.tpl:62 -#, fuzzy -msgid "Template name" -msgstr "Шаблон" - -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "Обращение" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "Дата рождения" - -#: plugins/personal/generic/generic.tpl:137 -#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 -#, php-format -msgid "Set" -msgstr "Установить" - -#: plugins/personal/generic/generic.tpl:144 -msgid "Sex" -msgstr "Пол" - -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 -msgid "Configure" -msgstr "Настроить" - -#: plugins/personal/generic/generic.tpl:519 -msgid "Please use the phone tab" -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/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 -#: plugins/admin/departments/class_divListDepartment.inc:160 -#: plugins/admin/ogroups/class_divListOGroup.inc:209 -msgid "Remove" -msgstr "Удалить" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "Сертификат S/MIME" - -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "Сертификат PKCS12" - -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "Серийный номер сертификата" - -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "Дополнительные записи в fstab" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "женский" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "мужской" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "Телефонные номера" - -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "" - -#: plugins/personal/generic/class_user.inc:558 -#, php-format -msgid "Certificate is valid from %s to %s and is currently %s." -msgstr "" - -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "" - -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "" - -#: plugins/personal/generic/class_user.inc:567 -#, fuzzy -msgid "No certificate installed" -msgstr "Изменить сертификаты" - -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" -msgstr "Хэширование паролей" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "Хэширование паролей" #: plugins/personal/generic/class_user.inc:592 #, fuzzy msgid "The selected password method is no longer available." msgstr "У выбранного приложения нет параметров." +#: plugins/personal/generic/class_user.inc:702 +#: plugins/personal/generic/class_user.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 +#: plugins/admin/departments/class_departmentGeneric.inc:185 +#: plugins/admin/departments/class_departmentGeneric.inc:358 +#: plugins/admin/departments/class_departmentGeneric.inc:626 +#: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 +#: plugins/admin/ogroups/class_ogroup.inc:968 +#: plugins/admin/ogroups/class_ogroup.inc:982 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#: setup/class_setupStep_Migrate.inc:1955 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 +#: html/index.php:270 html/index.php:283 +#, fuzzy +msgid "LDAP error" +msgstr "Ошибка LDAP:" + #: plugins/personal/generic/class_user.inc:1149 #, fuzzy msgid "The selected password method requires initial configuration!" msgstr "У выбранного приложения нет параметров." +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "Имя пользователя" + #: plugins/personal/generic/class_user.inc:1184 #: plugins/personal/generic/class_user.inc:1195 #: plugins/personal/generic/class_user.inc:1232 #: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 #: plugins/admin/departments/class_departmentGeneric.inc:239 #: plugins/admin/departments/class_departmentGeneric.inc:241 #: plugins/admin/departments/class_departmentGeneric.inc:246 #: plugins/admin/departments/class_departmentGeneric.inc:253 #: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 #: plugins/admin/ogroups/class_ogroup.inc:857 #: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 msgid "Name" msgstr "Фамилия" @@ -1168,10 +387,140 @@ msgstr "Фамилия" msgid "Given name" msgstr "Имя" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "Невозможно выбрать базу данных!" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "Домашняя страница" + +#: plugins/personal/generic/class_user.inc:1215 +#: plugins/personal/generic/class_user.inc:1607 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/departments/generic.tpl:83 +#: plugins/admin/departments/class_departmentGeneric.inc:260 +#: plugins/admin/ogroups/class_ogroupManagement.inc:531 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 +msgid "Phone" +msgstr "Телефон" + +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "Факс" + +#: plugins/personal/generic/class_user.inc:1221 +#: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 +msgid "Mobile" +msgstr "Мобильный" + +#: plugins/personal/generic/class_user.inc:1224 +#: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 +msgid "Pager" +msgstr "Пейджер" + +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "Невозможно выбрать базу данных!" + +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "Подразделение" + +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "Номер дома" + +#: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 +msgid "Vocation" +msgstr "Специальность" + +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "Последняя доставка" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "Местоположение сотрудника" + +#: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 +msgid "Unit description" +msgstr "Описание подразделения" + +#: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 +msgid "Subject area" +msgstr "Область деятельности" + +#: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 +msgid "Functional title" +msgstr "Должность" + +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "Серийный номер сертификата" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "Видимый всем" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "Улица" + +#: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 +#: plugins/admin/acl/class_divListACL.inc:165 +#: plugins/admin/acl/class_divListACL.inc:202 +#: plugins/admin/acl/class_aclRole.inc:697 +msgid "Role" +msgstr "Роль" + +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "Почтовый индекс" #: plugins/personal/generic/class_user.inc:1487 #, fuzzy @@ -1183,6 +532,25 @@ msgstr "Общая информация о пользователе" msgid "Users" msgstr "Пользователи" +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "Ветка" + #: plugins/personal/generic/class_user.inc:1498 #, fuzzy msgid "Surename" @@ -1193,6 +561,17 @@ msgstr "Имя сервера" msgid "User identification" msgstr "Информация" +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "Обращение" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "Академическое звание" + #: plugins/personal/generic/class_user.inc:1503 msgid "Home postal address" msgstr "" @@ -1202,6 +581,30 @@ msgstr "" msgid "Home phone number" msgstr "Телефонные номера" +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "Организация" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "Подразделение" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "Дата рождения" + #: plugins/personal/generic/class_user.inc:1509 #, fuzzy msgid "Gender" @@ -1222,6 +625,35 @@ msgstr "Управление подразделениями" msgid "Employee number" msgstr "Форма трудоустройства" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "Форма трудоустройства" + +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "Местоположение" + +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "Адм. единица" + +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +#, fuzzy +msgid "User picture" +msgstr "Изображение" + #: plugins/personal/generic/class_user.inc:1517 #, fuzzy msgid "Room number" @@ -1262,1024 +694,920 @@ msgstr "Терминал" msgid "You have no permission to set your password!" msgstr "У вас недостаточно прав для смены своего пароля." -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "Общая информация о пользователе" - -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" - -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" - -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "Доступ" - -#: plugins/admin/acl/tabs_acl_role.inc:28 -#, fuzzy -msgid "ACL Templates" -msgstr "Шаблон" - -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -#, fuzzy -msgid "Manage access control lists" -msgstr "Параметры доступа" - -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "Права для членов группы" - -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -#, fuzzy -msgid "Permission" -msgstr "Права для членов группы" - -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 -#, fuzzy -msgid "List of acls" -msgstr "Список групп" - -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "" - -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "Действия" - -#: plugins/admin/acl/class_divListACL.inc:84 -#, fuzzy -msgid "Display acls matching" -msgstr "Шаблон для групп" - -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#, fuzzy -msgid "Submit department" -msgstr "Показать подразделения" - -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "" - -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -msgstr "Создать" - -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -#, fuzzy -msgid "edit" -msgstr "Изменить" - -#: plugins/admin/acl/class_divListACL.inc:215 -#, fuzzy -msgid "Edit acl role" -msgstr "Пользователи домена" - -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -#, fuzzy -msgid "delete" -msgstr "Удалить" +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "Общая информация о пользователе" -#: plugins/admin/acl/class_divListACL.inc:223 -#, fuzzy -msgid "Delete acl role" -msgstr "Удалить" +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "Личная информация" -#: plugins/admin/acl/class_divListACL.inc:242 -#, fuzzy -msgid "Edit acl" -msgstr "Список систем" +#: plugins/personal/generic/generic.tpl:29 +#: plugins/personal/generic/generic.tpl:40 +msgid "Change picture" +msgstr "Сменить изображение" -#: plugins/admin/acl/class_divListACL.inc:246 +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 #, fuzzy -msgid "Delete acl" -msgstr "Удалить" +msgid "Last name" +msgstr "Список" -#: 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." +#: 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 "" -"Сюда входит вся информация о системе и ее настройках. Подумайте еще " -"раз, действительно ли вам нужно удаление, так как GOsa не сможет отменить " -"результаты этой операции." -#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10 +#: plugins/personal/generic/generic.tpl:62 #, 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 в " -"файл. Если вы сделали это и действительно хотите выполнить удаление, нажмите " -"Удалить, иначе нажмите Отмена." +msgid "Template name" +msgstr "Шаблон" -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 #, fuzzy -msgid "ACL management" -msgstr "Управление подразделениями" - -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" -msgstr "" +msgid "First name" +msgstr "Список" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "Описание" +#: plugins/personal/generic/generic.tpl:137 +#: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 +#, php-format +msgid "Set" +msgstr "Установить" -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "Выберите ветку для группы" +#: plugins/personal/generic/generic.tpl:144 +msgid "Sex" +msgstr "Пол" -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 #, fuzzy -msgid "New ACL" -msgstr "Создать" +msgid "Preferred langage" +msgstr "Язык по умолчанию" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 -#, fuzzy -msgid "ACL type" -msgstr "Тип" +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "Выберите ветку для пользователя" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 #, fuzzy -msgid "Select an acl type" +msgid "Select a base" msgstr "Выберите, чтобы просмотреть серверы" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 -#, fuzzy -msgid "List of available ACL categories" -msgstr "Выберите тип мыши" +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "Адрес" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 -#, fuzzy -msgid "Access control roles" -msgstr "Параметры доступа" +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "Личный телефон" -#: plugins/admin/acl/class_aclRole.inc:27 -#, fuzzy -msgid "Edit AC roles" -msgstr "Доступ" +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "Хэширование паролей" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 -#, fuzzy -msgid "All categories" -msgstr "Категория" +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 +msgid "Configure" +msgstr "Настроить" -#: plugins/admin/acl/class_aclRole.inc:131 -#, fuzzy -msgid "Reset ACL" -msgstr "Удалить" +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "Сертификаты" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 -#, fuzzy -msgid "One level" -msgstr "Уровень информативности" +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "Изменить сертификаты" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 -#, fuzzy -msgid "Current object" -msgstr "Текущий пароль" +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "Информация об организации" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 -#, fuzzy -msgid "Complete subtree" -msgstr "не полный" +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "Номер подразделения" -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "" +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "Номер работника" -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "" +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "Номер комнаты" -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -#, fuzzy -msgid "Down" -msgstr "Домен" +#: plugins/personal/generic/generic.tpl:519 +msgid "Please use the phone tab" +msgstr "Воспользуйтесь закладкой \"Телефон\"" -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "Изменить" +#: plugins/personal/generic/generic_certs.tpl:8 +msgid "Standard certificate" +msgstr "Стандартный сертификат" -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" +#: plugins/personal/generic/generic_certs.tpl:21 +#: plugins/personal/generic/generic_certs.tpl:45 +#: plugins/personal/generic/generic_certs.tpl:69 +#: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 +#: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 +msgid "Remove" msgstr "Удалить" -#: plugins/admin/acl/class_aclRole.inc:401 +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "Сертификат S/MIME" + +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "Сертификат PKCS12" + +#: plugins/personal/generic/paste_generic.tpl:1 #, fuzzy -msgid "No ACL settings for this category" -msgstr "Описание группы" +msgid "User settings" +msgstr "Почтовые настройки пользователя" -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "Описание группы" +#: plugins/personal/generic/paste_generic.tpl:23 +#, fuzzy +msgid "Clear password" +msgstr "Новый пароль" -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/generic/paste_generic.tpl:24 #, fuzzy -msgid "Edit category ACL" -msgstr "Список систем" +msgid "Set new password" +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." +msgstr "" +"Вы изменили метод шифрования паролей в базе LDAP. В связи с этим введите " +"свой пароль снова. GOsa произведет шифрование в соответствии с выбраной " +"схемой." + +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "Выберите группы для добавления" -#: plugins/admin/acl/class_aclRole.inc:409 -#, fuzzy -msgid "Reset category ACL" -msgstr "Категория" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "Фильтры" -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "Объединения в подразделении" -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: plugins/admin/groups/group_objects.tpl:40 +msgid "Choose the department the search will be based on" +msgstr "Выбрать раздел, для которого будет осуществлен поиск" -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy -msgid "Object in use" -msgstr "Имя объекта" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "Шаблон для групп" -#: plugins/admin/acl/class_aclRole.inc:621 -#, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "Регулярное выражение, соответствующее именам групп" -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "Выбрать пользователей для добавления" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "Показать группы пользователей" -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -msgstr "Выберите, чтобы просмотреть серверы" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "Имя пользователя, для которого перечисляются группы" -#: plugins/admin/groups/group_objects.tpl:30 +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 #, fuzzy -msgid "Search within subtree" +msgid "Search in subtrees" msgstr "Искать в поддеревьях" -#: plugins/admin/groups/group_objects.tpl:37 -msgid "Display users of department" -msgstr "Подразделение" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "Выберите системы для добавления" -#: plugins/admin/groups/group_objects.tpl:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "Фильтр" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "Показать системы в подразделении" -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "Регулярное выражение, соответствующее именам пользователей" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "Показать подходяшие системы" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 -#, fuzzy -msgid "Configuration error" -msgstr "Настроить" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "Регулярное выражение для поиска адреса" -#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/personal/posix/main.inc:131 #, fuzzy -msgid "Cannot find group SID in your configuration!" -msgstr "Не могу найти SID в базе LDAP или в сонфигурационном файле!" +msgid "POSIX settings" +msgstr "Атрибуты UNIX" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Группа Samba" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "Домашний каталог" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "Администраторы домена" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Оболочка" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "Пользователи домена" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "Основная группа" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "Непривилегированные пользователи домена" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "Состояние" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "Специальная группа (%d)" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "Указать UID/GID вручную" -#: plugins/admin/groups/class_groupGeneric.inc:654 -#, fuzzy -msgid "! unknown id" -msgstr "состояние неизвестно" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -msgstr "" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "Удалить" +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "Членство в группах" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "Удалить" +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "" +"(Предупреждение: NFS не поддерживает более 16 групп для одного пользователя!)" -#: plugins/admin/groups/class_groupGeneric.inc:1213 +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy -msgid "Generic group settings" -msgstr "Общая информация о пользователе" - -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "Группы" +msgid "In all groups" +msgstr "Основная группа" -#: plugins/admin/groups/class_groupGeneric.inc:1225 +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 #, fuzzy -msgid "Phone pickup group" -msgstr "Члены телефонной группы" +msgid "Not in all groups" +msgstr "Показать группы с эл. почтой" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -#, fuzzy -msgid "Nagios group" -msgstr "Контакт" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "Учетная запись" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -#, fuzzy -msgid "Group member" -msgstr "Члены группы" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "Системные доверия" -#: plugins/admin/groups/class_groupGeneric.inc:1230 +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 #, fuzzy -msgid "Samba group type" -msgstr "Группа Samba" +msgid "Trust mode" +msgstr "Режим" -#: plugins/admin/groups/class_groupGeneric.inc:1231 +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "Unix" + +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "Samba domain name" -msgstr "Домашний каталог Samba" +msgid "Edit users POSIX settings" +msgstr "Атрибуты UNIX" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:154 #, fuzzy -msgid "Samba SID" -msgstr "Samba" +msgid "expired" +msgstr "Экспорт" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" msgstr "" - -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 + +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 #, fuzzy -msgid "Infrastructure error" -msgstr "Ошибка LDAP:" +msgid "active" +msgstr "Личный" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "group" -msgstr "группы" +msgid "password not changable" +msgstr "Новый пароль" -#: plugins/admin/groups/paste_generic.tpl:1 +#: plugins/personal/posix/class_posixAccount.inc:161 #, fuzzy -msgid "Group settings" -msgstr "Настройки Samba" +msgid "password expired" +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 "Группа" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "Не настроено" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" -msgstr "Имя группы, соответствующее стандарту POSIX" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "автоматически" -#: plugins/admin/groups/paste_generic.tpl:13 -#: plugins/admin/groups/generic.tpl:65 -msgid "Normally IDs are autogenerated, select to specify manually" +#: 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 "" -"Обычно идентификаторы создаются автоматически, но вы можете выбрать указание " -"вручную" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "Указать GID вручную" - -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "Указанный вручную GID" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -msgstr "Список групп" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "Окружение" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 -#: plugins/admin/departments/generic.tpl:4 -#: plugins/admin/ogroups/class_divListOGroup.inc:84 -msgid "Properties" -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 дн. с последней смены (shadowMin)" -#: plugins/admin/groups/class_divListGroup.inc:84 -msgid "Select to see groups that are primary groups of users" -msgstr "Выберите, чтобы просмотреть список основных групп пользователей" +#: plugins/personal/posix/class_posixAccount.inc:469 +#, php-format +msgid "Password must be changed after %s days" +msgstr "Пароль должен быть изменен по истечении %s дн. (shadowMax)" -#: plugins/admin/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "Показать группы" +#: plugins/personal/posix/class_posixAccount.inc:473 +#, php-format +msgid "Disable account after %s days of inactivity after password expiery" +msgstr "" +"Отключить учетную запись, если срок действия пароля истек и прошло %s дн. " +"бездействия (shadowInactive)" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "Основная группа" +#: plugins/personal/posix/class_posixAccount.inc:477 +#, php-format +msgid "Warn user %s days before password expiery" +msgstr "" +"Предупреждать пользователей за %s дн. до истечения срока действия пароля " +"(shadowWarning)" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "Samba" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "отключен" -#: plugins/admin/groups/class_divListGroup.inc:87 -#, fuzzy -msgid "samba groups" -msgstr "Группа Samba" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "полный доступ" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "приложения" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "разрешить доступ только на эти хосты" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "Показать группы приложений" +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "Предупреждение" -#: plugins/admin/groups/class_divListGroup.inc:90 -#, fuzzy -msgid "mail settings" -msgstr "Почтовые настройки пользователя" +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:91 -#, fuzzy -msgid "mail groups" -msgstr "Показать группы с эл. почтой" +#: plugins/personal/posix/class_posixAccount.inc:910 +msgid "" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" +msgstr "" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "Выберите, чтобы просмотреть список обычных групп" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "Группа пользователя" -#: plugins/admin/groups/class_divListGroup.inc:93 +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 #, fuzzy -msgid "functional groups" -msgstr "Показать обычные группы" +msgid "shadowMin" +msgstr "Затенение" -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "Группа" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +#, fuzzy +msgid "shadowMax" +msgstr "Затенение" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 #, fuzzy -msgid "Posix" -msgstr "Прокси-сервер" +msgid "shadowWarning" +msgstr "Затенение" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "Почта" +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 +#, fuzzy +msgid "shadowInactive" +msgstr "Затенение" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "Приложение" +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#, fuzzy +msgid "Cannot allocate a free ID!" +msgstr "Слишком много пользователей, невозможно создать идентификатор!" -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/personal/posix/class_posixAccount.inc:1494 #, fuzzy -msgid "Edit this entry" -msgstr "Редактиовать объект" +msgid "POSIX account" +msgstr "Аккаунт FTP" + +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "Идентификатор пользователя" -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/personal/posix/class_posixAccount.inc:1507 #, fuzzy -msgid "Delete this entry" -msgstr "Удалить" +msgid "Group ID" +msgstr "Группа" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/personal/posix/class_posixAccount.inc:1509 #, fuzzy -msgid "Not allowed" +msgid "Force password change on login" msgstr "Сменить пароль" -#: plugins/admin/groups/class_divListGroup.inc:359 +#: plugins/personal/posix/class_posixAccount.inc:1510 #, fuzzy -msgid "Number of listed groups" -msgstr "Название группы" +msgid "Shadow min" +msgstr "Затенение" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 -#: plugins/admin/departments/class_divListDepartment.inc:229 -#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/personal/posix/class_posixAccount.inc:1511 #, fuzzy -msgid "Number of listed departments" -msgstr "Подразделение" - -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" -msgstr "Описание группы" - -#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 -msgid "Select to create a samba conform group" -msgstr "Создать группу для работы с Samba" - -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "в домене" - -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" -msgstr "Члены телефонной группы" +msgid "Shadow max" +msgstr "Затенение" -#: plugins/admin/groups/generic.tpl:155 +#: plugins/personal/posix/class_posixAccount.inc:1512 #, fuzzy -msgid "Members are in a nagios group" -msgstr "Члены телефонной группы" - -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -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." -msgstr "" -"Возможно, это основная группа пользователей. Еще раз проверте что Вы " -"действительно хотите удалить ее, так как GOsa не сможет отменить результаты " -"этой операции." +msgid "Shadow warning" +msgstr "Затенение" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +#: plugins/personal/posix/class_posixAccount.inc:1513 #, fuzzy -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "" -"Если вы уверены в своих действиях, нажмите на кнопку Удалить, иначе " -"нажмите Отмена." - -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "Управление группами" +msgid "Shadow inactive" +msgstr "Затенение" -#: plugins/admin/users/password.tpl:4 +#: plugins/personal/posix/class_posixAccount.inc:1514 #, 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 "Shadow expire" +msgstr "Показать людей" -#: plugins/admin/users/password.tpl:21 +#: plugins/personal/posix/class_posixAccount.inc:1515 #, fuzzy -msgid "Strength" -msgstr "Улица" +msgid "System trust model" +msgstr "Системные доверия" -#: plugins/admin/users/class_userManagement.inc:27 +#: plugins/personal/posix/paste_generic.tpl:4 #, fuzzy -msgid "Manage users" -msgstr "Пользователи домена" +msgid "Posix settings" +msgstr "Атрибуты UNIX" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 -#, fuzzy -msgid "You have no permission to change this users password!" -msgstr "У вас недостаточно прав для смены своего пароля." +#: plugins/personal/posix/posix_shadow.tpl:9 +msgid "User must change password on first login" +msgstr "Пользователь должен сменить пароль при первом входе в систему" -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "нет" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "Срок действия пароля истекает" -#: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "Имя объекта" -#: plugins/admin/users/class_userManagement.inc:548 -#, fuzzy -msgid "You have no permission to use this template!" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "Описание" -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 +#: plugins/generic/references/contents.tpl:11 #, fuzzy -msgid "user" -msgstr "пользователи" +msgid "Contents" +msgstr "Контакт" -#: plugins/admin/users/class_userManagement.inc:655 -#, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "У вас недостаточно прав для смены своего пароля." +#: plugins/generic/references/contents.tpl:18 +msgid "This object has no relationship to other objects." +msgstr "Данный объект не имеет ссылок на другие объекты" -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "Шаблон" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "Почта" -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "Создание пользователя на основе шаблона" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "Факс" -#: plugins/admin/users/template.tpl:6 -#, 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 "" -"Можно создавать пользователей на основе шаблонов. При этом многие поля в " -"базе данных будут заполнены автоматически. Выберите нет, чтобы не " -"использовать шаблоны." +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "Прокси-сервер" -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "Продолжить" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: 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 "" -"Сюда входит вся информация об учетной записи этого пользователя, его права " -"доступа в системе, настройки IMAP и т. д. Подумайте еще раз, действительно " -"ли вам нужно удаление, так как GOsa не сможет отменить результаты этой " -"операции." +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "Группа" -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "Управление пользователями" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "Приложение" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "Список пользователей" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "Сервер" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "Имя пользователя" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "Тонкий клиент" -#: plugins/admin/users/class_divListUsers.inc:84 -#, fuzzy -msgid "templates" -msgstr "Шаблон" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "Рабочая станция" -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "GOsa object" -msgstr "Объект" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "Объект группы" -#: plugins/admin/users/class_divListUsers.inc:85 -#, fuzzy -msgid "functional users" -msgstr "Показать обычных пользователей" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "Принтер" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/generic/welcome/welcome.tpl:4 #, fuzzy -msgid "POSIX users" -msgstr "Атрибуты UNIX" +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-сервер вашей компании." -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/generic/welcome/welcome.tpl:8 #, fuzzy -msgid "mail users" -msgstr "Пользователи домена" +msgid "" +"Use 'Sign out' on the upper left to close the connection and 'Main' to get " +"back to the pictogram view." +msgstr "" +"Чтобы завершить сеанс, выберите в меню слева вверху пункт Выход. " +"Чтобы вернуться на начальную страницу, выберите Начало." -#: plugins/admin/users/class_divListUsers.inc:88 -#, fuzzy -msgid "samba users" -msgstr "Пользователи домена" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "Команда разработчиков GOsa" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "Прокси-сервер" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "Добро пожаловать %s!" -#: plugins/admin/users/class_divListUsers.inc:89 -#, fuzzy -msgid "proxy users" -msgstr "Показать пользователей с прокси-серверами" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "Пользователь" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "Сменить пароль" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "Управление подразделениями" -#: plugins/admin/users/class_divListUsers.inc:189 -#, fuzzy -msgid "Apply template" -msgstr "Шаблон" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" +#: plugins/admin/departments/dep_iframe.tpl:7 +msgid "" +"Your browser doesn't support iframes, please use this link to perform the " +"requested operation." msgstr "" -#: plugins/admin/users/class_divListUsers.inc:249 +#: plugins/admin/departments/remove.tpl:6 #, fuzzy -msgid "Edit generic properties" -msgstr "Изменить свойства" +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 не сможет отменить результаты этой операции." -#: plugins/admin/users/class_divListUsers.inc:251 +#: plugins/admin/departments/remove.tpl:10 plugins/admin/acl/remove.tpl:10 #, fuzzy -msgid "Edit UNIX properties" -msgstr "Изменить свойства" +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 в " +"файл. Если вы сделали это и действительно хотите выполнить удаление, нажмите " +"Удалить, иначе нажмите Отмена." -#: plugins/admin/users/class_divListUsers.inc:253 -#, fuzzy -msgid "Edit environment properties" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:4 +#: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 +msgid "Properties" +msgstr "Свойства" -#: plugins/admin/users/class_divListUsers.inc:255 -#, fuzzy -msgid "Edit mail properties" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "Подразделение" -#: plugins/admin/users/class_divListUsers.inc:257 -#, fuzzy -msgid "Edit phone properties" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "Имя создаваемой ветки" -#: plugins/admin/users/class_divListUsers.inc:259 -#, fuzzy -msgid "Edit fax properies" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "Описание подразделения" -#: plugins/admin/users/class_divListUsers.inc:261 -#, fuzzy -msgid "Edit samba properties" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "Категория" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "" +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +msgstr "Категория этой ветки" -#: plugins/admin/users/class_divListUsers.inc:263 -#, fuzzy -msgid "Edit netatalk properties" -msgstr "Изменить свойства" +#: plugins/admin/departments/generic.tpl:39 +msgid "Choose subtree to place department in" +msgstr "Выберите ветку для подразделения" -#: plugins/admin/users/class_divListUsers.inc:264 -#, fuzzy -msgid "Create user from template" -msgstr "Создать шаблон" +#: plugins/admin/departments/generic.tpl:63 +msgid "State where this subtree is located" +msgstr "Адм. единица, в которой находится ветка" -#: plugins/admin/users/class_divListUsers.inc:265 -#, fuzzy -msgid "Create user with this template" -msgstr "Создать шаблон" +#: plugins/admin/departments/generic.tpl:71 +msgid "Location of this subtree" +msgstr "Местоположение ветки" -#: plugins/admin/users/class_divListUsers.inc:297 -#, fuzzy -msgid "inactive" -msgstr "Личный" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "Почтовый адрес для ветки" -#: plugins/admin/users/class_divListUsers.inc:319 +#: 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 "Основный номер факса для ветки" + +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 #, fuzzy -msgid "password" -msgstr "Пароль" +msgid "Administrative settings" +msgstr "Администрирование" -#: plugins/admin/users/class_divListUsers.inc:332 +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "" + +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "Список подразделений" + +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "Delete user" +msgid "Select all" msgstr "Удалить" -#: plugins/admin/users/class_divListUsers.inc:421 +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 #, fuzzy -msgid "Number of listed users" -msgstr "Подразделение" +msgid "Department name" +msgstr "Управление подразделениями" -#: plugins/admin/users/templatize.tpl:2 +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "Действия" + +#: plugins/admin/departments/class_divListDepartment.inc:75 +msgid "Regular expression for matching department names" +msgstr "Регулярное выражение, соответствующее именам подразделений" + +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 #, fuzzy -msgid "Applying a template" -msgstr "Шаблон" +msgid "Submit department" +msgstr "Показать подразделения" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" msgstr "" -#: plugins/admin/users/templatize.tpl:33 -msgid "No templates available!" -msgstr "" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "Создать" + +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 +#: plugins/admin/groups/class_divListGroup.inc:290 +#, fuzzy +msgid "edit" +msgstr "Изменить" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "Список подразделений" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 +#, fuzzy +msgid "Edit this entry" +msgstr "Редактиовать объект" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 +#: plugins/admin/groups/class_divListGroup.inc:297 #, fuzzy -msgid "Department name" -msgstr "Управление подразделениями" +msgid "delete" +msgstr "Удалить" -#: plugins/admin/departments/class_divListDepartment.inc:75 -msgid "Regular expression for matching department names" -msgstr "Регулярное выражение, соответствующее именам подразделений" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 +#, fuzzy +msgid "Delete this entry" +msgstr "Удалить" #: plugins/admin/departments/class_divListDepartment.inc:219 #, fuzzy msgid "department" msgstr "подразделения" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "" - -#: plugins/admin/departments/dep_iframe.tpl:7 -msgid "" -"Your browser doesn't support iframes, please use this link to perform the " -"requested operation." -msgstr "" +#: plugins/admin/departments/class_divListDepartment.inc:229 +#: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 +#, fuzzy +msgid "Number of listed departments" +msgstr "Подразделение" #: plugins/admin/departments/dep_move_confirm.tpl:2 #, fuzzy @@ -2302,220 +1630,344 @@ msgid "" "possibly the best solution is a backup." msgstr "" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "Подразделение" +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 +#, fuzzy +msgid "Fatal error" +msgstr "Терминал-сервер" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "Имя создаваемой ветки" +#: plugins/admin/departments/class_departmentGeneric.inc:313 +msgid "Cannot find an unused tag for this administrative unit!" +msgstr "" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "Описание подразделения" +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "Категория" +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "Продолжить" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "Категория этой ветки" +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "Выберите ветку для подразделения" +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "Объект" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "Адм. единица, в которой находится ветка" +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +msgstr "" + +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "Подразделения" + +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "Страна" + +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +msgstr "Телефон" + +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "" + +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "" + +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "" + +#: plugins/admin/departments/class_departmentManagement.inc:27 +#, fuzzy +msgid "Manage Departments" +msgstr "Подразделения" + +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 +#: plugins/admin/users/class_userManagement.inc:544 +#: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 +#, fuzzy +msgid "Permission error" +msgstr "Права для членов группы" + +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, php-format +msgid "You're about to delete the whole LDAP subtree placed under '%s'." +msgstr "Вы собираетесь удалить целую ветку LDAP с корнем в \"%s\"." + +#: plugins/admin/departments/class_departmentManagement.inc:316 +msgid "" +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/departments/class_departmentManagement.inc:336 +msgid "" +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." +msgstr "" + +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "Доступ" + +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +#, fuzzy +msgid "Manage access control lists" +msgstr "Параметры доступа" + +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +#, fuzzy +msgid "Permission" +msgstr "Права для членов группы" + +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 +#, fuzzy +msgid "ACL management" +msgstr "Управление подразделениями" + +#: 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 не сможет отменить " +"результаты этой операции." + +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 +#, fuzzy +msgid "List of acls" +msgstr "Список групп" + +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "" + +#: plugins/admin/acl/class_divListACL.inc:84 +#, fuzzy +msgid "Display acls matching" +msgstr "Шаблон для групп" + +#: plugins/admin/acl/class_divListACL.inc:215 +#, fuzzy +msgid "Edit acl role" +msgstr "Пользователи домена" + +#: plugins/admin/acl/class_divListACL.inc:223 +#, fuzzy +msgid "Delete acl role" +msgstr "Удалить" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "Местоположение ветки" +#: plugins/admin/acl/class_divListACL.inc:242 +#, fuzzy +msgid "Edit acl" +msgstr "Список систем" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "Почтовый адрес для ветки" +#: plugins/admin/acl/class_divListACL.inc:246 +#, fuzzy +msgid "Delete acl" +msgstr "Удалить" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "Основный телефонный номер для ветки" +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 +#, fuzzy +msgid "Access control roles" +msgstr "Параметры доступа" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "Основный номер факса для ветки" +#: plugins/admin/acl/class_aclRole.inc:27 +#, fuzzy +msgid "Edit AC roles" +msgstr "Доступ" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 #, fuzzy -msgid "Administrative settings" -msgstr "Администрирование" +msgid "All categories" +msgstr "Категория" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "" +#: plugins/admin/acl/class_aclRole.inc:131 +#, fuzzy +msgid "Reset ACL" +msgstr "Удалить" -#: plugins/admin/departments/remove.tpl:6 +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 #, 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 "" -"Это включает все учетные записи, системы и т.п. для данного " -"подразделения. Подумайте еще раз, действительно ли вы хотите его удалить, " -"так как GOsa не сможет отменить результаты этой операции." +msgid "One level" +msgstr "Уровень информативности" -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "Управление подразделениями" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +#, fuzzy +msgid "Current object" +msgstr "Текущий пароль" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 #, fuzzy -msgid "Fatal error" -msgstr "Терминал-сервер" +msgid "Complete subtree" +msgstr "не полный" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -msgid "Cannot find an unused tag for this administrative unit!" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +#, fuzzy +msgid "Down" +msgstr "Домен" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "Объект" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "Изменить" -#: plugins/admin/departments/class_departmentGeneric.inc:504 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 #, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "" +msgid "Delete" +msgstr "Удалить" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "Подразделения" +#: plugins/admin/acl/class_aclRole.inc:401 +#, fuzzy +msgid "No ACL settings for this category" +msgstr "Описание группы" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "Страна" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "Описание группы" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" -msgstr "Телефон" +#: plugins/admin/acl/class_aclRole.inc:408 +#, fuzzy +msgid "Edit category ACL" +msgstr "Список систем" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "" +#: plugins/admin/acl/class_aclRole.inc:409 +#, fuzzy +msgid "Reset category ACL" +msgstr "Категория" -#: plugins/admin/departments/class_departmentGeneric.inc:611 +#: plugins/admin/acl/class_aclRole.inc:425 #, php-format -msgid "Adding tag (%s) to object '%s'" +msgid "Edit ACL for '%s', scope is '%s'" msgstr "" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" msgstr "" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/acl/class_aclRole.inc:621 #, fuzzy -msgid "Manage Departments" -msgstr "Подразделения" +msgid "Object in use" +msgstr "Имя объекта" -#: plugins/admin/departments/class_departmentManagement.inc:243 +#: plugins/admin/acl/class_aclRole.inc:621 #, php-format -msgid "You're about to delete the whole LDAP subtree placed under '%s'." -msgstr "Вы собираетесь удалить целую ветку LDAP с корнем в \"%s\"." - -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" - -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." +msgid "This role cannot be removed while it is in use by these objects:" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:112 -#: plugins/admin/ogroups/tabs_ogroups.inc:298 -#, fuzzy -msgid "Phone queue" -msgstr "Номер телефона" - -#: plugins/admin/ogroups/tabs_ogroups.inc:140 +#: plugins/admin/acl/tabs_acl_role.inc:28 #, fuzzy -msgid "Systems" -msgstr "Системы" - -#: plugins/admin/ogroups/tabs_ogroups.inc:150 -#: plugins/admin/ogroups/tabs_ogroups.inc:167 -#: plugins/admin/ogroups/tabs_ogroups.inc:275 -msgid "Devices" -msgstr "Устройства" - -#: plugins/admin/ogroups/tabs_ogroups.inc:159 -msgid "Startup" -msgstr "Запуск" +msgid "ACL Templates" +msgstr "Шаблон" -#: plugins/admin/ogroups/tabs_ogroups.inc:176 -msgid "FAI summary" +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" msgstr "" -#: plugins/admin/ogroups/tabs_ogroups.inc:204 -msgid "Applications" -msgstr "Приложения" - -#: plugins/admin/ogroups/tabs_ogroups.inc:269 -msgid "Terminals" -msgstr "Терминалы" - -#: plugins/admin/ogroups/ogroup_objects.tpl:6 -msgid "Select objects to add" -msgstr "Выбрать объекты для добавления" +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "Выберите ветку для группы" -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:21 +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 #, fuzzy -msgid "Select to search within subtrees" -msgstr "Искать в поддеревьях" +msgid "New ACL" +msgstr "Создать" -#: plugins/admin/ogroups/ogroup_objects.tpl:36 -msgid "Display objects of department" -msgstr "Показать объекты подразделения" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +#, fuzzy +msgid "ACL type" +msgstr "Тип" -#: plugins/admin/ogroups/ogroup_objects.tpl:40 -msgid "Display objects matching" -msgstr "Показать совпадения объектов" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +#, fuzzy +msgid "Select an acl type" +msgstr "Выберите, чтобы просмотреть серверы" -#: plugins/admin/ogroups/ogroup_objects.tpl:41 -msgid "Regular expression for matching object names" -msgstr "Регулярное выражение, соответствующее именам объектов" +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +#, fuzzy +msgid "List of available ACL categories" +msgstr "Выберите тип мыши" #: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 #: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 msgid "Object groups" msgstr "Объединения" @@ -2524,22 +1976,24 @@ msgstr "Объединения" msgid "Manage object groups" msgstr "Название группы" +#: plugins/admin/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "Ошибка LDAP:" + #: plugins/admin/ogroups/class_ogroupManagement.inc:255 #: plugins/admin/ogroups/class_ogroupManagement.inc:331 #, fuzzy msgid "object group" -msgstr "Объект группы" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "Сервер" +msgstr "Объект группы" -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "Рабочая станция" +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "Пользователь" #: plugins/admin/ogroups/class_ogroupManagement.inc:533 #, fuzzy @@ -2551,15 +2005,40 @@ msgstr "Рабочая станция Windows" msgid "Terminal" msgstr "Терминалы" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -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 не " +"сможет восстановить эти данные." -#: plugins/admin/ogroups/paste_generic.tpl:7 +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 #, fuzzy -msgid "Please enter the new object group name" -msgstr "Введите адрес сервера" +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +msgstr "" +"Если вы уверены в своих действиях, нажмите на кнопку Удалить, иначе " +"нажмите Отмена." + +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "Группа" + +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "Название группы" + +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "Описание группы" + +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "Включаемые объекты" #: plugins/admin/ogroups/class_divListOGroup.inc:59 #: plugins/admin/ogroups/class_divListOGroup.inc:60 @@ -2567,12 +2046,30 @@ msgstr "Введите адрес сервера" msgid "List of object groups" msgstr "Название группы" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -msgstr "Объект группы" +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "Показать группы" #: plugins/admin/ogroups/class_divListOGroup.inc:89 #: plugins/admin/ogroups/class_divListOGroup.inc:90 @@ -2586,6 +2083,13 @@ msgstr "группы" msgid "nested groups" msgstr "Объединения" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "Показать группы приложений" + #: plugins/admin/ogroups/class_divListOGroup.inc:95 #: plugins/admin/ogroups/class_divListOGroup.inc:96 #, fuzzy @@ -2703,6 +2207,11 @@ msgstr "телефоны" msgid "applications" msgstr "приложения" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "нет" + #: plugins/admin/ogroups/class_ogroup.inc:471 msgid "too many different objects!" msgstr "слишком много различных объектов!" @@ -2721,1736 +2230,2076 @@ msgstr "Рабочая станция" msgid "Non existing dn:" msgstr "Не существующий dn:" -#: plugins/admin/ogroups/class_ogroup.inc:872 +#: plugins/admin/ogroups/class_ogroup.inc:872 +#, fuzzy +msgid "You can combine two different object types at maximum, only!" +msgstr "" +"Вы можете комбинировать не более двух различных классов в одном объекте!" + +#: plugins/admin/ogroups/class_ogroup.inc:1056 +#, fuzzy +msgid "Object group generic" +msgstr "Объект группы" + +#: plugins/admin/ogroups/class_ogroup.inc:1067 +#, fuzzy +msgid "Member" +msgstr "Включаемые объекты" + +#: plugins/admin/ogroups/tabs_ogroups.inc:112 +#: plugins/admin/ogroups/tabs_ogroups.inc:298 +#, fuzzy +msgid "Phone queue" +msgstr "Номер телефона" + +#: plugins/admin/ogroups/tabs_ogroups.inc:140 +#, fuzzy +msgid "Systems" +msgstr "Системы" + +#: plugins/admin/ogroups/tabs_ogroups.inc:150 +#: plugins/admin/ogroups/tabs_ogroups.inc:167 +#: plugins/admin/ogroups/tabs_ogroups.inc:275 +msgid "Devices" +msgstr "Устройства" + +#: plugins/admin/ogroups/tabs_ogroups.inc:159 +msgid "Startup" +msgstr "Запуск" + +#: plugins/admin/ogroups/tabs_ogroups.inc:176 +msgid "FAI summary" +msgstr "" + +#: plugins/admin/ogroups/tabs_ogroups.inc:204 +msgid "Applications" +msgstr "Приложения" + +#: plugins/admin/ogroups/tabs_ogroups.inc:269 +msgid "Terminals" +msgstr "Терминалы" + +#: plugins/admin/ogroups/paste_generic.tpl:7 +#, fuzzy +msgid "Please enter the new object group name" +msgstr "Введите адрес сервера" + +#: plugins/admin/ogroups/ogroup_objects.tpl:6 +msgid "Select objects to add" +msgstr "Выбрать объекты для добавления" + +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:21 +#, fuzzy +msgid "Select to search within subtrees" +msgstr "Искать в поддеревьях" + +#: plugins/admin/ogroups/ogroup_objects.tpl:36 +msgid "Display objects of department" +msgstr "Показать объекты подразделения" + +#: plugins/admin/ogroups/ogroup_objects.tpl:40 +msgid "Display objects matching" +msgstr "Показать совпадения объектов" + +#: plugins/admin/ogroups/ogroup_objects.tpl:41 +msgid "Regular expression for matching object names" +msgstr "Регулярное выражение, соответствующее именам объектов" + +#: plugins/admin/users/class_userManagement.inc:27 +#, fuzzy +msgid "Manage users" +msgstr "Пользователи домена" + +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 +#, fuzzy +msgid "You have no permission to change this users password!" +msgstr "У вас недостаточно прав для смены своего пароля." + +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: plugins/admin/users/class_userManagement.inc:548 +#, fuzzy +msgid "You have no permission to use this template!" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 +#, fuzzy +msgid "user" +msgstr "пользователи" + +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "У вас недостаточно прав для смены своего пароля." + +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "Шаблон" + +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" +msgstr "Создание пользователя на основе шаблона" + +#: plugins/admin/users/template.tpl:6 +#, 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 "" +"Можно создавать пользователей на основе шаблонов. При этом многие поля в " +"базе данных будут заполнены автоматически. Выберите нет, чтобы не " +"использовать шаблоны." + +#: plugins/admin/users/templatize.tpl:2 +#, fuzzy +msgid "Applying a template" +msgstr "Шаблон" + +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" + +#: plugins/admin/users/templatize.tpl:33 +msgid "No templates available!" +msgstr "" + +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +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." +msgstr "" +"Сюда входит вся информация об учетной записи этого пользователя, его права " +"доступа в системе, настройки IMAP и т. д. Подумайте еще раз, действительно " +"ли вам нужно удаление, так как GOsa не сможет отменить результаты этой " +"операции." + +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "Список пользователей" + +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "Имя пользователя" + +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "You can combine two different object types at maximum, only!" -msgstr "" -"Вы можете комбинировать не более двух различных классов в одном объекте!" +msgid "templates" +msgstr "Шаблон" -#: plugins/admin/ogroups/class_ogroup.inc:1056 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "Object group generic" -msgstr "Объект группы" +msgid "GOsa object" +msgstr "Объект" -#: plugins/admin/ogroups/class_ogroup.inc:1067 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "Member" -msgstr "Включаемые объекты" +msgid "functional users" +msgstr "Показать обычных пользователей" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "Название группы" +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +#, fuzzy +msgid "Posix" +msgstr "Прокси-сервер" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "Включаемые объекты" +#: plugins/admin/users/class_divListUsers.inc:86 +#, fuzzy +msgid "POSIX users" +msgstr "Атрибуты UNIX" -#: 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 не " -"сможет восстановить эти данные." +#: plugins/admin/users/class_divListUsers.inc:87 +#, fuzzy +msgid "mail users" +msgstr "Пользователи домена" -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "Факс" +#: plugins/admin/users/class_divListUsers.inc:88 +#, fuzzy +msgid "samba users" +msgstr "Пользователи домена" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: plugins/admin/users/class_divListUsers.inc:89 +#, fuzzy +msgid "proxy users" +msgstr "Показать пользователей с прокси-серверами" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "Тонкий клиент" +#: plugins/admin/users/class_divListUsers.inc:96 +#: plugins/admin/groups/group_objects.tpl:46 +msgid "Display users matching" +msgstr "Фильтр" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "Имя объекта" +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "Сменить пароль" -#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "Contents" -msgstr "Контакт" - -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." -msgstr "Данный объект не имеет ссылок на другие объекты" +msgid "Apply template" +msgstr "Шаблон" -#: 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." +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" msgstr "" -"Это начальная страница GOsa. Из меню слева или среди пиктограмм ниже вы " -"можете выбрать нужный вам раздел. Все изменения будут сразу же переноситься " -"на LDAP-сервер вашей компании." -#: plugins/generic/welcome/welcome.tpl:8 +#: plugins/admin/users/class_divListUsers.inc:249 #, fuzzy -msgid "" -"Use 'Sign out' on the upper left to close the connection and 'Main' to get " -"back to the pictogram view." -msgstr "" -"Чтобы завершить сеанс, выберите в меню слева вверху пункт Выход. " -"Чтобы вернуться на начальную страницу, выберите Начало." - -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "Команда разработчиков GOsa" - -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "Добро пожаловать %s!" +msgid "Edit generic properties" +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/users/class_divListUsers.inc:251 +#, fuzzy +msgid "Edit UNIX properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "Выбрать объекты для добавления" +#: plugins/admin/users/class_divListUsers.inc:253 +#, fuzzy +msgid "Edit environment properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "Показать группы с пользователями" +#: plugins/admin/users/class_divListUsers.inc:255 +#, fuzzy +msgid "Edit mail properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "Выбрать объекты для добавления" +#: plugins/admin/users/class_divListUsers.inc:257 +#, fuzzy +msgid "Edit phone properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:259 +#, fuzzy +msgid "Edit fax properies" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:261 +#, fuzzy +msgid "Edit samba properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" msgstr "" -#: include/utils/class_msgPool.inc:42 -#, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:263 +#, fuzzy +msgid "Edit netatalk properties" +msgstr "Изменить свойства" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:264 +#, fuzzy +msgid "Create user from template" +msgstr "Создать шаблон" -#: include/utils/class_msgPool.inc:49 -#, php-format -msgid "This '%s' object will be deleted:" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:265 +#, fuzzy +msgid "Create user with this template" +msgstr "Создать шаблон" -#: include/utils/class_msgPool.inc:53 -#, php-format -msgid "These objects will be deleted: %s" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:297 +#, fuzzy +msgid "inactive" +msgstr "Личный" -#: include/utils/class_msgPool.inc:55 -#, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:319 +#, fuzzy +msgid "password" +msgstr "Пароль" -#: include/utils/class_msgPool.inc:63 +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 #, fuzzy -msgid "You have no permission to delete this object!" -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Not allowed" +msgstr "Сменить пароль" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 +#: plugins/admin/users/class_divListUsers.inc:332 #, fuzzy -msgid "You have no permission to delete the object:" -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Delete user" +msgstr "Удалить" -#: include/utils/class_msgPool.inc:74 +#: plugins/admin/users/class_divListUsers.inc:421 #, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Number of listed users" +msgstr "Подразделение" -#: include/utils/class_msgPool.inc:81 +#: plugins/admin/users/password.tpl:4 #, fuzzy -msgid "You have no permission to create this object!" -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 "" +"В полях ниже вы можете изменить пароль выбранного пользователя. Изменения " +"вступят в силу немедленно. Пожалуйста, запомните новый пароль, так как иначе " +"пользователь не сможет войти в систему." -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#: plugins/admin/users/password.tpl:21 #, fuzzy -msgid "You have no permission to create the object:" -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Strength" +msgstr "Улица" + +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "Управление группами" + +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "Выбрать пользователей для добавления" + +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "Выберите, чтобы просмотреть серверы" -#: include/utils/class_msgPool.inc:92 +#: plugins/admin/groups/group_objects.tpl:30 #, fuzzy -msgid "You have no permission to create these objects:" -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Search within subtree" +msgstr "Искать в поддеревьях" -#: include/utils/class_msgPool.inc:99 -#, fuzzy -msgid "You have no permission to modify this object!" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "Подразделение" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 -#, fuzzy -msgid "You have no permission to modify the object:" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "Регулярное выражение, соответствующее именам пользователей" -#: include/utils/class_msgPool.inc:110 -#, fuzzy -msgid "You have no permission to modify these objects:" -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." +msgstr "" +"Возможно, это основная группа пользователей. Еще раз проверте что Вы " +"действительно хотите удалить ее, так как GOsa не сможет отменить результаты " +"этой операции." -#: include/utils/class_msgPool.inc:117 -#, fuzzy -msgid "You have no permission to view this object!" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "Имя группы, соответствующее стандарту POSIX" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 -#, fuzzy -msgid "You have no permission to view the object:" -msgstr "У вас недостаточно прав для создания телефонов в этой ветке." +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" +msgstr "" +"Обычно идентификаторы создаются автоматически, но вы можете выбрать указание " +"вручную" -#: include/utils/class_msgPool.inc:128 -#, fuzzy -msgid "You have no permission to view these objects:" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "Указать GID вручную" -#: include/utils/class_msgPool.inc:135 -#, fuzzy -msgid "You have no permission to move this object!" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "Указанный вручную GID" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 -#, fuzzy -msgid "You have no permission to move the object:" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 +msgid "Select to create a samba conform group" +msgstr "Создать группу для работы с Samba" -#: include/utils/class_msgPool.inc:146 -#, fuzzy -msgid "You have no permission to move these objects:" -msgstr "У вас недостаточно прав для удаления этого стоп-листа." +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "в домене" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "Члены телефонной группы" + +#: plugins/admin/groups/generic.tpl:155 #, fuzzy -msgid "Connection information" -msgstr "Личная информация" +msgid "Members are in a nagios group" +msgstr "Члены телефонной группы" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "Невозможно подключиться к серверу базы данных!" +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "Члены группы" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "Невозможно выбрать базу данных!" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "Настроить" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:163 +#, fuzzy +msgid "Cannot find group SID in your configuration!" +msgstr "Не могу найти SID в базе LDAP или в сонфигурационном файле!" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "Невозможно выбрать базу данных!" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Группа Samba" -#: include/utils/class_msgPool.inc:194 -#, fuzzy, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "Значение поля \"Факс\" содержит недопустимый номер телефона." +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "Администраторы домена" -#: include/utils/class_msgPool.inc:200 -#, fuzzy, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" -msgstr "" -"Не удается найти команду \"%s\", указанную в поле POSTCREATE модуля \"%s\"." +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "Пользователи домена" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "Указанное имя уже используется." +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "Непривилегированные пользователи домена" -#: include/utils/class_msgPool.inc:209 +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +msgid "Special group (%d)" +msgstr "Специальная группа (%d)" -#: include/utils/class_msgPool.inc:211 +#: plugins/admin/groups/class_groupGeneric.inc:654 +#, fuzzy +msgid "! unknown id" +msgstr "состояние неизвестно" + +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "'%s' command for plugin %s is invalid!" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:213 +#: plugins/admin/groups/class_groupGeneric.inc:918 #, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "Указанное имя уже используется." +msgid "Cannot find any SID for '%s'!" +msgstr "Удалить" -#: include/utils/class_msgPool.inc:221 +#: plugins/admin/groups/class_groupGeneric.inc:923 #, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "Невозможно выбрать базу данных!" +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "Удалить" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1213 +#, fuzzy +msgid "Generic group settings" +msgstr "Общая информация о пользователе" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "Группы" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "Невозможно выбрать базу данных!" +#: plugins/admin/groups/class_groupGeneric.inc:1225 +#, fuzzy +msgid "Phone pickup group" +msgstr "Члены телефонной группы" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "Значение 'UID' слишком маленькое." +#: plugins/admin/groups/class_groupGeneric.inc:1226 +#, fuzzy +msgid "Nagios group" +msgstr "Контакт" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1229 +#, fuzzy +msgid "Group member" +msgstr "Члены группы" -#: include/utils/class_msgPool.inc:245 -#, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "Значение 'UID' слишком маленькое." +#: plugins/admin/groups/class_groupGeneric.inc:1230 +#, fuzzy +msgid "Samba group type" +msgstr "Группа Samba" -#: include/utils/class_msgPool.inc:247 -#, fuzzy, php-format -msgid "'%s' must be %d or above!" -msgstr "" -"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней " -"реализованы некоторые новые функции и исправлены некоторые ошибки." +#: plugins/admin/groups/class_groupGeneric.inc:1231 +#, fuzzy +msgid "Samba domain name" +msgstr "Домашний каталог Samba" -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 +#, fuzzy +msgid "Samba SID" +msgstr "Samba" -#: include/utils/class_msgPool.inc:260 -#, fuzzy, php-format -msgid "There is already an entry with this '%s' attribute in the system!" +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" msgstr "" -"Пользователь с таким регистрационным именем в базе данных уже существует." -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "Обязательное поле \"Имя\" не заполнено." +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 +#, fuzzy +msgid "group" +msgstr "группы" + +#: plugins/admin/groups/class_divListGroup.inc:55 +#: plugins/admin/groups/class_divListGroup.inc:56 +msgid "List of groups" +msgstr "Список групп" -#: include/utils/class_msgPool.inc:274 -msgid "Example" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:84 +msgid "Select to see groups that are primary groups of users" +msgstr "Выберите, чтобы просмотреть список основных групп пользователей" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "Значение поля \"Имя\" содержит недопустимые символы." +#: plugins/admin/groups/class_divListGroup.inc:85 +#, fuzzy +msgid "primary groups" +msgstr "Основная группа" -#: include/utils/class_msgPool.inc:292 -#, php-format -msgid "'%s' is not allowed:" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:86 +#, fuzzy +msgid "samba groups mappings" +msgstr "Samba" -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "Сменить пароль" +#: plugins/admin/groups/class_divListGroup.inc:87 +#, fuzzy +msgid "samba groups" +msgstr "Группа Samba" -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "Значение поля \"Имя\" содержит недопустимые символы." +#: plugins/admin/groups/class_divListGroup.inc:88 +#, fuzzy +msgid "application settings" +msgstr "приложения" -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "Удалить параметры" +#: plugins/admin/groups/class_divListGroup.inc:90 +#, fuzzy +msgid "mail settings" +msgstr "Почтовые настройки пользователя" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 -#: 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/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 -#: ihtml/themes/default/msg_dialog.tpl:79 -#: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 -#, php-format -msgid "Cancel" -msgstr "Отмена" +#: plugins/admin/groups/class_divListGroup.inc:91 +#, fuzzy +msgid "mail groups" +msgstr "Показать группы с эл. почтой" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "Выберите, чтобы просмотреть список обычных групп" -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "Применить" +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "Показать обычные группы" -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "Сохранить" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "Название группы" -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "Добавить" +#: plugins/admin/groups/paste_generic.tpl:1 +#, fuzzy +msgid "Group settings" +msgstr "Настройки Samba" -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "Добавить" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#, fuzzy +msgid "GOsa settings 2/3" +msgstr "Почтовые настройки пользователя" -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "Удалить" +#: setup/class_setupStep_Config2.inc:88 +#, fuzzy +msgid "Customize special parameters" +msgstr "Изменить параметры" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "Установить" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +#, fuzzy +msgid "No" +msgstr "нет" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "Изменить" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +#, fuzzy +msgid "Yes" +msgstr "Системы" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "Пользователи домена" +#: setup/setup_frame.tpl:12 +#, fuzzy +msgid "GOsa setup wizard" +msgstr "Почтовые настройки пользователя" -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "Назад" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Installation" +msgstr "Рабочая станция" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "Для этой учетной записи нет корректных расширений GOsa." +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Steps" +msgstr "Системы" -#: include/utils/class_msgPool.inc:381 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." -msgstr "" -"В этой учетной записи используются атрибуты POSIX. Вы можете отключить их " -"использование, щелкнув ниже." +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "Готово" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, 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." +#: setup/class_setupStep_Finish.inc:38 +#, fuzzy +msgid "Write configuration file" +msgstr "Настроить" -#: include/utils/class_msgPool.inc:400 -#, fuzzy, php-format +#: setup/class_setupStep_Finish.inc:39 +#, fuzzy +msgid "Finish - write the configuration file" +msgstr "Настроить" + +#: setup/class_setupStep_Finish.inc:101 +#, fuzzy msgid "" -"This account has %s settings disabled. You can enable them by clicking below." +"Your configuration file is currently world readable. Please update the file " +"permissions!" msgstr "" -"В этой учетной записи не используются атрибуты POSIX. Вы можете использовать " -"их, щелкнув ниже." +"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана." -#: include/utils/class_msgPool.inc:403 -#, fuzzy, php-format -msgid "" -"This account has %s settings disabled. To enable them, you'll need to add " -"the %s settings first!" +#: setup/class_setupStep_Finish.inc:103 +#, fuzzy +msgid "The configuration is currently not readable or it does not exists." msgstr "" -"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их " -"использование, сначала нужно удалить учетную запись Samba." +"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана." -#: include/utils/class_msgPool.inc:410 +#: setup/class_setupStep_Finish.inc:112 #, fuzzy, php-format msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +"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 "" -"В этой учетной записи используются атрибуты POSIX. Чтобы отключить их " -"использование, сначала нужно удалить учетную запись Samba." - -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "Дополнительные записи в fstab" - -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Атрибуты UNIX" - -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" -msgstr "Нажмите 'Изменить' чтобы отредактировать данные в этой форме." - -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "Январь" +"Поместив файл gosa.conf в каталог /etc/gosa, убедитесь, что только " +"пользователь веб-сервера может его читать. Для этого вам, возможно, " +"понадобится выполнить следующие команды:" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "Февраль" +#: setup/setup_finish.tpl:3 +#, fuzzy +msgid "Create your configuration file" +msgstr "Настроить" -#: include/utils/class_msgPool.inc:436 -msgid "March" -msgstr "Март" +#: setup/setup_finish.tpl:13 +#, fuzzy +msgid "Download configuration" +msgstr "Системная информация" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "Апрель" +#: setup/setup_finish.tpl:18 +#, fuzzy +msgid "Status: " +msgstr "Состояние" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "Май" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "Июнь" +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "Поиск" -#: include/utils/class_msgPool.inc:437 -msgid "July" -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 +#: include/utils/class_msgPool.inc:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 +#, php-format +msgid "Apply" +msgstr "Применить" -#: include/utils/class_msgPool.inc:437 -msgid "August" -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 +#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 +#: ihtml/themes/default/copyPasteDialog.tpl:21 +#: ihtml/themes/default/msg_dialog.tpl:79 +#: ihtml/themes/default/msg_dialog.tpl:134 +#, php-format +msgid "Cancel" +msgstr "Отмена" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "Сентябрь" +#: setup/setup_ldap.tpl:25 +#, fuzzy +msgid "LDAP connection" +msgstr "Отключение" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "Октябрь" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "Местоположение" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "Ноябрь" +#: setup/setup_ldap.tpl:37 +#, fuzzy +msgid "Connection URL" +msgstr "Подключение" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "Декабрь" +#: setup/setup_ldap.tpl:45 +#, fuzzy +msgid "TLS connection" +msgstr "Соединение..." -#: include/utils/class_msgPool.inc:444 +#: setup/setup_ldap.tpl:65 #, fuzzy -msgid "Sunday" -msgstr "Имя сервера" +msgid "Reload" +msgstr "чтение" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_ldap.tpl:69 #, fuzzy -msgid "Monday" -msgstr "месяц" +msgid "Authentication" +msgstr "Рабочая станция Windows" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" -msgstr "" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "DN администратора" -#: include/utils/class_msgPool.inc:444 -msgid "Wednesday" -msgstr "" +#: setup/setup_ldap.tpl:78 +#, fuzzy +msgid "Select user" +msgstr "Удалить" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" msgstr "" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" -msgstr "" +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "Пароль администратора" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_ldap.tpl:101 +#, fuzzy +msgid "Schema based settings" +msgstr "Настройки Samba" + +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_ldap.tpl:117 #, fuzzy -msgid "read operation" -msgstr "Почтовые настройки" +msgid "Current status" +msgstr "Состояние системы" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: 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 "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_language.tpl:9 #, fuzzy -msgid "modify operation" -msgstr "Личная информация" +msgid "Please select your preferred language here" +msgstr "Язык по умолчанию" -#: include/utils/class_msgPool.inc:452 +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 #, fuzzy -msgid "delete operation" -msgstr "Выберите чтобы посмотреть рабочие станции" +msgid "Language setup" +msgstr "Язык" -#: include/utils/class_msgPool.inc:452 +#: setup/class_setupStep_Language.inc:42 #, fuzzy -msgid "search operation" -msgstr "Учетная запись" +msgid "This step allows you to select your preferred language." +msgstr "Язык по умолчанию" -#: include/utils/class_msgPool.inc:452 +#: setup/class_setupStep_Language.inc:47 #, fuzzy -msgid "authentication" -msgstr "Рабочая станция Windows" +msgid "Automatic" +msgstr "автоматически" -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "Невозможно выполнить запрос к базе данных!" +#: setup/setup_config3.tpl:2 +#, fuzzy +msgid "GOsa core settings" +msgstr "Почтовые настройки пользователя" -#: include/utils/class_msgPool.inc:457 +#: setup/setup_config3.tpl:6 #, fuzzy -msgid "LDAP operation failed!" -msgstr "Невозможно выполнить запрос к базе данных!" +msgid "Disable primary group filter" +msgstr "Показать группы пользователей" -#: include/utils/class_msgPool.inc:472 +#: setup/setup_config3.tpl:18 #, fuzzy -msgid "Upload failed!" -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +msgid "Display summary in listings" +msgstr "Шаблон для групп" -#: include/utils/class_msgPool.inc:475 -#, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Служба печати" +#: setup/setup_config3.tpl:30 +#, fuzzy +msgid "Honour administrative units" +msgstr "Управление группами" -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" -msgstr "" +#: setup/setup_config3.tpl:42 +#, fuzzy +msgid "Smarty compile directory" +msgstr "Домашний каталог" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" +#: setup/setup_config3.tpl:51 +msgid "SNMP community" msgstr "" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" -msgstr "" +#: setup/setup_config3.tpl:60 +#, fuzzy +msgid "Path for PPD storage" +msgstr "Хэширование паролей" -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "Описание группы" +#: setup/setup_config3.tpl:77 +#, fuzzy +msgid "Path for kiosk profile storage" +msgstr "Почтовые настройки пользователя" -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "Описание группы" +#: setup/setup_config3.tpl:96 +#, fuzzy +msgid "Override sudo role ou" +msgstr "состояние неизвестно" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" +#: 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 "" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "Удалить" +#: setup/setup_config3.tpl:172 +msgid "Login and session" +msgstr "" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "Удалить" +#: setup/setup_config3.tpl:175 +#, fuzzy +msgid "Login attribute" +msgstr "Атрибут DN пользователей" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "Удалить" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" +msgstr "" -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "Список подразделений" +#: setup/setup_config3.tpl:198 +msgid "Enforce encrypted connections" +msgstr "" -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "Удалить" +#: setup/setup_config3.tpl:210 +#, fuzzy +msgid "Warn if session is not encrypted" +msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." -#: include/utils/class_msgPool.inc:541 -#, fuzzy, php-format -msgid "Checking for %s support" -msgstr "Проверка поддержки gettext" +#: setup/setup_config3.tpl:222 +#, fuzzy +msgid "Remember dialog filter settings" +msgstr "Общая информация о пользователе" -#: include/utils/class_msgPool.inc:547 -#, php-format -msgid "Install and activate the %s PHP module." -msgstr "" +#: setup/setup_config3.tpl:234 +#, fuzzy +msgid "Session lifetime" +msgstr "Конфликт сеансов" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/setup_config3.tpl:243 +msgid "Debugging" msgstr "" -#: include/class_certificate.inc:73 +#: setup/setup_config3.tpl:247 #, fuzzy -msgid "Certificate is empty!" -msgstr "Сертификаты" +msgid "Show PHP errors" +msgstr "Ошибка LDAP:" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: setup/setup_config3.tpl:259 +#, fuzzy +msgid "Maximum LDAP query time" +msgstr "Размер квоты" + +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/class_certificate.inc:115 +#: setup/setup_config3.tpl:289 #, fuzzy -msgid "Cannot extract information for non PEM certificates!" -msgstr "Не удается создать квоту IMAP. Ответ сервера: \"%s\"." +msgid "Debug level" +msgstr "Уровень информативности" -#: include/class_certificate.inc:219 +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "Изменить сертификаты" +msgid "Disabled" +msgstr "отключен" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 #, fuzzy -msgid "Close" -msgstr "Выбрать" +msgid "Enabled" +msgstr "отключен" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 +#: setup/class_setupStep_Welcome.inc:38 #, fuzzy -msgid "Go to root department" -msgstr "Список подразделений" +msgid "Welcome" +msgstr "Добро пожаловать %s!" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 +#: setup/class_setupStep_Welcome.inc:39 #, fuzzy -msgid "Root" -msgstr "Перезагрузить" +msgid "The welcome message" +msgstr "Удалить" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 +#: setup/class_setupStep_Welcome.inc:40 #, fuzzy -msgid "Go up one department" -msgstr "Подразделение" +msgid "Welcome to GOsa setup wizard" +msgstr "Добро пожаловать в раздел настройки GOsa!" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 #, fuzzy -msgid "Go to users department" -msgstr "Выберите подразделение" +msgid "GOsa settings 1/3" +msgstr "Почтовые настройки пользователя" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 +#: setup/class_setupStep_Config1.inc:76 #, fuzzy -msgid "Home" -msgstr "Имя системы" +msgid "GOsa generic settings" +msgstr "Общая информация о пользователе" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" +#: setup/class_setupStep_Config1.inc:118 +#, php-format +msgid "The specified value for '%s' must be a numeric value" msgstr "" -#: include/class_MultiSelectWindow.inc:530 +#: 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 "Inconsistent DN encoding detected: '%s'" +msgid "Don't add a trailing comma to '%s'." msgstr "" -#: include/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" +msgstr "Структурная единица (OU) пользователей" + +#: 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/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" +#: setup/class_setupStep_Config1.inc:134 +msgid "The given password minimum length is not numeric." msgstr "" -#: include/php_setup.inc:100 +#: setup/class_setupStep_Config1.inc:137 #, fuzzy -msgid "Send bugreport" -msgstr "Отправитель" +msgid "The given password differ value is not numeric." +msgstr "Значение поля \"Квота\" некорректно." -#: include/php_setup.inc:105 +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 #, fuzzy -msgid "Toggle information" -msgstr "Личная информация" +msgid "LDAP schema check" +msgstr "Сервер подкачки" -#: include/php_setup.inc:115 -#, fuzzy -msgid "PHP error" -msgstr "Ошибка LDAP:" +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" +msgstr "" -#: include/php_setup.inc:134 -msgid "class" +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Настройки Samba" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" msgstr "" -#: include/php_setup.inc:140 +#: setup/setup_config2.tpl:31 #, fuzzy -msgid "function" -msgstr "Действие" +msgid "RID base" +msgstr "Базы данных" -#: include/php_setup.inc:145 +#: setup/setup_config2.tpl:46 #, fuzzy -msgid "static" -msgstr "Состояние" +msgid "Workstation container" +msgstr "Имя рабочий станции" -#: include/php_setup.inc:149 +#: setup/setup_config2.tpl:61 #, fuzzy -msgid "method" -msgstr "Почтовые настройки" +msgid "Samba SID mapping" +msgstr "Samba" -#: include/php_setup.inc:182 -msgid "Trace" +#: setup/setup_config2.tpl:71 +#, fuzzy +msgid "Timezone" +msgstr "Мобильный" + +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "Язык по умолчанию" + +#: setup/setup_config2.tpl:96 +#, fuzzy +msgid "Additional GOsa settings" +msgstr "Дополнительные записи в fstab" + +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/php_setup.inc:183 +#: setup/setup_config2.tpl:112 #, fuzzy -msgid "File" -msgstr "Файлы" +msgid "Enable DNS extension" +msgstr "Удалить параметры" -#: include/php_setup.inc:183 +#: setup/setup_config2.tpl:124 #, fuzzy -msgid "Line" -msgstr "в" +msgid "Enable DHCP extension" +msgstr "Удалить параметры" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "Тип" +#: setup/setup_config2.tpl:136 +#, fuzzy +msgid "Enable mime type management" +msgstr "Управление системами" -#: include/php_setup.inc:184 +#: setup/setup_config2.tpl:148 #, fuzzy -msgid "Arguments" -msgstr "подразделения" +msgid "Enable FAI release management" +msgstr "Управление подразделениями" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" -msgstr "" +#: setup/setup_config2.tpl:160 +#, fuzzy +msgid "Enable user netatalk plugin" +msgstr "Создать телефонный аккаунт" -#: include/functions.inc:108 -#, php-format -msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" -msgstr "" +#: setup/setup_config2.tpl:171 +#, fuzzy +msgid "Government mode" +msgstr "в папку" -#: include/functions.inc:318 -#, fuzzy, php-format -msgid "FATAL: Error when connecting the LDAP. Server said '%s'." -msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "состояние неизвестно" -#: include/functions.inc:380 +#: setup/setup_config2.tpl:186 #, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "" -"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP." +msgid "Syslog" +msgstr "Системные журналы" + +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "Ошибка LDAP:" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 +#: setup/setup_config2.tpl:193 #, fuzzy -msgid "Internal error" -msgstr "Терминал-сервер" +msgid "Mail settings" +msgstr "Почтовые настройки пользователя" -#: include/functions.inc:450 +#: setup/setup_config2.tpl:197 #, fuzzy -msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." -msgstr "" -"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP." +msgid "Mail method" +msgstr "Почтовые настройки" -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" msgstr "" -#: include/functions.inc:605 -#, fuzzy, php-format -msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" +#: setup/setup_config2.tpl:227 +#, fuzzy +msgid "Vacation templates" +msgstr "Шаблон рабочей станции" + +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" msgstr "" -"Не удается считать блокировку в базе данных LDAP. Проверьте, раздел \"config" -"\" в файле gosa.conf!" -#: include/functions.inc:605 -#, fuzzy, php-format -msgid "LDAP server returned: %s" -msgstr "LDAP-сервер" +#: setup/setup_config2.tpl:253 +#, fuzzy +msgid "Snapshots / Undo" +msgstr "Приложение" -#: include/functions.inc:699 +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 #, fuzzy -msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." -msgstr "" -"Для блокируемого объекта обнаружено несколько блокировок. Этого быть не " -"должно, проверьте работу LDAP." +msgid "Enable snapshots" +msgstr "Создать настройки запись эл. почты" -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" -msgstr "Найдено более %d объектов." +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +#, fuzzy +msgid "Snapshot base" +msgstr "Приложение" -#: include/functions.inc:998 -#, php-format +#: setup/setup_welcome.tpl:4 msgid "" -"Set the new size limit to %s and show me this message if the limit still " -"exceeds" +"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 "" -"Установить новое значение лимита в %s и показать мне это сообщение если " -"лимит будет исчерпан." -#: include/functions.inc:1015 -msgid "incomplete" -msgstr "не полный" - -#: include/functions.inc:1294 -#, fuzzy -msgid "Continue anyway" -msgstr "Продолжить" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "" -#: include/functions.inc:1296 +#: setup/setup_welcome.tpl:11 #, fuzzy -msgid "Edit anyway" -msgstr "Редактиовать объект" - -#: include/functions.inc:1298 -#, fuzzy, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "Вы собираетесь удалить объект %s." +msgid "Create a basic, single site configuration" +msgstr "Базы данных" -#: include/functions.inc:1482 -msgid "Entries per page" +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" msgstr "" -#: include/functions.inc:1510 -msgid "Apply filter" +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" msgstr "" -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789" - -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" msgstr "" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" msgstr "" -#: include/functions.inc:1919 include/functions.inc:1939 +#: setup/setup_welcome.tpl:20 #, fuzzy -msgid "Cannot write to revision file!" -msgstr "Удалить" +msgid "Find every possible configuration error" +msgstr "Настроить" -#: include/functions.inc:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -msgid "'base_hook' is not available. Using default base!" +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" msgstr "" -#: include/functions.inc:2213 +#: setup/setup_welcome.tpl:25 #, fuzzy -msgid "LDAP warning" -msgstr "Экспорт в LDIF" +msgid "To continue..." +msgstr "Продолжение настройки..." -#: include/functions.inc:2213 -#, fuzzy -msgid "Cannot get schema information from server. No schema check possible!" -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:" +msgstr "" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." msgstr "" -#: include/functions.inc:2246 +#: setup/class_setupStep_Ldap.inc:53 +#, fuzzy +msgid "LDAP setup" +msgstr "LDAP-сервер" + +#: setup/class_setupStep_Ldap.inc:54 +#, fuzzy +msgid "LDAP connection setup" +msgstr "Соединение..." + +#: setup/class_setupStep_Ldap.inc:55 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"This dialog performs the basic configuration of the LDAP connectivity for " +"GOsa." msgstr "" -#: include/functions.inc:2289 +#: setup/class_setupStep_Ldap.inc:105 #, fuzzy, php-format -msgid "Missing required object class '%s'!" -msgstr "Список подразделений" +msgid "Anonymous bind to server '%s' failed!" +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" -msgstr "" +#: setup/class_setupStep_Ldap.inc:107 +#, fuzzy, php-format +msgid "Bind as user '%s' failed!" +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "" +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" -msgstr "" +#: setup/class_setupStep_Ldap.inc:113 +#, fuzzy +msgid "Please specify user and password!" +msgstr "Введите свой пароль!" -#: include/functions.inc:2303 -#, php-format -msgid "Class(es) available" -msgstr "" +#: setup/class_setupStep_Ldap.inc:115 +#, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: include/functions.inc:2325 +#: setup/setup_migrate.tpl:5 msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +"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/functions.inc:2326 -msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +#: 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 "" -#: include/functions.inc:2330 +#: setup/setup_migrate.tpl:39 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -#: include/functions.inc:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: 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/functions.inc:2354 -msgid "German" -msgstr "Немецкий" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" +msgstr "" -#: include/functions.inc:2355 -msgid "French" -msgstr "Французский" +#: setup/setup_migrate.tpl:72 +#, fuzzy +msgid "Move selected workstations" +msgstr "Выберите чтобы посмотреть рабочие станции" -#: include/functions.inc:2356 -msgid "Italian" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" msgstr "" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "Испанский" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +#, fuzzy +msgid "Close" +msgstr "Выбрать" -#: include/functions.inc:2358 -msgid "English" -msgstr "Английский" +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" +msgstr "" -#: include/functions.inc:2359 -msgid "Dutch" -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 "" -#: include/functions.inc:2360 -#, fuzzy -msgid "Polish" -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 "" -#: include/functions.inc:2361 -msgid "Swedish" +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:2362 +#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 +#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 #, fuzzy -msgid "Chinese" -msgstr "сброс" +msgid "Hide changes" +msgstr "Удалить телефонный аккаунт" -#: include/functions.inc:2363 -msgid "Russian" -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 "Показать телефоны" -#: include/functions.inc:2544 -#, fuzzy, php-format -msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" msgstr "" -"Не удается найти команду \"%s\", указанную в поле POSTREMOVE модуля \"%s\"." -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" +#: 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_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." +#: 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_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" -msgstr "" +#: setup/setup_migrate.tpl:148 +#, fuzzy +msgid "Move selected users into this people tree" +msgstr "Создать шаблон" -#: include/class_socketClient.inc:191 -#, php-format -msgid "Socket timeout of %s seconds reached." -msgstr "" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +#, fuzzy +msgid "Next" +msgstr "текст" -#: include/class_tabs.inc:238 -#, php-format -msgid "Delete process has been canceled by plugin '%s': %s" +#: setup/setup_migrate.tpl:199 +#, fuzzy +msgid "Abort" +msgstr "Порт" + +#: setup/setup_migrate.tpl:201 +#, fuzzy +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 "" -#: include/class_tabs.inc:373 -msgid "References" -msgstr "Ссылки" +#: setup/setup_migrate.tpl:233 +#, fuzzy +msgid "Password (again)" +msgstr "Хэширование паролей" -#: include/class_plugin.inc:497 +#: setup/setup_migrate.tpl:258 msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"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_plugin.inc:1311 include/class_plugin.inc:1323 -#, php-format +#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." +"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_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "Вам не разрешено менять пароль." +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#, fuzzy +msgid "Current" +msgstr "Текущий пароль" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 -#, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "Вам не разрешено менять пароль." +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#, fuzzy +msgid "After migration" +msgstr "Управление пользователями" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" +#: 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_plugin.inc:1786 +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 #, fuzzy -msgid "from" -msgstr "и" +msgid "LDAP inspection" +msgstr "Проверка конфигурации PHP" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 -#, fuzzy -msgid "to" -msgstr "Отношение" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" +msgstr "" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +#: setup/class_setupStep_Migrate.inc:114 #, fuzzy -msgid "Restore" -msgstr "Повторить" +msgid "Checking for root object" +msgstr "Проверка модуля gd" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" msgstr "" -#: include/class_plugin.inc:1993 +#: setup/class_setupStep_Migrate.inc:126 #, fuzzy -msgid "Create snapshot" -msgstr "Создать настройки запись эл. почты" +msgid "Checking for invisible departments" +msgstr "Проверка поддержки gettext" -#: include/class_plugin.inc:1994 +#: setup/class_setupStep_Migrate.inc:131 #, fuzzy -msgid "Create a new snapshot from this object" -msgstr "Объект группы" +msgid "Checking for invisible users" +msgstr "Проверка поддержки gettext" -#: include/class_plugin.inc:2011 +#: setup/class_setupStep_Migrate.inc:137 #, fuzzy -msgid "cut" -msgstr "Выполнить" +msgid "Checking for super administrator" +msgstr "Проверка дополнительных программ" -#: include/class_plugin.inc:2011 +#: setup/class_setupStep_Migrate.inc:143 #, fuzzy -msgid "Cut this entry" -msgstr "Редактиовать объект" +msgid "Checking for users outside the people tree" +msgstr "Проверка модуля cups" -#: include/class_plugin.inc:2019 -msgid "copy" +#: setup/class_setupStep_Migrate.inc:149 +#, fuzzy +msgid "Checking for groups outside the groups tree" +msgstr "Проверка модуля cups" + +#: setup/class_setupStep_Migrate.inc:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" -#: include/class_plugin.inc:2019 +#: setup/class_setupStep_Migrate.inc:162 #, fuzzy -msgid "Copy this entry" -msgstr "Редактиовать объект" +msgid "Checking for duplicated UID numbers" +msgstr "Проверка поддержки gettext" -#: include/class_plugin.inc:2053 +#: setup/class_setupStep_Migrate.inc:168 #, fuzzy -msgid "Copy" -msgstr "Компания" +msgid "Checking for duplicate GID numbers" +msgstr "Проверка поддержки gettext" -#: include/class_plugin.inc:2057 +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 #, fuzzy -msgid "Cut" -msgstr "Выполнить" +msgid "LDAP query failed" +msgstr "Невозможно выполнить запрос к базе данных!" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:217 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "Укажите корректный номер телефона." + +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 +#, php-format +msgid "Ok" +msgstr "" + +#: setup/class_setupStep_Migrate.inc:269 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "Укажите корректный номер телефона." + +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "Ошибка" + +#: setup/class_setupStep_Migrate.inc:329 +#, php-format +msgid "" +"Found %s winstations outside the predefined winstation department ou '%s'." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 #, fuzzy -msgid "Paste" +msgid "Migrate" msgstr "Дата" -#: include/class_acl.inc:26 +#: setup/class_setupStep_Migrate.inc:402 +#, fuzzy, php-format +msgid "Found %s groups outside the configured tree '%s'." +msgstr "Вы собираетесь удалить объект %s." + +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 #, fuzzy -msgid "Access control" -msgstr "Параметры доступа" +msgid "Move" +msgstr "Режим" -#: include/class_acl.inc:207 -msgid "Reset ACLs" +#: setup/class_setupStep_Migrate.inc:479 +#, php-format +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#, php-format +msgid "" +"The specified user '%s' does not have full access to your ldap database." msgstr "" -#: include/class_acl.inc:489 +#: setup/class_setupStep_Migrate.inc:617 +#, php-format +msgid "Found %s user(s) that will not be visible in GOsa." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 #, fuzzy -msgid "No ACL settings for this category!" -msgstr "Описание группы" +msgid "Migration error" +msgstr "Дата" -#: include/class_acl.inc:491 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#, fuzzy, php-format +msgid "Cannot migrate department '%s':" +msgstr "Список подразделений" + +#: setup/class_setupStep_Migrate.inc:758 #, php-format -msgid "Contains ACLs for these objects: %s" +msgid "Found %s department(s) that will not be visible in GOsa." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 -#, fuzzy -msgid "category ACL" -msgstr "Категория" - -#: include/class_acl.inc:543 +#: setup/class_setupStep_Migrate.inc:979 #, php-format -msgid "Edit ACL for '%s' - scope is '%s'" +msgid "Cannot add ACL for user '%s':" msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Show/hide advanced settings" -msgstr "Настройки телефона" +msgid "Password error" +msgstr "Срок действия пароля истекает" -#: include/class_acl.inc:723 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Create objects" -msgstr "Объект группы" +msgid "Provided passwords do not match!" +msgstr "Введенные пароли не совпадают!" -#: include/class_acl.inc:724 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Move objects" -msgstr "Включаемые объекты" +msgid "Input error" +msgstr "Ошибка LDAP:" -#: include/class_acl.inc:725 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Remove objects" -msgstr "Включаемые объекты" +msgid "Specify a valid user ID!" +msgstr "Введите корректное имя пользователя!" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/class_setupStep_Migrate.inc:1051 +#, php-format +msgid "Adding an administrative user failed: object '%s' already exists!" msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "чтение" +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#, fuzzy +msgid "Cannot move users to the requested department!" +msgstr "Невозможно подключиться к серверу базы данных!" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "запись" +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "" -#: include/class_acl.inc:743 +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 #, fuzzy -msgid "Complete object" -msgstr "Включаемые объекты" +msgid "to" +msgstr "Отношение" -#: include/class_acl.inc:879 -#, fuzzy, php-format -msgid "Unkown ACL type '%s'!" -msgstr "состояние неизвестно" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "" -#: include/class_acl.inc:922 -#, fuzzy, php-format -msgid "Unknown entry '%s'!" -msgstr "состояние неизвестно" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" +msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 -#, fuzzy, php-format -msgid "Role: %s" -msgstr "Роль" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" +msgstr "" -#: include/class_acl.inc:984 +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "" + +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 #, fuzzy -msgid "unknown role" -msgstr "состояние неизвестно" +msgid "Try to create root object" +msgstr "Объект группы" -#: include/class_acl.inc:992 +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:1955 #, fuzzy, php-format -msgid "Contains settings for these objects: %s" -msgstr "Описание группы" +msgid "Copy '%s' to '%s' failed:" +msgstr "Ошибка при выполнении \"%s\"!" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -#, fuzzy -msgid "Members" -msgstr "Включаемые объекты" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" msgstr "" -#: include/class_acl.inc:1177 -#, fuzzy -msgid "Access control list" -msgstr "Параметры доступа" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." +msgstr "" -#: include/class_acl.inc:1182 -#, fuzzy -msgid "ACL roles" -msgstr "Доступ" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." +msgstr "" -#: include/class_acl.inc:1185 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Role name" -msgstr "Имя сервера" +msgid "PHP setup configuration" +msgstr "Базы данных" -#: include/class_acl.inc:1186 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Role description" -msgstr "Описание подразделения" +msgid "show information" +msgstr "Личная информация" -#: include/class_pluglist.inc:56 +#: setup/setup_schema.tpl:3 #, fuzzy -msgid "All objects in this category" -msgstr "Описание группы" +msgid "Schema specific settings" +msgstr "Настройки телефона" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" msgstr "" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 +#: setup/setup_schema.tpl:16 #, fuzzy -msgid "Unknown" -msgstr "состояние неизвестно" - -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 -msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" -msgstr "" -"Вы сейчас редактируете объект базы данных. Хотите отказаться от изменений?" - -#: include/class_msg_dialog.inc:124 -msgid "Please fix the above error and reload the page." -msgstr "" - -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" -msgstr "Ошибка XML в gosa.conf: %s в строке %d" +msgid "Check status" +msgstr "Состояние системы" -#: include/class_config.inc:242 -#, fuzzy -msgid "Cannot bind to LDAP. Please contact the system administrator." +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному " -"администратору." -#: include/class_config.inc:574 +#: setup/setup_schema.tpl:23 #, fuzzy -msgid "SID and/or RIDBASE missing in the configuration!" -msgstr "В вашем файле настройки отсутствуют значения SID и/или RIDBASE!" +msgid "Schema check failed" +msgstr "Приложение" -#: include/class_config.inc:878 -#, fuzzy -msgid "Configuration" -msgstr "Настроить" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." +msgstr "" -#: include/class_config.inc:878 +#: setup/setup_schema.tpl:35 msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." +"It seems that your ldap database wasn't initialized yet. This maybe the " +"reason, why GOsa can't read your schema configuration!" msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 +#, fuzzy +msgid "GOsa settings 3/3" +msgstr "Почтовые настройки пользователя" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "Удалить" +#: setup/class_setupStep_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" +msgstr "" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Config3.inc:198 +msgid "Session lifetime must be a numeric value!" msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "Удалить" +#: setup/class_setupStep_Config3.inc:202 +#, fuzzy +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "Размер квоты" -#: include/class_CopyPasteHandler.inc:386 -#, php-format -msgid "These objects will be pasted: %s" +#: 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 "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" msgstr "" -#: include/class_CopyPasteHandler.inc:508 -#, fuzzy -msgid "Cannot paste" -msgstr "Создать телефонный аккаунт" - -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_gosaSupportDaemon.inc:851 +#: setup/class_setupStep_Checks.inc:64 #, fuzzy -msgid "Cannot not parse XML!" -msgstr "Слишком много пользователей, невозможно создать идентификатор!" +msgid "Checking PHP version" +msgstr "Проверка версии PHP (>=4.1.0)" -#: include/class_gosaSupportDaemon.inc:1177 +#: setup/class_setupStep_Checks.inc:65 #, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "Удалить" +msgid "PHP must be of version %s or above." +msgstr "" +"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней " +"реализованы некоторые новые функции и исправлены некоторые ошибки." -#: include/class_gosaSupportDaemon.inc:1197 -#, fuzzy, php-format -msgid "Cannot remove entry %s!" -msgstr "состояние неизвестно" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." +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" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "" -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." msgstr "" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." msgstr "" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "" + +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." +msgstr "" + +#: setup/class_setupStep_Checks.inc:112 #, fuzzy -msgid "next" -msgstr "текст" +msgid "mbstring" +msgstr "Настройки Samba" -#: include/functions_helpviewer.inc:389 -#, php-format -msgid "%s results for your search with the keyword %s" +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." msgstr "" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" +#: setup/class_setupStep_Checks.inc:121 +#, fuzzy +msgid "" +"GOsa requires this module to communicate with several supported databases." msgstr "" +"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы " +"данных." -#: include/class_SnapShotDialog.inc:90 -#, fuzzy, php-format -msgid "You're about to delete the snapshot '%s'." -msgstr "Вы собираетесь удалить группу \"%s\"." +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" +msgstr "" -#: include/class_SnapShotDialog.inc:145 +#: setup/class_setupStep_Checks.inc:129 #, fuzzy -msgid "Remove snapshot" -msgstr "Создать настройки запись эл. почты" - -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." msgstr "" +"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы " +"данных." -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." msgstr "" -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:148 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:158 +#, 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 будет работать в любом случае." -#: include/class_ldap.inc:768 -#, fuzzy, php-format -msgid "while operating on '%s' using LDAP server '%s'" -msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." +#: setup/class_setupStep_Checks.inc:159 +#, fuzzy +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +msgstr "Проверка значения параметра register_globals (должно быть: off)" -#: include/class_ldap.inc:770 -#, fuzzy, php-format -msgid "while operating on LDAP server %s" -msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." +msgstr "" -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:168 msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" -msgstr "" +#: setup/class_setupStep_Checks.inc:169 +#, fuzzy +msgid "" +"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " +"higher." +msgstr "Проверка значения параметра register_globals (должно быть: off)" -#: include/class_multi_plug.inc:362 +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 #, fuzzy -msgid "You are currently editing mutliple entries." -msgstr "У вас недостаточно прав для удаления этого подразделения." +msgid "Off" +msgstr "не в сети" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:177 #, fuzzy -msgid "Password reset" -msgstr "Срок действия пароля истекает" +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)" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:178 #, fuzzy -msgid "The user password was resetted, please set a new password value!" -msgstr "У вас недостаточно прав для смены своего пароля." +msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +msgstr "Проверка значения параметра register_globals (должно быть: off)" -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Служба печати" +#: setup/class_setupStep_Checks.inc:185 +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 "" -#: include/class_log.inc:107 -#, fuzzy -msgid "MySQL error" -msgstr "Ошибка LDAP:" +#: setup/class_setupStep_Checks.inc:186 +msgid "" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +msgstr "" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:193 +msgid "" +"This option influences the PHP output handling. Turn this Option off, to " +"increase performance." msgstr "" -#: include/class_log.inc:120 -#, fuzzy, php-format -msgid "Invalid option '%s' specified!" -msgstr "Значение поля \"Имя\" содержит недопустимые символы." +#: setup/class_setupStep_Checks.inc:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +msgstr "" -#: include/class_log.inc:124 +#: setup/class_setupStep_Checks.inc:201 +msgid "The Execution time should be at least 30 seconds." +msgstr "" + +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +msgstr "" + +#: setup/class_setupStep_Checks.inc:209 +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 "" + +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:216 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "Указанное имя уже используется." +msgid "On" +msgstr "Параметры" -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/class_setupStep_Checks.inc:217 +msgid "" +"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " +"escape all quotes in strings in this case." msgstr "" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "Невозможно подключиться к серверу базы данных!" +#: setup/class_setupStep_Checks.inc:218 +#, fuzzy +msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." +msgstr "Проверка значения параметра register_globals (должно быть: off)" + +#: setup/class_setupStep_Checks.inc:225 +msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:226 +#, fuzzy +msgid "" +"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +msgstr "Проверка значения параметра register_globals (должно быть: off)" -#: include/class_baseSelectDialog.inc:44 +#: setup/class_setupStep_Checks.inc:236 #, fuzzy -msgid "Choose a base" -msgstr "Выберите, чтобы просмотреть серверы" +msgid "Configuration writeable" +msgstr "Настроить" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:237 +#, fuzzy +msgid "The configuration file can't be written" +msgstr "Настроить" + +#: setup/class_setupStep_Checks.inc:238 +#, php-format msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"GOsa reads its configuration from a file located in (%s/%s). The setup can " +"write the configuration directly if it is writeable." msgstr "" -#: include/class_baseSelectDialog.inc:61 +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "" + +#: setup/setup_config1.tpl:6 #, fuzzy -msgid "Use" -msgstr "Пользователь" +msgid "Theme" +msgstr "Мобильный" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "Действие" +#: setup/setup_config1.tpl:15 +#, fuzzy +msgid "Apache" +msgstr "Отмена" -#: include/class_baseSelectDialog.inc:72 +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" +msgstr "" + +#: setup/setup_config1.tpl:27 #, fuzzy -msgid "Filter entries with this syntax" -msgstr "Показать подходяшие адреса" +msgid "People and group storage" +msgstr "Структурная единица (OU) пользователей" -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "Выберите, чтобы просмотреть серверы" +#: setup/setup_config1.tpl:30 +#, fuzzy +msgid "People DN attribute" +msgstr "Атрибут DN пользователей" -#: setup/class_setupStep_Ldap.inc:53 +#: setup/setup_config1.tpl:41 #, fuzzy -msgid "LDAP setup" -msgstr "LDAP-сервер" +msgid "People storage subtree" +msgstr "Структурная единица (OU) пользователей" -#: setup/class_setupStep_Ldap.inc:54 +#: setup/setup_config1.tpl:50 #, fuzzy -msgid "LDAP connection setup" -msgstr "Соединение..." +msgid "Group storage subtree" +msgstr "OU групп" -#: setup/class_setupStep_Ldap.inc:55 -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -#, fuzzy -msgid "No" -msgstr "нет" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 +#: setup/setup_config1.tpl:81 #, fuzzy -msgid "Yes" -msgstr "Системы" +msgid "Automatic UIDs" +msgstr "автоматически" -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +#: setup/setup_config1.tpl:113 +#, fuzzy +msgid "Number base for people/groups" +msgstr "База идентификаторов для пользователей/групп" -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "" -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +#: setup/setup_config1.tpl:140 +msgid "Password encryption algorithm" +msgstr "" -#: setup/class_setupStep_Ldap.inc:113 +#: setup/setup_config1.tpl:151 #, fuzzy -msgid "Please specify user and password!" -msgstr "Введите свой пароль!" +msgid "Password restrictions" +msgstr "Срок действия пароля истекает" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." +#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 +msgid "Password minimum length" +msgstr "" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "Готово" +#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 +msgid "Different characters from old password" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 +#: setup/setup_config1.tpl:182 #, fuzzy -msgid "Write configuration file" -msgstr "Настроить" +msgid "Password change hook" +msgstr "Сменить пароль" -#: setup/class_setupStep_Finish.inc:39 -#, fuzzy -msgid "Finish - write the configuration file" -msgstr "Настроить" +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" -#: setup/class_setupStep_Finish.inc:101 +#: setup/setup_config1.tpl:209 #, fuzzy +msgid "Use account expiration" +msgstr "Учетная запись" + +#: setup/setup_config1.tpl:221 msgid "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" +"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 %s/gosa.conf. Операция прервана." -#: setup/class_setupStep_Finish.inc:103 +#: setup/setup_config1.tpl:222 #, fuzzy -msgid "The configuration is currently not readable or it does not exists." +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 %s/gosa.conf. Операция прервана." +"Сейчас вам нужно указать параметры доступа к LDAP-серверу. GOsa всегда " +"выступает в роли администратора и управляет правами доступа самостоятельно. " +"Это временное решение, пока в OpenLDAP не будут реализованы полностью " +"средства контроля доступа (ACI) внутри каталогов. Чтобы это решение " +"работало, укажите DN (уникальное имя) администратора и соответствующий " +"пароль." -#: setup/class_setupStep_Finish.inc:112 -#, fuzzy, php-format +#: setup/setup_config1.tpl:223 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:" +"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 "" -"Поместив файл gosa.conf в каталог /etc/gosa, убедитесь, что только " -"пользователь веб-сервера может его читать. Для этого вам, возможно, " -"понадобится выполнить следующие команды:" - -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 -#, fuzzy -msgid "License" -msgstr "в" +"Некоторые основные параметры LDAP изменяемы и влияют на расположение " +"сохраняемой информации о пользователях и группах, а также на способ создания " +"учетных записей. Проверьте, подходят ли вам значения, указанные ниже." -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +#: 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 "" -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 -#, fuzzy -msgid "Language setup" -msgstr "Язык" - -#: setup/class_setupStep_Language.inc:42 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, fuzzy -msgid "This step allows you to select your preferred language." -msgstr "Язык по умолчанию" +msgid "Setup error" +msgstr "Состояние системы" -#: setup/class_setupStep_Language.inc:47 +#: setup/class_setup.inc:197 #, fuzzy -msgid "Automatic" -msgstr "автоматически" +msgid "Completed" +msgstr "не полный" #: setup/class_setupStep_Feedback.inc:92 #, fuzzy @@ -4502,1600 +4351,1776 @@ msgstr "Изменить сертификаты" msgid "Get notifications or send feedback" msgstr "Местоположение ветки" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 -#, fuzzy -msgid "Setup error" -msgstr "Состояние системы" - #: setup/class_setupStep_Feedback.inc:141 #: setup/class_setupStep_Feedback.inc:148 msgid "Feedback error" -msgstr "" - -#: setup/class_setupStep_Feedback.inc:141 -#, php-format -msgid "Cannot send feedback to '%s': %s" -msgstr "" - -#: setup/class_setupStep_Feedback.inc:148 -msgid "Cannot send feedback: service temporarily unavailable" -msgstr "" - -#: setup/class_setupStep_Feedback.inc:150 -#, fuzzy -msgid "Feedback sucessfully send" -msgstr "Настройка завершена" - -#: setup/class_setupStep_Feedback.inc:180 -#, fuzzy -msgid "Please specify a valid email address." -msgstr "Введите корректное имя пользователя!" - -#: setup/class_setupStep_Feedback.inc:184 -msgid "" -"You have to select at least one of both options, subscribe or send feedback." -msgstr "" - -#: setup/class_setup.inc:197 -#, fuzzy -msgid "Completed" -msgstr "не полный" - -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -#, fuzzy -msgid "Next" -msgstr "текст" - -#: setup/setup_finish.tpl:3 -#, fuzzy -msgid "Create your configuration file" -msgstr "Настроить" - -#: setup/setup_finish.tpl:13 -#, fuzzy -msgid "Download configuration" -msgstr "Системная информация" +msgstr "" -#: setup/setup_finish.tpl:18 -#, fuzzy -msgid "Status: " -msgstr "Состояние" +#: setup/class_setupStep_Feedback.inc:141 +#, php-format +msgid "Cannot send feedback to '%s': %s" +msgstr "" -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: setup/class_setupStep_Feedback.inc:148 +msgid "Cannot send feedback: service temporarily unavailable" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "Поиск" +#: setup/class_setupStep_Feedback.inc:150 +#, fuzzy +msgid "Feedback sucessfully send" +msgstr "Настройка завершена" -#: setup/setup_ldap.tpl:25 +#: setup/class_setupStep_Feedback.inc:180 #, fuzzy -msgid "LDAP connection" -msgstr "Отключение" +msgid "Please specify a valid email address." +msgstr "Введите корректное имя пользователя!" -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "Местоположение" +#: setup/class_setupStep_Feedback.inc:184 +msgid "" +"You have to select at least one of both options, subscribe or send feedback." +msgstr "" -#: setup/setup_ldap.tpl:37 -#, fuzzy -msgid "Connection URL" -msgstr "Подключение" +#: setup/setup_feedback.tpl:6 +msgid "Subscribe to the gosa-announce mailinglist" +msgstr "" -#: setup/setup_ldap.tpl:45 -#, fuzzy -msgid "TLS connection" -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 "" -#: setup/setup_ldap.tpl:65 +#: setup/setup_feedback.tpl:30 #, fuzzy -msgid "Reload" -msgstr "чтение" +msgid "Mail address" +msgstr "MAC-адрес" -#: setup/setup_ldap.tpl:69 -#, fuzzy -msgid "Authentication" -msgstr "Рабочая станция Windows" +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +msgstr "" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "DN администратора" +#: 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 "" -#: setup/setup_ldap.tpl:78 -#, fuzzy -msgid "Select user" -msgstr "Удалить" +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" +msgstr "" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" msgstr "" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "Пароль администратора" +#: setup/setup_feedback.tpl:68 +msgid "Is this the first time you use GOsa?" +msgstr "" -#: setup/setup_ldap.tpl:101 -#, fuzzy -msgid "Schema based settings" -msgstr "Настройки Samba" +#: setup/setup_feedback.tpl:74 +msgid "I use it since" +msgstr "" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: setup/setup_feedback.tpl:75 +msgid "Select the year since when you are using GOsa" msgstr "" -#: setup/setup_ldap.tpl:117 -#, fuzzy -msgid "Current status" -msgstr "Состояние системы" +#: setup/setup_feedback.tpl:82 +msgid "What operating system / distribution do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 -#, fuzzy -msgid "GOsa settings 1/3" -msgstr "Почтовые настройки пользователя" +#: setup/setup_feedback.tpl:90 +msgid "What web server do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:76 -#, fuzzy -msgid "GOsa generic settings" -msgstr "Общая информация о пользователе" +#: setup/setup_feedback.tpl:98 +msgid "What PHP version do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 -#, php-format -msgid "The specified value for '%s' must be a numeric value" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 -#, php-format -msgid "Don't add a trailing comma to '%s'." +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" -msgstr "Структурная единица (OU) пользователей" +#: setup/setup_feedback.tpl:123 +msgid "Features" +msgstr "" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" -msgstr "OU групп" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" +msgstr "" -#: setup/class_setupStep_Config1.inc:130 -msgid "Uid base must be numeric" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" msgstr "" -#: setup/class_setupStep_Config1.inc:134 -msgid "The given password minimum length is not numeric." +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/class_setupStep_Config1.inc:137 -#, fuzzy -msgid "The given password differ value is not numeric." -msgstr "Значение поля \"Квота\" некорректно." +#: include/class_SnapShotDialog.inc:90 +#, fuzzy, php-format +msgid "You're about to delete the snapshot '%s'." +msgstr "Вы собираетесь удалить группу \"%s\"." -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 -#, fuzzy -msgid "GOsa settings 2/3" -msgstr "Почтовые настройки пользователя" +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" +msgstr "" -#: setup/class_setupStep_Config2.inc:88 +#: include/class_SnapShotDialog.inc:145 #, fuzzy -msgid "Customize special parameters" -msgstr "Изменить параметры" +msgid "Remove snapshot" +msgstr "Создать настройки запись эл. почты" -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" msgstr "" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 -#, fuzzy -msgid "LDAP inspection" -msgstr "Проверка конфигурации PHP" +#: include/class_plugin.inc:497 +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 "" -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, php-format +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." msgstr "" -#: setup/class_setupStep_Migrate.inc:114 -#, fuzzy -msgid "Checking for root object" -msgstr "Проверка модуля gd" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "Вам не разрешено менять пароль." -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "Вам не разрешено менять пароль." + +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" msgstr "" -#: setup/class_setupStep_Migrate.inc:126 +#: include/class_plugin.inc:1786 #, fuzzy -msgid "Checking for invisible departments" -msgstr "Проверка поддержки gettext" +msgid "from" +msgstr "и" -#: setup/class_setupStep_Migrate.inc:131 +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 #, fuzzy -msgid "Checking for invisible users" -msgstr "Проверка поддержки gettext" +msgid "Restore" +msgstr "Повторить" -#: setup/class_setupStep_Migrate.inc:137 +#: include/class_plugin.inc:1994 #, fuzzy -msgid "Checking for super administrator" -msgstr "Проверка дополнительных программ" +msgid "Create snapshot" +msgstr "Создать настройки запись эл. почты" -#: setup/class_setupStep_Migrate.inc:143 +#: include/class_plugin.inc:1995 #, fuzzy -msgid "Checking for users outside the people tree" -msgstr "Проверка модуля cups" +msgid "Create a new snapshot from this object" +msgstr "Объект группы" -#: setup/class_setupStep_Migrate.inc:149 +#: include/class_plugin.inc:2013 #, fuzzy -msgid "Checking for groups outside the groups tree" -msgstr "Проверка модуля cups" +msgid "cut" +msgstr "Выполнить" -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" +#: include/class_plugin.inc:2013 +#, fuzzy +msgid "Cut this entry" +msgstr "Редактиовать объект" + +#: include/class_plugin.inc:2021 +msgid "copy" msgstr "" -#: setup/class_setupStep_Migrate.inc:162 +#: include/class_plugin.inc:2021 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "Проверка поддержки gettext" +msgid "Copy this entry" +msgstr "Редактиовать объект" + +#: include/class_plugin.inc:2055 +#, fuzzy +msgid "Copy" +msgstr "Компания" -#: setup/class_setupStep_Migrate.inc:168 +#: include/class_plugin.inc:2059 #, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "Проверка поддержки gettext" +msgid "Cut" +msgstr "Выполнить" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 #, fuzzy -msgid "LDAP query failed" -msgstr "Невозможно выполнить запрос к базе данных!" +msgid "Paste" +msgstr "Дата" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, fuzzy, php-format +msgid "Copy and paste failed!" +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: setup/class_setupStep_Migrate.inc:217 +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "Укажите корректный номер телефона." +msgid "Cannot set permission for '%s'" +msgstr "Удалить" -#: setup/class_setupStep_Migrate.inc:269 +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" +msgstr "" + +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 +#, fuzzy +msgid "Internal error" +msgstr "Терминал-сервер" + +#: include/class_CopyPasteHandler.inc:175 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "Укажите корректный номер телефона." +msgid "No write permission in '%s'" +msgstr "Удалить" -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "Ошибка" +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:329 +#: include/class_CopyPasteHandler.inc:410 #, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." +msgid "This object will be pasted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 +#: include/class_CopyPasteHandler.inc:508 #, fuzzy -msgid "Migrate" -msgstr "Дата" +msgid "Cannot paste" +msgstr "Создать телефонный аккаунт" -#: setup/class_setupStep_Migrate.inc:402 +#: include/utils/class_msgPool.inc:15 #, fuzzy, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "Вы собираетесь удалить объект %s." +msgid "Select to list objects of type '%s'." +msgstr "Выбрать объекты для добавления" -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -#, fuzzy -msgid "Move" -msgstr "Режим" +#: include/utils/class_msgPool.inc:17 +#, fuzzy, php-format +msgid "Select to list objects containig '%s'." +msgstr "Показать группы с пользователями" -#: setup/class_setupStep_Migrate.inc:479 -#, php-format -msgid "Found %s user(s) outside the configured tree '%s'." +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "Выбрать объекты для добавления" + +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#: include/utils/class_msgPool.inc:35 #, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." +msgid "This '%s' object will be deleted!" msgstr "" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:40 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "This object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "Дата" +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "Список подразделений" +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "" -#: setup/class_setupStep_Migrate.inc:758 +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Found %s department(s) that will not be visible in GOsa." +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:55 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:63 #, fuzzy -msgid "Password error" -msgstr "Срок действия пароля истекает" +msgid "You have no permission to delete this object!" +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/class_setupStep_Migrate.inc:1004 +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 #, fuzzy -msgid "Provided passwords do not match!" -msgstr "Введенные пароли не совпадают!" +msgid "You have no permission to delete the object:" +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:74 #, fuzzy -msgid "Input error" -msgstr "Ошибка LDAP:" +msgid "You have no permission to delete these objects:" +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/class_setupStep_Migrate.inc:1009 +#: include/utils/class_msgPool.inc:81 #, fuzzy -msgid "Specify a valid user ID!" -msgstr "Введите корректное имя пользователя!" +msgid "You have no permission to create this object!" +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/class_setupStep_Migrate.inc:1051 -#, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "" +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#, fuzzy +msgid "You have no permission to create the object:" +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 +#: include/utils/class_msgPool.inc:92 #, fuzzy -msgid "Cannot move users to the requested department!" +msgid "You have no permission to create these objects:" +msgstr "У вас недостаточно прав для удаления этого подразделения." + +#: include/utils/class_msgPool.inc:99 +#, fuzzy +msgid "You have no permission to modify this object!" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#, fuzzy +msgid "You have no permission to modify the object:" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:110 +#, fuzzy +msgid "You have no permission to modify these objects:" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:117 +#, fuzzy +msgid "You have no permission to view this object!" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#, fuzzy +msgid "You have no permission to view the object:" +msgstr "У вас недостаточно прав для создания телефонов в этой ветке." + +#: include/utils/class_msgPool.inc:128 +#, fuzzy +msgid "You have no permission to view these objects:" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:135 +#, fuzzy +msgid "You have no permission to move this object!" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#, fuzzy +msgid "You have no permission to move the object:" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:146 +#, fuzzy +msgid "You have no permission to move these objects:" +msgstr "У вас недостаточно прав для удаления этого стоп-листа." + +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +#, fuzzy +msgid "Connection information" +msgstr "Личная информация" + +#: include/utils/class_msgPool.inc:158 +#, fuzzy, php-format +msgid "Cannot connect to %s database!" msgstr "Невозможно подключиться к серверу базы данных!" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:170 +#, fuzzy, php-format +msgid "Cannot select %s database!" +msgstr "Невозможно выбрать базу данных!" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" +#: include/utils/class_msgPool.inc:176 +#, php-format +msgid "No %s server defined!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "Невозможно выбрать базу данных!" + +#: include/utils/class_msgPool.inc:194 +#, fuzzy, php-format +msgid "The field '%s' contains a reserved keyword!" +msgstr "Значение поля \"Факс\" содержит недопустимый номер телефона." -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" +#: include/utils/class_msgPool.inc:200 +#, fuzzy, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" msgstr "" +"Не удается найти команду \"%s\", указанную в поле POSTCREATE модуля \"%s\"." -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" -msgstr "" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "Указанное имя уже используется." -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." +#: include/utils/class_msgPool.inc:209 +#, php-format +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -#, fuzzy -msgid "Try to create root object" -msgstr "Объект группы" - -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:211 +#, php-format +msgid "'%s' command for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:213 #, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "Ошибка при выполнении \"%s\"!" +msgid "'%s' command (%s) is invalid!" +msgstr "Указанное имя уже используется." -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -#, fuzzy -msgid "GOsa settings 3/3" -msgstr "Почтовые настройки пользователя" +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "Невозможно выбрать базу данных!" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/class_setupStep_Config3.inc:198 -msgid "Session lifetime must be a numeric value!" +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" msgstr "" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "Размер квоты" +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "Невозможно выбрать базу данных!" -#: setup/setup_language.tpl:3 -#, fuzzy -msgid "Please select the preferred language" -msgstr "Язык по умолчанию" +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "Значение 'UID' слишком маленькое." -#: 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." +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "Язык по умолчанию" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "Значение 'UID' слишком маленькое." -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" +#: include/utils/class_msgPool.inc:247 +#, fuzzy, php-format +msgid "'%s' must be %d or above!" msgstr "" +"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней " +"реализованы некоторые новые функции и исправлены некоторые ошибки." -#: 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." +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/setup_feedback.tpl:30 -#, fuzzy -msgid "Mail address" -msgstr "MAC-адрес" - -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" +#: include/utils/class_msgPool.inc:260 +#, fuzzy, php-format +msgid "There is already an entry with this '%s' attribute in the system!" 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 "" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "Обязательное поле \"Имя\" не заполнено." -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" -msgstr "" +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "Значение поля \"Имя\" содержит недопустимые символы." -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" msgstr "" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +msgstr "Сменить пароль" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "Значение поля \"Имя\" содержит недопустимые символы." -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "Удалить параметры" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +msgstr "Сохранить" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "Добавить" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" -msgstr "" +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "Добавить" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +msgstr "Удалить" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "" +#: include/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "Установить" -#: setup/setup_feedback.tpl:123 -msgid "Features" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "Изменить" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "Пользователи домена" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "Назад" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" -msgstr "" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "Для этой учетной записи нет корректных расширений GOsa." -#: setup/class_setupStep_Welcome.inc:38 -#, fuzzy -msgid "Welcome" -msgstr "Добро пожаловать %s!" +#: include/utils/class_msgPool.inc:381 +#, fuzzy, php-format +msgid "" +"This account has %s settings enabled. You can disable them by clicking below." +msgstr "" +"В этой учетной записи используются атрибуты POSIX. Вы можете отключить их " +"использование, щелкнув ниже." -#: setup/class_setupStep_Welcome.inc:39 -#, fuzzy -msgid "The welcome message" -msgstr "Удалить" +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, 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." -#: setup/class_setupStep_Welcome.inc:40 -#, fuzzy -msgid "Welcome to GOsa setup wizard" -msgstr "Добро пожаловать в раздел настройки GOsa!" +#: include/utils/class_msgPool.inc:400 +#, fuzzy, php-format +msgid "" +"This account has %s settings disabled. You can enable them by clicking below." +msgstr "" +"В этой учетной записи не используются атрибуты POSIX. Вы можете использовать " +"их, щелкнув ниже." -#: setup/setup_config1.tpl:2 -msgid "Look and feel" +#: include/utils/class_msgPool.inc:403 +#, 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." -#: setup/setup_config1.tpl:6 -#, fuzzy -msgid "Theme" -msgstr "Мобильный" +#: include/utils/class_msgPool.inc:410 +#, 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." -#: setup/setup_config1.tpl:15 -#, fuzzy -msgid "Apache" -msgstr "Отмена" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "Дополнительные записи в fstab" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" -msgstr "" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Атрибуты UNIX" -#: setup/setup_config1.tpl:27 -#, fuzzy -msgid "People and group storage" -msgstr "Структурная единица (OU) пользователей" +#: include/utils/class_msgPool.inc:430 +msgid "Click the 'Edit' button below to change informations in this dialog" +msgstr "Нажмите 'Изменить' чтобы отредактировать данные в этой форме." -#: setup/setup_config1.tpl:30 -#, fuzzy -msgid "People DN attribute" -msgstr "Атрибут DN пользователей" +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "Январь" -#: setup/setup_config1.tpl:41 -#, fuzzy -msgid "People storage subtree" -msgstr "Структурная единица (OU) пользователей" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "Февраль" -#: setup/setup_config1.tpl:50 -#, fuzzy -msgid "Group storage subtree" -msgstr "OU групп" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "Март" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "Апрель" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "Май" -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "автоматически" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "Июнь" -#: setup/setup_config1.tpl:113 -#, fuzzy -msgid "Number base for people/groups" -msgstr "База идентификаторов для пользователей/групп" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "Июль" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "Август" -#: setup/setup_config1.tpl:140 -msgid "Password encryption algorithm" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "Сентябрь" -#: setup/setup_config1.tpl:151 -#, fuzzy -msgid "Password restrictions" -msgstr "Срок действия пароля истекает" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "Октябрь" -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "Ноябрь" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "Декабрь" -#: setup/setup_config1.tpl:182 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Password change hook" -msgstr "Сменить пароль" - -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +msgid "Sunday" +msgstr "Имя сервера" -#: setup/setup_config1.tpl:209 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Use account expiration" -msgstr "Учетная запись" +msgid "Monday" +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." +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" 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." +#: include/utils/class_msgPool.inc:444 +msgid "Wednesday" msgstr "" -"Сейчас вам нужно указать параметры доступа к LDAP-серверу. GOsa всегда " -"выступает в роли администратора и управляет правами доступа самостоятельно. " -"Это временное решение, пока в OpenLDAP не будут реализованы полностью " -"средства контроля доступа (ACI) внутри каталогов. Чтобы это решение " -"работало, укажите DN (уникальное имя) администратора и соответствующий " -"пароль." -#: 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." +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" 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." +#: include/utils/class_msgPool.inc:444 +msgid "Friday" msgstr "" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Настройки Samba" - -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" msgstr "" -#: setup/setup_config2.tpl:31 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "RID base" -msgstr "Базы данных" +msgid "read operation" +msgstr "Почтовые настройки" -#: setup/setup_config2.tpl:46 -#, fuzzy -msgid "Workstation container" -msgstr "Имя рабочий станции" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" +msgstr "" -#: setup/setup_config2.tpl:61 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Samba SID mapping" -msgstr "Samba" +msgid "modify operation" +msgstr "Личная информация" -#: setup/setup_config2.tpl:71 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Timezone" -msgstr "Мобильный" +msgid "delete operation" +msgstr "Выберите чтобы посмотреть рабочие станции" -#: setup/setup_config2.tpl:74 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "Язык по умолчанию" +msgid "search operation" +msgstr "Учетная запись" -#: setup/setup_config2.tpl:96 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Additional GOsa settings" -msgstr "Дополнительные записи в fstab" +msgid "authentication" +msgstr "Рабочая станция Windows" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" -msgstr "" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "Невозможно выполнить запрос к базе данных!" -#: setup/setup_config2.tpl:112 +#: include/utils/class_msgPool.inc:457 #, fuzzy -msgid "Enable DNS extension" -msgstr "Удалить параметры" +msgid "LDAP operation failed!" +msgstr "Невозможно выполнить запрос к базе данных!" -#: setup/setup_config2.tpl:124 +#: include/utils/class_msgPool.inc:472 #, fuzzy -msgid "Enable DHCP extension" -msgstr "Удалить параметры" +msgid "Upload failed!" +msgstr "Ошибка при регистрации. Ответ сервера: \"%s\"." -#: setup/setup_config2.tpl:136 -#, fuzzy -msgid "Enable mime type management" -msgstr "Управление системами" +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Служба печати" + +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" +msgstr "" + +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" +msgstr "" -#: setup/setup_config2.tpl:148 -#, fuzzy -msgid "Enable FAI release management" -msgstr "Управление подразделениями" +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" +msgstr "" -#: setup/setup_config2.tpl:160 -#, fuzzy -msgid "Enable user netatalk plugin" -msgstr "Создать телефонный аккаунт" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." +msgstr "Описание группы" -#: setup/setup_config2.tpl:171 -#, fuzzy -msgid "Government mode" -msgstr "в папку" +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "Описание группы" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "состояние неизвестно" +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" +msgstr "" -#: setup/setup_config2.tpl:186 -#, fuzzy -msgid "Syslog" -msgstr "Системные журналы" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "Удалить" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "Ошибка LDAP:" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "Удалить" -#: setup/setup_config2.tpl:193 -#, fuzzy -msgid "Mail settings" -msgstr "Почтовые настройки пользователя" +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "Удалить" -#: setup/setup_config2.tpl:197 -#, fuzzy -msgid "Mail method" -msgstr "Почтовые настройки" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "Список подразделений" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" -msgstr "" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "Удалить" -#: setup/setup_config2.tpl:227 -#, fuzzy -msgid "Vacation templates" -msgstr "Шаблон рабочей станции" +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "Проверка поддержки gettext" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config2.tpl:253 -#, fuzzy -msgid "Snapshots / Undo" -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 "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -#, fuzzy -msgid "Enable snapshots" -msgstr "Создать настройки запись эл. почты" +#: include/class_msg_dialog.inc:124 +msgid "Please fix the above error and reload the page." +msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 #, fuzzy -msgid "Snapshot base" -msgstr "Приложение" +msgid "Go to root department" +msgstr "Список подразделений" -#: setup/setup_config3.tpl:2 +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 #, fuzzy -msgid "GOsa core settings" -msgstr "Почтовые настройки пользователя" +msgid "Root" +msgstr "Перезагрузить" -#: setup/setup_config3.tpl:6 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 #, fuzzy -msgid "Disable primary group filter" -msgstr "Показать группы пользователей" +msgid "Go up one department" +msgstr "Подразделение" -#: setup/setup_config3.tpl:18 +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 #, fuzzy -msgid "Display summary in listings" -msgstr "Шаблон для групп" +msgid "Go to users department" +msgstr "Выберите подразделение" -#: setup/setup_config3.tpl:30 +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 #, fuzzy -msgid "Honour administrative units" -msgstr "Управление группами" +msgid "Home" +msgstr "Имя системы" -#: setup/setup_config3.tpl:42 -#, fuzzy -msgid "Smarty compile directory" -msgstr "Домашний каталог" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" msgstr "" -#: setup/setup_config3.tpl:60 -#, fuzzy -msgid "Path for PPD storage" -msgstr "Хэширование паролей" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config3.tpl:77 -#, fuzzy -msgid "Path for kiosk profile storage" -msgstr "Почтовые настройки пользователя" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" +msgstr "" -#: setup/setup_config3.tpl:96 -#, fuzzy -msgid "Override sudo role ou" -msgstr "состояние неизвестно" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "" -#: setup/setup_config3.tpl:115 -#, fuzzy -msgid "Mail queue script" -msgstr "Путь к сценариям" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" +msgstr "" -#: setup/setup_config3.tpl:134 -#, fuzzy -msgid "Notification script" -msgstr "Изменить сертификаты" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" +msgstr "" -#: setup/setup_config3.tpl:153 -msgid "Enable edit locking" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" msgstr "" -#: setup/setup_config3.tpl:172 -msgid "Login and session" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config3.tpl:175 -#, fuzzy -msgid "Login attribute" -msgstr "Атрибут DN пользователей" +#: include/class_ldap.inc:768 +#, fuzzy, php-format +msgid "while operating on '%s' using LDAP server '%s'" +msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_ldap.inc:770 +#, fuzzy, php-format +msgid "while operating on LDAP server %s" +msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." + +#: include/class_ldap.inc:992 +#, php-format +msgid "" +"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " +"in line %s" msgstr "" -#: setup/setup_config3.tpl:198 -msgid "Enforce encrypted connections" +#: include/class_ldap.inc:1021 +#, php-format +msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" msgstr "" -#: setup/setup_config3.tpl:210 +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" +msgstr "Ошибка XML в gosa.conf: %s в строке %d" + +#: include/class_config.inc:242 #, fuzzy -msgid "Warn if session is not encrypted" -msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." +msgid "Cannot bind to LDAP. Please contact the system administrator." +msgstr "" +"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному " +"администратору." -#: setup/setup_config3.tpl:222 +#: include/class_config.inc:574 #, fuzzy -msgid "Remember dialog filter settings" -msgstr "Общая информация о пользователе" +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "В вашем файле настройки отсутствуют значения SID и/или RIDBASE!" + +#: include/class_config.inc:878 +#, fuzzy +msgid "Configuration" +msgstr "Настроить" + +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." +msgstr "" -#: setup/setup_config3.tpl:234 -#, fuzzy -msgid "Session lifetime" -msgstr "Конфликт сеансов" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" +msgstr "" -#: setup/setup_config3.tpl:243 -msgid "Debugging" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" msgstr "" -#: setup/setup_config3.tpl:247 +#: include/class_gosaSupportDaemon.inc:851 #, fuzzy -msgid "Show PHP errors" -msgstr "Ошибка LDAP:" +msgid "Cannot not parse XML!" +msgstr "Слишком много пользователей, невозможно создать идентификатор!" -#: setup/setup_config3.tpl:259 -#, fuzzy -msgid "Maximum LDAP query time" -msgstr "Размер квоты" +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "Удалить" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" -msgstr "" +#: include/class_gosaSupportDaemon.inc:1197 +#, fuzzy, php-format +msgid "Cannot remove entry %s!" +msgstr "состояние неизвестно" -#: setup/setup_config3.tpl:289 +#: include/class_multi_plug.inc:362 #, fuzzy -msgid "Debug level" -msgstr "Уровень информативности" +msgid "You are currently editing mutliple entries." +msgstr "У вас недостаточно прав для удаления этого подразделения." -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Disabled" -msgstr "отключен" +msgid "Password reset" +msgstr "Срок действия пароля истекает" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Enabled" -msgstr "отключен" +msgid "The user password was resetted, please set a new password value!" +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." +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" msgstr "" -#: setup/setup_migrate.tpl:33 -#, fuzzy -msgid "Check again" -msgstr "Проверить" +#: include/class_tabs.inc:373 +msgid "References" +msgstr "Ссылки" -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" -msgstr "" +#: include/class_baseSelectDialog.inc:44 +#, fuzzy +msgid "Choose a base" +msgstr "Выберите, чтобы просмотреть серверы" -#: setup/setup_migrate.tpl:39 +#: include/class_baseSelectDialog.inc:55 msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." 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 "" +#: include/class_baseSelectDialog.inc:61 +#, fuzzy +msgid "Use" +msgstr "Пользователь" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" -msgstr "" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "Действие" -#: setup/setup_migrate.tpl:72 +#: include/class_baseSelectDialog.inc:72 #, fuzzy -msgid "Move selected workstations" -msgstr "Выберите чтобы посмотреть рабочие станции" - -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "" +msgid "Filter entries with this syntax" +msgstr "Показать подходяшие адреса" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +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 "" +#: include/functions_helpviewer.inc:45 +#, fuzzy, php-format +msgid "XML error in guide.xml: %s at line %d" +msgstr "Ошибка XML в gosa.conf: %s в строке %d" -#: 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." +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." msgstr "" -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" msgstr "" -#: setup/setup_migrate.tpl:125 setup/setup_migrate.tpl:177 -#: setup/setup_migrate.tpl:297 setup/setup_migrate.tpl:350 +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 #, fuzzy -msgid "Hide changes" -msgstr "Удалить телефонный аккаунт" +msgid "next" +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 "Показать телефоны" +#: include/functions_helpviewer.inc:389 +#, php-format +msgid "%s results for your search with the keyword %s" +msgstr "" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" 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." +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" 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." +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_migrate.tpl:148 +#: include/php_setup.inc:100 #, fuzzy -msgid "Move selected users into this people tree" -msgstr "Создать шаблон" +msgid "Send bugreport" +msgstr "Отправитель" -#: setup/setup_migrate.tpl:199 +#: include/php_setup.inc:105 #, fuzzy -msgid "Abort" -msgstr "Порт" +msgid "Toggle information" +msgstr "Личная информация" -#: setup/setup_migrate.tpl:201 +#: include/php_setup.inc:115 #, fuzzy -msgid "Create a new GOsa administrator account" -msgstr "Создать настройки запись эл. почты" +msgid "PHP error" +msgstr "Ошибка LDAP:" -#: setup/setup_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +#: include/php_setup.inc:134 +msgid "class" msgstr "" -#: setup/setup_migrate.tpl:233 +#: include/php_setup.inc:140 #, fuzzy -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 "" +msgid "function" +msgstr "Действие" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#: include/php_setup.inc:145 #, fuzzy -msgid "Current" -msgstr "Текущий пароль" +msgid "static" +msgstr "Состояние" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#: include/php_setup.inc:149 #, fuzzy -msgid "After migration" -msgstr "Управление пользователями" +msgid "method" +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." +#: include/php_setup.inc:182 +msgid "Trace" msgstr "" -#: setup/setup_frame.tpl:12 +#: include/php_setup.inc:183 #, fuzzy -msgid "GOsa setup wizard" -msgstr "Почтовые настройки пользователя" +msgid "File" +msgstr "Файлы" -#: setup/setup_frame.tpl:19 +#: include/php_setup.inc:183 #, fuzzy -msgid "Installation" -msgstr "Рабочая станция" +msgid "Line" +msgstr "в" -#: setup/setup_frame.tpl:19 +#: include/php_setup.inc:183 +msgid "Type" +msgstr "Тип" + +#: include/php_setup.inc:184 #, fuzzy -msgid "Steps" -msgstr "Системы" +msgid "Arguments" +msgstr "подразделения" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +#: include/class_pluglist.inc:56 #, fuzzy -msgid "LDAP schema check" -msgstr "Сервер подкачки" +msgid "All objects in this category" +msgstr "Описание группы" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" -msgstr "" +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +#, fuzzy +msgid "Unknown" +msgstr "состояние неизвестно" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 +msgid "" +"You are currently editing a database entry. Do you want to dismiss the " +"changes?" msgstr "" +"Вы сейчас редактируете объект базы данных. Хотите отказаться от изменений?" -#: setup/class_setupStep_Checks.inc:64 +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Служба печати" + +#: include/class_log.inc:107 #, fuzzy -msgid "Checking PHP version" -msgstr "Проверка версии PHP (>=4.1.0)" +msgid "MySQL error" +msgstr "Ошибка LDAP:" -#: setup/class_setupStep_Checks.inc:65 -#, fuzzy, php-format -msgid "PHP must be of version %s or above." +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" msgstr "" -"У вас должна быть установка PHP версии не ниже 4.1.0, так как в ней " -"реализованы некоторые новые функции и исправлены некоторые ошибки." -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." -msgstr "" +#: include/class_log.inc:120 +#, fuzzy, php-format +msgid "Invalid option '%s' specified!" +msgstr "Значение поля \"Имя\" содержит недопустимые символы." -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." -msgstr "" +#: include/class_log.inc:124 +#, fuzzy +msgid "Specified objectType is empty or invalid!" +msgstr "Указанное имя уже используется." -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" msgstr "" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." -msgstr "" +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +msgstr "Невозможно подключиться к серверу базы данных!" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." +#: include/functions.inc:125 +#, php-format +msgid "" +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/class_setupStep_Checks.inc:112 -#, fuzzy -msgid "mbstring" -msgstr "Настройки Samba" +#: include/functions.inc:335 +#, fuzzy, php-format +msgid "FATAL: Error when connecting the LDAP. Server said '%s'." +msgstr "Ошибка при подключении к LDAP-серверу. Ответ сервера: \"%s\"." -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." +#: include/functions.inc:397 +#, fuzzy +msgid "Username / UID is not unique inside the LDAP tree!" msgstr "" +"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP." -#: setup/class_setupStep_Checks.inc:121 +#: include/functions.inc:467 #, fuzzy msgid "" -"GOsa requires this module to communicate with several supported databases." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." msgstr "" -"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы " -"данных." +"Имя/идентификатор пользователя не уникальны. Проверьте свою базу данных LDAP." -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/class_setupStep_Checks.inc:129 -#, fuzzy +#: include/functions.inc:622 +#, fuzzy, php-format msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" msgstr "" -"Необходим для чтения отчетов о полученных факсимильных сообщениях из базы " -"данных." +"Не удается считать блокировку в базе данных LDAP. Проверьте, раздел \"config" +"\" в файле gosa.conf!" -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" -msgstr "" +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "LDAP server returned: %s" +msgstr "LDAP-сервер" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:716 +#, fuzzy +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." msgstr "" +"Для блокируемого объекта обнаружено несколько блокировок. Этого быть не " +"должно, проверьте работу LDAP." -#: setup/class_setupStep_Checks.inc:148 +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "Найдено более %d объектов." + +#: include/functions.inc:1015 +#, php-format msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" msgstr "" +"Установить новое значение лимита в %s и показать мне это сообщение если " +"лимит будет исчерпан." -#: setup/class_setupStep_Checks.inc:158 +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "не полный" + +#: include/functions.inc:1311 #, 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 будет работать в любом случае." +msgid "Continue anyway" +msgstr "Продолжить" -#: setup/class_setupStep_Checks.inc:159 +#: include/functions.inc:1313 #, fuzzy -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." -msgstr "Проверка значения параметра register_globals (должно быть: off)" +msgid "Edit anyway" +msgstr "Редактиовать объект" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:1315 +#, fuzzy, php-format +msgid "You're going to edit the LDAP entry/entries %s" +msgstr "Вы собираетесь удалить объект %s." + +#: include/functions.inc:1499 +msgid "Entries per page" msgstr "" -#: setup/class_setupStep_Checks.inc:168 -msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +#: include/functions.inc:1527 +msgid "Apply filter" msgstr "" -#: setup/class_setupStep_Checks.inc:169 -#, fuzzy -msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." -msgstr "Проверка значения параметра register_globals (должно быть: off)" +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789" -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "" + +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." +msgstr "" + +#: include/functions.inc:1936 include/functions.inc:1956 #, fuzzy -msgid "Off" -msgstr "не в сети" +msgid "Cannot write to revision file!" +msgstr "Удалить" -#: setup/class_setupStep_Checks.inc:177 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 +msgid "'base_hook' is not available. Using default base!" +msgstr "" + +#: include/functions.inc:2230 #, 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)" +msgid "LDAP warning" +msgstr "Экспорт в LDIF" -#: setup/class_setupStep_Checks.inc:178 +#: include/functions.inc:2230 #, fuzzy -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." -msgstr "Проверка значения параметра register_globals (должно быть: off)" +msgid "Cannot get schema information from server. No schema check possible!" +msgstr "Не удается получить информацию о схемах. Проверка схем невозможна!" -#: setup/class_setupStep_Checks.inc:185 -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." +#: include/functions.inc:2256 +msgid "Used to store account specific informations." msgstr "" -#: setup/class_setupStep_Checks.inc:186 +#: include/functions.inc:2263 msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." msgstr "" -#: setup/class_setupStep_Checks.inc:193 -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." +#: include/functions.inc:2306 +#, fuzzy, php-format +msgid "Missing required object class '%s'!" +msgstr "Список подразделений" + +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:201 -msgid "The Execution time should be at least 30 seconds." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:202 -msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +#: include/functions.inc:2320 +#, php-format +msgid "Class(es) available" msgstr "" -#: setup/class_setupStep_Checks.inc:209 +#: include/functions.inc:2342 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." +"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " +"schema configuration do not support this option." msgstr "" -#: setup/class_setupStep_Checks.inc:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2343 +msgid "" +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -#: setup/class_setupStep_Checks.inc:216 -#, fuzzy -msgid "On" -msgstr "Параметры" - -#: setup/class_setupStep_Checks.inc:217 +#: include/functions.inc:2347 msgid "" -"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " -"escape all quotes in strings in this case." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." +msgstr "" + +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:218 -#, fuzzy -msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." -msgstr "Проверка значения параметра register_globals (должно быть: off)" +#: include/functions.inc:2371 +msgid "German" +msgstr "Немецкий" -#: setup/class_setupStep_Checks.inc:225 -msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +#: include/functions.inc:2372 +msgid "French" +msgstr "Французский" + +#: include/functions.inc:2373 +msgid "Italian" msgstr "" -#: setup/class_setupStep_Checks.inc:226 -#, fuzzy -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." -msgstr "Проверка значения параметра register_globals (должно быть: off)" +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "Испанский" -#: setup/class_setupStep_Checks.inc:236 -#, fuzzy -msgid "Configuration writeable" -msgstr "Настроить" +#: include/functions.inc:2375 +msgid "English" +msgstr "Английский" -#: setup/class_setupStep_Checks.inc:237 +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "Датский" + +#: include/functions.inc:2377 #, fuzzy -msgid "The configuration file can't be written" -msgstr "Настроить" +msgid "Polish" +msgstr "Английский" -#: setup/class_setupStep_Checks.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." +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -#: setup/setup_welcome.tpl:4 +#: include/functions.inc:2379 +#, fuzzy +msgid "Chinese" +msgstr "сброс" + +#: include/functions.inc:2380 +msgid "Russian" +msgstr "Русский" + +#: include/functions.inc:2561 +#, fuzzy, php-format 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." +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." msgstr "" +"Не удается найти команду \"%s\", указанную в поле POSTREMOVE модуля \"%s\"." -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/setup_welcome.tpl:11 +#: include/class_acl.inc:26 #, fuzzy -msgid "Create a basic, single site configuration" -msgstr "Базы данных" +msgid "Access control" +msgstr "Параметры доступа" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" +#: include/class_acl.inc:207 +msgid "Reset ACLs" msgstr "" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "" +#: include/class_acl.inc:489 +#, fuzzy +msgid "No ACL settings for this category!" +msgstr "Описание группы" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" msgstr "" -#: setup/setup_welcome.tpl:20 +#: include/class_acl.inc:496 include/class_acl.inc:497 #, fuzzy -msgid "Find every possible configuration error" -msgstr "Настроить" +msgid "category ACL" +msgstr "Категория" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" +#: include/class_acl.inc:543 +#, php-format +msgid "Edit ACL for '%s' - scope is '%s'" msgstr "" -#: setup/setup_welcome.tpl:25 +#: include/class_acl.inc:698 include/class_acl.inc:705 #, fuzzy -msgid "To continue..." -msgstr "Продолжение настройки..." +msgid "Show/hide advanced settings" +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:" -msgstr "" +#: include/class_acl.inc:723 +#, fuzzy +msgid "Create objects" +msgstr "Объект группы" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "" +#: include/class_acl.inc:724 +#, fuzzy +msgid "Move objects" +msgstr "Включаемые объекты" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" -msgstr "" +#: include/class_acl.inc:725 +#, fuzzy +msgid "Remove objects" +msgstr "Включаемые объекты" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." +#: include/class_acl.inc:727 +msgid "Modifyable by owner" msgstr "" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." -msgstr "" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "чтение" -#: setup/setup_checks.tpl:67 -#, fuzzy -msgid "PHP setup configuration" -msgstr "Базы данных" +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "запись" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:743 #, fuzzy -msgid "show information" -msgstr "Личная информация" +msgid "Complete object" +msgstr "Включаемые объекты" -#: setup/setup_schema.tpl:3 +#: include/class_acl.inc:879 +#, fuzzy, php-format +msgid "Unkown ACL type '%s'!" +msgstr "состояние неизвестно" + +#: include/class_acl.inc:922 +#, fuzzy, php-format +msgid "Unknown entry '%s'!" +msgstr "состояние неизвестно" + +#: include/class_acl.inc:982 include/class_acl.inc:984 +#, fuzzy, php-format +msgid "Role: %s" +msgstr "Роль" + +#: include/class_acl.inc:984 #, fuzzy -msgid "Schema specific settings" -msgstr "Настройки телефона" +msgid "unknown role" +msgstr "состояние неизвестно" -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "" +#: include/class_acl.inc:992 +#, fuzzy, php-format +msgid "Contains settings for these objects: %s" +msgstr "Описание группы" -#: setup/setup_schema.tpl:16 +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 #, fuzzy -msgid "Check status" -msgstr "Состояние системы" +msgid "Members" +msgstr "Включаемые объекты" -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: setup/setup_schema.tpl:23 +#: include/class_acl.inc:1177 #, fuzzy -msgid "Schema check failed" -msgstr "Приложение" +msgid "Access control list" +msgstr "Параметры доступа" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." -msgstr "" +#: include/class_acl.inc:1182 +#, fuzzy +msgid "ACL roles" +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 "" +#: include/class_acl.inc:1185 +#, fuzzy +msgid "Role name" +msgstr "Имя сервера" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "" +#: include/class_acl.inc:1186 +#, fuzzy +msgid "Role description" +msgstr "Описание подразделения" -#: html/helpviewer.php:124 +#: include/class_certificate.inc:73 #, fuzzy -msgid "There is no helpfile specified for this class" -msgstr "Метод '%s' не описан в вашем файле конфигурации." +msgid "Certificate is empty!" +msgstr "Сертификаты" -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" msgstr "" -#: html/setup.php:66 +#: include/class_certificate.inc:115 #, fuzzy -msgid "Smarty" -msgstr "Запуск" +msgid "Cannot extract information for non PEM certificates!" +msgstr "Не удается создать квоту IMAP. Ответ сервера: \"%s\"." -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, fuzzy, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "Недоступен каталог \"%s\", указанный как каталог компиляции!" +#: include/class_certificate.inc:219 +#, fuzzy +msgid "No valid certificate loaded!" +msgstr "Изменить сертификаты" -#: html/password.php:58 html/index.php:142 -#, fuzzy, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "" -"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана." +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "У вас недостаточно прав для смены своего пароля." -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "Пароль" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль." +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "Пароль" -#: html/password.php:232 -msgid "You have no permissions to change your password." +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here to change your password" msgstr "У вас недостаточно прав для смены своего пароля." -#: html/password.php:253 -msgid "External password changer reported a problem: " -msgstr "При попытке сменить пароль извне возникла проблема: " +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "Конфликт блокировок" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." +#: ihtml/themes/default/islocked.tpl:9 +#, 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 "" +"Если результат этой проверки блокировки - ложь, очевидно, другой человек " +"закрыл браузер во время редактирования данных. Вы можете удалить файл " +"блокировки, нажав на кнопку Удалить." -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "Использовать шифрование SSL" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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 "" -#: html/main.php:172 +#: ihtml/themes/default/logout.tpl:10 #, fuzzy -msgid "PHP configuration" -msgstr "Базы данных" +msgid "Sign in again" +msgstr "Войти" -#: html/main.php:173 +#: ihtml/themes/default/acl.tpl:31 #, fuzzy -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." -msgstr "" -"Используется механизм register_globals. GOsa не допустит пользователей в " -"систему, пока он не будет отключен администратором." +msgid "Additional filter options" +msgstr "Дополнительные записи в fstab" -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:56 +#, fuzzy +msgid "Available members" +msgstr "Доступные приложения" + +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:361 -#, fuzzy -msgid "Your password is about to expire, please change your password!" -msgstr "У вас недостаточно прав для смены своего пароля." +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Plugin" -msgstr "в" - -#: html/main.php:371 -#, fuzzy, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "Не удается найти определение для модуля \"%s\"!" +msgid "ACL for this object" +msgstr "Проверка модуля gd" -#: html/index.php:57 +#: ihtml/themes/default/acl.tpl:113 #, fuzzy -msgid "Session is not encrypted!" -msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." +msgid "Available roles" +msgstr "Доступные приложения" -#: html/index.php:64 +#: ihtml/themes/default/remove.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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 не сможет отменить " +"результаты этой операции." -#: html/index.php:167 +#: ihtml/themes/default/snapshotdialog.tpl:3 #, fuzzy -msgid "Smarty error" -msgstr "Состояние системы" +msgid "Restoring object snapshots" +msgstr "Объект группы" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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 "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: 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 "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +msgid "There is no snapshot available that could be restored" msgstr "" -#: html/index.php:283 -msgid "Your LDAP setup contains old schema definitions:" +#: ihtml/themes/default/snapshotdialog.tpl:31 +msgid "Choose a snapshot and click the folder image, to restore the snapshot" msgstr "" -#: html/index.php:304 -msgid "Please specify a valid username!" -msgstr "Введите корректное имя пользователя!" +#: ihtml/themes/default/snapshotdialog.tpl:49 +#, fuzzy +msgid "Creating object snapshots" +msgstr "Объект группы" -#: html/index.php:307 -msgid "Please specify your password!" -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." +msgstr "" -#: html/index.php:319 +#: 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 "" + +#: ihtml/themes/default/snapshotdialog.tpl:70 #, fuzzy -msgid "Authentication error" -msgstr "Рабочая станция Windows" +msgid "Timestamp" +msgstr "Таймаут (с)" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" msgstr "" -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" +#: 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 от большой нагрузки. Простейший способ " +"снизить время обработки запроса при обслуживаии большой базы данных это " +"установить минимальное значение. Кроме того, будет очень полезно " +"использовать фильтры для просмотра только ограниченного количества объектов." -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:6 +msgid "Please choose the way to react for this session" +msgstr "Выберите тип реакции для данной сессии" + +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" +msgstr "игнорировать ошибку и показать все найденые объекты" + +#: ihtml/themes/default/sizelimit.tpl:10 +#, fuzzy msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" msgstr "" +"Игнорировать ошибку и показать все возвращаемые объекты в пределах лимита и " +"позволить использовать фильтры" #: ihtml/themes/default/copyPasteDialog.tpl:1 msgid "Copy & paste wizard" @@ -6136,21 +6161,6 @@ msgstr "" msgid "Index" msgstr "" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -msgstr "Конфликт блокировок" - -#: ihtml/themes/default/islocked.tpl:9 -#, 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 "" -"Если результат этой проверки блокировки - ложь, очевидно, другой человек " -"закрыл браузер во время редактирования данных. Вы можете удалить файл " -"блокировки, нажав на кнопку Удалить." - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "Начало" @@ -6171,46 +6181,46 @@ msgstr "Пользователь:" msgid "GOsa main menu" 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." +#: ihtml/themes/default/logout-close.tpl:5 +msgid "Your GOsa session has been closed!" msgstr "" -"Это приложение может использоваться несколькими группами. Подумайте еще раз, " -"действительно ли вы хотите удалить его, так как GOsa не сможет отменить " -"результаты этой операции." -#: ihtml/themes/default/acl.tpl:31 -#, fuzzy -msgid "Additional filter options" -msgstr "Дополнительные записи в fstab" +#: 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 "" -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:56 +#: ihtml/themes/default/login.tpl:27 #, fuzzy -msgid "Available members" -msgstr "Доступные приложения" +msgid "Login screen" +msgstr "Служба печати" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: ihtml/themes/default/login.tpl:34 +#, fuzzy +msgid "" +"Please use your username and your password to log into the site " +"administration system." msgstr "" +"Чтобы войти в систему
введите свои имя пользователя и пароль." -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" -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 "Каталог" -#: ihtml/themes/default/acl.tpl:107 -#, fuzzy -msgid "ACL for this object" -msgstr "Проверка модуля gd" +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "Войти" -#: ihtml/themes/default/acl.tpl:113 -#, fuzzy -msgid "Available roles" -msgstr "Доступные приложения" +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "Нажмите на эту кнопку, чтобы войти в систему" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6263,11 +6273,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "Каталог" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -6278,170 +6283,168 @@ msgstr "Новый пароль" msgid "Change" msgstr "Канал" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -#, fuzzy -msgid "Click here to change your password" -msgstr "У вас недостаточно прав для смены своего пароля." - -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: ihtml/themes/default/login.tpl:27 +#: html/main.php:172 #, fuzzy -msgid "Login screen" -msgstr "Служба печати" +msgid "PHP configuration" +msgstr "Базы данных" -#: ihtml/themes/default/login.tpl:34 +#: html/main.php:173 #, fuzzy msgid "" -"Please use your username and your password to log into the site " -"administration system." +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." msgstr "" -"Чтобы войти в систему
введите свои имя пользователя и пароль." - -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "Войти" - -#: ihtml/themes/default/login.tpl:78 -msgid "Click here to log in" -msgstr "Нажмите на эту кнопку, чтобы войти в систему" +"Используется механизм register_globals. GOsa не допустит пользователей в " +"систему, пока он не будет отключен администратором." -#: ihtml/themes/default/logout.tpl:5 -msgid "Your GOsa session has expired!" +#: html/main.php:218 +msgid "Running out of memory!" 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." +#: html/main.php:292 +msgid "User ACL checks disabled" msgstr "" -#: ihtml/themes/default/logout.tpl:10 +#: html/main.php:361 #, fuzzy -msgid "Sign in again" -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 от большой нагрузки. Простейший способ " -"снизить время обработки запроса при обслуживаии большой базы данных это " -"установить минимальное значение. Кроме того, будет очень полезно " -"использовать фильтры для просмотра только ограниченного количества объектов." +msgid "Your password is about to expire, please change your password!" +msgstr "У вас недостаточно прав для смены своего пароля." -#: ihtml/themes/default/sizelimit.tpl:6 -msgid "Please choose the way to react for this session" -msgstr "Выберите тип реакции для данной сессии" +#: html/main.php:370 +#, fuzzy +msgid "Plugin" +msgstr "в" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" -msgstr "игнорировать ошибку и показать все найденые объекты" +#: html/main.php:371 +#, fuzzy, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "Не удается найти определение для модуля \"%s\"!" -#: ihtml/themes/default/sizelimit.tpl:10 +#: html/index.php:57 #, fuzzy -msgid "" -"ignore this error and show all entries that fit into the defined sizelimit " -"and let me use filters instead" -msgstr "" -"Игнорировать ошибку и показать все возвращаемые объекты в пределах лимита и " -"позволить использовать фильтры" - -#: ihtml/themes/default/logout-close.tpl:5 -msgid "Your GOsa session has been closed!" -msgstr "" +msgid "Session is not encrypted!" +msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." -#: ihtml/themes/default/logout-close.tpl:7 +#: html/index.php:64 msgid "" -"Please close this browser window and clean the authentication caches to " -"avoid an automatic re-authentication by your browser." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "У вас недостаточно прав для смены своего пароля." +#: html/index.php:142 html/password.php:58 +#, fuzzy, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "" +"Не удается прочитать файл настройки GOsa %s/gosa.conf. Операция прервана." -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 +#: html/index.php:167 #, fuzzy -msgid "Old password" -msgstr "Пароль" +msgid "Smarty error" +msgstr "Состояние системы" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 -#, fuzzy -msgid "Verify password" -msgstr "Пароль" +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, fuzzy, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" +msgstr "Недоступен каталог \"%s\", указанный как каталог компиляции!" -#: ihtml/themes/default/snapshotdialog.tpl:3 -#, fuzzy -msgid "Restoring object snapshots" -msgstr "Объект группы" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" +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." +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" 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)." +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" 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 ?" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 -msgid "There is no snapshot available that could be restored" +#: html/index.php:283 +msgid "Your LDAP setup contains old schema definitions:" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "Введите корректное имя пользователя!" + +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "Введите свой пароль!" + +#: html/index.php:319 +#, fuzzy +msgid "Authentication error" +msgstr "Рабочая станция Windows" + +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:49 +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль." + +#: html/index.php:375 #, fuzzy -msgid "Creating object snapshots" -msgstr "Объект группы" +msgid "Account locked. Please contact your system administrator!" +msgstr "" +"Не удается начать сеанс на LDAP-сервере. Обратитесь к системному " +"администратору." -#: ihtml/themes/default/snapshotdialog.tpl:52 +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "Данные, передаваемые в течение этого сеанса, не будут зашифрованы." + +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "Использовать шифрование SSL" + +#: html/index.php:426 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." +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" 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." +#: html/password.php:163 +msgid "Error: Password method not available!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:70 +#: 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/helpviewer.php:70 +msgid "Help browser" +msgstr "" + +#: html/helpviewer.php:124 #, fuzzy -msgid "Timestamp" -msgstr "Таймаут (с)" +msgid "There is no helpfile specified for this class" +msgstr "Метод '%s' не описан в вашем файле конфигурации." -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." msgstr "" +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "Запуск" + #, fuzzy #~ msgid "Move object" #~ msgstr "Включаемые объекты" diff --git a/gosa-core/locale/core/zh/LC_MESSAGES/messages.po b/gosa-core/locale/core/zh/LC_MESSAGES/messages.po index 3f465cd4f..a3d746fcc 100644 --- a/gosa-core/locale/core/zh/LC_MESSAGES/messages.po +++ b/gosa-core/locale/core/zh/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-30 08:30+0200\n" +"POT-Creation-Date: 2008-06-03 20:56+0200\n" "PO-Revision-Date: 2007-06-03 12:27+0800\n" "Last-Translator: Jiang Xin \n" "Language-Team: Chinese Simplified \n" @@ -16,11 +16,86 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" +#: plugins/personal/password/nochange.tpl:2 +msgid "Password change not allowed" +msgstr "不允许修改口令" + +#: plugins/personal/password/nochange.tpl:6 +#, fuzzy +msgid "You have no permission to change your password at this time" +msgstr "您无权修改您的口令。" + +#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#, fuzzy +msgid "Password settings" +msgstr "用户设置" + +#: 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/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 "" +"用下面的表格更改个人口令。口令更改即时生效。请记住新口令,忘记口令将无法登" +"录。" + +#: 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等的登录。" + +#: plugins/personal/password/password.tpl:13 +#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 +#: html/password.php:221 +msgid "Current password" +msgstr "当前口令" + +#: plugins/personal/password/password.tpl:18 +#: plugins/personal/generic/main.inc:86 +#: plugins/personal/generic/password.tpl:7 +#: plugins/admin/users/class_userManagement.inc:264 +#: plugins/admin/users/password.tpl:13 +#: ihtml/themes/default/accountexpired.tpl:32 +#: ihtml/themes/default/accountexpired.tpl:36 +#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 +#: html/password.php:200 +msgid "New password" +msgstr "新口令" + +#: plugins/personal/password/password.tpl:23 +#: plugins/personal/generic/password.tpl:11 +#: plugins/admin/users/password.tpl:17 +msgid "Repeat new password" +msgstr "重复新口令" + +#: plugins/personal/password/password.tpl:28 +#: ihtml/themes/default/password.tpl:89 +#, fuzzy +msgid "Password strength" +msgstr "口令存储" + +#: plugins/personal/password/password.tpl:39 +#: plugins/personal/generic/password.tpl:17 +#: plugins/admin/users/password.tpl:30 +msgid "Set password" +msgstr "设置口令" + +#: plugins/personal/password/password.tpl:41 +msgid "Clear fields" +msgstr "清除字段" + #: plugins/personal/password/class_password.inc:26 #: plugins/personal/generic/paste_generic.tpl:20 setup/setup_config2.tpl:295 #: setup/setup_config2.tpl:340 setup/setup_migrate.tpl:225 -#: ihtml/themes/default/password.tpl:39 ihtml/themes/default/login.tpl:47 -#: ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/login.tpl:47 ihtml/themes/default/login.tpl:49 +#: ihtml/themes/default/password.tpl:39 msgid "Password" msgstr "口令" @@ -39,8 +114,8 @@ msgstr "修改口令" #: plugins/personal/password/class_password.inc:114 #: plugins/admin/users/class_userManagement.inc:315 #: plugins/admin/users/class_userManagement.inc:378 -#: plugins/admin/users/class_userManagement.inc:655 html/main.php:361 -#: ihtml/themes/default/password.tpl:40 +#: plugins/admin/users/class_userManagement.inc:655 +#: ihtml/themes/default/password.tpl:40 html/main.php:361 #, fuzzy msgid "Password change" msgstr "不允许修改口令" @@ -92,889 +167,543 @@ msgid "User password" msgstr "清除口令" #: plugins/personal/password/class_password.inc:146 -#: plugins/personal/posix/class_posixAccount.inc:1498 #: plugins/personal/generic/class_user.inc:1491 +#: plugins/personal/posix/class_posixAccount.inc:1498 msgid "My account" msgstr "我的账号" -#: plugins/personal/password/nochange.tpl:2 -msgid "Password change not allowed" -msgstr "不允许修改口令" - -#: plugins/personal/password/nochange.tpl:6 -#, fuzzy -msgid "You have no permission to change your password at this time" -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 "" -"用下面的表格更改个人口令。口令更改即时生效。请记住新口令,忘记口令将无法登" -"录。" - -#: 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等的登录。" - -#: plugins/personal/password/password.tpl:13 html/password.php:221 -#: ihtml/themes/default/password.tpl:77 ihtml/themes/default/password.tpl:78 -msgid "Current password" -msgstr "当前口令" +#: plugins/personal/generic/generic_picture.tpl:5 +#: plugins/personal/generic/generic_picture.tpl:15 +#: plugins/personal/generic/generic.tpl:20 +#: plugins/personal/generic/generic.tpl:22 +#: plugins/personal/generic/generic.tpl:38 +#: plugins/personal/generic/multiple_generic.tpl:13 +#: plugins/personal/generic/paste_generic.tpl:37 +msgid "Personal picture" +msgstr "个人图片" -#: plugins/personal/password/password.tpl:18 -#: plugins/personal/generic/password.tpl:7 -#: plugins/personal/generic/main.inc:86 plugins/admin/users/password.tpl:13 -#: plugins/admin/users/class_userManagement.inc:264 html/password.php:200 -#: ihtml/themes/default/password.tpl:81 ihtml/themes/default/password.tpl:82 -#: ihtml/themes/default/accountexpired.tpl:32 -#: ihtml/themes/default/accountexpired.tpl:36 -msgid "New password" -msgstr "新口令" +#: plugins/personal/generic/generic_picture.tpl:27 +#: plugins/personal/generic/paste_generic.tpl:52 +msgid "Remove picture" +msgstr "删除图片" -#: plugins/personal/password/password.tpl:23 -#: plugins/personal/generic/password.tpl:11 -#: plugins/admin/users/password.tpl:17 -msgid "Repeat new password" -msgstr "重复新口令" +#: plugins/personal/generic/class_user.inc:37 +#: plugins/personal/generic/class_user.inc:1486 +#: plugins/personal/posix/generic.tpl:4 +#: plugins/generic/references/class_reference.inc:41 +#: plugins/admin/departments/class_departmentGeneric.inc:534 +#: plugins/admin/ogroups/class_ogroup.inc:1055 +#: plugins/admin/groups/class_groupGeneric.inc:1212 +#: setup/setup_feedback.tpl:46 +msgid "Generic" +msgstr "通用配置" -#: plugins/personal/password/password.tpl:28 -#: ihtml/themes/default/password.tpl:89 +#: plugins/personal/generic/class_user.inc:38 #, fuzzy -msgid "Password strength" -msgstr "口令存储" +msgid "Edit organizational user settings" +msgstr "应用程序设置" -#: plugins/personal/password/password.tpl:39 -#: plugins/personal/generic/password.tpl:17 -#: plugins/admin/users/password.tpl:30 -msgid "Set password" -msgstr "设置口令" +#: plugins/personal/generic/class_user.inc:304 +msgid "female" +msgstr "女" -#: plugins/personal/password/password.tpl:41 -msgid "Clear fields" -msgstr "清除字段" +#: plugins/personal/generic/class_user.inc:304 +msgid "male" +msgstr "男" -#: 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/generic/class_user.inc:402 +#: plugins/personal/generic/class_user.inc:503 +#: plugins/personal/generic/class_user.inc:786 +#: plugins/personal/generic/class_user.inc:1336 +#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:918 +#: plugins/admin/groups/class_groupGeneric.inc:923 +#: plugins/admin/groups/class_groupGeneric.inc:1164 +#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 +#: setup/setup_checks.tpl:91 include/class_plugin.inc:643 +#: include/class_plugin.inc:680 include/class_plugin.inc:718 +#: include/class_plugin.inc:1580 include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#: include/class_CopyPasteHandler.inc:367 include/utils/class_msgPool.inc:153 +#: include/utils/class_msgPool.inc:165 include/utils/class_msgPool.inc:183 +#: include/utils/class_msgPool.inc:465 include/utils/class_msgPool.inc:484 +#: include/class_msg_dialog.inc:99 +#: include/password-methods/class_password-methods.inc:145 +#: include/class_gosaSupportDaemon.inc:1177 +#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 +#: include/class_log.inc:157 include/class_log.inc:165 +#: include/class_log.inc:177 include/class_log.inc:192 +#: include/class_log.inc:205 include/class_log.inc:228 +#: ihtml/themes/default/msg_dialog.tpl:55 +#: ihtml/themes/default/msg_dialog.tpl:100 html/index.php:226 +#: html/index.php:230 +#, php-format +msgid "Error" +msgstr "错误" -#: plugins/personal/password/main.inc:48 setup/setup_config1.tpl:136 +#: plugins/personal/generic/class_user.inc:402 +msgid "Cannot upload file!" +msgstr "" + +#: plugins/personal/generic/class_user.inc:503 #, fuzzy -msgid "Password settings" -msgstr "用户设置" +msgid "Serial number" +msgstr "电话号码" -#: plugins/personal/posix/posix_groups.tpl:6 -msgid "Select groups to add" -msgstr "选择要添加的组" +#: plugins/personal/generic/class_user.inc:548 +msgid "" +"(Some types of certificates are currently not supported and may be displayed " +"as 'invalid'.)" +msgstr "(目前有的种类的证书不支持,可能显示为“无效”)" -#: plugins/personal/posix/posix_groups.tpl:21 -#: plugins/admin/groups/group_objects.tpl:20 -#: plugins/admin/ogroups/ogroup_objects.tpl:20 -#: ihtml/themes/default/MultiSelectWindow.tpl:57 -#: ihtml/themes/default/MultiSelectWindow.tpl:97 -msgid "Filters" -msgstr "过滤器" +#: plugins/personal/generic/class_user.inc:558 +#, php-format +msgid "Certificate is valid from %s to %s and is currently %s." +msgstr "证书从 %s 到 %s 是有效的,当前为 %s。" -#: plugins/personal/posix/posix_groups.tpl:32 -msgid "Display groups of department" -msgstr "显示部门的组" +#: plugins/personal/generic/class_user.inc:561 +msgid "valid" +msgstr "有效" -#: plugins/personal/posix/posix_groups.tpl:35 -#: plugins/personal/posix/trust_machines.tpl:27 -#: plugins/admin/groups/group_objects.tpl:40 -#: plugins/admin/groups/trust_machines.tpl:27 -#: plugins/admin/ogroups/ogroup_objects.tpl:37 -#: plugins/admin/ogroups/trust_machines.tpl:27 -msgid "Choose the department the search will be based on" -msgstr "选择一个部门来做查询" +#: plugins/personal/generic/class_user.inc:562 +msgid "invalid" +msgstr "无效" -#: plugins/personal/posix/posix_groups.tpl:44 -msgid "Display groups matching" -msgstr "显示匹配的组" +#: plugins/personal/generic/class_user.inc:567 +msgid "No certificate installed" +msgstr "未安装证书" -#: plugins/personal/posix/posix_groups.tpl:48 -#: plugins/admin/groups/class_divListGroup.inc:100 -#: plugins/admin/ogroups/class_divListOGroup.inc:115 -msgid "Regular expression for matching group names" -msgstr "用于匹配组名的正则表达式" +#: plugins/personal/generic/class_user.inc:592 html/password.php:163 +#, fuzzy +msgid "Password method" +msgstr "口令存储" -#: plugins/personal/posix/posix_groups.tpl:55 -msgid "Display groups of user" -msgstr "显示用户组" +#: plugins/personal/generic/class_user.inc:592 +#, fuzzy +msgid "The selected password method is no longer available." +msgstr "此应用程序不再可用。" -#: plugins/personal/posix/posix_groups.tpl:59 -#: plugins/admin/groups/class_divListGroup.inc:101 -msgid "User name of which groups are shown" -msgstr "显示属于该组的用户名" - -#: plugins/personal/posix/posix_groups.tpl:68 -#: plugins/admin/ogroups/ogroup_objects.tpl:33 -#: include/utils/class_msgPool.inc:23 -#, fuzzy -msgid "Search in subtrees" -msgstr "在子树中查找" - -#: plugins/personal/posix/posix_shadow.tpl:9 -msgid "User must change password on first login" -msgstr "用户必须在第一次登录修改口令" - -#: plugins/personal/posix/posix_shadow.tpl:34 -msgid "Password expires on" -msgstr "口令过期截止日" - -#: plugins/personal/posix/paste_generic.tpl:4 -msgid "Posix settings" -msgstr "Posix 设置" - -#: plugins/personal/posix/paste_generic.tpl:8 -#: plugins/personal/posix/generic.tpl:7 -#: plugins/personal/posix/class_posixAccount.inc:1003 -#: plugins/personal/posix/class_posixAccount.inc:1006 -#: plugins/personal/posix/class_posixAccount.inc:1076 -#: plugins/personal/posix/class_posixAccount.inc:1079 -#: plugins/personal/posix/class_posixAccount.inc:1504 -msgid "Home directory" -msgstr "用户主目录" - -#: plugins/personal/posix/paste_generic.tpl:23 -#: plugins/personal/posix/generic.tpl:52 -msgid "Force UID/GID" -msgstr "指定 UID/GID" - -#: plugins/personal/posix/paste_generic.tpl:28 -#: plugins/personal/posix/generic.tpl:56 -#: plugins/personal/posix/class_posixAccount.inc:1014 -#: plugins/personal/posix/class_posixAccount.inc:1017 -msgid "UID" -msgstr "UID" - -#: plugins/personal/posix/paste_generic.tpl:37 -#: plugins/personal/posix/generic.tpl:67 -#: plugins/personal/posix/class_posixAccount.inc:1021 -#: plugins/personal/posix/class_posixAccount.inc:1024 -#: plugins/admin/groups/class_groupGeneric.inc:1111 -#: plugins/admin/groups/class_groupGeneric.inc:1114 -#: plugins/admin/groups/class_groupGeneric.inc:1228 -msgid "GID" -msgstr "GID" - -#: plugins/personal/posix/paste_generic.tpl:47 -#: plugins/personal/posix/generic.tpl:82 -msgid "Group membership" -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 个组!)" - -#: plugins/personal/posix/trust_machines.tpl:6 -#: plugins/admin/groups/trust_machines.tpl:6 -#: plugins/admin/ogroups/trust_machines.tpl:6 -msgid "Select systems to add" -msgstr "选择要添加的系统" - -#: plugins/personal/posix/trust_machines.tpl:26 -#: plugins/admin/groups/trust_machines.tpl:26 -#: plugins/admin/ogroups/trust_machines.tpl:26 -msgid "Display systems of department" -msgstr "显示部门的系统" - -#: plugins/personal/posix/trust_machines.tpl:30 -#: plugins/admin/groups/trust_machines.tpl:30 -#: plugins/admin/ogroups/trust_machines.tpl:30 -msgid "Display systems matching" -msgstr "显示匹配的系统" - -#: plugins/personal/posix/trust_machines.tpl:31 -#: plugins/admin/groups/trust_machines.tpl:31 -#: plugins/admin/ogroups/trust_machines.tpl:31 -msgid "Regular expression for matching addresses" -msgstr "匹配地址的正则表达式" - -#: plugins/personal/posix/generic.tpl:4 -#: plugins/personal/generic/class_user.inc:37 -#: plugins/personal/generic/class_user.inc:1486 -#: plugins/admin/groups/class_groupGeneric.inc:1212 -#: plugins/admin/departments/class_departmentGeneric.inc:534 -#: plugins/admin/ogroups/class_ogroup.inc:1055 -#: plugins/generic/references/class_reference.inc:41 -#: setup/setup_feedback.tpl:46 -msgid "Generic" -msgstr "通用配置" - -#: plugins/personal/posix/generic.tpl:15 -#: plugins/personal/posix/class_posixAccount.inc:1505 -msgid "Shell" -msgstr "Shell" - -#: plugins/personal/posix/generic.tpl:25 -msgid "Primary group" -msgstr "主要用户组" - -#: plugins/personal/posix/generic.tpl:36 -msgid "Status" -msgstr "状态" - -#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 -#, fuzzy -msgid "In all groups" -msgstr "显示邮件组" - -#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 -#, fuzzy -msgid "Not in all groups" -msgstr "显示邮件组" - -#: plugins/personal/posix/generic.tpl:118 -msgid "Account" -msgstr "账户" - -#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 -msgid "System trust" -msgstr "信赖的系统" - -#: plugins/personal/posix/generic.tpl:127 -#: plugins/personal/posix/generic.tpl:155 plugins/admin/groups/generic.tpl:168 -#: plugins/admin/ogroups/generic.tpl:42 -msgid "Trust mode" -msgstr "信赖模式" - -#: plugins/personal/posix/class_posixAccount.inc:37 -#: plugins/generic/references/class_reference.inc:43 -msgid "UNIX" -msgstr "UNIX" - -#: plugins/personal/posix/class_posixAccount.inc:38 -#, fuzzy -msgid "Edit users POSIX settings" -msgstr "Posix 设置" - -#: plugins/personal/posix/class_posixAccount.inc:154 -msgid "expired" -msgstr "过期" - -#: plugins/personal/posix/class_posixAccount.inc:156 -msgid "grace time active" -msgstr "时间限制激活" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#: plugins/personal/posix/class_posixAccount.inc:161 -#: plugins/personal/posix/class_posixAccount.inc:163 -#: plugins/admin/users/class_divListUsers.inc:300 -msgid "active" -msgstr "活动" - -#: plugins/personal/posix/class_posixAccount.inc:159 -#, fuzzy -msgid "password not changable" -msgstr "活动,口令不可更改" - -#: plugins/personal/posix/class_posixAccount.inc:161 -#, fuzzy -msgid "password expired" -msgstr "活动,口令过期" - -#: plugins/personal/posix/class_posixAccount.inc:208 -msgid "unconfigured" -msgstr "未配置" - -#: plugins/personal/posix/class_posixAccount.inc:219 -msgid "automatic" -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" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:248 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:260 -#: plugins/generic/references/class_reference.inc:47 -#: plugins/generic/references/class_reference.inc:49 -msgid "Samba" -msgstr "Samba" - -#: plugins/personal/posix/class_posixAccount.inc:295 -#: plugins/admin/groups/class_divListGroup.inc:254 -#: plugins/admin/users/class_divListUsers.inc:252 -#: plugins/admin/ogroups/tabs_ogroups.inc:185 -msgid "Environment" -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 天,不能修改口令" - -#: plugins/personal/posix/class_posixAccount.inc:469 -#, php-format -msgid "Password must be changed after %s days" -msgstr "口令必须在 %s 天之后更改" - -#: plugins/personal/posix/class_posixAccount.inc:473 -#, php-format -msgid "Disable account after %s days of inactivity after password expiery" -msgstr "口令过期 %s 天后,禁用账号" - -#: plugins/personal/posix/class_posixAccount.inc:477 -#, php-format -msgid "Warn user %s days before password expiery" -msgstr "在口令过期 %s 天之前警告用户" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 setup/setup_config2.tpl:201 -msgid "disabled" -msgstr "禁用" - -#: plugins/personal/posix/class_posixAccount.inc:608 -#: plugins/admin/groups/class_groupGeneric.inc:496 -#: plugins/admin/ogroups/class_ogroup.inc:529 -msgid "full access" -msgstr "完全访问权限" - -#: plugins/personal/posix/class_posixAccount.inc:609 -#: plugins/admin/groups/class_groupGeneric.inc:497 -#: plugins/admin/ogroups/class_ogroup.inc:530 -msgid "allow access to these hosts" -msgstr "允许访问这些主机" - -#: plugins/personal/posix/class_posixAccount.inc:663 -#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/personal/generic/class_user.inc:702 #: plugins/personal/generic/class_user.inc:1037 -#: plugins/admin/acl/class_aclRole.inc:588 -#: plugins/admin/acl/class_aclRole.inc:628 -#: plugins/admin/acl/class_aclRole.inc:642 -#: plugins/admin/groups/class_groupGeneric.inc:722 -#: plugins/admin/groups/class_groupGeneric.inc:1034 -#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/personal/posix/class_posixAccount.inc:663 +#: plugins/personal/posix/class_posixAccount.inc:927 #: plugins/admin/departments/class_departmentGeneric.inc:185 #: plugins/admin/departments/class_departmentGeneric.inc:358 #: plugins/admin/departments/class_departmentGeneric.inc:626 #: plugins/admin/departments/class_departmentGeneric.inc:657 +#: plugins/admin/acl/class_aclRole.inc:588 +#: plugins/admin/acl/class_aclRole.inc:628 +#: plugins/admin/acl/class_aclRole.inc:642 #: plugins/admin/ogroups/class_ogroup.inc:968 #: plugins/admin/ogroups/class_ogroup.inc:982 -#: include/class_MultiSelectWindow.inc:530 include/functions.inc:344 -#: include/functions.inc:371 include/functions.inc:380 -#: include/functions.inc:409 include/functions.inc:620 -#: include/functions.inc:652 include/functions.inc:691 -#: include/functions.inc:736 include/functions.inc:2524 -#: include/functions.inc:2736 include/class_plugin.inc:902 -#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 -#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 -#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 -#: include/class_plugin.inc:1501 include/class_acl.inc:1144 -#: include/class_config.inc:242 include/class_ldap.inc:693 -#: include/class_ldap.inc:1159 setup/class_setupStep_Migrate.inc:1062 -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 +#: plugins/admin/users/class_userManagement.inc:681 +#: plugins/admin/groups/class_groupGeneric.inc:722 +#: plugins/admin/groups/class_groupGeneric.inc:1034 +#: setup/class_setupStep_Migrate.inc:1062 +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 #: setup/class_setupStep_Migrate.inc:1188 #: setup/class_setupStep_Migrate.inc:1955 -#: setup/class_setupStep_Migrate.inc:1959 html/index.php:256 +#: setup/class_setupStep_Migrate.inc:1959 include/class_plugin.inc:902 +#: include/class_plugin.inc:1230 include/class_plugin.inc:1279 +#: include/class_plugin.inc:1283 include/class_plugin.inc:1360 +#: include/class_plugin.inc:1418 include/class_plugin.inc:1484 +#: include/class_plugin.inc:1501 include/class_MultiSelectWindow.inc:530 +#: include/class_ldap.inc:693 include/class_ldap.inc:1159 +#: include/class_config.inc:242 include/functions.inc:361 +#: include/functions.inc:388 include/functions.inc:397 +#: include/functions.inc:426 include/functions.inc:637 +#: include/functions.inc:669 include/functions.inc:708 +#: include/functions.inc:753 include/functions.inc:2541 +#: include/functions.inc:2753 include/class_acl.inc:1144 html/index.php:256 #: html/index.php:270 html/index.php:283 #, fuzzy msgid "LDAP error" msgstr "LDAP 错误:" -#: plugins/personal/posix/class_posixAccount.inc:817 -#: plugins/personal/posix/class_posixAccount.inc:910 -#: plugins/admin/acl/remove.tpl:2 plugins/admin/groups/remove.tpl:2 -#: plugins/admin/users/class_userManagement.inc:629 -#: plugins/admin/users/remove.tpl:2 -#: plugins/admin/departments/dep_move_confirm.tpl:2 -#: plugins/admin/departments/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 -#: include/functions.inc:699 include/functions.inc:2181 -#: include/functions.inc:2185 include/functions.inc:2191 -#: include/class_tabs.inc:238 setup/class_setupStep_Migrate.inc:215 -#: setup/class_setupStep_Migrate.inc:267 setup/class_setupStep_Migrate.inc:400 -#: setup/class_setupStep_Migrate.inc:477 setup/class_setupStep_Migrate.inc:616 -#: setup/class_setupStep_Migrate.inc:757 setup/setup_checks.tpl:32 -#: setup/setup_checks.tpl:93 html/password.php:284 html/index.php:57 -#: html/index.php:63 html/index.php:420 html/index.php:426 -#: ihtml/themes/default/islocked.tpl:6 ihtml/themes/default/remove.tpl:2 -#: ihtml/themes/default/conflict.tpl:6 ihtml/themes/default/msg_dialog.tpl:57 -#: ihtml/themes/default/msg_dialog.tpl:102 -msgid "Warning" -msgstr "警告" - -#: plugins/personal/posix/class_posixAccount.inc:817 -msgid "Timeout while waiting for lock. Ignoring lock!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:910 -msgid "" -"A duplicated UID number was written for this user. If this was not intended " -"please verify all used uidNumbers!" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:947 -#: plugins/personal/posix/class_posixAccount.inc:1140 -msgid "Group of user" -msgstr "用户组" - -#: plugins/personal/posix/class_posixAccount.inc:1032 -#: plugins/personal/posix/class_posixAccount.inc:1085 -#, fuzzy -msgid "shadowMin" -msgstr "显示终端" - -#: plugins/personal/posix/class_posixAccount.inc:1037 -#: plugins/personal/posix/class_posixAccount.inc:1090 -msgid "shadowMax" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1042 -#: plugins/personal/posix/class_posixAccount.inc:1095 -#, fuzzy -msgid "shadowWarning" -msgstr "显示分区" - -#: plugins/personal/posix/class_posixAccount.inc:1056 -#: plugins/personal/posix/class_posixAccount.inc:1109 -#, fuzzy -msgid "shadowInactive" -msgstr "显示打印机" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/personal/generic/class_user.inc:402 -#: plugins/personal/generic/class_user.inc:503 -#: plugins/personal/generic/class_user.inc:786 -#: plugins/personal/generic/class_user.inc:1336 -#: plugins/personal/generic/main.inc:104 -#: plugins/admin/groups/class_groupGeneric.inc:918 -#: plugins/admin/groups/class_groupGeneric.inc:923 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#: include/utils/class_msgPool.inc:153 include/utils/class_msgPool.inc:165 -#: include/utils/class_msgPool.inc:183 include/utils/class_msgPool.inc:465 -#: include/utils/class_msgPool.inc:484 -#: include/password-methods/class_password-methods.inc:145 -#: include/class_plugin.inc:643 include/class_plugin.inc:680 -#: include/class_plugin.inc:718 include/class_plugin.inc:1580 -#: include/class_msg_dialog.inc:99 include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#: include/class_CopyPasteHandler.inc:367 -#: include/class_gosaSupportDaemon.inc:1177 -#: include/class_gosaSupportDaemon.inc:1197 include/class_log.inc:145 -#: include/class_log.inc:157 include/class_log.inc:165 -#: include/class_log.inc:177 include/class_log.inc:192 -#: include/class_log.inc:205 include/class_log.inc:228 -#: setup/class_setupStep_Migrate.inc:1051 setup/setup_checks.tpl:30 -#: setup/setup_checks.tpl:91 html/index.php:226 html/index.php:230 -#: ihtml/themes/default/msg_dialog.tpl:55 -#: ihtml/themes/default/msg_dialog.tpl:100 -#, php-format -msgid "Error" -msgstr "错误" - -#: plugins/personal/posix/class_posixAccount.inc:1319 -#: plugins/admin/groups/class_groupGeneric.inc:1164 -#, fuzzy -msgid "Cannot allocate a free ID!" -msgstr "太多用户,无法分配一个可用的 ID!" - -#: plugins/personal/posix/class_posixAccount.inc:1494 -#, fuzzy -msgid "POSIX account" -msgstr "GLPI 账号" - -#: plugins/personal/posix/class_posixAccount.inc:1506 -#: setup/setup_migrate.tpl:217 -msgid "User ID" -msgstr "用户 ID" - -#: plugins/personal/posix/class_posixAccount.inc:1507 -#, fuzzy -msgid "Group ID" -msgstr "组" - -#: plugins/personal/posix/class_posixAccount.inc:1509 -#, fuzzy -msgid "Force password change on login" -msgstr "不允许修改口令" - -#: plugins/personal/posix/class_posixAccount.inc:1510 -#, fuzzy -msgid "Shadow min" -msgstr "显示终端" - -#: plugins/personal/posix/class_posixAccount.inc:1511 -msgid "Shadow max" -msgstr "" - -#: plugins/personal/posix/class_posixAccount.inc:1512 -#, fuzzy -msgid "Shadow warning" -msgstr "显示分区" - -#: plugins/personal/posix/class_posixAccount.inc:1513 -#, fuzzy -msgid "Shadow inactive" -msgstr "显示打印机" - -#: plugins/personal/posix/class_posixAccount.inc:1514 -#, fuzzy -msgid "Shadow expire" -msgstr "显示人员" - -#: plugins/personal/posix/class_posixAccount.inc:1515 -#, fuzzy -msgid "System trust model" -msgstr "信赖的系统" - -#: plugins/personal/posix/main.inc:131 +#: plugins/personal/generic/class_user.inc:1149 #, fuzzy -msgid "POSIX settings" -msgstr "Posix 设置" - -#: 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 "" -"您已经修改了口令在 LDAP 数据库中存储的方法。因此您需要再输入您的口令。GOsa 将" -"会按照您选择的方法重新编码。" - -#: plugins/personal/generic/generic_picture.tpl:5 -#: plugins/personal/generic/generic_picture.tpl:15 -#: 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 -msgid "Personal picture" -msgstr "个人图片" - -#: plugins/personal/generic/generic_picture.tpl:27 -#: plugins/personal/generic/paste_generic.tpl:52 -msgid "Remove picture" -msgstr "删除图片" - -#: plugins/personal/generic/multiple_generic.tpl:5 -#: plugins/personal/generic/generic.tpl:6 -msgid "Personal information" -msgstr "个人信息" - -#: plugins/personal/generic/multiple_generic.tpl:23 -#: plugins/personal/generic/generic.tpl:108 -#: plugins/personal/generic/class_user.inc:1502 -msgid "Academic title" -msgstr "学位头衔" - -#: plugins/personal/generic/multiple_generic.tpl:33 -#: plugins/personal/generic/generic.tpl:157 -msgid "Preferred langage" -msgstr "首选语种" - -#: plugins/personal/generic/multiple_generic.tpl:47 -#: plugins/personal/generic/generic.tpl:170 -#: plugins/personal/generic/class_user.inc:1496 -#: plugins/admin/acl/class_divListACL.inc:153 -#: plugins/admin/acl/acl_role.tpl:27 plugins/admin/acl/class_aclRole.inc:707 -#: plugins/admin/groups/class_groupGeneric.inc:1222 -#: plugins/admin/groups/class_divListGroup.inc:174 -#: plugins/admin/groups/generic.tpl:39 -#: plugins/admin/users/class_divListUsers.inc:162 -#: plugins/admin/departments/class_divListDepartment.inc:144 -#: plugins/admin/departments/generic.tpl:35 -#: plugins/admin/departments/class_departmentGeneric.inc:545 -#: plugins/admin/ogroups/class_divListOGroup.inc:188 -#: plugins/admin/ogroups/class_ogroup.inc:1065 -#: plugins/admin/ogroups/generic.tpl:26 include/class_baseSelectDialog.inc:65 -#: setup/setup_ldap.tpl:55 -msgid "Base" -msgstr "位置" - -#: plugins/personal/generic/multiple_generic.tpl:53 -#: plugins/personal/generic/generic.tpl:175 -msgid "Choose subtree to place user in" -msgstr "将用户放到所选择子树中" - -#: plugins/personal/generic/multiple_generic.tpl:56 -#: plugins/personal/generic/generic.tpl:180 plugins/admin/acl/acl_role.tpl:37 -#: plugins/admin/groups/generic.tpl:49 -#: plugins/admin/departments/generic.tpl:45 -#: plugins/admin/ogroups/generic.tpl:34 -msgid "Select a base" -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:391 -#: plugins/admin/departments/generic.tpl:76 -#: plugins/admin/departments/class_departmentGeneric.inc:551 -msgid "Address" -msgstr "住址" - -#: plugins/personal/generic/multiple_generic.tpl:78 -#: plugins/personal/generic/generic.tpl:202 -msgid "Private phone" -msgstr "私人电话" - -#: plugins/personal/generic/multiple_generic.tpl:88 -#: plugins/personal/generic/generic.tpl:210 -#: plugins/personal/generic/class_user.inc:1210 -#: plugins/personal/generic/class_user.inc:1505 -#: plugins/personal/generic/class_user.inc:1604 -msgid "Homepage" -msgstr "个人主页" - -#: plugins/personal/generic/multiple_generic.tpl:105 -#: plugins/personal/generic/generic.tpl:223 -msgid "Password storage" -msgstr "口令存储" - -#: plugins/personal/generic/multiple_generic.tpl:117 -#: plugins/personal/generic/generic.tpl:240 -#: plugins/personal/generic/generic_certs.tpl:3 -msgid "Certificates" -msgstr "证书" - -#: plugins/personal/generic/multiple_generic.tpl:121 -#: plugins/personal/generic/generic.tpl:243 -msgid "Edit certificates" -msgstr "编辑证书" - -#: plugins/personal/generic/multiple_generic.tpl:137 -#: plugins/personal/generic/generic.tpl:261 -msgid "Organizational information" -msgstr "组织信息" - -#: plugins/personal/generic/multiple_generic.tpl:149 -#: plugins/personal/generic/generic.tpl:273 -#: plugins/personal/generic/class_user.inc:1506 setup/setup_feedback.tpl:14 -msgid "Organization" -msgstr "组织/公司" - -#: plugins/personal/generic/multiple_generic.tpl:159 -#: plugins/personal/generic/generic.tpl:281 -#: plugins/personal/generic/class_user.inc:1507 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_divListUsers.inc:80 -#: plugins/admin/departments/class_divListDepartment.inc:156 -#: plugins/admin/ogroups/class_ogroupManagement.inc:529 -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/generic/references/class_reference.inc:59 -msgid "Department" -msgstr "部门" +msgid "The selected password method requires initial configuration!" +msgstr "此应用程序不再可用。" -#: plugins/personal/generic/multiple_generic.tpl:169 -#: plugins/personal/generic/generic.tpl:289 -msgid "Department No." -msgstr "部门编号" +#: plugins/personal/generic/class_user.inc:1178 +#: plugins/personal/generic/class_user.inc:1190 +#: plugins/personal/generic/class_user.inc:1204 +#: plugins/personal/generic/class_user.inc:1206 +#: plugins/personal/generic/generic.tpl:82 +#: plugins/personal/generic/paste_generic.tpl:15 +#: plugins/admin/users/template.tpl:32 html/password.php:219 +msgid "Login" +msgstr "登录名" -#: plugins/personal/generic/multiple_generic.tpl:179 -#: plugins/personal/generic/generic.tpl:297 -msgid "Employee No." -msgstr "员工编号" +#: plugins/personal/generic/class_user.inc:1184 +#: plugins/personal/generic/class_user.inc:1195 +#: plugins/personal/generic/class_user.inc:1232 +#: plugins/personal/generic/class_user.inc:1622 +#: plugins/admin/departments/class_departmentGeneric.inc:239 +#: plugins/admin/departments/class_departmentGeneric.inc:241 +#: plugins/admin/departments/class_departmentGeneric.inc:246 +#: plugins/admin/departments/class_departmentGeneric.inc:253 +#: plugins/admin/departments/class_departmentGeneric.inc:257 +#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/class_aclRole.inc:706 +#: plugins/admin/acl/class_aclRole.inc:717 plugins/admin/acl/acl_role.tpl:7 +#: plugins/admin/ogroups/class_ogroup.inc:857 +#: plugins/admin/ogroups/class_ogroup.inc:867 +#: plugins/admin/ogroups/class_ogroup.inc:1064 +#: plugins/admin/users/class_userManagement.inc:774 +#: plugins/admin/users/class_userManagement.inc:852 +#: plugins/admin/users/class_userManagement.inc:864 +#: plugins/admin/groups/class_groupGeneric.inc:1061 +#: plugins/admin/groups/class_groupGeneric.inc:1067 +#: plugins/admin/groups/class_groupGeneric.inc:1069 +#: plugins/admin/groups/class_groupGeneric.inc:1081 +#: plugins/admin/groups/class_groupGeneric.inc:1095 +#: plugins/admin/groups/class_groupGeneric.inc:1102 +#: plugins/admin/groups/class_groupGeneric.inc:1221 +#: plugins/admin/groups/class_divListGroup.inc:79 setup/setup_migrate.tpl:209 +#: setup/setup_feedback.tpl:22 +msgid "Name" +msgstr "名称" -#: plugins/personal/generic/multiple_generic.tpl:189 -#: plugins/personal/generic/generic.tpl:305 -#: plugins/personal/generic/class_user.inc:1513 -msgid "Employee type" -msgstr "员工类别" +#: plugins/personal/generic/class_user.inc:1187 +#: plugins/personal/generic/class_user.inc:1229 +#: plugins/personal/generic/class_user.inc:1499 +#: plugins/personal/generic/class_user.inc:1619 +#: plugins/admin/users/class_userManagement.inc:777 +#: plugins/admin/users/class_userManagement.inc:855 +msgid "Given name" +msgstr "名" -#: plugins/personal/generic/multiple_generic.tpl:207 -#: plugins/personal/generic/multiple_generic.tpl:418 -#: plugins/personal/generic/generic.tpl:323 -#: plugins/personal/generic/generic.tpl:505 -msgid "Room No." -msgstr "房间号" +#: plugins/personal/generic/class_user.inc:1210 +#: plugins/personal/generic/class_user.inc:1505 +#: plugins/personal/generic/class_user.inc:1604 +#: plugins/personal/generic/generic.tpl:210 +#: plugins/personal/generic/multiple_generic.tpl:88 +msgid "Homepage" +msgstr "个人主页" -#: plugins/personal/generic/multiple_generic.tpl:217 -#: plugins/personal/generic/multiple_generic.tpl:428 -#: plugins/personal/generic/generic.tpl:332 -#: plugins/personal/generic/generic.tpl:513 #: plugins/personal/generic/class_user.inc:1215 #: plugins/personal/generic/class_user.inc:1607 -#: plugins/admin/groups/class_divListGroup.inc:252 -#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/personal/generic/generic.tpl:332 +#: plugins/personal/generic/generic.tpl:513 +#: plugins/personal/generic/multiple_generic.tpl:217 +#: plugins/personal/generic/multiple_generic.tpl:428 +#: plugins/generic/references/class_reference.inc:61 #: plugins/admin/departments/generic.tpl:83 #: plugins/admin/departments/class_departmentGeneric.inc:260 #: plugins/admin/ogroups/class_ogroupManagement.inc:531 -#: plugins/generic/references/class_reference.inc:61 +#: plugins/admin/users/class_divListUsers.inc:256 +#: plugins/admin/groups/class_divListGroup.inc:252 msgid "Phone" msgstr "电话" -#: plugins/personal/generic/multiple_generic.tpl:227 -#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/class_user.inc:1218 +#: plugins/personal/generic/class_user.inc:1610 +#: plugins/personal/generic/generic.tpl:357 +#: plugins/personal/generic/generic.tpl:525 +#: plugins/personal/generic/multiple_generic.tpl:247 +#: plugins/personal/generic/multiple_generic.tpl:438 +#: plugins/admin/departments/generic.tpl:91 +#: plugins/admin/departments/class_departmentGeneric.inc:263 +#: plugins/admin/departments/class_departmentGeneric.inc:553 +#: plugins/admin/users/class_divListUsers.inc:258 +msgid "Fax" +msgstr "传真" + #: plugins/personal/generic/class_user.inc:1221 #: plugins/personal/generic/class_user.inc:1613 +#: plugins/personal/generic/generic.tpl:341 +#: plugins/personal/generic/multiple_generic.tpl:227 msgid "Mobile" msgstr "手机" -#: plugins/personal/generic/multiple_generic.tpl:237 -#: plugins/personal/generic/generic.tpl:349 #: plugins/personal/generic/class_user.inc:1224 #: plugins/personal/generic/class_user.inc:1616 +#: plugins/personal/generic/generic.tpl:349 +#: plugins/personal/generic/multiple_generic.tpl:237 msgid "Pager" msgstr "呼机" -#: plugins/personal/generic/multiple_generic.tpl:247 -#: plugins/personal/generic/multiple_generic.tpl:438 -#: plugins/personal/generic/generic.tpl:357 -#: plugins/personal/generic/generic.tpl:525 -#: plugins/personal/generic/class_user.inc:1218 -#: plugins/personal/generic/class_user.inc:1610 -#: plugins/admin/users/class_divListUsers.inc:258 -#: plugins/admin/departments/generic.tpl:91 -#: plugins/admin/departments/class_departmentGeneric.inc:263 -#: plugins/admin/departments/class_departmentGeneric.inc:553 -msgid "Fax" -msgstr "传真" +#: plugins/personal/generic/class_user.inc:1336 +#, fuzzy +msgid "Cannot open certificate!" +msgstr "无法打开指定证书!" -#: plugins/personal/generic/multiple_generic.tpl:265 -#: plugins/personal/generic/generic.tpl:375 -#: plugins/personal/generic/class_user.inc:1514 -#: plugins/admin/departments/generic.tpl:56 -#: plugins/admin/departments/generic.tpl:68 -#: plugins/admin/departments/class_departmentGeneric.inc:546 -msgid "Location" -msgstr "位置" +#: plugins/personal/generic/class_user.inc:1471 +#: plugins/personal/generic/generic.tpl:465 +#: plugins/personal/generic/multiple_generic.tpl:371 +msgid "Unit" +msgstr "单元" -#: plugins/personal/generic/multiple_generic.tpl:275 -#: plugins/personal/generic/generic.tpl:383 -#: plugins/personal/generic/class_user.inc:1515 -#: plugins/admin/departments/generic.tpl:60 -#: plugins/admin/departments/class_departmentGeneric.inc:550 -msgid "State" -msgstr "州/省" +#: plugins/personal/generic/class_user.inc:1472 +#: plugins/personal/generic/generic.tpl:490 +#: plugins/personal/generic/multiple_generic.tpl:402 +msgid "House identifier" +msgstr "家庭角色" -#: plugins/personal/generic/multiple_generic.tpl:302 -#: plugins/personal/generic/generic.tpl:407 #: plugins/personal/generic/class_user.inc:1473 +#: plugins/personal/generic/generic.tpl:407 +#: plugins/personal/generic/multiple_generic.tpl:302 msgid "Vocation" msgstr "行业" -#: plugins/personal/generic/multiple_generic.tpl:312 -#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/class_user.inc:1474 +#: plugins/personal/generic/generic.tpl:534 +#: plugins/personal/generic/multiple_generic.tpl:449 +msgid "Last delivery" +msgstr "最后传递" + +#: plugins/personal/generic/class_user.inc:1475 +#: plugins/personal/generic/generic.tpl:456 +#: plugins/personal/generic/multiple_generic.tpl:360 +msgid "Person locality" +msgstr "" + #: plugins/personal/generic/class_user.inc:1476 +#: plugins/personal/generic/generic.tpl:415 +#: plugins/personal/generic/multiple_generic.tpl:312 msgid "Unit description" msgstr "单元描述" -#: plugins/personal/generic/multiple_generic.tpl:323 -#: plugins/personal/generic/generic.tpl:424 #: plugins/personal/generic/class_user.inc:1477 +#: plugins/personal/generic/generic.tpl:424 +#: plugins/personal/generic/multiple_generic.tpl:323 msgid "Subject area" msgstr "" -#: plugins/personal/generic/multiple_generic.tpl:334 -#: plugins/personal/generic/generic.tpl:433 #: plugins/personal/generic/class_user.inc:1478 +#: plugins/personal/generic/generic.tpl:433 +#: plugins/personal/generic/multiple_generic.tpl:334 msgid "Functional title" msgstr "单位职称" -#: plugins/personal/generic/multiple_generic.tpl:345 -#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/class_user.inc:1479 +#: plugins/personal/generic/generic_certs.tpl:78 +msgid "Certificate serial number" +msgstr "证书系列号" + +#: plugins/personal/generic/class_user.inc:1480 +#: plugins/personal/generic/generic.tpl:543 +#: plugins/personal/generic/multiple_generic.tpl:460 +msgid "Public visible" +msgstr "公开" + +#: plugins/personal/generic/class_user.inc:1481 +#: plugins/personal/generic/generic.tpl:474 +#: plugins/personal/generic/multiple_generic.tpl:382 +msgid "Street" +msgstr "街道" + #: plugins/personal/generic/class_user.inc:1482 +#: plugins/personal/generic/generic.tpl:442 +#: plugins/personal/generic/multiple_generic.tpl:345 #: plugins/admin/acl/class_divListACL.inc:165 #: plugins/admin/acl/class_divListACL.inc:202 #: plugins/admin/acl/class_aclRole.inc:697 msgid "Role" msgstr "角色" -#: plugins/personal/generic/multiple_generic.tpl:360 -#: plugins/personal/generic/generic.tpl:456 -#: plugins/personal/generic/class_user.inc:1475 -msgid "Person locality" -msgstr "" +#: plugins/personal/generic/class_user.inc:1483 +#: plugins/personal/generic/generic.tpl:482 +#: plugins/personal/generic/multiple_generic.tpl:392 +msgid "Postal code" +msgstr "邮编" + +#: plugins/personal/generic/class_user.inc:1487 +#, fuzzy +msgid "Generic user settings" +msgstr "通用队列设置" + +#: plugins/personal/generic/class_user.inc:1492 +#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 +msgid "Users" +msgstr "用户" + +#: plugins/personal/generic/class_user.inc:1496 +#: plugins/personal/generic/generic.tpl:170 +#: plugins/personal/generic/multiple_generic.tpl:47 +#: plugins/admin/departments/generic.tpl:35 +#: plugins/admin/departments/class_divListDepartment.inc:144 +#: plugins/admin/departments/class_departmentGeneric.inc:545 +#: plugins/admin/acl/class_divListACL.inc:153 +#: plugins/admin/acl/class_aclRole.inc:707 plugins/admin/acl/acl_role.tpl:27 +#: plugins/admin/ogroups/generic.tpl:26 +#: plugins/admin/ogroups/class_divListOGroup.inc:188 +#: plugins/admin/ogroups/class_ogroup.inc:1065 +#: plugins/admin/users/class_divListUsers.inc:162 +#: plugins/admin/groups/generic.tpl:39 +#: plugins/admin/groups/class_groupGeneric.inc:1222 +#: plugins/admin/groups/class_divListGroup.inc:174 setup/setup_ldap.tpl:55 +#: include/class_baseSelectDialog.inc:65 +msgid "Base" +msgstr "位置" + +#: plugins/personal/generic/class_user.inc:1498 +msgid "Surename" +msgstr "姓" + +#: plugins/personal/generic/class_user.inc:1500 +#, fuzzy +msgid "User identification" +msgstr "用户信息" + +#: plugins/personal/generic/class_user.inc:1501 +#: plugins/personal/generic/generic.tpl:98 +msgid "Personal title" +msgstr "个人称谓" + +#: plugins/personal/generic/class_user.inc:1502 +#: plugins/personal/generic/generic.tpl:108 +#: plugins/personal/generic/multiple_generic.tpl:23 +msgid "Academic title" +msgstr "学位头衔" + +#: plugins/personal/generic/class_user.inc:1503 +msgid "Home postal address" +msgstr "住宅地址" + +#: plugins/personal/generic/class_user.inc:1504 +#, fuzzy +msgid "Home phone number" +msgstr "电话号码" + +#: plugins/personal/generic/class_user.inc:1506 +#: plugins/personal/generic/generic.tpl:273 +#: plugins/personal/generic/multiple_generic.tpl:149 +#: setup/setup_feedback.tpl:14 +msgid "Organization" +msgstr "组织/公司" + +#: plugins/personal/generic/class_user.inc:1507 +#: plugins/personal/generic/generic.tpl:281 +#: plugins/personal/generic/multiple_generic.tpl:159 +#: plugins/generic/references/class_reference.inc:59 +#: plugins/admin/departments/class_divListDepartment.inc:156 +#: plugins/admin/ogroups/class_ogroupManagement.inc:529 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/users/class_divListUsers.inc:80 +#: plugins/admin/groups/class_divListGroup.inc:79 +msgid "Department" +msgstr "部门" + +#: plugins/personal/generic/class_user.inc:1508 +#: plugins/personal/generic/generic.tpl:119 +msgid "Date of birth" +msgstr "生日" + +#: plugins/personal/generic/class_user.inc:1509 +#, fuzzy +msgid "Gender" +msgstr "发送者" + +#: plugins/personal/generic/class_user.inc:1510 +#, fuzzy +msgid "Preferred language" +msgstr "首选语种" + +#: plugins/personal/generic/class_user.inc:1511 +#, fuzzy +msgid "Department number" +msgstr "部门名称" + +#: plugins/personal/generic/class_user.inc:1512 +#, fuzzy +msgid "Employee number" +msgstr "员工类别" -#: plugins/personal/generic/multiple_generic.tpl:371 -#: plugins/personal/generic/generic.tpl:465 -#: plugins/personal/generic/class_user.inc:1471 -msgid "Unit" -msgstr "单元" +#: plugins/personal/generic/class_user.inc:1513 +#: plugins/personal/generic/generic.tpl:305 +#: plugins/personal/generic/multiple_generic.tpl:189 +msgid "Employee type" +msgstr "员工类别" -#: plugins/personal/generic/multiple_generic.tpl:382 -#: plugins/personal/generic/generic.tpl:474 -#: plugins/personal/generic/class_user.inc:1481 -msgid "Street" -msgstr "街道" +#: plugins/personal/generic/class_user.inc:1514 +#: plugins/personal/generic/generic.tpl:375 +#: plugins/personal/generic/multiple_generic.tpl:265 +#: plugins/admin/departments/generic.tpl:56 +#: plugins/admin/departments/generic.tpl:68 +#: plugins/admin/departments/class_departmentGeneric.inc:546 +msgid "Location" +msgstr "位置" -#: plugins/personal/generic/multiple_generic.tpl:392 -#: plugins/personal/generic/generic.tpl:482 -#: plugins/personal/generic/class_user.inc:1483 -msgid "Postal code" -msgstr "邮编" +#: plugins/personal/generic/class_user.inc:1515 +#: plugins/personal/generic/generic.tpl:383 +#: plugins/personal/generic/multiple_generic.tpl:275 +#: plugins/admin/departments/generic.tpl:60 +#: plugins/admin/departments/class_departmentGeneric.inc:550 +msgid "State" +msgstr "州/省" -#: plugins/personal/generic/multiple_generic.tpl:402 -#: plugins/personal/generic/generic.tpl:490 -#: plugins/personal/generic/class_user.inc:1472 -msgid "House identifier" -msgstr "家庭角色" +#: plugins/personal/generic/class_user.inc:1516 +#: plugins/personal/generic/paste_generic.tpl:47 +msgid "User picture" +msgstr "用户图片" -#: plugins/personal/generic/multiple_generic.tpl:449 -#: plugins/personal/generic/generic.tpl:534 -#: plugins/personal/generic/class_user.inc:1474 -msgid "Last delivery" -msgstr "最后传递" +#: plugins/personal/generic/class_user.inc:1517 +#, fuzzy +msgid "Room number" +msgstr "电话号码" -#: plugins/personal/generic/multiple_generic.tpl:460 -#: plugins/personal/generic/generic.tpl:543 -#: plugins/personal/generic/class_user.inc:1480 -msgid "Public visible" -msgstr "公开" +#: plugins/personal/generic/class_user.inc:1518 +#, fuzzy +msgid "Telefon number" +msgstr "电话号码" -#: plugins/personal/generic/paste_generic.tpl:1 -msgid "User settings" -msgstr "用户设置" +#: plugins/personal/generic/class_user.inc:1519 +#, fuzzy +msgid "Mobile number" +msgstr "电话号码" -#: plugins/personal/generic/paste_generic.tpl:7 -#: plugins/personal/generic/generic.tpl:49 plugins/admin/users/template.tpl:23 -msgid "Last name" -msgstr "姓" +#: plugins/personal/generic/class_user.inc:1520 +#, fuzzy +msgid "Pager number" +msgstr "电话号码" -#: plugins/personal/generic/paste_generic.tpl:11 -#: plugins/personal/generic/generic.tpl:69 plugins/admin/users/template.tpl:27 -msgid "First name" -msgstr "名" +#: plugins/personal/generic/class_user.inc:1521 +#, fuzzy +msgid "User certificates" +msgstr "编辑证书" -#: plugins/personal/generic/paste_generic.tpl:15 -#: plugins/personal/generic/generic.tpl:82 -#: plugins/personal/generic/class_user.inc:1178 -#: plugins/personal/generic/class_user.inc:1190 -#: plugins/personal/generic/class_user.inc:1204 -#: plugins/personal/generic/class_user.inc:1206 -#: plugins/admin/users/template.tpl:32 html/password.php:219 -msgid "Login" -msgstr "登录名" +#: plugins/personal/generic/class_user.inc:1523 +msgid "Postal address" +msgstr "地址" -#: plugins/personal/generic/paste_generic.tpl:23 -msgid "Clear password" -msgstr "清除口令" +#: plugins/personal/generic/class_user.inc:1524 +#, fuzzy +msgid "Fax number" +msgstr "系列号" -#: plugins/personal/generic/paste_generic.tpl:24 -msgid "Set new password" -msgstr "设置新密码" +#: plugins/personal/generic/main.inc:104 +#, fuzzy +msgid "You have no permission to set your password!" +msgstr "您无权修改您的口令。" -#: plugins/personal/generic/paste_generic.tpl:47 -#: plugins/personal/generic/class_user.inc:1516 -msgid "User picture" -msgstr "用户图片" +#: plugins/personal/generic/main.inc:195 +msgid "Generic user information" +msgstr "用户一般信息" + +#: plugins/personal/generic/generic.tpl:6 +#: plugins/personal/generic/multiple_generic.tpl:5 +msgid "Personal information" +msgstr "个人信息" #: plugins/personal/generic/generic.tpl:29 #: plugins/personal/generic/generic.tpl:40 msgid "Change picture" msgstr "更换图片" +#: plugins/personal/generic/generic.tpl:49 +#: plugins/personal/generic/paste_generic.tpl:7 +#: plugins/admin/users/template.tpl:23 +msgid "Last name" +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 @@ -985,15 +714,11 @@ msgstr "" msgid "Template name" msgstr "模板名称" -#: plugins/personal/generic/generic.tpl:98 -#: plugins/personal/generic/class_user.inc:1501 -msgid "Personal title" -msgstr "个人称谓" - -#: plugins/personal/generic/generic.tpl:119 -#: plugins/personal/generic/class_user.inc:1508 -msgid "Date of birth" -msgstr "生日" +#: plugins/personal/generic/generic.tpl:69 +#: plugins/personal/generic/paste_generic.tpl:11 +#: plugins/admin/users/template.tpl:27 +msgid "First name" +msgstr "名" #: plugins/personal/generic/generic.tpl:137 #: include/utils/class_msgPool.inc:344 ihtml/themes/default/sizelimit.tpl:14 @@ -1005,10 +730,79 @@ msgstr "设置" msgid "Sex" msgstr "性别" -#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1010 +#: plugins/personal/generic/generic.tpl:157 +#: plugins/personal/generic/multiple_generic.tpl:33 +msgid "Preferred langage" +msgstr "首选语种" + +#: plugins/personal/generic/generic.tpl:175 +#: plugins/personal/generic/multiple_generic.tpl:53 +msgid "Choose subtree to place user in" +msgstr "将用户放到所选择子树中" + +#: plugins/personal/generic/generic.tpl:180 +#: plugins/personal/generic/multiple_generic.tpl:56 +#: plugins/admin/departments/generic.tpl:45 plugins/admin/acl/acl_role.tpl:37 +#: plugins/admin/ogroups/generic.tpl:34 plugins/admin/groups/generic.tpl:49 +msgid "Select a base" +msgstr "选择一个位置" + +#: plugins/personal/generic/generic.tpl:194 +#: plugins/personal/generic/generic.tpl:391 +#: plugins/personal/generic/multiple_generic.tpl:67 +#: plugins/personal/generic/multiple_generic.tpl:285 +#: plugins/admin/departments/generic.tpl:76 +#: plugins/admin/departments/class_departmentGeneric.inc:551 +msgid "Address" +msgstr "住址" + +#: plugins/personal/generic/generic.tpl:202 +#: plugins/personal/generic/multiple_generic.tpl:78 +msgid "Private phone" +msgstr "私人电话" + +#: plugins/personal/generic/generic.tpl:223 +#: plugins/personal/generic/multiple_generic.tpl:105 +msgid "Password storage" +msgstr "口令存储" + +#: plugins/personal/generic/generic.tpl:232 include/functions.inc:1027 msgid "Configure" msgstr "配置" +#: plugins/personal/generic/generic.tpl:240 +#: plugins/personal/generic/multiple_generic.tpl:117 +#: plugins/personal/generic/generic_certs.tpl:3 +msgid "Certificates" +msgstr "证书" + +#: plugins/personal/generic/generic.tpl:243 +#: plugins/personal/generic/multiple_generic.tpl:121 +msgid "Edit certificates" +msgstr "编辑证书" + +#: plugins/personal/generic/generic.tpl:261 +#: plugins/personal/generic/multiple_generic.tpl:137 +msgid "Organizational information" +msgstr "组织信息" + +#: plugins/personal/generic/generic.tpl:289 +#: plugins/personal/generic/multiple_generic.tpl:169 +msgid "Department No." +msgstr "部门编号" + +#: plugins/personal/generic/generic.tpl:297 +#: plugins/personal/generic/multiple_generic.tpl:179 +msgid "Employee No." +msgstr "员工编号" + +#: plugins/personal/generic/generic.tpl:323 +#: plugins/personal/generic/generic.tpl:505 +#: plugins/personal/generic/multiple_generic.tpl:207 +#: plugins/personal/generic/multiple_generic.tpl:418 +msgid "Room No." +msgstr "房间号" + #: plugins/personal/generic/generic.tpl:519 msgid "Please use the phone tab" msgstr "请使用电话页面" @@ -1020,1370 +814,1379 @@ msgstr "标准证书" #: plugins/personal/generic/generic_certs.tpl:21 #: plugins/personal/generic/generic_certs.tpl:45 #: plugins/personal/generic/generic_certs.tpl:69 -#: plugins/admin/acl/class_divListACL.inc:169 -#: plugins/admin/groups/class_divListGroup.inc:194 -#: plugins/admin/users/class_divListUsers.inc:187 #: plugins/admin/departments/class_divListDepartment.inc:160 +#: plugins/admin/acl/class_divListACL.inc:169 #: plugins/admin/ogroups/class_divListOGroup.inc:209 +#: plugins/admin/users/class_divListUsers.inc:187 +#: plugins/admin/groups/class_divListGroup.inc:194 msgid "Remove" -msgstr "删除" - -#: plugins/personal/generic/generic_certs.tpl:33 -msgid "S/MIME certificate" -msgstr "S/MIME 证书" - -#: plugins/personal/generic/generic_certs.tpl:57 -msgid "PKCS12 certificate" -msgstr "PKCS12 证书" - -#: plugins/personal/generic/generic_certs.tpl:78 -#: plugins/personal/generic/class_user.inc:1479 -msgid "Certificate serial number" -msgstr "证书系列号" - -#: plugins/personal/generic/class_user.inc:38 -#, fuzzy -msgid "Edit organizational user settings" -msgstr "应用程序设置" - -#: plugins/personal/generic/class_user.inc:304 -msgid "female" -msgstr "女" - -#: plugins/personal/generic/class_user.inc:304 -msgid "male" -msgstr "男" - -#: plugins/personal/generic/class_user.inc:402 -msgid "Cannot upload file!" -msgstr "" - -#: plugins/personal/generic/class_user.inc:503 -#, fuzzy -msgid "Serial number" -msgstr "电话号码" +msgstr "删除" -#: plugins/personal/generic/class_user.inc:548 -msgid "" -"(Some types of certificates are currently not supported and may be displayed " -"as 'invalid'.)" -msgstr "(目前有的种类的证书不支持,可能显示为“无效”)" +#: plugins/personal/generic/generic_certs.tpl:33 +msgid "S/MIME certificate" +msgstr "S/MIME 证书" -#: plugins/personal/generic/class_user.inc:558 -#, php-format -msgid "Certificate is valid from %s to %s and is currently %s." -msgstr "证书从 %s 到 %s 是有效的,当前为 %s。" +#: plugins/personal/generic/generic_certs.tpl:57 +msgid "PKCS12 certificate" +msgstr "PKCS12 证书" -#: plugins/personal/generic/class_user.inc:561 -msgid "valid" -msgstr "有效" +#: plugins/personal/generic/paste_generic.tpl:1 +msgid "User settings" +msgstr "用户设置" -#: plugins/personal/generic/class_user.inc:562 -msgid "invalid" -msgstr "无效" +#: plugins/personal/generic/paste_generic.tpl:23 +msgid "Clear password" +msgstr "清除口令" -#: plugins/personal/generic/class_user.inc:567 -msgid "No certificate installed" -msgstr "未安装证书" +#: plugins/personal/generic/paste_generic.tpl:24 +msgid "Set new password" +msgstr "设置新密码" -#: plugins/personal/generic/class_user.inc:592 html/password.php:163 -#, fuzzy -msgid "Password method" -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." +msgstr "" +"您已经修改了口令在 LDAP 数据库中存储的方法。因此您需要再输入您的口令。GOsa 将" +"会按照您选择的方法重新编码。" -#: plugins/personal/generic/class_user.inc:592 -#, fuzzy -msgid "The selected password method is no longer available." -msgstr "此应用程序不再可用。" +#: plugins/personal/posix/posix_groups.tpl:6 +msgid "Select groups to add" +msgstr "选择要添加的组" -#: plugins/personal/generic/class_user.inc:1149 -#, fuzzy -msgid "The selected password method requires initial configuration!" -msgstr "此应用程序不再可用。" +#: plugins/personal/posix/posix_groups.tpl:21 +#: plugins/admin/ogroups/ogroup_objects.tpl:20 +#: plugins/admin/groups/group_objects.tpl:20 +#: ihtml/themes/default/MultiSelectWindow.tpl:57 +#: ihtml/themes/default/MultiSelectWindow.tpl:97 +msgid "Filters" +msgstr "过滤器" -#: plugins/personal/generic/class_user.inc:1184 -#: plugins/personal/generic/class_user.inc:1195 -#: plugins/personal/generic/class_user.inc:1232 -#: plugins/personal/generic/class_user.inc:1622 -#: plugins/admin/acl/paste_role.tpl:4 plugins/admin/acl/acl_role.tpl:7 -#: plugins/admin/acl/class_aclRole.inc:706 -#: plugins/admin/acl/class_aclRole.inc:717 -#: plugins/admin/groups/class_groupGeneric.inc:1061 -#: plugins/admin/groups/class_groupGeneric.inc:1067 -#: plugins/admin/groups/class_groupGeneric.inc:1069 -#: plugins/admin/groups/class_groupGeneric.inc:1081 -#: plugins/admin/groups/class_groupGeneric.inc:1095 -#: plugins/admin/groups/class_groupGeneric.inc:1102 -#: plugins/admin/groups/class_groupGeneric.inc:1221 -#: plugins/admin/groups/class_divListGroup.inc:79 -#: plugins/admin/users/class_userManagement.inc:774 -#: plugins/admin/users/class_userManagement.inc:852 -#: plugins/admin/users/class_userManagement.inc:864 -#: plugins/admin/departments/class_departmentGeneric.inc:239 -#: plugins/admin/departments/class_departmentGeneric.inc:241 -#: plugins/admin/departments/class_departmentGeneric.inc:246 -#: plugins/admin/departments/class_departmentGeneric.inc:253 -#: plugins/admin/departments/class_departmentGeneric.inc:257 -#: plugins/admin/ogroups/class_ogroup.inc:857 -#: plugins/admin/ogroups/class_ogroup.inc:867 -#: plugins/admin/ogroups/class_ogroup.inc:1064 setup/setup_feedback.tpl:22 -#: setup/setup_migrate.tpl:209 -msgid "Name" -msgstr "名称" +#: plugins/personal/posix/posix_groups.tpl:32 +msgid "Display groups of department" +msgstr "显示部门的组" -#: plugins/personal/generic/class_user.inc:1187 -#: plugins/personal/generic/class_user.inc:1229 -#: plugins/personal/generic/class_user.inc:1499 -#: plugins/personal/generic/class_user.inc:1619 -#: plugins/admin/users/class_userManagement.inc:777 -#: plugins/admin/users/class_userManagement.inc:855 -msgid "Given name" -msgstr "名" +#: plugins/personal/posix/posix_groups.tpl:35 +#: plugins/personal/posix/trust_machines.tpl:27 +#: plugins/admin/ogroups/trust_machines.tpl:27 +#: plugins/admin/ogroups/ogroup_objects.tpl:37 +#: plugins/admin/groups/trust_machines.tpl:27 +#: plugins/admin/groups/group_objects.tpl:40 +msgid "Choose the department the search will be based on" +msgstr "选择一个部门来做查询" -#: plugins/personal/generic/class_user.inc:1336 -#, fuzzy -msgid "Cannot open certificate!" -msgstr "无法打开指定证书!" +#: plugins/personal/posix/posix_groups.tpl:44 +msgid "Display groups matching" +msgstr "显示匹配的组" -#: plugins/personal/generic/class_user.inc:1487 -#, fuzzy -msgid "Generic user settings" -msgstr "通用队列设置" +#: plugins/personal/posix/posix_groups.tpl:48 +#: plugins/admin/ogroups/class_divListOGroup.inc:115 +#: plugins/admin/groups/class_divListGroup.inc:100 +msgid "Regular expression for matching group names" +msgstr "用于匹配组名的正则表达式" -#: plugins/personal/generic/class_user.inc:1492 -#: plugins/admin/users/class_userManagement.inc:26 include/class_acl.inc:218 -msgid "Users" -msgstr "用户" +#: plugins/personal/posix/posix_groups.tpl:55 +msgid "Display groups of user" +msgstr "显示用户组" -#: plugins/personal/generic/class_user.inc:1498 -msgid "Surename" -msgstr "姓" +#: plugins/personal/posix/posix_groups.tpl:59 +#: plugins/admin/groups/class_divListGroup.inc:101 +msgid "User name of which groups are shown" +msgstr "显示属于该组的用户名" -#: plugins/personal/generic/class_user.inc:1500 +#: plugins/personal/posix/posix_groups.tpl:68 +#: plugins/admin/ogroups/ogroup_objects.tpl:33 +#: include/utils/class_msgPool.inc:23 #, fuzzy -msgid "User identification" -msgstr "用户信息" +msgid "Search in subtrees" +msgstr "在子树中查找" -#: plugins/personal/generic/class_user.inc:1503 -msgid "Home postal address" -msgstr "住宅地址" +#: plugins/personal/posix/trust_machines.tpl:6 +#: plugins/admin/ogroups/trust_machines.tpl:6 +#: plugins/admin/groups/trust_machines.tpl:6 +msgid "Select systems to add" +msgstr "选择要添加的系统" -#: plugins/personal/generic/class_user.inc:1504 -#, fuzzy -msgid "Home phone number" -msgstr "电话号码" +#: plugins/personal/posix/trust_machines.tpl:26 +#: plugins/admin/ogroups/trust_machines.tpl:26 +#: plugins/admin/groups/trust_machines.tpl:26 +msgid "Display systems of department" +msgstr "显示部门的系统" -#: plugins/personal/generic/class_user.inc:1509 -#, fuzzy -msgid "Gender" -msgstr "发送者" +#: plugins/personal/posix/trust_machines.tpl:30 +#: plugins/admin/ogroups/trust_machines.tpl:30 +#: plugins/admin/groups/trust_machines.tpl:30 +msgid "Display systems matching" +msgstr "显示匹配的系统" -#: plugins/personal/generic/class_user.inc:1510 -#, fuzzy -msgid "Preferred language" -msgstr "首选语种" +#: plugins/personal/posix/trust_machines.tpl:31 +#: plugins/admin/ogroups/trust_machines.tpl:31 +#: plugins/admin/groups/trust_machines.tpl:31 +msgid "Regular expression for matching addresses" +msgstr "匹配地址的正则表达式" -#: plugins/personal/generic/class_user.inc:1511 +#: plugins/personal/posix/main.inc:131 #, fuzzy -msgid "Department number" -msgstr "部门名称" +msgid "POSIX settings" +msgstr "Posix 设置" -#: plugins/personal/generic/class_user.inc:1512 -#, fuzzy -msgid "Employee number" -msgstr "员工类别" +#: plugins/personal/posix/generic.tpl:7 +#: plugins/personal/posix/class_posixAccount.inc:1003 +#: plugins/personal/posix/class_posixAccount.inc:1006 +#: plugins/personal/posix/class_posixAccount.inc:1076 +#: plugins/personal/posix/class_posixAccount.inc:1079 +#: plugins/personal/posix/class_posixAccount.inc:1504 +#: plugins/personal/posix/paste_generic.tpl:8 +msgid "Home directory" +msgstr "用户主目录" -#: plugins/personal/generic/class_user.inc:1517 -#, fuzzy -msgid "Room number" -msgstr "电话号码" +#: plugins/personal/posix/generic.tpl:15 +#: plugins/personal/posix/class_posixAccount.inc:1505 +msgid "Shell" +msgstr "Shell" -#: plugins/personal/generic/class_user.inc:1518 -#, fuzzy -msgid "Telefon number" -msgstr "电话号码" +#: plugins/personal/posix/generic.tpl:25 +msgid "Primary group" +msgstr "主要用户组" -#: plugins/personal/generic/class_user.inc:1519 -#, fuzzy -msgid "Mobile number" -msgstr "电话号码" +#: plugins/personal/posix/generic.tpl:36 +msgid "Status" +msgstr "状态" -#: plugins/personal/generic/class_user.inc:1520 -#, fuzzy -msgid "Pager number" -msgstr "电话号码" +#: plugins/personal/posix/generic.tpl:52 +#: plugins/personal/posix/paste_generic.tpl:23 +msgid "Force UID/GID" +msgstr "指定 UID/GID" -#: plugins/personal/generic/class_user.inc:1521 -#, fuzzy -msgid "User certificates" -msgstr "编辑证书" +#: plugins/personal/posix/generic.tpl:56 +#: plugins/personal/posix/class_posixAccount.inc:1014 +#: plugins/personal/posix/class_posixAccount.inc:1017 +#: plugins/personal/posix/paste_generic.tpl:28 +msgid "UID" +msgstr "UID" -#: plugins/personal/generic/class_user.inc:1523 -msgid "Postal address" -msgstr "地址" +#: plugins/personal/posix/generic.tpl:67 +#: plugins/personal/posix/class_posixAccount.inc:1021 +#: plugins/personal/posix/class_posixAccount.inc:1024 +#: plugins/personal/posix/paste_generic.tpl:37 +#: plugins/admin/groups/class_groupGeneric.inc:1111 +#: plugins/admin/groups/class_groupGeneric.inc:1114 +#: plugins/admin/groups/class_groupGeneric.inc:1228 +msgid "GID" +msgstr "GID" + +#: plugins/personal/posix/generic.tpl:82 +#: plugins/personal/posix/paste_generic.tpl:47 +msgid "Group membership" +msgstr "组成员身份" -#: plugins/personal/generic/class_user.inc:1524 +#: plugins/personal/posix/generic.tpl:84 +#: plugins/personal/posix/paste_generic.tpl:54 +msgid "(Warning: more than 16 groups are not supported by NFS!)" +msgstr "(警告:NFS不支持超过 16 个组!)" + +#: plugins/personal/posix/generic.tpl:93 plugins/admin/groups/generic.tpl:214 #, fuzzy -msgid "Fax number" -msgstr "系列号" +msgid "In all groups" +msgstr "显示邮件组" -#: plugins/personal/generic/main.inc:104 +#: plugins/personal/posix/generic.tpl:97 plugins/admin/groups/generic.tpl:217 #, fuzzy -msgid "You have no permission to set your password!" -msgstr "您无权修改您的口令。" +msgid "Not in all groups" +msgstr "显示邮件组" -#: plugins/personal/generic/main.inc:195 -msgid "Generic user information" -msgstr "用户一般信息" +#: plugins/personal/posix/generic.tpl:118 +msgid "Account" +msgstr "账户" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 -msgid "Bug submitter" -msgstr "" +#: plugins/personal/posix/generic.tpl:125 plugins/admin/ogroups/generic.tpl:41 +msgid "System trust" +msgstr "信赖的系统" -#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 -msgid "" -"Bugsubmitter" -msgstr "" +#: plugins/personal/posix/generic.tpl:127 +#: plugins/personal/posix/generic.tpl:155 plugins/admin/ogroups/generic.tpl:42 +#: plugins/admin/groups/generic.tpl:168 +msgid "Trust mode" +msgstr "信赖模式" -#: plugins/admin/acl/tabs_acl.inc:28 -#: plugins/admin/acl/class_aclManagement.inc:26 -#: plugins/admin/acl/class_divListACL.inc:236 -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 -#: include/class_acl.inc:450 include/class_acl.inc:453 -#: include/class_acl.inc:1176 include/class_acl.inc:1177 -#: include/class_acl.inc:1182 -msgid "ACL" -msgstr "ACL" +#: plugins/personal/posix/class_posixAccount.inc:37 +#: plugins/generic/references/class_reference.inc:43 +msgid "UNIX" +msgstr "UNIX" -#: plugins/admin/acl/tabs_acl_role.inc:28 +#: plugins/personal/posix/class_posixAccount.inc:38 #, fuzzy -msgid "ACL Templates" -msgstr "模板" +msgid "Edit users POSIX settings" +msgstr "Posix 设置" -#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 -#, fuzzy -msgid "Manage access control lists" -msgstr "访问选项" +#: plugins/personal/posix/class_posixAccount.inc:154 +msgid "expired" +msgstr "过期" -#: plugins/admin/acl/class_aclManagement.inc:166 -#: plugins/admin/acl/class_aclManagement.inc:209 -#: plugins/admin/acl/class_aclManagement.inc:259 -#: plugins/admin/acl/class_aclManagement.inc:283 -#: plugins/admin/acl/class_aclManagement.inc:340 -#: plugins/admin/acl/class_aclManagement.inc:377 -#: plugins/admin/groups/class_groupManagement.inc:410 -#: plugins/admin/groups/class_groupManagement.inc:464 -#: plugins/admin/groups/class_groupManagement.inc:495 -#: plugins/admin/users/class_userManagement.inc:544 -#: plugins/admin/users/class_userManagement.inc:548 -#: plugins/admin/departments/class_departmentManagement.inc:200 -#: plugins/admin/departments/class_departmentManagement.inc:249 -#: plugins/admin/departments/class_departmentManagement.inc:268 -#: plugins/admin/ogroups/class_ogroupManagement.inc:285 -#: plugins/admin/ogroups/class_ogroupManagement.inc:338 -#: plugins/admin/ogroups/class_ogroupManagement.inc:365 -#, fuzzy -msgid "Permission error" -msgstr "允许" +#: plugins/personal/posix/class_posixAccount.inc:156 +msgid "grace time active" +msgstr "时间限制激活" -#: plugins/admin/acl/class_aclManagement.inc:321 -#: plugins/admin/groups/class_groupManagement.inc:359 -#: plugins/admin/users/class_userManagement.inc:343 -#: plugins/admin/users/class_userManagement.inc:582 -#: plugins/admin/ogroups/class_ogroupManagement.inc:237 -#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 -#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 -#, fuzzy -msgid "Permission" -msgstr "允许" +#: plugins/personal/posix/class_posixAccount.inc:159 +#: plugins/personal/posix/class_posixAccount.inc:161 +#: plugins/personal/posix/class_posixAccount.inc:163 +#: plugins/admin/users/class_divListUsers.inc:300 +msgid "active" +msgstr "活动" -#: plugins/admin/acl/class_divListACL.inc:51 -#: plugins/admin/acl/class_divListACL.inc:52 +#: plugins/personal/posix/class_posixAccount.inc:159 #, fuzzy -msgid "List of acls" -msgstr "宏列表" +msgid "password not changable" +msgstr "活动,口令不可更改" -#: plugins/admin/acl/class_divListACL.inc:67 -#: plugins/admin/groups/class_divListGroup.inc:73 -#: plugins/admin/users/class_divListUsers.inc:74 -#: plugins/admin/departments/class_divListDepartment.inc:61 -#: plugins/admin/ogroups/class_divListOGroup.inc:77 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/posix/class_posixAccount.inc:161 #, fuzzy -msgid "Select all" -msgstr "选择" +msgid "password expired" +msgstr "活动,口令过期" -#: plugins/admin/acl/class_divListACL.inc:73 -msgid "Summary" -msgstr "总结" +#: plugins/personal/posix/class_posixAccount.inc:208 +msgid "unconfigured" +msgstr "未配置" -#: 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:179 -#: plugins/admin/users/class_divListUsers.inc:82 -#: plugins/admin/users/class_divListUsers.inc:168 -#: plugins/admin/departments/class_divListDepartment.inc:68 -#: plugins/admin/departments/class_divListDepartment.inc:149 -#: plugins/admin/ogroups/class_divListOGroup.inc:85 -#: plugins/admin/ogroups/class_divListOGroup.inc:194 -msgid "Actions" -msgstr "动作" +#: plugins/personal/posix/class_posixAccount.inc:219 +msgid "automatic" +msgstr "自动" -#: plugins/admin/acl/class_divListACL.inc:84 -#, fuzzy -msgid "Display acls matching" -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" +msgstr "" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -msgid "Submit department" -msgstr "提交部门" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/generic/references/class_reference.inc:47 +#: plugins/generic/references/class_reference.inc:49 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:260 +#: plugins/admin/groups/class_divListGroup.inc:248 +msgid "Samba" +msgstr "Samba" -#: plugins/admin/acl/class_divListACL.inc:155 -#: plugins/admin/groups/class_divListGroup.inc:175 -#: plugins/admin/users/class_divListUsers.inc:164 -#: plugins/admin/departments/class_divListDepartment.inc:146 -#: plugins/admin/ogroups/class_divListOGroup.inc:190 -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Submit" -msgstr "提交" +#: plugins/personal/posix/class_posixAccount.inc:295 +#: plugins/admin/ogroups/tabs_ogroups.inc:185 +#: plugins/admin/users/class_divListUsers.inc:252 +#: plugins/admin/groups/class_divListGroup.inc:254 +msgid "Environment" +msgstr "环境设置" -#: plugins/admin/acl/class_divListACL.inc:163 -#: plugins/admin/groups/class_divListGroup.inc:184 -#: plugins/admin/users/class_divListUsers.inc:173 -#: plugins/admin/departments/class_divListDepartment.inc:154 -#: plugins/admin/ogroups/class_divListOGroup.inc:199 -#: setup/class_setupStep_Migrate.inc:914 -msgid "Create" -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 天,不能修改口令" -#: plugins/admin/acl/class_divListACL.inc:214 -#: plugins/admin/acl/class_divListACL.inc:241 -#: plugins/admin/groups/class_divListGroup.inc:290 -#: plugins/admin/users/class_divListUsers.inc:307 -#: plugins/admin/departments/class_divListDepartment.inc:186 -#: plugins/admin/ogroups/class_divListOGroup.inc:271 -msgid "edit" -msgstr "编辑" +#: plugins/personal/posix/class_posixAccount.inc:469 +#, php-format +msgid "Password must be changed after %s days" +msgstr "口令必须在 %s 天之后更改" -#: plugins/admin/acl/class_divListACL.inc:215 -#, fuzzy -msgid "Edit acl role" -msgstr "编辑宏" +#: plugins/personal/posix/class_posixAccount.inc:473 +#, php-format +msgid "Disable account after %s days of inactivity after password expiery" +msgstr "口令过期 %s 天后,禁用账号" -#: plugins/admin/acl/class_divListACL.inc:222 -#: plugins/admin/acl/class_divListACL.inc:245 -#: plugins/admin/groups/class_divListGroup.inc:297 -#: plugins/admin/users/class_divListUsers.inc:331 -#: plugins/admin/departments/class_divListDepartment.inc:190 -#: plugins/admin/ogroups/class_divListOGroup.inc:277 -msgid "delete" -msgstr "删除" +#: plugins/personal/posix/class_posixAccount.inc:477 +#, php-format +msgid "Warn user %s days before password expiery" +msgstr "在口令过期 %s 天之前警告用户" -#: plugins/admin/acl/class_divListACL.inc:223 -#, fuzzy -msgid "Delete acl role" -msgstr "删除宏" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 setup/setup_config2.tpl:201 +msgid "disabled" +msgstr "禁用" -#: plugins/admin/acl/class_divListACL.inc:242 -#, fuzzy -msgid "Edit acl" -msgstr "编辑宏" +#: plugins/personal/posix/class_posixAccount.inc:608 +#: plugins/admin/ogroups/class_ogroup.inc:529 +#: plugins/admin/groups/class_groupGeneric.inc:496 +msgid "full access" +msgstr "完全访问权限" -#: plugins/admin/acl/class_divListACL.inc:246 -#, fuzzy -msgid "Delete acl" -msgstr "删除宏" +#: plugins/personal/posix/class_posixAccount.inc:609 +#: plugins/admin/ogroups/class_ogroup.inc:530 +#: plugins/admin/groups/class_groupGeneric.inc:497 +msgid "allow access to these hosts" +msgstr "允许访问这些主机" + +#: plugins/personal/posix/class_posixAccount.inc:817 +#: plugins/personal/posix/class_posixAccount.inc:910 +#: plugins/admin/departments/remove.tpl:2 +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/acl/remove.tpl:2 plugins/admin/ogroups/remove.tpl:2 +#: plugins/admin/users/class_userManagement.inc:629 +#: plugins/admin/users/remove.tpl:2 plugins/admin/groups/remove.tpl:2 +#: setup/class_setupStep_Migrate.inc:215 setup/class_setupStep_Migrate.inc:267 +#: setup/class_setupStep_Migrate.inc:400 setup/class_setupStep_Migrate.inc:477 +#: setup/class_setupStep_Migrate.inc:616 setup/class_setupStep_Migrate.inc:757 +#: setup/setup_checks.tpl:32 setup/setup_checks.tpl:93 +#: include/class_tabs.inc:238 include/functions.inc:716 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 ihtml/themes/default/islocked.tpl:6 +#: ihtml/themes/default/remove.tpl:2 ihtml/themes/default/msg_dialog.tpl:57 +#: ihtml/themes/default/msg_dialog.tpl:102 ihtml/themes/default/conflict.tpl:6 +#: html/index.php:57 html/index.php:63 html/index.php:420 html/index.php:426 +#: html/password.php:284 +msgid "Warning" +msgstr "警告" -#: 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." +#: plugins/personal/posix/class_posixAccount.inc:817 +msgid "Timeout while waiting for lock. Ignoring lock!" msgstr "" -"这包含所有系统和设置信息。请再次检查您是否要这么做,因为 GOsa 没有办法将您的" -"数据找回。" -#: plugins/admin/acl/remove.tpl:10 plugins/admin/departments/remove.tpl:10 +#: plugins/personal/posix/class_posixAccount.inc:910 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 树中的内容到一个文件。所以,如果您已经" -"这么做了,按“删除”继续或者按“取消”退出。" - -#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 -#, fuzzy -msgid "ACL management" -msgstr "管理" - -#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 -msgid "Assigned ACL for current entry" +"A duplicated UID number was written for this user. If this was not intended " +"please verify all used uidNumbers!" msgstr "" -#: plugins/admin/acl/acl_role.tpl:17 plugins/admin/acl/class_aclRole.inc:708 -#: plugins/admin/groups/class_groupGeneric.inc:1223 -#: plugins/admin/groups/generic.tpl:24 -#: plugins/admin/departments/generic.tpl:16 -#: plugins/admin/departments/class_departmentGeneric.inc:249 -#: plugins/admin/departments/class_departmentGeneric.inc:543 -#: plugins/admin/ogroups/class_ogroup.inc:1066 -#: plugins/admin/ogroups/generic.tpl:15 -#: plugins/generic/references/contents.tpl:11 -#: include/class_SnapShotDialog.inc:179 -msgid "Description" -msgstr "描述" - -#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/groups/generic.tpl:43 -#: plugins/admin/ogroups/generic.tpl:29 -msgid "Choose subtree to place group in" -msgstr "选择来放置组的子树" - -#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 -#, fuzzy -msgid "New ACL" -msgstr "新" +#: plugins/personal/posix/class_posixAccount.inc:947 +#: plugins/personal/posix/class_posixAccount.inc:1140 +msgid "Group of user" +msgstr "用户组" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +#: plugins/personal/posix/class_posixAccount.inc:1032 +#: plugins/personal/posix/class_posixAccount.inc:1085 #, fuzzy -msgid "ACL type" -msgstr "分类类型" +msgid "shadowMin" +msgstr "显示终端" -#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 -#: ihtml/themes/default/acl.tpl:19 -#, fuzzy -msgid "Select an acl type" -msgstr "选择一个位置" +#: plugins/personal/posix/class_posixAccount.inc:1037 +#: plugins/personal/posix/class_posixAccount.inc:1090 +msgid "shadowMax" +msgstr "" -#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 +#: plugins/personal/posix/class_posixAccount.inc:1042 +#: plugins/personal/posix/class_posixAccount.inc:1095 #, fuzzy -msgid "List of available ACL categories" -msgstr "可用软件包列表" +msgid "shadowWarning" +msgstr "显示分区" -#: plugins/admin/acl/class_aclRole.inc:26 -#: plugins/admin/acl/class_aclRole.inc:698 -#: plugins/admin/acl/class_aclRole.inc:703 +#: plugins/personal/posix/class_posixAccount.inc:1056 +#: plugins/personal/posix/class_posixAccount.inc:1109 #, fuzzy -msgid "Access control roles" -msgstr "访问选项" +msgid "shadowInactive" +msgstr "显示打印机" -#: plugins/admin/acl/class_aclRole.inc:27 +#: plugins/personal/posix/class_posixAccount.inc:1319 +#: plugins/admin/groups/class_groupGeneric.inc:1164 #, fuzzy -msgid "Edit AC roles" -msgstr "MAC 地址" +msgid "Cannot allocate a free ID!" +msgstr "太多用户,无法分配一个可用的 ID!" -#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 +#: plugins/personal/posix/class_posixAccount.inc:1494 #, fuzzy -msgid "All categories" -msgstr "添加分类" +msgid "POSIX account" +msgstr "GLPI 账号" -#: plugins/admin/acl/class_aclRole.inc:131 -#, fuzzy -msgid "Reset ACL" -msgstr "删除" +#: plugins/personal/posix/class_posixAccount.inc:1506 +#: setup/setup_migrate.tpl:217 +msgid "User ID" +msgstr "用户 ID" -#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +#: plugins/personal/posix/class_posixAccount.inc:1507 #, fuzzy -msgid "One level" -msgstr "日志级别" +msgid "Group ID" +msgstr "组" -#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 -#: include/class_acl.inc:214 +#: plugins/personal/posix/class_posixAccount.inc:1509 #, fuzzy -msgid "Current object" -msgstr "创建新 FAI 对象" +msgid "Force password change on login" +msgstr "不允许修改口令" -#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +#: plugins/personal/posix/class_posixAccount.inc:1510 #, fuzzy -msgid "Complete subtree" -msgstr "忽略子树" - -#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 -msgid "Complete subtree (permanent)" -msgstr "" - -#: plugins/admin/acl/class_aclRole.inc:361 -#: include/class_MultiSelectWindow.inc:248 -#: include/class_MultiSelectWindow.inc:250 include/class_acl.inc:446 -#: include/class_baseSelectDialog.inc:49 -msgid "Up" -msgstr "上" - -#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 -msgid "Down" -msgstr "关闭" - -#: plugins/admin/acl/class_aclRole.inc:363 -#: plugins/admin/acl/class_aclRole.inc:408 -#: plugins/admin/groups/class_divListGroup.inc:192 -#: plugins/admin/users/class_divListUsers.inc:183 include/class_acl.inc:450 -#: include/class_acl.inc:496 -msgid "Edit" -msgstr "编辑" - -#: plugins/admin/acl/class_aclRole.inc:364 -#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 -#: include/class_acl.inc:453 include/class_acl.inc:497 -#, php-format -msgid "Delete" -msgstr "删除" +msgid "Shadow min" +msgstr "显示终端" -#: plugins/admin/acl/class_aclRole.inc:401 -msgid "No ACL settings for this category" +#: plugins/personal/posix/class_posixAccount.inc:1511 +msgid "Shadow max" msgstr "" -#: plugins/admin/acl/class_aclRole.inc:403 -#, fuzzy, php-format -msgid "ACL for these objects: %s" -msgstr "创建新 FAI 对象" - -#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/personal/posix/class_posixAccount.inc:1512 #, fuzzy -msgid "Edit category ACL" -msgstr "编辑分类" +msgid "Shadow warning" +msgstr "显示分区" -#: plugins/admin/acl/class_aclRole.inc:409 +#: plugins/personal/posix/class_posixAccount.inc:1513 #, fuzzy -msgid "Reset category ACL" -msgstr "分类" - -#: plugins/admin/acl/class_aclRole.inc:425 -#, php-format -msgid "Edit ACL for '%s', scope is '%s'" -msgstr "" - -#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 -msgid "All objects in current subtree" -msgstr "" +msgid "Shadow inactive" +msgstr "显示打印机" -#: plugins/admin/acl/class_aclRole.inc:621 +#: plugins/personal/posix/class_posixAccount.inc:1514 #, fuzzy -msgid "Object in use" -msgstr "对象名称" - -#: plugins/admin/acl/class_aclRole.inc:621 -#, fuzzy, php-format -msgid "This role cannot be removed while it is in use by these objects:" -msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" - -#: plugins/admin/groups/group_objects.tpl:6 -msgid "Select users to add" -msgstr "选择要添加的用户" - -#: plugins/admin/groups/group_objects.tpl:30 -msgid "Select to see servers" -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:46 -#: plugins/admin/users/class_divListUsers.inc:96 -msgid "Display users matching" -msgstr "显示匹配的用户" - -#: plugins/admin/groups/group_objects.tpl:47 -msgid "Regular expression for matching user names" -msgstr "匹配用户名的正则表达式" +msgid "Shadow expire" +msgstr "显示人员" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#: plugins/admin/groups/class_groupGeneric.inc:692 -#: include/utils/class_timezone.inc:51 -#: include/password-methods/class_password-methods-sha.inc:48 -#: include/password-methods/class_password-methods-ssha.inc:51 -#: include/functions.inc:605 include/functions.inc:2545 -#: include/functions.inc:2577 include/class_plugin.inc:1311 -#: include/class_plugin.inc:1323 include/class_pluglist.inc:151 -#: include/class_config.inc:110 include/class_config.inc:574 -#: 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 html/password.php:78 -#: html/main.php:218 html/index.php:142 html/index.php:218 +#: plugins/personal/posix/class_posixAccount.inc:1515 #, fuzzy -msgid "Configuration error" -msgstr "配置文件" +msgid "System trust model" +msgstr "信赖的系统" -#: plugins/admin/groups/class_groupGeneric.inc:163 -#, fuzzy -msgid "Cannot find group SID in your configuration!" -msgstr "无法在 LDAP 或您的配置文件中查找这个组 SID。" +#: plugins/personal/posix/paste_generic.tpl:4 +msgid "Posix settings" +msgstr "Posix 设置" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Samba group" -msgstr "Samba 组" +#: plugins/personal/posix/posix_shadow.tpl:9 +msgid "User must change password on first login" +msgstr "用户必须在第一次登录修改口令" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain admins" -msgstr "域管理员" +#: plugins/personal/posix/posix_shadow.tpl:34 +msgid "Password expires on" +msgstr "口令过期截止日" -#: plugins/admin/groups/class_groupGeneric.inc:463 -msgid "Domain users" -msgstr "域用户" +#: plugins/generic/references/contents.tpl:11 +msgid "Object name" +msgstr "对象名称" -#: plugins/admin/groups/class_groupGeneric.inc:464 -msgid "Domain guests" -msgstr "域名 guests" +#: plugins/generic/references/contents.tpl:11 +#: plugins/admin/departments/generic.tpl:16 +#: plugins/admin/departments/class_departmentGeneric.inc:249 +#: plugins/admin/departments/class_departmentGeneric.inc:543 +#: plugins/admin/acl/class_aclRole.inc:708 plugins/admin/acl/acl_role.tpl:17 +#: plugins/admin/ogroups/generic.tpl:15 +#: plugins/admin/ogroups/class_ogroup.inc:1066 +#: plugins/admin/groups/generic.tpl:24 +#: plugins/admin/groups/class_groupGeneric.inc:1223 +#: include/class_SnapShotDialog.inc:179 +msgid "Description" +msgstr "描述" -#: plugins/admin/groups/class_groupGeneric.inc:469 -#, php-format -msgid "Special group (%d)" -msgstr "特殊组 (%d)" +#: plugins/generic/references/contents.tpl:11 +msgid "Contents" +msgstr "内容" -#: plugins/admin/groups/class_groupGeneric.inc:654 -msgid "! unknown id" -msgstr "! 未知 id" +#: plugins/generic/references/contents.tpl:18 +msgid "This object has no relationship to other objects." +msgstr "这个对象和其他对象没有关系。" -#: plugins/admin/groups/class_groupGeneric.inc:692 -#, php-format -msgid "Search returned too many results. Not displaying more than %s entries!" -msgstr "" +#: plugins/generic/references/class_reference.inc:45 +#: plugins/admin/ogroups/class_divListOGroup.inc:247 +#: plugins/admin/ogroups/tabs_ogroups.inc:128 +#: plugins/admin/ogroups/tabs_ogroups.inc:308 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:254 +#: plugins/admin/groups/class_divListGroup.inc:246 +msgid "Mail" +msgstr "邮件" -#: plugins/admin/groups/class_groupGeneric.inc:918 -#, fuzzy, php-format -msgid "Cannot find any SID for '%s'!" -msgstr "无法创建文件 '%s'。" +#: plugins/generic/references/class_reference.inc:51 +msgid "FAX" +msgstr "传真" -#: plugins/admin/groups/class_groupGeneric.inc:923 -#, fuzzy, php-format -msgid "Cannot find any RIDBASE for '%s'!" -msgstr "无法创建文件 '%s'。" +#: plugins/generic/references/class_reference.inc:53 +#: plugins/admin/users/class_divListUsers.inc:89 +msgid "Proxy" +msgstr "代理" -#: plugins/admin/groups/class_groupGeneric.inc:1213 -#, fuzzy -msgid "Generic group settings" -msgstr "组设置" +#: plugins/generic/references/class_reference.inc:55 +msgid "FTP" +msgstr "FTP" -#: plugins/admin/groups/class_groupGeneric.inc:1218 -#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 -msgid "Groups" -msgstr "用户组" +#: plugins/generic/references/class_reference.inc:57 +#: plugins/admin/ogroups/class_ogroupManagement.inc:527 +#: plugins/admin/groups/class_divListGroup.inc:186 +msgid "Group" +msgstr "组" -#: plugins/admin/groups/class_groupGeneric.inc:1225 -#, fuzzy -msgid "Phone pickup group" -msgstr "成员属于电话应答组" +#: plugins/generic/references/class_reference.inc:63 +#: plugins/admin/ogroups/class_ogroupManagement.inc:528 +#: plugins/admin/groups/class_divListGroup.inc:250 +msgid "Application" +msgstr "应用程序" -#: plugins/admin/groups/class_groupGeneric.inc:1226 -#, fuzzy -msgid "Nagios group" -msgstr "Nagios 账号" +#: plugins/generic/references/class_reference.inc:65 +#: plugins/admin/ogroups/class_ogroupManagement.inc:530 +#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 +msgid "Server" +msgstr "服务器" -#: plugins/admin/groups/class_groupGeneric.inc:1229 -#, fuzzy -msgid "Group member" -msgstr "组成员" +#: plugins/generic/references/class_reference.inc:67 +msgid "Thin Client" +msgstr "瘦客户机" -#: plugins/admin/groups/class_groupGeneric.inc:1230 -#, fuzzy -msgid "Samba group type" -msgstr "Samba 组" +#: plugins/generic/references/class_reference.inc:69 +#: plugins/admin/ogroups/class_ogroupManagement.inc:532 +msgid "Workstation" +msgstr "工作站" -#: plugins/admin/groups/class_groupGeneric.inc:1231 -#, fuzzy -msgid "Samba domain name" -msgstr "Samba 主目录" +#: plugins/generic/references/class_reference.inc:71 +#: plugins/admin/ogroups/class_divListOGroup.inc:83 +#: plugins/admin/ogroups/class_divListOGroup.inc:201 +#: plugins/admin/ogroups/class_divListOGroup.inc:309 +msgid "Object group" +msgstr "对象组" -#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 -#, fuzzy -msgid "Samba SID" -msgstr "Samba" +#: plugins/generic/references/class_reference.inc:73 +#: plugins/admin/ogroups/class_ogroupManagement.inc:535 +msgid "Printer" +msgstr "打印机" -#: plugins/admin/groups/class_groupManagement.inc:27 -msgid "Manage POSIX groups" +#: 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 服务器。" -#: plugins/admin/groups/class_groupManagement.inc:198 -#: plugins/admin/users/class_userManagement.inc:210 -#: plugins/admin/ogroups/class_ogroupManagement.inc:176 -#, fuzzy -msgid "Infrastructure 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 "选择上方左侧的“退出”按钮断开链接,选择“首页”回到图标程序界面。" -#: plugins/admin/groups/class_groupManagement.inc:376 -#: plugins/admin/groups/class_groupManagement.inc:457 -#, fuzzy -msgid "group" -msgstr "组" +#: plugins/generic/welcome/welcome.tpl:15 +msgid "The GOsa team" +msgstr "GOsa 团队" -#: plugins/admin/groups/paste_generic.tpl:1 -msgid "Group settings" -msgstr "组设置" +#: plugins/generic/welcome/main.inc:26 +#, php-format +msgid "Welcome %s!" +msgstr "欢迎 %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 "组名" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:25 +msgid "Bug submitter" +msgstr "" -#: plugins/admin/groups/paste_generic.tpl:8 -#: plugins/admin/groups/generic.tpl:17 -msgid "Posix name of the group" -msgstr "组的 posix 名称" +#: plugins/addons/bugsubmitter/class_bugsubmitter.inc:26 +msgid "" +"Bugsubmitter" +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 是自动创建的,要手工设置请选择" +#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 +msgid "Department management" +msgstr "部门管理" -#: plugins/admin/groups/paste_generic.tpl:15 -#: plugins/admin/groups/generic.tpl:68 -msgid "Force GID" -msgstr "强制 GID" +#: plugins/admin/departments/dep_iframe.tpl:1 +msgid "Processing the requested operation" +msgstr "处理请求的操作" -#: plugins/admin/groups/paste_generic.tpl:18 -#: plugins/admin/groups/generic.tpl:71 -msgid "Forced ID number" -msgstr "强制 ID 编号" +#: 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/groups/class_divListGroup.inc:55 -#: plugins/admin/groups/class_divListGroup.inc:56 -msgid "List of groups" -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 没" +"有办法将您的数据找回。" + +#: 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 "" +"最好在执行这个操作之前,保存当前 LDAP 树中的内容到一个文件。所以,如果您已经" +"这么做了,按“删除”继续或者按“取消”退出。" -#: plugins/admin/groups/class_divListGroup.inc:80 -#: plugins/admin/users/class_divListUsers.inc:81 #: plugins/admin/departments/generic.tpl:4 #: plugins/admin/ogroups/class_divListOGroup.inc:84 +#: plugins/admin/users/class_divListUsers.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:80 msgid "Properties" msgstr "属性" -#: plugins/admin/groups/class_divListGroup.inc:84 -msgid "Select to see groups that are primary groups of users" -msgstr "选择查看用户的主要组" +#: plugins/admin/departments/generic.tpl:8 +msgid "Name of department" +msgstr "部门名称" + +#: plugins/admin/departments/generic.tpl:11 +msgid "Name of subtree to create" +msgstr "要创建子树的名称" + +#: plugins/admin/departments/generic.tpl:19 +msgid "Descriptive text for department" +msgstr "部门描述文件" + +#: plugins/admin/departments/generic.tpl:24 +#: plugins/admin/departments/class_departmentGeneric.inc:549 +msgid "Category" +msgstr "分类" + +#: plugins/admin/departments/generic.tpl:27 +msgid "Category for this subtree" +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/groups/class_divListGroup.inc:85 -#: plugins/admin/groups/class_divListGroup.inc:87 -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/groups/class_divListGroup.inc:91 -#: plugins/admin/groups/class_divListGroup.inc:93 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:85 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:88 -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:88 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:422 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#, fuzzy, php-format -msgid "Show %s" -msgstr "显示组" +#: plugins/admin/departments/generic.tpl:79 +msgid "Postal address of this subtree" +msgstr "这个子树的地址" -#: plugins/admin/groups/class_divListGroup.inc:85 -#, fuzzy -msgid "primary groups" -msgstr "主要用户组" +#: plugins/admin/departments/generic.tpl:86 +msgid "Base telephone number of this subtree" +msgstr "这个子树的电话号码" -#: plugins/admin/groups/class_divListGroup.inc:86 -#, fuzzy -msgid "samba groups mappings" -msgstr "显示匹配的组" +#: plugins/admin/departments/generic.tpl:94 +msgid "Base facsimile telephone number of this subtree" +msgstr "这个子树的传真号码" -#: plugins/admin/groups/class_divListGroup.inc:87 -#, fuzzy -msgid "samba groups" -msgstr "Samba 组" +#: plugins/admin/departments/generic.tpl:109 +#: plugins/admin/departments/class_departmentGeneric.inc:552 +msgid "Administrative settings" +msgstr "管理设置" -#: plugins/admin/groups/class_divListGroup.inc:88 -#, fuzzy -msgid "application settings" -msgstr "应用程序" +#: plugins/admin/departments/generic.tpl:111 +msgid "Tag department as an independent administrative unit" +msgstr "将部门标记为独立的管理单元" -#: plugins/admin/groups/class_divListGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:93 -#: plugins/admin/ogroups/class_divListOGroup.inc:94 -#, fuzzy -msgid "application groups" -msgstr "显示应用程序组" +#: plugins/admin/departments/class_divListDepartment.inc:47 +#: plugins/admin/departments/class_divListDepartment.inc:48 +msgid "List of departments" +msgstr "部门列表" -#: plugins/admin/groups/class_divListGroup.inc:90 +#: plugins/admin/departments/class_divListDepartment.inc:61 +#: plugins/admin/acl/class_divListACL.inc:67 +#: plugins/admin/ogroups/class_divListOGroup.inc:77 +#: plugins/admin/users/class_divListUsers.inc:74 +#: plugins/admin/groups/class_divListGroup.inc:73 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 "mail settings" -msgstr "邮件选项" +msgid "Select all" +msgstr "选择" -#: plugins/admin/groups/class_divListGroup.inc:91 -#, fuzzy -msgid "mail groups" -msgstr "显示邮件组" +#: plugins/admin/departments/class_divListDepartment.inc:67 +#: plugins/admin/departments/class_departmentGeneric.inc:548 +msgid "Department name" +msgstr "部门名称" -#: plugins/admin/groups/class_divListGroup.inc:92 -msgid "Select to see normal groups that have only functional aspects" -msgstr "选择查看实用的普通组" +#: 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/ogroups/class_divListOGroup.inc:85 +#: plugins/admin/ogroups/class_divListOGroup.inc:194 +#: plugins/admin/users/class_divListUsers.inc:82 +#: plugins/admin/users/class_divListUsers.inc:168 +#: plugins/admin/groups/class_divListGroup.inc:81 +#: plugins/admin/groups/class_divListGroup.inc:179 +msgid "Actions" +msgstr "动作" -#: plugins/admin/groups/class_divListGroup.inc:93 +#: plugins/admin/departments/class_divListDepartment.inc:75 #, fuzzy -msgid "functional groups" -msgstr "显示实用组" - -#: plugins/admin/groups/class_divListGroup.inc:186 -#: plugins/admin/ogroups/class_ogroupManagement.inc:527 -#: plugins/generic/references/class_reference.inc:57 -msgid "Group" -msgstr "组" +msgid "Regular expression for matching department names" +msgstr "匹配附件名称的正则表达式" -#: plugins/admin/groups/class_divListGroup.inc:244 -#: plugins/admin/users/class_divListUsers.inc:86 -#: plugins/admin/users/class_divListUsers.inc:250 -msgid "Posix" -msgstr "Posix" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +msgid "Submit department" +msgstr "提交部门" -#: plugins/admin/groups/class_divListGroup.inc:246 -#: plugins/admin/users/class_divListUsers.inc:87 -#: plugins/admin/users/class_divListUsers.inc:254 -#: plugins/admin/ogroups/tabs_ogroups.inc:128 -#: plugins/admin/ogroups/tabs_ogroups.inc:308 -#: plugins/admin/ogroups/class_divListOGroup.inc:247 -#: plugins/generic/references/class_reference.inc:45 -msgid "Mail" -msgstr "邮件" +#: plugins/admin/departments/class_divListDepartment.inc:146 +#: plugins/admin/acl/class_divListACL.inc:155 +#: plugins/admin/ogroups/class_divListOGroup.inc:190 +#: plugins/admin/users/class_divListUsers.inc:164 +#: plugins/admin/groups/class_divListGroup.inc:175 +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Submit" +msgstr "提交" -#: plugins/admin/groups/class_divListGroup.inc:250 -#: plugins/admin/ogroups/class_ogroupManagement.inc:528 -#: plugins/generic/references/class_reference.inc:63 -msgid "Application" -msgstr "应用程序" +#: plugins/admin/departments/class_divListDepartment.inc:154 +#: plugins/admin/acl/class_divListACL.inc:163 +#: plugins/admin/ogroups/class_divListOGroup.inc:199 +#: plugins/admin/users/class_divListUsers.inc:173 +#: plugins/admin/groups/class_divListGroup.inc:184 +#: setup/class_setupStep_Migrate.inc:914 +msgid "Create" +msgstr "创建" +#: plugins/admin/departments/class_divListDepartment.inc:186 +#: plugins/admin/acl/class_divListACL.inc:214 +#: plugins/admin/acl/class_divListACL.inc:241 +#: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/users/class_divListUsers.inc:307 #: plugins/admin/groups/class_divListGroup.inc:290 +msgid "edit" +msgstr "编辑" + #: plugins/admin/departments/class_divListDepartment.inc:186 #: plugins/admin/ogroups/class_divListOGroup.inc:271 +#: plugins/admin/groups/class_divListGroup.inc:290 msgid "Edit this entry" msgstr "编辑这条记录" +#: plugins/admin/departments/class_divListDepartment.inc:190 +#: plugins/admin/acl/class_divListACL.inc:222 +#: plugins/admin/acl/class_divListACL.inc:245 +#: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/users/class_divListUsers.inc:331 #: plugins/admin/groups/class_divListGroup.inc:297 +msgid "delete" +msgstr "删除" + #: plugins/admin/departments/class_divListDepartment.inc:190 #: plugins/admin/ogroups/class_divListOGroup.inc:277 +#: plugins/admin/groups/class_divListGroup.inc:297 msgid "Delete this entry" msgstr "删除这个条目" -#: plugins/admin/groups/class_divListGroup.inc:300 -#: plugins/admin/users/class_divListUsers.inc:323 -#: plugins/admin/users/class_divListUsers.inc:335 -#, fuzzy -msgid "Not allowed" -msgstr "不允许修改口令" - -#: plugins/admin/groups/class_divListGroup.inc:359 -#, fuzzy -msgid "Number of listed groups" -msgstr "组名称" +#: plugins/admin/departments/class_divListDepartment.inc:219 +msgid "department" +msgstr "部门" -#: plugins/admin/groups/class_divListGroup.inc:360 -#: plugins/admin/users/class_divListUsers.inc:422 #: plugins/admin/departments/class_divListDepartment.inc:229 #: plugins/admin/ogroups/class_divListOGroup.inc:326 +#: plugins/admin/users/class_divListUsers.inc:422 +#: plugins/admin/groups/class_divListGroup.inc:360 #, fuzzy msgid "Number of listed departments" msgstr "部门名称" -#: plugins/admin/groups/generic.tpl:28 plugins/admin/ogroups/generic.tpl:18 -msgid "Descriptive text for this group" -msgstr "组的描述文字" +#: plugins/admin/departments/dep_move_confirm.tpl:2 +#, fuzzy +msgid "You are currently moving/renaming this department." +msgstr "您无权删除这个部门。" -#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 -msgid "Select to create a samba conform group" -msgstr "选择创建一个 samba 确认组" +#: 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 "" -#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 -msgid "in domain" -msgstr "于域" +#: plugins/admin/departments/dep_move_confirm.tpl:8 +msgid "GOsa can NOT fix this for you, yet." +msgstr "" -#: plugins/admin/groups/generic.tpl:140 -msgid "Members are in a phone pickup group" -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 "" -#: plugins/admin/groups/generic.tpl:155 -msgid "Members are in a nagios group" -msgstr "成员属于 nagios 组" +#: plugins/admin/departments/class_departmentGeneric.inc:313 html/main.php:153 +#: html/password.php:58 +#, fuzzy +msgid "Fatal error" +msgstr "终端服务器" + +#: plugins/admin/departments/class_departmentGeneric.inc:313 +#, fuzzy +msgid "Cannot find an unused tag for this administrative unit!" +msgstr "致命错误:无法找到一个未使用的标志来标记管理单元!" + +#: plugins/admin/departments/class_departmentGeneric.inc:386 +#, php-format +msgid "Tagging '%s'." +msgstr "标记 '%s'。" + +#: plugins/admin/departments/class_departmentGeneric.inc:441 +#: plugins/admin/departments/class_departmentGeneric.inc:521 +#: plugins/admin/users/template.tpl:48 +#: ihtml/themes/default/snapshotdialog.tpl:87 +msgid "Continue" +msgstr "继续" + +#: plugins/admin/departments/class_departmentGeneric.inc:463 +#, php-format +msgid "Moving '%s' to '%s'" +msgstr "移动 '%s' 到 '%s'" + +#: plugins/admin/departments/class_departmentGeneric.inc:499 +#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 +#: include/class_acl.inc:703 include/class_acl.inc:710 +#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 +#: ihtml/themes/default/snapshotdialog.tpl:62 +msgid "Object" +msgstr "对象" -#: plugins/admin/groups/generic.tpl:207 -msgid "Group members" -msgstr "组成员" +#: plugins/admin/departments/class_departmentGeneric.inc:504 +#, php-format +msgid "FAILED to copy %s, aborting operation" +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 没有办法将您的" -"数据找回。" +#: plugins/admin/departments/class_departmentGeneric.inc:535 +#: plugins/admin/departments/class_departmentGeneric.inc:540 +#: plugins/admin/departments/class_departmentManagement.inc:26 +msgid "Departments" +msgstr "部门" -#: plugins/admin/groups/remove.tpl:10 plugins/admin/users/remove.tpl:10 -#: plugins/admin/ogroups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 -msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." -msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。" +#: plugins/admin/departments/class_departmentGeneric.inc:544 +msgid "Country" +msgstr "国家" -#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 -msgid "Group administration" -msgstr "组管理" +#: plugins/admin/departments/class_departmentGeneric.inc:547 +msgid "Telephone" +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." -msgstr "用下面的字段修改用口令。修改即时生效。请记住新密码,否则无法登录。" +#: plugins/admin/departments/class_departmentGeneric.inc:604 +#, php-format +msgid "Object '%s' is already tagged" +msgstr "对象 '%s' 已经做标记" -#: plugins/admin/users/password.tpl:21 -#, fuzzy -msgid "Strength" -msgstr "街道" +#: plugins/admin/departments/class_departmentGeneric.inc:611 +#, php-format +msgid "Adding tag (%s) to object '%s'" +msgstr "添加标识(%s)到对象 '%s'" -#: plugins/admin/users/class_userManagement.inc:27 -#, fuzzy -msgid "Manage users" -msgstr "域用户" +#: plugins/admin/departments/class_departmentGeneric.inc:643 +#, php-format +msgid "Removing tag from object '%s'" +msgstr "从对象 '%s' 删除标记" -#: plugins/admin/users/class_userManagement.inc:315 -#: plugins/admin/users/class_userManagement.inc:378 +#: plugins/admin/departments/class_departmentManagement.inc:27 #, fuzzy -msgid "You have no permission to change this users password!" -msgstr "您无权修改您的口令。" - -#: plugins/admin/users/class_userManagement.inc:491 -#: plugins/admin/ogroups/class_ogroup.inc:469 -msgid "none" -msgstr "无" +msgid "Manage Departments" +msgstr "部门" +#: plugins/admin/departments/class_departmentManagement.inc:200 +#: plugins/admin/departments/class_departmentManagement.inc:249 +#: plugins/admin/departments/class_departmentManagement.inc:268 +#: plugins/admin/acl/class_aclManagement.inc:166 +#: plugins/admin/acl/class_aclManagement.inc:209 +#: plugins/admin/acl/class_aclManagement.inc:259 +#: plugins/admin/acl/class_aclManagement.inc:283 +#: plugins/admin/acl/class_aclManagement.inc:340 +#: plugins/admin/acl/class_aclManagement.inc:377 +#: plugins/admin/ogroups/class_ogroupManagement.inc:285 +#: plugins/admin/ogroups/class_ogroupManagement.inc:338 +#: plugins/admin/ogroups/class_ogroupManagement.inc:365 #: plugins/admin/users/class_userManagement.inc:544 -#, fuzzy, php-format -msgid "You have no permission to modify object '%s'!" -msgstr "您无权删除这个黑名单。" - #: plugins/admin/users/class_userManagement.inc:548 +#: plugins/admin/groups/class_groupManagement.inc:410 +#: plugins/admin/groups/class_groupManagement.inc:464 +#: plugins/admin/groups/class_groupManagement.inc:495 #, fuzzy -msgid "You have no permission to use this template!" -msgstr "您无权删除这个黑名单。" - -#: plugins/admin/users/class_userManagement.inc:600 -#: plugins/admin/users/class_divListUsers.inc:308 -#, fuzzy -msgid "user" -msgstr "用户" - -#: plugins/admin/users/class_userManagement.inc:655 -#, fuzzy -msgid "You have no permission to change the lock status for this user!" -msgstr "您无权修改您的口令。" - -#: plugins/admin/users/class_userManagement.inc:771 -#: plugins/admin/users/template.tpl:15 -#: plugins/admin/users/class_divListUsers.inc:84 -#: plugins/admin/users/class_divListUsers.inc:177 -#: plugins/admin/users/templatize.tpl:15 -msgid "Template" -msgstr "模板" +msgid "Permission error" +msgstr "允许" -#: plugins/admin/users/template.tpl:2 -msgid "Creating a new user using templates" -msgstr "用模板创建一个新用户" +#: plugins/admin/departments/class_departmentManagement.inc:243 +#, php-format +msgid "You're about to delete the whole LDAP subtree placed under '%s'." +msgstr "您将要删除 '%s' 下的整个 LDAP 子树。" -#: plugins/admin/users/template.tpl:6 +#: plugins/admin/departments/class_departmentManagement.inc:316 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." +"As soon as the move operation has finished, you can scroll down to end of " +"the page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -"可以使用模板来辅助新用户的创建。很多数据记录可以被自动填充。选择“无”来跳过模" -"板选择。" - -#: plugins/admin/users/template.tpl:48 -#: plugins/admin/departments/class_departmentGeneric.inc:441 -#: plugins/admin/departments/class_departmentGeneric.inc:521 -#: ihtml/themes/default/snapshotdialog.tpl:87 -msgid "Continue" -msgstr "继续" -#: plugins/admin/users/remove.tpl:6 +#: plugins/admin/departments/class_departmentManagement.inc:336 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." +"As soon as the tag operation has finished, you can scroll down to end of the " +"page and press the 'Continue' button to continue with the department " +"management dialog." msgstr "" -"这包含该用户所有账号数据,系统访问规则,imap 设置等等。请再次检查您是否要这么" -"做,因为 GOsa 没有办法将您的数据找回。" -#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 -msgid "User administration" -msgstr "用户管理" +#: plugins/admin/acl/class_aclManagement.inc:26 +#: plugins/admin/acl/tabs_acl.inc:28 +#: plugins/admin/acl/class_divListACL.inc:236 +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:721 include/class_tabs.inc:370 +#: include/class_acl.inc:450 include/class_acl.inc:453 +#: include/class_acl.inc:1176 include/class_acl.inc:1177 +#: include/class_acl.inc:1182 +msgid "ACL" +msgstr "ACL" -#: plugins/admin/users/class_divListUsers.inc:55 -#: plugins/admin/users/class_divListUsers.inc:56 -msgid "List of users" -msgstr "用户列表" +#: plugins/admin/acl/class_aclManagement.inc:27 include/class_acl.inc:27 +#, fuzzy +msgid "Manage access control lists" +msgstr "访问选项" -#: plugins/admin/users/class_divListUsers.inc:80 -#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 -#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 -msgid "Username" -msgstr "用户名" +#: plugins/admin/acl/class_aclManagement.inc:321 +#: plugins/admin/ogroups/class_ogroupManagement.inc:237 +#: plugins/admin/users/class_userManagement.inc:343 +#: plugins/admin/users/class_userManagement.inc:582 +#: plugins/admin/groups/class_groupManagement.inc:359 +#: include/class_plugin.inc:1527 include/class_plugin.inc:1540 +#: include/class_plugin.inc:1555 include/class_plugin.inc:1568 +#, fuzzy +msgid "Permission" +msgstr "允许" -#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/acl/main.inc:45 plugins/admin/acl/main.inc:47 #, fuzzy -msgid "templates" -msgstr "模板" +msgid "ACL management" +msgstr "管理" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/remove.tpl:6 #, fuzzy -msgid "GOsa object" -msgstr "对象" +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 没有办法将您的" +"数据找回。" -#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/acl/class_divListACL.inc:51 +#: plugins/admin/acl/class_divListACL.inc:52 #, fuzzy -msgid "functional users" -msgstr "显示用户" +msgid "List of acls" +msgstr "宏列表" -#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/acl/class_divListACL.inc:73 +msgid "Summary" +msgstr "总结" + +#: plugins/admin/acl/class_divListACL.inc:84 #, fuzzy -msgid "POSIX users" -msgstr "Posix 设置" +msgid "Display acls matching" +msgstr "显示匹配的宏" -#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/acl/class_divListACL.inc:215 #, fuzzy -msgid "mail users" -msgstr "域用户" +msgid "Edit acl role" +msgstr "编辑宏" -#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/acl/class_divListACL.inc:223 #, fuzzy -msgid "samba users" -msgstr "域用户" +msgid "Delete acl role" +msgstr "删除宏" -#: plugins/admin/users/class_divListUsers.inc:89 -#: plugins/generic/references/class_reference.inc:53 -msgid "Proxy" -msgstr "代理" +#: plugins/admin/acl/class_divListACL.inc:242 +#, fuzzy +msgid "Edit acl" +msgstr "编辑宏" -#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/acl/class_divListACL.inc:246 #, fuzzy -msgid "proxy users" -msgstr "显示代理用户" +msgid "Delete acl" +msgstr "删除宏" -#: plugins/admin/users/class_divListUsers.inc:175 -#: plugins/admin/ogroups/class_ogroupManagement.inc:526 -#: setup/setup_config2.tpl:286 setup/setup_config2.tpl:331 -msgid "User" -msgstr "用户" +#: plugins/admin/acl/class_aclRole.inc:26 +#: plugins/admin/acl/class_aclRole.inc:698 +#: plugins/admin/acl/class_aclRole.inc:703 +#, fuzzy +msgid "Access control roles" +msgstr "访问选项" -#: plugins/admin/users/class_divListUsers.inc:185 -#: plugins/admin/users/class_divListUsers.inc:320 -#: ihtml/themes/default/accountexpired.tpl:51 -msgid "Change password" -msgstr "修改口令" +#: plugins/admin/acl/class_aclRole.inc:27 +#, fuzzy +msgid "Edit AC roles" +msgstr "MAC 地址" -#: plugins/admin/users/class_divListUsers.inc:189 +#: plugins/admin/acl/class_aclRole.inc:124 include/class_acl.inc:199 #, fuzzy -msgid "Apply template" -msgstr "模板" +msgid "All categories" +msgstr "添加分类" -#: plugins/admin/users/class_divListUsers.inc:248 -msgid "GOsa" -msgstr "GOsa" +#: plugins/admin/acl/class_aclRole.inc:131 +#, fuzzy +msgid "Reset ACL" +msgstr "删除" -#: plugins/admin/users/class_divListUsers.inc:249 -msgid "Edit generic properties" -msgstr "编辑通用属性" +#: plugins/admin/acl/class_aclRole.inc:132 include/class_acl.inc:208 +#, fuzzy +msgid "One level" +msgstr "日志级别" -#: plugins/admin/users/class_divListUsers.inc:251 -msgid "Edit UNIX properties" -msgstr "编辑 UNIX 属性" +#: plugins/admin/acl/class_aclRole.inc:133 include/class_acl.inc:209 +#: include/class_acl.inc:214 +#, fuzzy +msgid "Current object" +msgstr "创建新 FAI 对象" -#: plugins/admin/users/class_divListUsers.inc:253 -msgid "Edit environment properties" -msgstr "编辑环境属性" +#: plugins/admin/acl/class_aclRole.inc:134 include/class_acl.inc:210 +#, fuzzy +msgid "Complete subtree" +msgstr "忽略子树" -#: plugins/admin/users/class_divListUsers.inc:255 -msgid "Edit mail properties" -msgstr "编辑邮件属性" +#: plugins/admin/acl/class_aclRole.inc:135 include/class_acl.inc:211 +msgid "Complete subtree (permanent)" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:257 -msgid "Edit phone properties" -msgstr "编辑电话属性" +#: plugins/admin/acl/class_aclRole.inc:361 +#: include/class_MultiSelectWindow.inc:248 +#: include/class_MultiSelectWindow.inc:250 +#: include/class_baseSelectDialog.inc:49 include/class_acl.inc:446 +msgid "Up" +msgstr "上" -#: plugins/admin/users/class_divListUsers.inc:259 -msgid "Edit fax properies" -msgstr "编辑传真属性" +#: plugins/admin/acl/class_aclRole.inc:362 include/class_acl.inc:447 +msgid "Down" +msgstr "关闭" -#: plugins/admin/users/class_divListUsers.inc:261 -msgid "Edit samba properties" -msgstr "编辑 samba 属性" +#: plugins/admin/acl/class_aclRole.inc:363 +#: plugins/admin/acl/class_aclRole.inc:408 +#: plugins/admin/users/class_divListUsers.inc:183 +#: plugins/admin/groups/class_divListGroup.inc:192 include/class_acl.inc:450 +#: include/class_acl.inc:496 +msgid "Edit" +msgstr "编辑" -#: plugins/admin/users/class_divListUsers.inc:262 -msgid "Netatalk" -msgstr "Netatalk" +#: plugins/admin/acl/class_aclRole.inc:364 +#: plugins/admin/acl/class_aclRole.inc:409 include/utils/class_msgPool.inc:338 +#: include/class_acl.inc:453 include/class_acl.inc:497 +#, php-format +msgid "Delete" +msgstr "删除" -#: plugins/admin/users/class_divListUsers.inc:263 -msgid "Edit netatalk properties" -msgstr "编辑 netatalk 属性" +#: plugins/admin/acl/class_aclRole.inc:401 +msgid "No ACL settings for this category" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:264 -msgid "Create user from template" -msgstr "从模板创建用户" +#: plugins/admin/acl/class_aclRole.inc:403 +#, fuzzy, php-format +msgid "ACL for these objects: %s" +msgstr "创建新 FAI 对象" -#: plugins/admin/users/class_divListUsers.inc:265 -msgid "Create user with this template" -msgstr "创建使用该模板的用户" +#: plugins/admin/acl/class_aclRole.inc:408 +#, fuzzy +msgid "Edit category ACL" +msgstr "编辑分类" -#: plugins/admin/users/class_divListUsers.inc:297 +#: plugins/admin/acl/class_aclRole.inc:409 #, fuzzy -msgid "inactive" -msgstr "活动" +msgid "Reset category ACL" +msgstr "分类" -#: plugins/admin/users/class_divListUsers.inc:319 -msgid "password" -msgstr "口令" +#: plugins/admin/acl/class_aclRole.inc:425 +#, php-format +msgid "Edit ACL for '%s', scope is '%s'" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:332 -msgid "Delete user" -msgstr "删除用户" +#: plugins/admin/acl/class_aclRole.inc:435 include/class_acl.inc:553 +msgid "All objects in current subtree" +msgstr "" -#: plugins/admin/users/class_divListUsers.inc:421 +#: plugins/admin/acl/class_aclRole.inc:621 #, fuzzy -msgid "Number of listed users" -msgstr "部门名称" +msgid "Object in use" +msgstr "对象名称" -#: plugins/admin/users/templatize.tpl:2 +#: plugins/admin/acl/class_aclRole.inc:621 +#, fuzzy, php-format +msgid "This role cannot be removed while it is in use by these objects:" +msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" + +#: plugins/admin/acl/tabs_acl_role.inc:28 #, fuzzy -msgid "Applying a template" +msgid "ACL Templates" msgstr "模板" -#: plugins/admin/users/templatize.tpl:6 -msgid "" -"Applying a template to several users will replace all user attributes " -"defined in the template." +#: plugins/admin/acl/acl_role.tpl:3 ihtml/themes/default/acl.tpl:2 +msgid "Assigned ACL for current entry" msgstr "" -#: plugins/admin/users/templatize.tpl:33 +#: plugins/admin/acl/acl_role.tpl:31 plugins/admin/ogroups/generic.tpl:29 +#: plugins/admin/groups/generic.tpl:43 +msgid "Choose subtree to place group in" +msgstr "选择来放置组的子树" + +#: plugins/admin/acl/acl_role.tpl:44 ihtml/themes/default/acl.tpl:7 #, fuzzy -msgid "No templates available!" -msgstr "文件可用。" +msgid "New ACL" +msgstr "新" -#: plugins/admin/departments/class_divListDepartment.inc:47 -#: plugins/admin/departments/class_divListDepartment.inc:48 -msgid "List of departments" -msgstr "部门列表" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:12 +#, fuzzy +msgid "ACL type" +msgstr "分类类型" -#: plugins/admin/departments/class_divListDepartment.inc:67 -#: plugins/admin/departments/class_departmentGeneric.inc:548 -msgid "Department name" -msgstr "部门名称" +#: plugins/admin/acl/acl_role.tpl:49 ihtml/themes/default/acl.tpl:14 +#: ihtml/themes/default/acl.tpl:19 +#, fuzzy +msgid "Select an acl type" +msgstr "选择一个位置" -#: plugins/admin/departments/class_divListDepartment.inc:75 +#: plugins/admin/acl/acl_role.tpl:54 ihtml/themes/default/acl.tpl:99 #, fuzzy -msgid "Regular expression for matching department names" -msgstr "匹配附件名称的正则表达式" +msgid "List of available ACL categories" +msgstr "可用软件包列表" -#: plugins/admin/departments/class_divListDepartment.inc:219 -msgid "department" -msgstr "部门" +#: plugins/admin/ogroups/class_ogroupManagement.inc:26 +#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 +#: plugins/admin/ogroups/class_ogroup.inc:1061 +msgid "Object groups" +msgstr "对象组" -#: plugins/admin/departments/dep_iframe.tpl:1 -msgid "Processing the requested operation" -msgstr "处理请求的操作" +#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#, fuzzy +msgid "Manage object groups" +msgstr "对象组名称" -#: 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/ogroups/class_ogroupManagement.inc:176 +#: plugins/admin/users/class_userManagement.inc:210 +#: plugins/admin/groups/class_groupManagement.inc:198 +#, fuzzy +msgid "Infrastructure error" +msgstr "PHP 错误" -#: plugins/admin/departments/dep_move_confirm.tpl:2 +#: plugins/admin/ogroups/class_ogroupManagement.inc:255 +#: plugins/admin/ogroups/class_ogroupManagement.inc:331 #, fuzzy -msgid "You are currently moving/renaming this department." -msgstr "您无权删除这个部门。" +msgid "object group" +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 "" +#: plugins/admin/ogroups/class_ogroupManagement.inc:526 +#: plugins/admin/users/class_divListUsers.inc:175 setup/setup_config2.tpl:286 +#: setup/setup_config2.tpl:331 +msgid "User" +msgstr "用户" -#: plugins/admin/departments/dep_move_confirm.tpl:8 -msgid "GOsa can NOT fix this for you, yet." -msgstr "" +#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#, fuzzy +msgid "Windows Install" +msgstr "Windows 工作站" -#: plugins/admin/departments/dep_move_confirm.tpl:11 +#: plugins/admin/ogroups/class_ogroupManagement.inc:534 +msgid "Terminal" +msgstr "终端" + +#: plugins/admin/ogroups/remove.tpl:7 msgid "" -"Before you confirm this action, ensure that everything will be as expected, " -"possibly the best solution is a backup." -msgstr "" +"Please double check if you really want to do this since there is no way for " +"GOsa to get your data back." +msgstr "请再次检查您是否要这么做,因为 GOsa 没有办法将您的数据找回。" -#: plugins/admin/departments/generic.tpl:8 -msgid "Name of department" -msgstr "部门名称" +#: plugins/admin/ogroups/remove.tpl:10 plugins/admin/users/remove.tpl:10 +#: plugins/admin/groups/remove.tpl:10 ihtml/themes/default/remove.tpl:9 +msgid "So - if you're sure - press 'Delete' to continue or 'Cancel' to abort." +msgstr "所以,如果您确定,请按“删除”继续,否则按“取消”退出。" + +#: plugins/admin/ogroups/generic.tpl:7 +#: plugins/admin/ogroups/paste_generic.tpl:4 +#: plugins/admin/groups/generic.tpl:11 +#: plugins/admin/groups/paste_generic.tpl:5 +msgid "Group name" +msgstr "组名" + +#: plugins/admin/ogroups/generic.tpl:10 +msgid "Name of the group" +msgstr "组名称" + +#: plugins/admin/ogroups/generic.tpl:18 plugins/admin/groups/generic.tpl:28 +msgid "Descriptive text for this group" +msgstr "组的描述文字" + +#: plugins/admin/ogroups/generic.tpl:70 +msgid "Member objects" +msgstr "成员对象" + +#: plugins/admin/ogroups/class_divListOGroup.inc:59 +#: plugins/admin/ogroups/class_divListOGroup.inc:60 +msgid "List of object groups" +msgstr "对象组列表" + +#: plugins/admin/ogroups/class_divListOGroup.inc:88 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:85 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:87 +#: plugins/admin/users/class_divListUsers.inc:88 +#: plugins/admin/users/class_divListUsers.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:85 +#: plugins/admin/groups/class_divListGroup.inc:87 +#: plugins/admin/groups/class_divListGroup.inc:89 +#: plugins/admin/groups/class_divListGroup.inc:91 +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy, php-format +msgid "Show %s" +msgstr "显示组" -#: plugins/admin/departments/generic.tpl:11 -msgid "Name of subtree to create" -msgstr "要创建子树的名称" +#: plugins/admin/ogroups/class_divListOGroup.inc:89 +#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#, fuzzy +msgid "user groups" +msgstr "组" -#: plugins/admin/departments/generic.tpl:19 -msgid "Descriptive text for department" -msgstr "部门描述文件" +#: plugins/admin/ogroups/class_divListOGroup.inc:91 +#: plugins/admin/ogroups/class_divListOGroup.inc:92 +#, fuzzy +msgid "nested groups" +msgstr "对象组" -#: plugins/admin/departments/generic.tpl:24 -#: plugins/admin/departments/class_departmentGeneric.inc:549 -msgid "Category" -msgstr "分类" +#: plugins/admin/ogroups/class_divListOGroup.inc:93 +#: plugins/admin/ogroups/class_divListOGroup.inc:94 +#: plugins/admin/groups/class_divListGroup.inc:89 +#, fuzzy +msgid "application groups" +msgstr "显示应用程序组" -#: plugins/admin/departments/generic.tpl:27 -msgid "Category for this subtree" -msgstr "这个子树的分类" +#: plugins/admin/ogroups/class_divListOGroup.inc:95 +#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#, fuzzy +msgid "department groups" +msgstr "部门" -#: plugins/admin/departments/generic.tpl:39 -msgid "Choose subtree to place department in" -msgstr "选择放置部门的子树" +#: plugins/admin/ogroups/class_divListOGroup.inc:97 +#: plugins/admin/ogroups/class_divListOGroup.inc:98 +#, fuzzy +msgid "server groups" +msgstr "服务器" -#: plugins/admin/departments/generic.tpl:63 -msgid "State where this subtree is located" -msgstr "这个子树位于的状态" +#: plugins/admin/ogroups/class_divListOGroup.inc:99 +#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#, fuzzy +msgid "workstation groups" +msgstr "工作站" -#: plugins/admin/departments/generic.tpl:71 -msgid "Location of this subtree" -msgstr "这个子树的位置" +#: plugins/admin/ogroups/class_divListOGroup.inc:101 +#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#, fuzzy +msgid "windows workstation groups" +msgstr "显示工作站" -#: plugins/admin/departments/generic.tpl:79 -msgid "Postal address of this subtree" -msgstr "这个子树的地址" +#: plugins/admin/ogroups/class_divListOGroup.inc:103 +#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#, fuzzy +msgid "terminal groups" +msgstr "显示邮件组" -#: plugins/admin/departments/generic.tpl:86 -msgid "Base telephone number of this subtree" -msgstr "这个子树的电话号码" +#: plugins/admin/ogroups/class_divListOGroup.inc:105 +#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#, fuzzy +msgid "printer groups" +msgstr "主要用户组" -#: plugins/admin/departments/generic.tpl:94 -msgid "Base facsimile telephone number of this subtree" -msgstr "这个子树的传真号码" +#: plugins/admin/ogroups/class_divListOGroup.inc:107 +#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#, fuzzy +msgid "phone groups" +msgstr "显示组" -#: plugins/admin/departments/generic.tpl:109 -#: plugins/admin/departments/class_departmentGeneric.inc:552 -msgid "Administrative settings" -msgstr "管理设置" +#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#, fuzzy +msgid "Number of listed object groups" +msgstr "对象组名称" -#: plugins/admin/departments/generic.tpl:111 -msgid "Tag department as an independent administrative unit" -msgstr "将部门标记为独立的管理单元" +#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 +#: ihtml/themes/default/MultiSelectWindow.tpl:45 +#: ihtml/themes/default/MultiSelectWindow.tpl:86 +#: ihtml/themes/default/msg_dialog.tpl:59 +#: ihtml/themes/default/msg_dialog.tpl:104 +msgid "Information" +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." +#: plugins/admin/ogroups/class_ogroup.inc:197 +msgid "You cannot combine terminals and workstations in one object group!" msgstr "" -"在这个子树中包含了所有账号,系统等等。请再次检查您是否要这么做,因为 GOsa 没" -"有办法将您的数据找回。" - -#: plugins/admin/departments/main.inc:42 plugins/admin/departments/main.inc:44 -msgid "Department management" -msgstr "部门管理" -#: plugins/admin/departments/class_departmentGeneric.inc:313 -#: html/password.php:58 html/main.php:153 -#, fuzzy -msgid "Fatal error" -msgstr "终端服务器" +#: plugins/admin/ogroups/class_ogroup.inc:416 +#: plugins/admin/ogroups/class_ogroup.inc:418 +#: plugins/admin/ogroups/class_ogroup.inc:476 +msgid "departments" +msgstr "部门" -#: plugins/admin/departments/class_departmentGeneric.inc:313 +#: plugins/admin/ogroups/class_ogroup.inc:420 +#: plugins/admin/ogroups/class_ogroup.inc:422 #, fuzzy -msgid "Cannot find an unused tag for this administrative unit!" -msgstr "致命错误:无法找到一个未使用的标志来标记管理单元!" +msgid "people" +msgstr "显示人员" -#: plugins/admin/departments/class_departmentGeneric.inc:386 -#, php-format -msgid "Tagging '%s'." -msgstr "标记 '%s'。" +#: plugins/admin/ogroups/class_ogroup.inc:424 +#: plugins/admin/ogroups/class_ogroup.inc:426 +#: plugins/admin/ogroups/class_ogroup.inc:474 +msgid "groups" +msgstr "组" -#: plugins/admin/departments/class_departmentGeneric.inc:463 -#, php-format -msgid "Moving '%s' to '%s'" -msgstr "移动 '%s' 到 '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:428 +#: plugins/admin/ogroups/class_ogroup.inc:430 +#: plugins/admin/ogroups/class_ogroup.inc:477 +msgid "servers" +msgstr "服务器" -#: plugins/admin/departments/class_departmentGeneric.inc:499 -#: include/utils/class_msgPool.inc:462 include/class_acl.inc:696 -#: include/class_acl.inc:703 include/class_acl.inc:710 -#: include/class_acl.inc:716 ihtml/themes/default/snapshotdialog.tpl:20 -#: ihtml/themes/default/snapshotdialog.tpl:62 -msgid "Object" -msgstr "对象" +#: plugins/admin/ogroups/class_ogroup.inc:432 +#: plugins/admin/ogroups/class_ogroup.inc:434 +#: plugins/admin/ogroups/class_ogroup.inc:478 +msgid "workstations" +msgstr "工作站" -#: plugins/admin/departments/class_departmentGeneric.inc:504 -#, php-format -msgid "FAILED to copy %s, aborting operation" -msgstr "拷贝 %s 失败,退出操作" +#: plugins/admin/ogroups/class_ogroup.inc:436 +#: plugins/admin/ogroups/class_ogroup.inc:438 +#: plugins/admin/ogroups/class_ogroup.inc:480 +msgid "terminals" +msgstr "终端" -#: plugins/admin/departments/class_departmentGeneric.inc:535 -#: plugins/admin/departments/class_departmentGeneric.inc:540 -#: plugins/admin/departments/class_departmentManagement.inc:26 -msgid "Departments" -msgstr "部门" +#: plugins/admin/ogroups/class_ogroup.inc:440 +#, fuzzy +msgid "printer" +msgstr "打印机" -#: plugins/admin/departments/class_departmentGeneric.inc:544 -msgid "Country" -msgstr "国家" +#: plugins/admin/ogroups/class_ogroup.inc:442 +#: plugins/admin/ogroups/class_ogroup.inc:482 +msgid "printers" +msgstr "打印机" -#: plugins/admin/departments/class_departmentGeneric.inc:547 -msgid "Telephone" +#: plugins/admin/ogroups/class_ogroup.inc:444 +#: plugins/admin/ogroups/class_ogroup.inc:446 +#: plugins/admin/ogroups/class_ogroup.inc:481 +msgid "phones" msgstr "电话" -#: plugins/admin/departments/class_departmentGeneric.inc:604 -#, php-format -msgid "Object '%s' is already tagged" -msgstr "对象 '%s' 已经做标记" +#: plugins/admin/ogroups/class_ogroup.inc:452 +#: plugins/admin/ogroups/class_ogroup.inc:454 +#: plugins/admin/ogroups/class_ogroup.inc:475 +msgid "applications" +msgstr "应用程序" -#: plugins/admin/departments/class_departmentGeneric.inc:611 -#, php-format -msgid "Adding tag (%s) to object '%s'" -msgstr "添加标识(%s)到对象 '%s'" +#: plugins/admin/ogroups/class_ogroup.inc:469 +#: plugins/admin/users/class_userManagement.inc:491 +msgid "none" +msgstr "无" -#: plugins/admin/departments/class_departmentGeneric.inc:643 -#, php-format -msgid "Removing tag from object '%s'" -msgstr "从对象 '%s' 删除标记" +#: plugins/admin/ogroups/class_ogroup.inc:471 +msgid "too many different objects!" +msgstr "太多不同对象!" -#: plugins/admin/departments/class_departmentManagement.inc:27 +#: plugins/admin/ogroups/class_ogroup.inc:473 +msgid "users" +msgstr "用户" + +#: plugins/admin/ogroups/class_ogroup.inc:479 #, fuzzy -msgid "Manage Departments" -msgstr "部门" +msgid "winstations" +msgstr "Windows 工作站" -#: plugins/admin/departments/class_departmentManagement.inc:243 -#, php-format -msgid "You're about to delete the whole LDAP subtree placed under '%s'." -msgstr "您将要删除 '%s' 下的整个 LDAP 子树。" +#: plugins/admin/ogroups/class_ogroup.inc:706 +msgid "Non existing dn:" +msgstr "不存在的 dn:" + +#: plugins/admin/ogroups/class_ogroup.inc:872 +#, fuzzy +msgid "You can combine two different object types at maximum, only!" +msgstr "您最多只能组合两个不同的对象类!" -#: plugins/admin/departments/class_departmentManagement.inc:316 -msgid "" -"As soon as the move operation has finished, you can scroll down to end of " -"the page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:1056 +#, fuzzy +msgid "Object group generic" +msgstr "对象组" -#: plugins/admin/departments/class_departmentManagement.inc:336 -msgid "" -"As soon as the tag operation has finished, you can scroll down to end of the " -"page and press the 'Continue' button to continue with the department " -"management dialog." -msgstr "" +#: plugins/admin/ogroups/class_ogroup.inc:1067 +#, fuzzy +msgid "Member" +msgstr "成员" #: plugins/admin/ogroups/tabs_ogroups.inc:112 #: plugins/admin/ogroups/tabs_ogroups.inc:298 @@ -2417,6 +2220,10 @@ msgstr "应用程序" msgid "Terminals" msgstr "终端" +#: plugins/admin/ogroups/paste_generic.tpl:7 +msgid "Please enter the new object group name" +msgstr "请输入新对象组名称" + #: plugins/admin/ogroups/ogroup_objects.tpl:6 msgid "Select objects to add" msgstr "选择要添加的对象" @@ -2438,1877 +2245,1967 @@ msgstr "显示匹配对象" msgid "Regular expression for matching object names" msgstr "匹配对象名的正则表达式" -#: plugins/admin/ogroups/class_ogroupManagement.inc:26 -#: plugins/admin/ogroups/class_ogroup.inc:1061 -#: plugins/admin/ogroups/main.inc:46 plugins/admin/ogroups/main.inc:51 -msgid "Object groups" -msgstr "对象组" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:27 +#: plugins/admin/users/class_userManagement.inc:27 #, fuzzy -msgid "Manage object groups" -msgstr "对象组名称" +msgid "Manage users" +msgstr "域用户" -#: plugins/admin/ogroups/class_ogroupManagement.inc:255 -#: plugins/admin/ogroups/class_ogroupManagement.inc:331 +#: plugins/admin/users/class_userManagement.inc:315 +#: plugins/admin/users/class_userManagement.inc:378 #, fuzzy -msgid "object group" -msgstr "对象组" - -#: plugins/admin/ogroups/class_ogroupManagement.inc:530 -#: plugins/generic/references/class_reference.inc:65 -#: setup/setup_config2.tpl:277 setup/setup_config2.tpl:322 -msgid "Server" -msgstr "服务器" +msgid "You have no permission to change this users password!" +msgstr "您无权修改您的口令。" -#: plugins/admin/ogroups/class_ogroupManagement.inc:532 -#: plugins/generic/references/class_reference.inc:69 -msgid "Workstation" -msgstr "工作站" +#: plugins/admin/users/class_userManagement.inc:544 +#, fuzzy, php-format +msgid "You have no permission to modify object '%s'!" +msgstr "您无权删除这个黑名单。" -#: plugins/admin/ogroups/class_ogroupManagement.inc:533 +#: plugins/admin/users/class_userManagement.inc:548 #, fuzzy -msgid "Windows Install" -msgstr "Windows 工作站" +msgid "You have no permission to use this template!" +msgstr "您无权删除这个黑名单。" -#: plugins/admin/ogroups/class_ogroupManagement.inc:534 -msgid "Terminal" -msgstr "终端" +#: plugins/admin/users/class_userManagement.inc:600 +#: plugins/admin/users/class_divListUsers.inc:308 +#, fuzzy +msgid "user" +msgstr "用户" -#: plugins/admin/ogroups/class_ogroupManagement.inc:535 -#: plugins/generic/references/class_reference.inc:73 -msgid "Printer" -msgstr "打印机" +#: plugins/admin/users/class_userManagement.inc:655 +#, fuzzy +msgid "You have no permission to change the lock status for this user!" +msgstr "您无权修改您的口令。" -#: plugins/admin/ogroups/paste_generic.tpl:7 -msgid "Please enter the new object group name" -msgstr "请输入新对象组名称" +#: plugins/admin/users/class_userManagement.inc:771 +#: plugins/admin/users/template.tpl:15 plugins/admin/users/templatize.tpl:15 +#: plugins/admin/users/class_divListUsers.inc:84 +#: plugins/admin/users/class_divListUsers.inc:177 +msgid "Template" +msgstr "模板" -#: plugins/admin/ogroups/class_divListOGroup.inc:59 -#: plugins/admin/ogroups/class_divListOGroup.inc:60 -msgid "List of object groups" -msgstr "对象组列表" +#: plugins/admin/users/template.tpl:2 +msgid "Creating a new user using templates" +msgstr "用模板创建一个新用户" -#: plugins/admin/ogroups/class_divListOGroup.inc:83 -#: plugins/admin/ogroups/class_divListOGroup.inc:201 -#: plugins/admin/ogroups/class_divListOGroup.inc:309 -#: plugins/generic/references/class_reference.inc:71 -msgid "Object group" -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 "" +"可以使用模板来辅助新用户的创建。很多数据记录可以被自动填充。选择“无”来跳过模" +"板选择。" -#: plugins/admin/ogroups/class_divListOGroup.inc:89 -#: plugins/admin/ogroups/class_divListOGroup.inc:90 +#: plugins/admin/users/templatize.tpl:2 #, fuzzy -msgid "user groups" -msgstr "组" +msgid "Applying a template" +msgstr "模板" -#: plugins/admin/ogroups/class_divListOGroup.inc:91 -#: plugins/admin/ogroups/class_divListOGroup.inc:92 -#, fuzzy -msgid "nested groups" -msgstr "对象组" +#: plugins/admin/users/templatize.tpl:6 +msgid "" +"Applying a template to several users will replace all user attributes " +"defined in the template." +msgstr "" -#: plugins/admin/ogroups/class_divListOGroup.inc:95 -#: plugins/admin/ogroups/class_divListOGroup.inc:96 +#: plugins/admin/users/templatize.tpl:33 #, fuzzy -msgid "department groups" -msgstr "部门" +msgid "No templates available!" +msgstr "文件可用。" -#: plugins/admin/ogroups/class_divListOGroup.inc:97 -#: plugins/admin/ogroups/class_divListOGroup.inc:98 -#, fuzzy -msgid "server groups" -msgstr "服务器" +#: plugins/admin/users/main.inc:44 plugins/admin/users/main.inc:50 +msgid "User administration" +msgstr "用户管理" -#: plugins/admin/ogroups/class_divListOGroup.inc:99 -#: plugins/admin/ogroups/class_divListOGroup.inc:100 +#: 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 "" +"这包含该用户所有账号数据,系统访问规则,imap 设置等等。请再次检查您是否要这么" +"做,因为 GOsa 没有办法将您的数据找回。" + +#: plugins/admin/users/class_divListUsers.inc:55 +#: plugins/admin/users/class_divListUsers.inc:56 +msgid "List of users" +msgstr "用户列表" + +#: plugins/admin/users/class_divListUsers.inc:80 +#: ihtml/themes/default/login.tpl:42 ihtml/themes/default/login.tpl:44 +#: ihtml/themes/default/password.tpl:68 ihtml/themes/default/password.tpl:70 +msgid "Username" +msgstr "用户名" + +#: plugins/admin/users/class_divListUsers.inc:84 #, fuzzy -msgid "workstation groups" -msgstr "工作站" +msgid "templates" +msgstr "模板" -#: plugins/admin/ogroups/class_divListOGroup.inc:101 -#: plugins/admin/ogroups/class_divListOGroup.inc:102 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "windows workstation groups" -msgstr "显示工作站" +msgid "GOsa object" +msgstr "对象" -#: plugins/admin/ogroups/class_divListOGroup.inc:103 -#: plugins/admin/ogroups/class_divListOGroup.inc:104 +#: plugins/admin/users/class_divListUsers.inc:85 #, fuzzy -msgid "terminal groups" -msgstr "显示邮件组" +msgid "functional users" +msgstr "显示用户" -#: plugins/admin/ogroups/class_divListOGroup.inc:105 -#: plugins/admin/ogroups/class_divListOGroup.inc:106 +#: plugins/admin/users/class_divListUsers.inc:86 +#: plugins/admin/users/class_divListUsers.inc:250 +#: plugins/admin/groups/class_divListGroup.inc:244 +msgid "Posix" +msgstr "Posix" + +#: plugins/admin/users/class_divListUsers.inc:86 #, fuzzy -msgid "printer groups" -msgstr "主要用户组" +msgid "POSIX users" +msgstr "Posix 设置" -#: plugins/admin/ogroups/class_divListOGroup.inc:107 -#: plugins/admin/ogroups/class_divListOGroup.inc:108 +#: plugins/admin/users/class_divListUsers.inc:87 #, fuzzy -msgid "phone groups" -msgstr "显示组" +msgid "mail users" +msgstr "域用户" -#: plugins/admin/ogroups/class_divListOGroup.inc:325 +#: plugins/admin/users/class_divListUsers.inc:88 #, fuzzy -msgid "Number of listed object groups" -msgstr "对象组名称" +msgid "samba users" +msgstr "域用户" -#: plugins/admin/ogroups/class_ogroup.inc:197 setup/setup_ldap.tpl:121 -#: ihtml/themes/default/MultiSelectWindow.tpl:45 -#: ihtml/themes/default/MultiSelectWindow.tpl:86 -#: ihtml/themes/default/msg_dialog.tpl:59 -#: ihtml/themes/default/msg_dialog.tpl:104 -msgid "Information" -msgstr "提示信息" +#: plugins/admin/users/class_divListUsers.inc:89 +#, fuzzy +msgid "proxy users" +msgstr "显示代理用户" -#: plugins/admin/ogroups/class_ogroup.inc:197 -msgid "You cannot combine terminals and workstations in one object group!" -msgstr "" +#: plugins/admin/users/class_divListUsers.inc:96 +#: plugins/admin/groups/group_objects.tpl:46 +msgid "Display users matching" +msgstr "显示匹配的用户" -#: plugins/admin/ogroups/class_ogroup.inc:416 -#: plugins/admin/ogroups/class_ogroup.inc:418 -#: plugins/admin/ogroups/class_ogroup.inc:476 -msgid "departments" -msgstr "部门" +#: plugins/admin/users/class_divListUsers.inc:185 +#: plugins/admin/users/class_divListUsers.inc:320 +#: ihtml/themes/default/accountexpired.tpl:51 +msgid "Change password" +msgstr "修改口令" -#: plugins/admin/ogroups/class_ogroup.inc:420 -#: plugins/admin/ogroups/class_ogroup.inc:422 +#: plugins/admin/users/class_divListUsers.inc:189 #, fuzzy -msgid "people" -msgstr "显示人员" +msgid "Apply template" +msgstr "模板" -#: plugins/admin/ogroups/class_ogroup.inc:424 -#: plugins/admin/ogroups/class_ogroup.inc:426 -#: plugins/admin/ogroups/class_ogroup.inc:474 -msgid "groups" -msgstr "组" +#: plugins/admin/users/class_divListUsers.inc:248 +msgid "GOsa" +msgstr "GOsa" -#: plugins/admin/ogroups/class_ogroup.inc:428 -#: plugins/admin/ogroups/class_ogroup.inc:430 -#: plugins/admin/ogroups/class_ogroup.inc:477 -msgid "servers" -msgstr "服务器" +#: plugins/admin/users/class_divListUsers.inc:249 +msgid "Edit generic properties" +msgstr "编辑通用属性" -#: plugins/admin/ogroups/class_ogroup.inc:432 -#: plugins/admin/ogroups/class_ogroup.inc:434 -#: plugins/admin/ogroups/class_ogroup.inc:478 -msgid "workstations" -msgstr "工作站" +#: plugins/admin/users/class_divListUsers.inc:251 +msgid "Edit UNIX properties" +msgstr "编辑 UNIX 属性" -#: plugins/admin/ogroups/class_ogroup.inc:436 -#: plugins/admin/ogroups/class_ogroup.inc:438 -#: plugins/admin/ogroups/class_ogroup.inc:480 -msgid "terminals" -msgstr "终端" +#: plugins/admin/users/class_divListUsers.inc:253 +msgid "Edit environment properties" +msgstr "编辑环境属性" -#: plugins/admin/ogroups/class_ogroup.inc:440 -#, fuzzy -msgid "printer" -msgstr "打印机" +#: plugins/admin/users/class_divListUsers.inc:255 +msgid "Edit mail properties" +msgstr "编辑邮件属性" -#: plugins/admin/ogroups/class_ogroup.inc:442 -#: plugins/admin/ogroups/class_ogroup.inc:482 -msgid "printers" -msgstr "打印机" +#: plugins/admin/users/class_divListUsers.inc:257 +msgid "Edit phone properties" +msgstr "编辑电话属性" -#: plugins/admin/ogroups/class_ogroup.inc:444 -#: plugins/admin/ogroups/class_ogroup.inc:446 -#: plugins/admin/ogroups/class_ogroup.inc:481 -msgid "phones" -msgstr "电话" +#: plugins/admin/users/class_divListUsers.inc:259 +msgid "Edit fax properies" +msgstr "编辑传真属性" -#: plugins/admin/ogroups/class_ogroup.inc:452 -#: plugins/admin/ogroups/class_ogroup.inc:454 -#: plugins/admin/ogroups/class_ogroup.inc:475 -msgid "applications" -msgstr "应用程序" +#: plugins/admin/users/class_divListUsers.inc:261 +msgid "Edit samba properties" +msgstr "编辑 samba 属性" -#: plugins/admin/ogroups/class_ogroup.inc:471 -msgid "too many different objects!" -msgstr "太多不同对象!" +#: plugins/admin/users/class_divListUsers.inc:262 +msgid "Netatalk" +msgstr "Netatalk" -#: plugins/admin/ogroups/class_ogroup.inc:473 -msgid "users" -msgstr "用户" +#: plugins/admin/users/class_divListUsers.inc:263 +msgid "Edit netatalk properties" +msgstr "编辑 netatalk 属性" -#: plugins/admin/ogroups/class_ogroup.inc:479 -#, fuzzy -msgid "winstations" -msgstr "Windows 工作站" +#: plugins/admin/users/class_divListUsers.inc:264 +msgid "Create user from template" +msgstr "从模板创建用户" -#: plugins/admin/ogroups/class_ogroup.inc:706 -msgid "Non existing dn:" -msgstr "不存在的 dn:" +#: plugins/admin/users/class_divListUsers.inc:265 +msgid "Create user with this template" +msgstr "创建使用该模板的用户" -#: plugins/admin/ogroups/class_ogroup.inc:872 +#: plugins/admin/users/class_divListUsers.inc:297 #, fuzzy -msgid "You can combine two different object types at maximum, only!" -msgstr "您最多只能组合两个不同的对象类!" +msgid "inactive" +msgstr "活动" -#: plugins/admin/ogroups/class_ogroup.inc:1056 -#, fuzzy -msgid "Object group generic" -msgstr "对象组" +#: plugins/admin/users/class_divListUsers.inc:319 +msgid "password" +msgstr "口令" -#: plugins/admin/ogroups/class_ogroup.inc:1067 +#: plugins/admin/users/class_divListUsers.inc:323 +#: plugins/admin/users/class_divListUsers.inc:335 +#: plugins/admin/groups/class_divListGroup.inc:300 #, fuzzy -msgid "Member" -msgstr "成员" +msgid "Not allowed" +msgstr "不允许修改口令" -#: plugins/admin/ogroups/generic.tpl:10 -msgid "Name of the group" -msgstr "组名称" +#: plugins/admin/users/class_divListUsers.inc:332 +msgid "Delete user" +msgstr "删除用户" -#: plugins/admin/ogroups/generic.tpl:70 -msgid "Member objects" -msgstr "成员对象" +#: plugins/admin/users/class_divListUsers.inc:421 +#, fuzzy +msgid "Number of listed users" +msgstr "部门名称" -#: plugins/admin/ogroups/remove.tpl:7 +#: plugins/admin/users/password.tpl:4 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 没有办法将您的数据找回。" +"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 "用下面的字段修改用口令。修改即时生效。请记住新密码,否则无法登录。" -#: plugins/generic/references/class_reference.inc:51 -msgid "FAX" -msgstr "传真" +#: plugins/admin/users/password.tpl:21 +#, fuzzy +msgid "Strength" +msgstr "街道" -#: plugins/generic/references/class_reference.inc:55 -msgid "FTP" -msgstr "FTP" +#: plugins/admin/groups/main.inc:41 plugins/admin/groups/main.inc:45 +msgid "Group administration" +msgstr "组管理" -#: plugins/generic/references/class_reference.inc:67 -msgid "Thin Client" -msgstr "瘦客户机" +#: plugins/admin/groups/group_objects.tpl:6 +msgid "Select users to add" +msgstr "选择要添加的用户" -#: plugins/generic/references/contents.tpl:11 -msgid "Object name" -msgstr "对象名称" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Select to see servers" +msgstr "选择显示服务器" -#: plugins/generic/references/contents.tpl:11 -msgid "Contents" -msgstr "内容" +#: plugins/admin/groups/group_objects.tpl:30 +msgid "Search within subtree" +msgstr "在子树中查找" -#: plugins/generic/references/contents.tpl:18 -msgid "This object has no relationship to other objects." -msgstr "这个对象和其他对象没有关系。" +#: plugins/admin/groups/group_objects.tpl:37 +msgid "Display users of department" +msgstr "显示部门的用户" -#: plugins/generic/welcome/welcome.tpl:4 +#: plugins/admin/groups/group_objects.tpl:47 +msgid "Regular expression for matching user names" +msgstr "匹配用户名的正则表达式" + +#: plugins/admin/groups/remove.tpl:6 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." +"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 主菜单。您可以从左侧的菜单中选择,或者点击下面的图标。所有改变都将" -"直接修改您公司的 LDAP 服务器。" +"这可能是一个主要的用户组。请再次检查您是否要这么做,因为 GOsa 没有办法将您的" +"数据找回。" -#: 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 "选择上方左侧的“退出”按钮断开链接,选择“首页”回到图标程序界面。" +#: plugins/admin/groups/generic.tpl:17 +#: plugins/admin/groups/paste_generic.tpl:8 +msgid "Posix name of the group" +msgstr "组的 posix 名称" -#: plugins/generic/welcome/welcome.tpl:15 -msgid "The GOsa team" -msgstr "GOsa 团队" +#: plugins/admin/groups/generic.tpl:65 +#: plugins/admin/groups/paste_generic.tpl:13 +msgid "Normally IDs are autogenerated, select to specify manually" +msgstr "一般 ID 是自动创建的,要手工设置请选择" -#: plugins/generic/welcome/main.inc:26 -#, php-format -msgid "Welcome %s!" -msgstr "欢迎 %s!" +#: plugins/admin/groups/generic.tpl:68 +#: plugins/admin/groups/paste_generic.tpl:15 +msgid "Force GID" +msgstr "强制 GID" -#: 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/groups/generic.tpl:71 +#: plugins/admin/groups/paste_generic.tpl:18 +msgid "Forced ID number" +msgstr "强制 ID 编号" -#: include/utils/class_msgPool.inc:15 -#, fuzzy, php-format -msgid "Select to list objects of type '%s'." -msgstr "选择要添加的对象" +#: plugins/admin/groups/generic.tpl:83 plugins/admin/groups/generic.tpl:110 +msgid "Select to create a samba conform group" +msgstr "选择创建一个 samba 确认组" -#: include/utils/class_msgPool.inc:17 -#, fuzzy, php-format -msgid "Select to list objects containig '%s'." -msgstr "选择查看包含用户的组" +#: plugins/admin/groups/generic.tpl:95 plugins/admin/groups/generic.tpl:118 +msgid "in domain" +msgstr "于域" -#: include/utils/class_msgPool.inc:19 -#, fuzzy, php-format -msgid "Select to list objects that have '%s' enabled" -msgstr "选择要添加的对象" +#: plugins/admin/groups/generic.tpl:140 +msgid "Members are in a phone pickup group" +msgstr "成员属于电话应答组" -#: include/utils/class_msgPool.inc:33 -msgid "This object will be deleted!" -msgstr "" +#: plugins/admin/groups/generic.tpl:155 +msgid "Members are in a nagios group" +msgstr "成员属于 nagios 组" + +#: plugins/admin/groups/generic.tpl:207 +msgid "Group members" +msgstr "组成员" + +#: plugins/admin/groups/class_groupGeneric.inc:163 +#: plugins/admin/groups/class_groupGeneric.inc:692 +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#: 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/utils/class_timezone.inc:51 +#: include/class_config.inc:110 include/class_config.inc:574 +#: include/password-methods/class_password-methods-sha.inc:48 +#: include/password-methods/class_password-methods-ssha.inc:51 +#: include/class_pluglist.inc:151 include/functions.inc:622 +#: include/functions.inc:2562 include/functions.inc:2594 html/main.php:218 +#: html/index.php:142 html/index.php:218 html/password.php:78 +#, fuzzy +msgid "Configuration error" +msgstr "配置文件" + +#: plugins/admin/groups/class_groupGeneric.inc:163 +#, fuzzy +msgid "Cannot find group SID in your configuration!" +msgstr "无法在 LDAP 或您的配置文件中查找这个组 SID。" + +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Samba group" +msgstr "Samba 组" -#: include/utils/class_msgPool.inc:35 -#, php-format -msgid "This '%s' object will be deleted!" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain admins" +msgstr "域管理员" -#: include/utils/class_msgPool.inc:40 -#, php-format -msgid "This object will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:463 +msgid "Domain users" +msgstr "域用户" -#: include/utils/class_msgPool.inc:42 +#: plugins/admin/groups/class_groupGeneric.inc:464 +msgid "Domain guests" +msgstr "域名 guests" + +#: plugins/admin/groups/class_groupGeneric.inc:469 #, php-format -msgid "This '%s' object will be deleted: %s" -msgstr "" +msgid "Special group (%d)" +msgstr "特殊组 (%d)" -#: include/utils/class_msgPool.inc:47 -msgid "This object will be deleted:" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:654 +msgid "! unknown id" +msgstr "! 未知 id" -#: include/utils/class_msgPool.inc:49 +#: plugins/admin/groups/class_groupGeneric.inc:692 #, php-format -msgid "This '%s' object will be deleted:" +msgid "Search returned too many results. Not displaying more than %s entries!" msgstr "" -#: include/utils/class_msgPool.inc:53 -#, php-format -msgid "These objects will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:918 +#, fuzzy, php-format +msgid "Cannot find any SID for '%s'!" +msgstr "无法创建文件 '%s'。" -#: include/utils/class_msgPool.inc:55 -#, php-format -msgid "These '%s' objects will be deleted: %s" -msgstr "" +#: plugins/admin/groups/class_groupGeneric.inc:923 +#, fuzzy, php-format +msgid "Cannot find any RIDBASE for '%s'!" +msgstr "无法创建文件 '%s'。" -#: include/utils/class_msgPool.inc:63 +#: plugins/admin/groups/class_groupGeneric.inc:1213 #, fuzzy -msgid "You have no permission to delete this object!" -msgstr "您无权删除这个部门。" +msgid "Generic group settings" +msgstr "组设置" -#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 -#, fuzzy -msgid "You have no permission to delete the object:" -msgstr "您无权删除这个部门。" +#: plugins/admin/groups/class_groupGeneric.inc:1218 +#: plugins/admin/groups/class_groupManagement.inc:26 include/class_acl.inc:218 +msgid "Groups" +msgstr "用户组" -#: include/utils/class_msgPool.inc:74 +#: plugins/admin/groups/class_groupGeneric.inc:1225 #, fuzzy -msgid "You have no permission to delete these objects:" -msgstr "您无权删除这个部门。" +msgid "Phone pickup group" +msgstr "成员属于电话应答组" -#: include/utils/class_msgPool.inc:81 +#: plugins/admin/groups/class_groupGeneric.inc:1226 #, fuzzy -msgid "You have no permission to create this object!" -msgstr "您无权删除这个部门。" +msgid "Nagios group" +msgstr "Nagios 账号" -#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 +#: plugins/admin/groups/class_groupGeneric.inc:1229 #, fuzzy -msgid "You have no permission to create the object:" -msgstr "您无权删除这个部门。" +msgid "Group member" +msgstr "组成员" -#: include/utils/class_msgPool.inc:92 +#: plugins/admin/groups/class_groupGeneric.inc:1230 #, fuzzy -msgid "You have no permission to create these objects:" -msgstr "您无权删除这个部门。" +msgid "Samba group type" +msgstr "Samba 组" -#: include/utils/class_msgPool.inc:99 +#: plugins/admin/groups/class_groupGeneric.inc:1231 #, fuzzy -msgid "You have no permission to modify this object!" -msgstr "您无权删除这个黑名单。" +msgid "Samba domain name" +msgstr "Samba 主目录" -#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 +#: plugins/admin/groups/class_groupGeneric.inc:1232 setup/setup_config2.tpl:15 #, fuzzy -msgid "You have no permission to modify the object:" -msgstr "您无权删除这个黑名单。" +msgid "Samba SID" +msgstr "Samba" -#: include/utils/class_msgPool.inc:110 -#, fuzzy -msgid "You have no permission to modify these objects:" -msgstr "您无权删除这个黑名单。" +#: plugins/admin/groups/class_groupManagement.inc:27 +msgid "Manage POSIX groups" +msgstr "" -#: include/utils/class_msgPool.inc:117 +#: plugins/admin/groups/class_groupManagement.inc:376 +#: plugins/admin/groups/class_groupManagement.inc:457 #, fuzzy -msgid "You have no permission to view this object!" -msgstr "您无权删除这个黑名单。" +msgid "group" +msgstr "组" -#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 +#: 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:84 +msgid "Select to see groups that are primary groups of users" +msgstr "选择查看用户的主要组" + +#: plugins/admin/groups/class_divListGroup.inc:85 #, fuzzy -msgid "You have no permission to view the object:" -msgstr "您无权在此 'Base' 下创建一个电话" +msgid "primary groups" +msgstr "主要用户组" -#: include/utils/class_msgPool.inc:128 +#: plugins/admin/groups/class_divListGroup.inc:86 #, fuzzy -msgid "You have no permission to view these objects:" -msgstr "您无权删除这个黑名单。" +msgid "samba groups mappings" +msgstr "显示匹配的组" -#: include/utils/class_msgPool.inc:135 +#: plugins/admin/groups/class_divListGroup.inc:87 #, fuzzy -msgid "You have no permission to move this object!" -msgstr "您无权删除这个黑名单。" +msgid "samba groups" +msgstr "Samba 组" -#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 +#: plugins/admin/groups/class_divListGroup.inc:88 #, fuzzy -msgid "You have no permission to move the object:" -msgstr "您无权删除这个黑名单。" +msgid "application settings" +msgstr "应用程序" -#: include/utils/class_msgPool.inc:146 +#: plugins/admin/groups/class_divListGroup.inc:90 #, fuzzy -msgid "You have no permission to move these objects:" -msgstr "您无权删除这个黑名单。" +msgid "mail settings" +msgstr "邮件选项" -#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 -#: include/utils/class_msgPool.inc:186 +#: plugins/admin/groups/class_divListGroup.inc:91 #, fuzzy -msgid "Connection information" -msgstr "个人信息" +msgid "mail groups" +msgstr "显示邮件组" -#: include/utils/class_msgPool.inc:158 -#, fuzzy, php-format -msgid "Cannot connect to %s database!" -msgstr "无法连接到数据库!" +#: plugins/admin/groups/class_divListGroup.inc:92 +msgid "Select to see normal groups that have only functional aspects" +msgstr "选择查看实用的普通组" -#: include/utils/class_msgPool.inc:170 -#, fuzzy, php-format -msgid "Cannot select %s database!" -msgstr "无法选择数据库!" +#: plugins/admin/groups/class_divListGroup.inc:93 +#, fuzzy +msgid "functional groups" +msgstr "显示实用组" -#: include/utils/class_msgPool.inc:176 -#, php-format -msgid "No %s server defined!" -msgstr "" +#: plugins/admin/groups/class_divListGroup.inc:359 +#, fuzzy +msgid "Number of listed groups" +msgstr "组名称" -#: include/utils/class_msgPool.inc:188 -#, fuzzy, php-format -msgid "Cannot query %s database!" -msgstr "无法选择数据库!" +#: plugins/admin/groups/paste_generic.tpl:1 +msgid "Group settings" +msgstr "组设置" -#: include/utils/class_msgPool.inc:194 -#, fuzzy, php-format -msgid "The field '%s' contains a reserved keyword!" -msgstr "“传真”字段包含一个无效电话号码" +#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#, fuzzy +msgid "GOsa settings 2/3" +msgstr "用户设置" -#: include/utils/class_msgPool.inc:200 -#, fuzzy, php-format -msgid "Command specified as %s hook for plugin '%s' does not exist!" -msgstr "命令 '%s',作为插件 '%s' 的 CHECK hook 好像并不存在。" +#: setup/class_setupStep_Config2.inc:88 +#, fuzzy +msgid "Customize special parameters" +msgstr "检查参数" -#: include/utils/class_msgPool.inc:207 -#, fuzzy, php-format -msgid "'%s' command is invalid!" -msgstr "指定的 branch 名称无效。" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:55 +#: setup/setup_feedback.tpl:73 +msgid "No" +msgstr "否" -#: include/utils/class_msgPool.inc:209 -#, php-format -msgid "'%s' command (%s) for plugin %s is invalid!" -msgstr "" +#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config1.inc:88 +#: setup/class_setupStep_Schema.inc:86 setup/class_setupStep_Ldap.inc:74 +#: setup/class_setupStep_Config3.inc:89 setup/setup_feedback.tpl:53 +#: setup/setup_feedback.tpl:71 +msgid "Yes" +msgstr "是" -#: include/utils/class_msgPool.inc:211 -#, php-format -msgid "'%s' command for plugin %s is invalid!" -msgstr "" +#: setup/setup_frame.tpl:12 +#, fuzzy +msgid "GOsa setup wizard" +msgstr "GOsa 帮助浏览器" -#: include/utils/class_msgPool.inc:213 -#, fuzzy, php-format -msgid "'%s' command (%s) is invalid!" -msgstr "指定的 branch 名称无效。" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Installation" +msgstr "Windows 工作站" -#: include/utils/class_msgPool.inc:221 -#, fuzzy, php-format -msgid "Cannot execute '%s' command!" -msgstr "无法选择数据库!" +#: setup/setup_frame.tpl:19 +#, fuzzy +msgid "Steps" +msgstr "系统设置" -#: include/utils/class_msgPool.inc:223 -#, php-format -msgid "Cannot execute '%s' command (%s) for plugin %s!" -msgstr "" +#: setup/class_setupStep_Finish.inc:37 +#: ihtml/themes/default/copyPasteDialog.tpl:32 +msgid "Finish" +msgstr "完成" -#: include/utils/class_msgPool.inc:225 -#, php-format -msgid "Cannot execute '%s' command for plugin %s!" -msgstr "" +#: setup/class_setupStep_Finish.inc:38 +#, fuzzy +msgid "Write configuration file" +msgstr "配置文件" -#: include/utils/class_msgPool.inc:227 -#, fuzzy, php-format -msgid "Cannot execute '%s' command (%s)!" -msgstr "无法选择数据库!" +#: setup/class_setupStep_Finish.inc:39 +#, fuzzy +msgid "Finish - write the configuration file" +msgstr "需要 XML 功能来解析配置文件。" -#: include/utils/class_msgPool.inc:235 -#, fuzzy, php-format -msgid "Value for '%s' is too large!" -msgstr "'UID' 赋值太小。" +#: setup/class_setupStep_Finish.inc:101 +#, fuzzy +msgid "" +"Your configuration file is currently world readable. Please update the file " +"permissions!" +msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" -#: include/utils/class_msgPool.inc:237 -#, php-format -msgid "'%s' must be smaller than %d!" -msgstr "" +#: setup/class_setupStep_Finish.inc:103 +#, fuzzy +msgid "The configuration is currently not readable or it does not exists." +msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" -#: include/utils/class_msgPool.inc:245 +#: setup/class_setupStep_Finish.inc:112 #, fuzzy, php-format -msgid "Value for '%s' is too small!" -msgstr "'UID' 赋值太小。" - -#: include/utils/class_msgPool.inc:247 -#, php-format -msgid "'%s' must be %d or above!" +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,其他用户则无权访问。您可以执行如下命令来实现:" -#: include/utils/class_msgPool.inc:254 -#, php-format -msgid "'%s' depends on '%s' - please provide both values!" -msgstr "" +#: setup/setup_finish.tpl:3 +#, fuzzy +msgid "Create your configuration file" +msgstr "配置文件" -#: include/utils/class_msgPool.inc:260 -#, fuzzy, php-format -msgid "There is already an entry with this '%s' attribute in the system!" -msgstr "数据库中已经有同样登录名的用户。" +#: setup/setup_finish.tpl:13 +msgid "Download configuration" +msgstr "下载配置" -#: include/utils/class_msgPool.inc:266 -#, fuzzy, php-format -msgid "The required field '%s' is empty!" -msgstr "需要的“姓名”字段没有设置" +#: setup/setup_finish.tpl:18 +#, fuzzy +msgid "Status: " +msgstr "状态" -#: include/utils/class_msgPool.inc:274 -msgid "Example" +#: setup/setup_ldap.tpl:7 +msgid "Please choose the LDAP user to be used by GOsa" msgstr "" -#: include/utils/class_msgPool.inc:291 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters" -msgstr "“姓名”字段包含无效字符。" +#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 +msgid "Search" +msgstr "查找" -#: include/utils/class_msgPool.inc:292 +#: 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:320 ihtml/themes/default/acl.tpl:24 +#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 +#: ihtml/themes/default/acl.tpl:135 #, php-format -msgid "'%s' is not allowed:" -msgstr "" - -#: include/utils/class_msgPool.inc:292 -#, fuzzy, php-format -msgid "'%s' are not allowed!" -msgstr "不允许修改口令" - -#: include/utils/class_msgPool.inc:295 -#, fuzzy, php-format -msgid "The Field '%s' contains invalid characters!" -msgstr "“姓名”字段包含无效字符。" - -#: include/utils/class_msgPool.inc:302 -#, fuzzy, php-format -msgid "Missing %s PHP extension!" -msgstr "删除打印机扩展" +msgid "Apply" +msgstr "应用" -#: include/utils/class_msgPool.inc:308 include/class_baseSelectDialog.inc:62 #: 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:308 include/class_baseSelectDialog.inc:62 +#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/acl.tpl:123 +#: ihtml/themes/default/acl.tpl:137 ihtml/themes/default/remove.tpl:15 +#: ihtml/themes/default/snapshotdialog.tpl:44 +#: ihtml/themes/default/snapshotdialog.tpl:89 #: ihtml/themes/default/copyPasteDialog.tpl:21 -#: ihtml/themes/default/islocked.tpl:15 ihtml/themes/default/remove.tpl:15 -#: ihtml/themes/default/acl.tpl:123 ihtml/themes/default/acl.tpl:137 #: ihtml/themes/default/msg_dialog.tpl:79 #: ihtml/themes/default/msg_dialog.tpl:134 -#: ihtml/themes/default/snapshotdialog.tpl:44 -#: ihtml/themes/default/snapshotdialog.tpl:89 #, php-format msgid "Cancel" msgstr "取消" -#: include/utils/class_msgPool.inc:314 setup/class_setupStep_Migrate.inc:221 -#: setup/class_setupStep_Migrate.inc:273 setup/class_setupStep_Migrate.inc:334 -#: setup/class_setupStep_Migrate.inc:407 setup/class_setupStep_Migrate.inc:484 -#: setup/class_setupStep_Migrate.inc:559 setup/class_setupStep_Migrate.inc:612 -#: setup/class_setupStep_Migrate.inc:753 setup/class_setupStep_Migrate.inc:908 -#: setup/class_setupStep_Migrate.inc:1673 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 -#, php-format -msgid "Ok" -msgstr "好" - -#: include/utils/class_msgPool.inc:320 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:24 -#: ihtml/themes/default/acl.tpl:47 ihtml/themes/default/acl.tpl:120 -#: ihtml/themes/default/acl.tpl:135 -#, php-format -msgid "Apply" -msgstr "应用" - -#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 -#: ihtml/themes/default/copyPasteDialog.tpl:19 -#, php-format -msgid "Save" -msgstr "保存" - -#: include/utils/class_msgPool.inc:332 -#, php-format -msgid "Add" -msgstr "添加" - -#: include/utils/class_msgPool.inc:332 -#, fuzzy, php-format -msgid "Add %s" -msgstr "添加" +#: setup/setup_ldap.tpl:25 +#, fuzzy +msgid "LDAP connection" +msgstr "断开" -#: include/utils/class_msgPool.inc:338 -#, fuzzy, php-format -msgid "Delete %s" -msgstr "删除" +#: setup/setup_ldap.tpl:29 +msgid "Location name" +msgstr "位置名称" -#: include/utils/class_msgPool.inc:344 -#, fuzzy, php-format -msgid "Set %s" -msgstr "设置" +#: setup/setup_ldap.tpl:37 +#, fuzzy +msgid "Connection URL" +msgstr "连接 URL" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit..." -msgstr "编辑" +#: setup/setup_ldap.tpl:45 +#, fuzzy +msgid "TLS connection" +msgstr "连接" -#: include/utils/class_msgPool.inc:350 -#, fuzzy, php-format -msgid "Edit %s..." -msgstr "编辑用户" +#: setup/setup_ldap.tpl:65 +#, fuzzy +msgid "Reload" +msgstr "读" -#: include/utils/class_msgPool.inc:356 -msgid "Back" -msgstr "返回" +#: setup/setup_ldap.tpl:69 +#, fuzzy +msgid "Authentication" +msgstr "Nagios 鉴权" -#: include/utils/class_msgPool.inc:375 -#, fuzzy, php-format -msgid "This account has no valid %s extensions!" -msgstr "该账户没有有效的 Gosa 扩展。" +#: setup/setup_ldap.tpl:73 +msgid "Admin DN" +msgstr "管理员 DN" -#: include/utils/class_msgPool.inc:381 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. You can disable them by clicking below." -msgstr "这个账户已经启用 posix 功能。要禁用请点击下面按钮。" +#: setup/setup_ldap.tpl:78 +#, fuzzy +msgid "Select user" +msgstr "删除用户" -#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 -#, fuzzy, php-format -msgid "" -"This account has %s settings enabled. To disable them, you'll need to remove " -"the %s settings first!" +#: setup/setup_ldap.tpl:86 +msgid "Automatically append LDAP base to admin DN" msgstr "" -"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。" -#: include/utils/class_msgPool.inc:400 -#, fuzzy, php-format -msgid "" -"This account has %s settings disabled. You can enable them by clicking below." -msgstr "这个账户已经启用 posix 功能。要启用请点击下面按钮。" +#: setup/setup_ldap.tpl:93 +msgid "Admin password" +msgstr "管理员口令" -#: include/utils/class_msgPool.inc:403 -#, 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 / 环境变量账户。" +#: setup/setup_ldap.tpl:101 +#, fuzzy +msgid "Schema based settings" +msgstr "Samba 设置" -#: include/utils/class_msgPool.inc:410 -#, fuzzy, php-format -msgid "" -"This account has %s features settings. To disable them, you'll need to add " -"the %s settings first!" +#: setup/setup_ldap.tpl:105 +msgid "Use rfc2307bis compliant groups" msgstr "" -"这个账户已经启用 unix 功能。要禁用,您需要先删除 samba / 环境变量账户。" - -#: include/utils/class_msgPool.inc:418 -#, fuzzy, php-format -msgid "Add %s settings" -msgstr "应用程序设置" - -#: include/utils/class_msgPool.inc:424 -#, fuzzy, php-format -msgid "Remove %s settings" -msgstr "Posix 设置" - -#: include/utils/class_msgPool.inc:430 -msgid "Click the 'Edit' button below to change informations in this dialog" -msgstr "点击下面的“编辑”按钮修改该对话框内的信息" -#: include/utils/class_msgPool.inc:436 -msgid "January" -msgstr "一月" +#: setup/setup_ldap.tpl:117 +#, fuzzy +msgid "Current status" +msgstr "当前版本" -#: include/utils/class_msgPool.inc:436 -msgid "February" -msgstr "二月" +#: setup/setup_language.tpl:3 +#, fuzzy +msgid "Please select the preferred language" +msgstr "请选择一个打印机或者取消。" -#: include/utils/class_msgPool.inc:436 -msgid "March" -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 "" -#: include/utils/class_msgPool.inc:436 -msgid "April" -msgstr "四月" +#: setup/setup_language.tpl:9 +#, fuzzy +msgid "Please select your preferred language here" +msgstr "首选语种" -#: include/utils/class_msgPool.inc:437 -msgid "May" -msgstr "五月" +#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#, fuzzy +msgid "Language setup" +msgstr "语言" -#: include/utils/class_msgPool.inc:437 -msgid "June" -msgstr "六月" +#: setup/class_setupStep_Language.inc:42 +msgid "This step allows you to select your preferred language." +msgstr "" -#: include/utils/class_msgPool.inc:437 -msgid "July" -msgstr "七月" +#: setup/class_setupStep_Language.inc:47 +#, fuzzy +msgid "Automatic" +msgstr "自动" -#: include/utils/class_msgPool.inc:437 -msgid "August" -msgstr "八月" +#: setup/setup_config3.tpl:2 +#, fuzzy +msgid "GOsa core settings" +msgstr "用户设置" -#: include/utils/class_msgPool.inc:437 -msgid "September" -msgstr "九月" +#: setup/setup_config3.tpl:6 +#, fuzzy +msgid "Disable primary group filter" +msgstr "显示用户组" -#: include/utils/class_msgPool.inc:438 -msgid "October" -msgstr "十月" +#: setup/setup_config3.tpl:18 +#, fuzzy +msgid "Display summary in listings" +msgstr "显示匹配的宏" -#: include/utils/class_msgPool.inc:438 -msgid "November" -msgstr "十一月" +#: setup/setup_config3.tpl:30 +#, fuzzy +msgid "Honour administrative units" +msgstr "组管理" -#: include/utils/class_msgPool.inc:438 -msgid "December" -msgstr "十二月" +#: setup/setup_config3.tpl:42 +#, fuzzy +msgid "Smarty compile directory" +msgstr "用户主目录" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:51 +msgid "SNMP community" +msgstr "" + +#: setup/setup_config3.tpl:60 #, fuzzy -msgid "Sunday" -msgstr "姓" +msgid "Path for PPD storage" +msgstr "口令存储" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:77 #, fuzzy -msgid "Monday" -msgstr "月" +msgid "Path for kiosk profile storage" +msgstr "Kiosk profile 设置" -#: include/utils/class_msgPool.inc:444 -msgid "Tuesday" -msgstr "" +#: setup/setup_config3.tpl:96 +#, fuzzy +msgid "Override sudo role ou" +msgstr "! 未知 id" -#: include/utils/class_msgPool.inc:444 +#: setup/setup_config3.tpl:115 #, fuzzy -msgid "Wednesday" -msgstr "星期三" +msgid "Mail queue script" +msgstr "邮件队列" -#: include/utils/class_msgPool.inc:444 -msgid "Thursday" -msgstr "" +#: setup/setup_config3.tpl:134 +#, fuzzy +msgid "Notification script" +msgstr "主机通知周期" -#: include/utils/class_msgPool.inc:444 -msgid "Friday" -msgstr "" +#: setup/setup_config3.tpl:153 +#, fuzzy +msgid "Enable edit locking" +msgstr "启用邮件扫描" -#: include/utils/class_msgPool.inc:444 -msgid "Saturday" +#: setup/setup_config3.tpl:172 +msgid "Login and session" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:175 #, fuzzy -msgid "read operation" -msgstr "邮件选项" +msgid "Login attribute" +msgstr "电话属性" -#: include/utils/class_msgPool.inc:451 -msgid "add operation" +#: setup/setup_config3.tpl:186 +msgid "Enforce register_globals to be deactivated" msgstr "" -#: include/utils/class_msgPool.inc:451 +#: setup/setup_config3.tpl:198 #, fuzzy -msgid "modify operation" -msgstr "个人信息" +msgid "Enforce encrypted connections" +msgstr "封锁加密归档" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:210 #, fuzzy -msgid "delete operation" -msgstr "选择查看工作站" +msgid "Warn if session is not encrypted" +msgstr "会话不会被加密。" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:222 #, fuzzy -msgid "search operation" -msgstr "账号过期于" +msgid "Remember dialog filter settings" +msgstr "通用队列设置" -#: include/utils/class_msgPool.inc:452 +#: setup/setup_config3.tpl:234 #, fuzzy -msgid "authentication" -msgstr "Nagios 鉴权" - -#: include/utils/class_msgPool.inc:455 -#, fuzzy, php-format -msgid "LDAP %s failed!" -msgstr "Mysql 查询失败。" +msgid "Session lifetime" +msgstr "检测道会话冲突" -#: include/utils/class_msgPool.inc:457 +#: setup/setup_config3.tpl:243 #, fuzzy -msgid "LDAP operation failed!" -msgstr "Mysql 查询失败。" +msgid "Debugging" +msgstr "启用 debug" -#: include/utils/class_msgPool.inc:472 +#: setup/setup_config3.tpl:247 #, fuzzy -msgid "Upload failed!" -msgstr "用户登录失败。LDAP 服务器返回 '%s'。" - -#: include/utils/class_msgPool.inc:475 -#, fuzzy, php-format -msgid "Upload failed: %s" -msgstr "Logging DB 用户" - -#: include/utils/class_msgPool.inc:482 -msgid "Communication failure with the infrastructure service!" -msgstr "" +msgid "Show PHP errors" +msgstr "PHP 错误" -#: include/utils/class_msgPool.inc:484 -#, php-format -msgid "Communication failure with the infrastructure service: %s" -msgstr "" +#: setup/setup_config3.tpl:259 +#, fuzzy +msgid "Maximum LDAP query time" +msgstr "最大文件大小" -#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 -#, php-format -msgid "This '%s' is still in use by this object: %s" +#: setup/setup_config3.tpl:277 +msgid "Log LDAP statistics" msgstr "" -#: include/utils/class_msgPool.inc:497 -#, fuzzy, php-format -msgid "This '%s' is still in use." -msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" +#: setup/setup_config3.tpl:289 +#, fuzzy +msgid "Debug level" +msgstr "日志级别" -#: include/utils/class_msgPool.inc:499 -#, fuzzy, php-format -msgid "This '%s' is still in use by these objects: %s" -msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" +#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 +#, fuzzy +msgid "Disabled" +msgstr "禁用" -#: include/utils/class_msgPool.inc:505 -#, php-format -msgid "File '%s' does not exist!" -msgstr "" +#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 +#, fuzzy +msgid "Enabled" +msgstr "禁用" -#: include/utils/class_msgPool.inc:511 -#, fuzzy, php-format -msgid "Cannot open file '%s' for reading!" -msgstr "无法打开文件 '%s'。" +#: setup/class_setupStep_Welcome.inc:38 +#, fuzzy +msgid "Welcome" +msgstr "欢迎 %s!" -#: include/utils/class_msgPool.inc:517 -#, fuzzy, php-format -msgid "Cannot open file '%s' for writing!" -msgstr "无法打开文件 '%s'。" +#: setup/class_setupStep_Welcome.inc:39 +#, fuzzy +msgid "The welcome message" +msgstr "解除挂起的邮件" -#: include/utils/class_msgPool.inc:523 -#, fuzzy, php-format -msgid "Cannot delete file '%s'!" -msgstr "无法打开文件 '%s'。" +#: setup/class_setupStep_Welcome.inc:40 +#, fuzzy +msgid "Welcome to GOsa setup wizard" +msgstr "欢迎进入 Gosa 安装程序!" -#: include/utils/class_msgPool.inc:529 -#, fuzzy, php-format -msgid "Cannot create folder '%s'!" -msgstr "转到根部门" +#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +#, fuzzy +msgid "GOsa settings 1/3" +msgstr "用户设置" -#: include/utils/class_msgPool.inc:535 -#, fuzzy, php-format -msgid "Cannot delete folder '%s'!" -msgstr "无法打开文件 '%s'。" +#: setup/class_setupStep_Config1.inc:76 +#, fuzzy +msgid "GOsa generic settings" +msgstr "用户设置" -#: include/utils/class_msgPool.inc:541 +#: setup/class_setupStep_Config1.inc:118 #, fuzzy, php-format -msgid "Checking for %s support" -msgstr "检查 iconv 支持" +msgid "The specified value for '%s' must be a numeric value" +msgstr "指定 '%s' 的值必须是数字类型。" -#: include/utils/class_msgPool.inc:547 +#: 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 "Install and activate the %s PHP module." +msgid "Don't add a trailing comma to '%s'." msgstr "" -#: include/password-methods/class_password-methods.inc:145 -msgid "Cannot find a suitable password method for the current hash!" +#: setup/class_setupStep_Config1.inc:122 +msgid "People storage ou" msgstr "" -#: include/class_certificate.inc:73 +#: setup/class_setupStep_Config1.inc:126 +msgid "Group storage ou" +msgstr "" + +#: setup/class_setupStep_Config1.inc:130 #, fuzzy -msgid "Certificate is empty!" -msgstr "证书" +msgid "Uid base must be numeric" +msgstr "超时必须填数字" -#: include/class_certificate.inc:100 -msgid "Cannot load certificate - only PEM/DER is supported!" +#: setup/class_setupStep_Config1.inc:134 +#, fuzzy +msgid "The given password minimum length is not numeric." +msgstr "Sieve 端口应为数字。" + +#: setup/class_setupStep_Config1.inc:137 +#, fuzzy +msgid "The given password differ value is not numeric." +msgstr "Sieve 端口应为数字。" + +#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 +msgid "LDAP schema check" msgstr "" -#: include/class_certificate.inc:115 -msgid "Cannot extract information for non PEM certificates!" +#: setup/class_setupStep_Schema.inc:44 +msgid "Perform test on your current LDAP schema" msgstr "" -#: include/class_certificate.inc:219 +#: setup/setup_config2.tpl:2 +msgid "Samba settings" +msgstr "Samba 设置" + +#: setup/setup_config2.tpl:6 +msgid "Samba hash generator" +msgstr "" + +#: setup/setup_config2.tpl:31 #, fuzzy -msgid "No valid certificate loaded!" -msgstr "无有效证书加载" +msgid "RID base" +msgstr "数据库" -#: include/class_MultiSelectWindow.inc:135 setup/setup_migrate.tpl:79 -msgid "Close" -msgstr "关闭" +#: setup/setup_config2.tpl:46 +#, fuzzy +msgid "Workstation container" +msgstr "工作站名称" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_baseSelectDialog.inc:47 -msgid "Go to root department" -msgstr "转到根部门" +#: setup/setup_config2.tpl:61 +msgid "Samba SID mapping" +msgstr "" -#: include/class_MultiSelectWindow.inc:240 -#: include/class_MultiSelectWindow.inc:242 -#: include/class_baseSelectDialog.inc:47 -msgid "Root" -msgstr "根" +#: setup/setup_config2.tpl:71 +#, fuzzy +msgid "Timezone" +msgstr "用户时区" -#: include/class_MultiSelectWindow.inc:248 -#: include/class_baseSelectDialog.inc:49 -msgid "Go up one department" -msgstr "向上跳转一个部门" +#: setup/setup_config2.tpl:74 +#, fuzzy +msgid "Please choose your preferred timezone here" +msgstr "首选语种" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_baseSelectDialog.inc:51 -msgid "Go to users department" -msgstr "转到用户部门" +#: setup/setup_config2.tpl:96 +#, fuzzy +msgid "Additional GOsa settings" +msgstr "应用程序设置" -#: include/class_MultiSelectWindow.inc:256 -#: include/class_MultiSelectWindow.inc:258 -#: include/class_baseSelectDialog.inc:51 -msgid "Home" +#: setup/setup_config2.tpl:100 +msgid "Enable Copy & Paste" msgstr "" -#: include/class_MultiSelectWindow.inc:263 -#: include/class_baseSelectDialog.inc:52 -msgid "Reload list" -msgstr "重新加载列表" +#: setup/setup_config2.tpl:112 +#, fuzzy +msgid "Enable DNS extension" +msgstr "删除打印机扩展" -#: include/class_MultiSelectWindow.inc:530 -#, php-format -msgid "Inconsistent DN encoding detected: '%s'" -msgstr "" +#: setup/setup_config2.tpl:124 +#, fuzzy +msgid "Enable DHCP extension" +msgstr "删除打印机扩展" -#: include/php_setup.inc:95 -msgid "Generating this page caused the PHP interpreter to raise some errors!" -msgstr "生成这个页面导致 PHP 解析器发生一些错误!" +#: setup/setup_config2.tpl:136 +#, fuzzy +msgid "Enable mime type management" +msgstr "系统管理" -#: include/php_setup.inc:100 -msgid "Send bug report to the GOsa Team" -msgstr "" +#: setup/setup_config2.tpl:148 +#, fuzzy +msgid "Enable FAI release management" +msgstr "Asterisk 管理" -#: include/php_setup.inc:100 +#: setup/setup_config2.tpl:160 #, fuzzy -msgid "Send bugreport" -msgstr "发送者" +msgid "Enable user netatalk plugin" +msgstr "管理 netatalk 账号" -#: include/php_setup.inc:105 -msgid "Toggle information" -msgstr "切换信息" +#: setup/setup_config2.tpl:171 +#, fuzzy +msgid "Government mode" +msgstr "部门名称" -#: include/php_setup.inc:115 -msgid "PHP error" -msgstr "PHP 错误" +#: setup/setup_config2.tpl:182 +#, fuzzy +msgid "Logging options" +msgstr "未知" -#: include/php_setup.inc:134 -msgid "class" -msgstr "类" +#: setup/setup_config2.tpl:186 +#, fuzzy +msgid "Syslog" +msgstr "系统日志" -#: include/php_setup.inc:140 -msgid "function" -msgstr "功能" +#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 +#, fuzzy +msgid "MySQL" +msgstr "LDAP 错误:" -#: include/php_setup.inc:145 -msgid "static" -msgstr "静态" +#: setup/setup_config2.tpl:193 +msgid "Mail settings" +msgstr "邮件选项" -#: include/php_setup.inc:149 -msgid "method" -msgstr "方法" +#: setup/setup_config2.tpl:197 +msgid "Mail method" +msgstr "邮件方法" -#: include/php_setup.inc:182 -msgid "Trace" -msgstr "跟踪" +#: setup/setup_config2.tpl:213 +msgid "Account identification attribute" +msgstr "" -#: include/php_setup.inc:183 -msgid "File" -msgstr "文件" +#: setup/setup_config2.tpl:227 +#, fuzzy +msgid "Vacation templates" +msgstr "工作站模板" -#: include/php_setup.inc:183 -msgid "Line" -msgstr "行" +#: setup/setup_config2.tpl:243 +msgid "Use Cyrus UNIX style" +msgstr "" -#: include/php_setup.inc:183 -msgid "Type" -msgstr "类型" +#: setup/setup_config2.tpl:253 +msgid "Snapshots / Undo" +msgstr "" -#: include/php_setup.inc:184 -msgid "Arguments" -msgstr "参数" +#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 +msgid "Enable snapshots" +msgstr "" -#: include/functions.inc:101 -#, php-format -msgid "Fatal error: no class locations defined - please run '%s' to fix this" +#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 +msgid "Snapshot base" msgstr "" -#: include/functions.inc:108 -#, php-format +#: setup/setup_welcome.tpl:4 msgid "" -"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" +"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/functions.inc:318 -#, php-format -msgid "FATAL: Error when connecting the LDAP. Server said '%s'." -msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。" +#: setup/setup_welcome.tpl:8 +msgid "What will the wizard do for you?" +msgstr "" -#: include/functions.inc:380 -#, fuzzy -msgid "Username / UID is not unique inside the LDAP tree!" -msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。" +#: setup/setup_welcome.tpl:11 +msgid "Create a basic, single site configuration" +msgstr "" + +#: setup/setup_welcome.tpl:12 +msgid "Tries to find problems within your PHP and LDAP setup" +msgstr "" + +#: setup/setup_welcome.tpl:13 +msgid "Let you choose from a set of basic and advanced configuration switches" +msgstr "" + +#: setup/setup_welcome.tpl:14 +msgid "Guided migration of existing LDAP trees" +msgstr "" + +#: setup/setup_welcome.tpl:17 +msgid "What will the wizard NOT do for you?" +msgstr "" + +#: setup/setup_welcome.tpl:20 +msgid "Find every possible configuration error" +msgstr "" + +#: setup/setup_welcome.tpl:21 +msgid "Migrate every possible LDAP setup - create backup dumps!" +msgstr "" -#: include/functions.inc:450 include/functions.inc:595 -#: include/functions.inc:681 include/functions.inc:1068 -#: include/functions.inc:1885 include/functions.inc:1919 -#: include/functions.inc:1939 include/class_acl.inc:879 -#: include/class_CopyPasteHandler.inc:159 -#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 -#: include/class_ldap.inc:684 include/class_log.inc:88 +#: setup/setup_welcome.tpl:25 #, fuzzy -msgid "Internal error" -msgstr "终端服务器" +msgid "To continue..." +msgstr "安装继续..." -#: include/functions.inc:450 -#, fuzzy +#: setup/setup_welcome.tpl:28 msgid "" -"Username / UID is not unique inside the LDAP tree. Please contact your " -"Administrator." -msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。" - -#: include/functions.inc:595 include/functions.inc:681 -msgid "Error while adding a lock. Contact the developers!" +"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/functions.inc:605 -#, fuzzy, php-format -msgid "" -"Cannot create locking information in LDAP tree. Please contact your " -"administrator!" -msgstr "无法获得 LDAP 数据库的锁信息。检查 gosa.conf 中的 'config' 条目!" +#: setup/setup_welcome.tpl:34 +msgid "Click the 'Continue' button when you've finished." +msgstr "" -#: include/functions.inc:605 -#, fuzzy, php-format -msgid "LDAP server returned: %s" +#: setup/class_setupStep_Ldap.inc:53 +#, fuzzy +msgid "LDAP setup" msgstr "LDAP 服务器" -#: include/functions.inc:699 +#: setup/class_setupStep_Ldap.inc:54 #, fuzzy -msgid "" -"Found multiple locks for object to be locked. This should not happen - " -"cleaning up multiple references." -msgstr "发现要锁定的对象由多个锁。这虽然不可能──清除多个引用。" - -#: include/functions.inc:996 -#, php-format -msgid "The size limit of %d entries is exceed!" -msgstr "超过了 %d 个条目的大小限制!" +msgid "LDAP connection setup" +msgstr "断开" -#: include/functions.inc:998 -#, php-format +#: setup/class_setupStep_Ldap.inc:55 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:1294 -msgid "Continue anyway" -msgstr "仍然继续" - -#: include/functions.inc:1296 -msgid "Edit anyway" -msgstr "仍然编辑" +"This dialog performs the basic configuration of the LDAP connectivity for " +"GOsa." +msgstr "" -#: include/functions.inc:1298 +#: setup/class_setupStep_Ldap.inc:105 #, fuzzy, php-format -msgid "You're going to edit the LDAP entry/entries %s" -msgstr "您将要拷贝条目 '%s'。" - -#: include/functions.inc:1482 -msgid "Entries per page" -msgstr "每页条目数" - -#: include/functions.inc:1510 -msgid "Apply filter" -msgstr "应用过滤器" - -#: include/functions.inc:1762 -msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgid "Anonymous bind to server '%s' failed!" +msgstr "为服务器 '%s' 插入新宏失败。" -#: include/functions.inc:1806 -#, php-format -msgid "GOsa development snapshot (Rev %s)" -msgstr "GOsa 开发版(版本 %s)" +#: setup/class_setupStep_Ldap.inc:107 +#, fuzzy, php-format +msgid "Bind as user '%s' failed!" +msgstr "为服务器 '%s' 插入新宏失败。" -#: include/functions.inc:1885 -#, php-format -msgid "File '%s' could not be deleted." -msgstr "" +#: setup/class_setupStep_Ldap.inc:112 +#, fuzzy, php-format +msgid "Anonymous bind to server '%s' succeeded." +msgstr "为服务器 '%s' 插入新宏失败。" -#: include/functions.inc:1919 include/functions.inc:1939 +#: setup/class_setupStep_Ldap.inc:113 #, fuzzy -msgid "Cannot write to revision file!" -msgstr "无法创建文件 '%s'。" +msgid "Please specify user and password!" +msgstr "请输入您的口令!" -#: include/functions.inc:2181 include/functions.inc:2185 -#: include/functions.inc:2191 -#, fuzzy -msgid "'base_hook' is not available. Using default base!" -msgstr "警告: base_hook不可用。使用缺省 base。" +#: setup/class_setupStep_Ldap.inc:115 +#, fuzzy, php-format +msgid "Bind as user '%s' to server '%s' succeeded!" +msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。" -#: include/functions.inc:2213 -#, fuzzy -msgid "LDAP warning" -msgstr "LDAP 管理" +#: 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/functions.inc:2213 +#: setup/setup_migrate.tpl:33 #, fuzzy -msgid "Cannot get schema information from server. No schema check possible!" -msgstr "不能从服务器得到 schema 信息。无法对 schema 检查!" +msgid "Check again" +msgstr "检查" -#: include/functions.inc:2239 -msgid "Used to store account specific informations." +#: setup/setup_migrate.tpl:37 +msgid "Move windows workstations into a valid windows workstation department" msgstr "" -#: include/functions.inc:2246 +#: setup/setup_migrate.tpl:39 msgid "" -"Used to lock currently edited entries to avoid multiple changes at the same " -"time." +"This dialog allows you to move the displayed windows workstations into a " +"valid department" msgstr "" -#: include/functions.inc:2289 -#, php-format -msgid "Missing required object class '%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 "" -#: include/functions.inc:2291 -#, php-format -msgid "Missing optional object class '%s'!" +#: setup/setup_migrate.tpl:67 +msgid "Move selected windows workstations into the following GOsa department" msgstr "" -#: include/functions.inc:2297 -#, php-format -msgid "Version mismatch for required object class '%s' (!=%s)!" -msgstr "" +#: setup/setup_migrate.tpl:72 +#, fuzzy +msgid "Move selected workstations" +msgstr "选择查看工作站" -#: include/functions.inc:2299 -#, php-format -msgid "Version mismatch for optional object class '%s' (!=%s)!" +#: setup/setup_migrate.tpl:73 +msgid "What will be done here" msgstr "" -#: include/functions.inc:2303 -#, fuzzy, php-format -msgid "Class(es) available" -msgstr "文件可用。" +#: setup/setup_migrate.tpl:79 include/class_MultiSelectWindow.inc:135 +msgid "Close" +msgstr "关闭" -#: include/functions.inc:2325 -msgid "" -"You have enabled the rfc2307bis option on the 'ldap setup' step, but your " -"schema configuration do not support this option." +#: setup/setup_migrate.tpl:85 +msgid "Move groups into configured group tree" msgstr "" -#: include/functions.inc:2326 +#: setup/setup_migrate.tpl:88 msgid "" -"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " -"be AUXILIARY" +"This dialog allows moving a couple of groups to the configured group tree. " +"Doing this may straighten your LDAP service." msgstr "" -#: include/functions.inc:2330 +#: setup/setup_migrate.tpl:91 msgid "" -"Your schema is configured to support the rfc2307bis group, but you have " -"disabled this option on the 'ldap setup' step." +"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:2331 -msgid "The objectClass 'posixGroup' must be STRUCTURAL" +#: setup/setup_migrate.tpl:94 +msgid "Move selected groups into this group tree" msgstr "" -#: include/functions.inc:2354 -msgid "German" -msgstr "德语" - -#: include/functions.inc:2355 -msgid "French" -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 "" -#: include/functions.inc:2356 -msgid "Italian" -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 "显示软件包" -#: include/functions.inc:2357 -msgid "Spanish" -msgstr "西班牙语" +#: setup/setup_migrate.tpl:140 +msgid "Move users into configured user tree" +msgstr "" -#: include/functions.inc:2358 -msgid "English" -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 "" -#: include/functions.inc:2359 -msgid "Dutch" -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 "" -#: include/functions.inc:2360 -msgid "Polish" -msgstr "波兰语" +#: setup/setup_migrate.tpl:148 +#, fuzzy +msgid "Move selected users into this people tree" +msgstr "创建使用该模板的用户" -#: include/functions.inc:2361 -msgid "Swedish" -msgstr "" +#: setup/setup_migrate.tpl:198 setup/class_setup.inc:267 +#, fuzzy +msgid "Next" +msgstr "下一个" -#: include/functions.inc:2362 +#: setup/setup_migrate.tpl:199 #, fuzzy -msgid "Chinese" -msgstr "芯片组" +msgid "Abort" +msgstr "端口" -#: include/functions.inc:2363 -msgid "Russian" -msgstr "俄语" +#: setup/setup_migrate.tpl:201 +#, fuzzy +msgid "Create a new GOsa administrator account" +msgstr "创建 netatalk 账号" -#: include/functions.inc:2544 -#, php-format +#: setup/setup_migrate.tpl:204 msgid "" -"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." -msgstr "命令 '%s',作为插件 '%s' 的 POSTMODIFY 好像并不存在。" - -#: include/functions.inc:2577 -msgid "Cannot generate samba hash!" +"This dialog will automatically add a new super administrator to your LDAP " +"tree." msgstr "" -#: include/class_socketClient.inc:60 -msgid "The mcrypt module was not found. Please install php5-mcrypt." -msgstr "" +#: setup/setup_migrate.tpl:233 +#, fuzzy +msgid "Password (again)" +msgstr "口令存储" -#: include/class_socketClient.inc:108 -#, php-format -msgid "Socket connection to host '%s:%s' failed: %s" +#: 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_socketClient.inc:191 -#, php-format -msgid "Socket timeout of %s seconds reached." +#: 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_tabs.inc:238 -#, php-format -msgid "Delete process has been canceled by plugin '%s': %s" -msgstr "删除进程被插件 '%s' 取消: %s" +#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 +#, fuzzy +msgid "Current" +msgstr "当前版本" -#: include/class_tabs.inc:373 -msgid "References" -msgstr "参考" +#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#, fuzzy +msgid "After migration" +msgstr "用户管理" -#: include/class_plugin.inc:497 +#: setup/setup_migrate.tpl:313 msgid "" -"The object has changed since opened in GOsa. All changes that may be done by " -"others get lost if you save this entry!" +"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_plugin.inc:1311 include/class_plugin.inc:1323 -#, php-format -msgid "" -"The snapshot functionality is enabled, but the required variable '%s' is not " -"set." -msgstr "" +#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#, fuzzy +msgid "LDAP inspection" +msgstr "PHP 安装检查" -#: include/class_plugin.inc:1527 -#, fuzzy, php-format -msgid "You are not allowed to create a snapshot for %s." -msgstr "您无权删除这个用户!" +#: setup/class_setupStep_Migrate.inc:108 +msgid "Analyze your current LDAP for GOsa compatibility" +msgstr "" -#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 -#: include/class_plugin.inc:1568 -#, fuzzy, php-format -msgid "You are not allowed to restore a snapshot for %s." -msgstr "您无权删除这个用户!" +#: setup/class_setupStep_Migrate.inc:114 +#, fuzzy +msgid "Checking for root object" +msgstr "检查 iconv 支持" -#: include/class_plugin.inc:1786 -msgid "Changing ACL dn" +#: setup/class_setupStep_Migrate.inc:120 +msgid "Checking permissions on LDAP database" msgstr "" -#: include/class_plugin.inc:1786 -msgid "from" -msgstr "从" +#: setup/class_setupStep_Migrate.inc:126 +#, fuzzy +msgid "Checking for invisible departments" +msgstr "检查 iconv 支持" -#: include/class_plugin.inc:1787 setup/class_setupStep_Migrate.inc:1100 -#: setup/class_setupStep_Migrate.inc:1150 -#: setup/class_setupStep_Migrate.inc:1198 +#: setup/class_setupStep_Migrate.inc:131 #, fuzzy -msgid "to" -msgstr "停止" +msgid "Checking for invisible users" +msgstr "检查 iconv 支持" -#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 +#: setup/class_setupStep_Migrate.inc:137 #, fuzzy -msgid "Restore" -msgstr "仓库" +msgid "Checking for super administrator" +msgstr "检查一些附加程序" -#: include/class_plugin.inc:1986 include/class_SnapShotDialog.inc:143 -msgid "Restore snapshot" +#: setup/class_setupStep_Migrate.inc:143 +#, 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:156 +msgid "Checking for windows workstations outside the winstation tree" msgstr "" -#: include/class_plugin.inc:1993 +#: setup/class_setupStep_Migrate.inc:162 #, fuzzy -msgid "Create snapshot" -msgstr "创建 nagios 账户" +msgid "Checking for duplicated UID numbers" +msgstr "检查函数 %s" -#: include/class_plugin.inc:1994 +#: setup/class_setupStep_Migrate.inc:168 #, fuzzy -msgid "Create a new snapshot from this object" -msgstr "创建新 FAI 对象" +msgid "Checking for duplicate GID numbers" +msgstr "检查函数 %s" -#: include/class_plugin.inc:2011 -msgid "cut" -msgstr "剪切" +#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 +#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 +#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 +#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 +#: setup/class_setupStep_Migrate.inc:838 +#, fuzzy +msgid "LDAP query failed" +msgstr "Mysql 查询失败。" -#: include/class_plugin.inc:2011 -msgid "Cut this entry" -msgstr "剪切条目" +#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 +#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 +#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 +#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 +#: setup/class_setupStep_Migrate.inc:839 +msgid "Possibly the 'root object' is missing." +msgstr "" -#: include/class_plugin.inc:2019 -msgid "copy" -msgstr "复制" +#: setup/class_setupStep_Migrate.inc:217 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'uidNumber'." +msgstr "发现记录类型 '%s' 有重复。" -#: include/class_plugin.inc:2019 -msgid "Copy this entry" -msgstr "拷贝条目" +#: setup/class_setupStep_Migrate.inc:221 setup/class_setupStep_Migrate.inc:273 +#: setup/class_setupStep_Migrate.inc:334 setup/class_setupStep_Migrate.inc:407 +#: setup/class_setupStep_Migrate.inc:484 setup/class_setupStep_Migrate.inc:559 +#: setup/class_setupStep_Migrate.inc:612 setup/class_setupStep_Migrate.inc:753 +#: setup/class_setupStep_Migrate.inc:908 +#: setup/class_setupStep_Migrate.inc:1673 setup/setup_checks.tpl:27 +#: setup/setup_checks.tpl:87 include/utils/class_msgPool.inc:314 +#: 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 +#, php-format +msgid "Ok" +msgstr "好" -#: include/class_plugin.inc:2053 -#, fuzzy -msgid "Copy" -msgstr "复制" +#: setup/class_setupStep_Migrate.inc:269 +#, fuzzy, php-format +msgid "Found %s duplicate values for attribute 'gidNumber'." +msgstr "发现记录类型 '%s' 有重复。" -#: include/class_plugin.inc:2057 -#, fuzzy -msgid "Cut" -msgstr "剪切" +#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 +#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 +#: setup/class_setupStep_Migrate.inc:1650 +#: setup/class_setupStep_Migrate.inc:1663 +msgid "Failed" +msgstr "失败" -#: include/class_plugin.inc:2064 include/class_plugin.inc:2067 -#: include/class_CopyPasteHandler.inc:506 -msgid "Paste" -msgstr "粘贴" +#: setup/class_setupStep_Migrate.inc:329 +#, php-format +msgid "" +"Found %s winstations outside the predefined winstation department ou '%s'." +msgstr "" -#: include/class_acl.inc:26 +#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 +#: setup/class_setupStep_Migrate.inc:759 #, fuzzy -msgid "Access control" -msgstr "访问选项" +msgid "Migrate" +msgstr "创建" -#: include/class_acl.inc:207 -msgid "Reset ACLs" +#: setup/class_setupStep_Migrate.inc:402 +#, php-format +msgid "Found %s groups outside the configured tree '%s'." msgstr "" -#: include/class_acl.inc:212 include/class_acl.inc:215 -msgid "Use ACL defined in role" +#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 +#, fuzzy +msgid "Move" +msgstr "模式" + +#: setup/class_setupStep_Migrate.inc:479 +#, php-format +msgid "Found %s user(s) outside the configured tree '%s'." msgstr "" -#: include/class_acl.inc:489 -msgid "No ACL settings for this category!" +#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 +#, php-format +msgid "" +"The specified user '%s' does not have full access to your ldap database." msgstr "" -#: include/class_acl.inc:491 +#: setup/class_setupStep_Migrate.inc:617 #, php-format -msgid "Contains ACLs for these objects: %s" +msgid "Found %s user(s) that will not be visible in GOsa." msgstr "" -#: include/class_acl.inc:496 include/class_acl.inc:497 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: setup/class_setupStep_Migrate.inc:979 #, fuzzy -msgid "category ACL" -msgstr "分类" +msgid "Migration error" +msgstr "创建" -#: include/class_acl.inc:543 +#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#, fuzzy, php-format +msgid "Cannot migrate department '%s':" +msgstr "转到根部门" + +#: setup/class_setupStep_Migrate.inc:758 #, php-format -msgid "Edit ACL for '%s' - scope is '%s'" +msgid "Found %s department(s) that will not be visible in GOsa." msgstr "" -#: include/class_acl.inc:698 include/class_acl.inc:705 +#: setup/class_setupStep_Migrate.inc:913 +msgid "There is no GOsa administrator account inside your LDAP." +msgstr "" + +#: setup/class_setupStep_Migrate.inc:979 +#, php-format +msgid "Cannot add ACL for user '%s':" +msgstr "" + +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Show/hide advanced settings" -msgstr "高级电话设置" +msgid "Password error" +msgstr "口令过期截止日" -#: include/class_acl.inc:723 +#: setup/class_setupStep_Migrate.inc:1004 #, fuzzy -msgid "Create objects" -msgstr "创建新 FAI 对象" +msgid "Provided passwords do not match!" +msgstr "输入的新口令和重复口令不匹配!" -#: include/class_acl.inc:724 +#: setup/class_setupStep_Migrate.inc:1009 #, fuzzy -msgid "Move objects" -msgstr "成员对象" +msgid "Input error" +msgstr "PHP 错误" + +#: setup/class_setupStep_Migrate.inc:1009 +#, fuzzy +msgid "Specify a valid user ID!" +msgstr "请输入一个有效的用户名!" + +#: setup/class_setupStep_Migrate.inc:1051 +#, fuzzy, php-format +msgid "Adding an administrative user failed: object '%s' already exists!" +msgstr "为对象 '%s' 设置动作状态(FAIstate) 失败,值为 '%s'。" + +#: setup/class_setupStep_Migrate.inc:1090 +#: setup/class_setupStep_Migrate.inc:1139 +#: setup/class_setupStep_Migrate.inc:1188 +#, fuzzy +msgid "Cannot move users to the requested department!" +msgstr "选择放置部门的子树" + +#: setup/class_setupStep_Migrate.inc:1100 +msgid "Winstation will be moved from" +msgstr "" + +#: setup/class_setupStep_Migrate.inc:1100 +#: setup/class_setupStep_Migrate.inc:1150 +#: setup/class_setupStep_Migrate.inc:1198 include/class_plugin.inc:1787 +#, fuzzy +msgid "to" +msgstr "停止" -#: include/class_acl.inc:725 -#, fuzzy -msgid "Remove objects" -msgstr "成员对象" +#: setup/class_setupStep_Migrate.inc:1111 +#: setup/class_setupStep_Migrate.inc:1160 +msgid "Updating following references too" +msgstr "" -#: include/class_acl.inc:727 -msgid "Modifyable by owner" +#: setup/class_setupStep_Migrate.inc:1150 +msgid "Group will be moved from" msgstr "" -#: include/class_acl.inc:738 include/class_acl.inc:835 -#: include/class_acl.inc:839 -msgid "read" -msgstr "读" +#: setup/class_setupStep_Migrate.inc:1198 +msgid "User will be moved from" +msgstr "" -#: include/class_acl.inc:739 include/class_acl.inc:837 -#: include/class_acl.inc:840 -msgid "write" -msgstr "写" +#: setup/class_setupStep_Migrate.inc:1208 +msgid "The following references will be updated" +msgstr "" -#: include/class_acl.inc:743 -#, fuzzy -msgid "Complete object" -msgstr "成员对象" +#: setup/class_setupStep_Migrate.inc:1651 +msgid "" +"The LDAP root object is missing. It is required to use your LDAP service." +msgstr "" -#: include/class_acl.inc:879 -#, fuzzy, php-format -msgid "Unkown ACL type '%s'!" -msgstr "未知 FAIstate %s" +#: setup/class_setupStep_Migrate.inc:1652 +#: setup/class_setupStep_Migrate.inc:1665 +msgid "Try to create root object" +msgstr "" -#: include/class_acl.inc:922 -#, fuzzy, php-format -msgid "Unknown entry '%s'!" -msgstr "未知 FAIstate %s" +#: setup/class_setupStep_Migrate.inc:1664 +msgid "Root object couldn't be created, you should try it on your own." +msgstr "" -#: include/class_acl.inc:982 include/class_acl.inc:984 +#: setup/class_setupStep_Migrate.inc:1955 #, fuzzy, php-format -msgid "Role: %s" -msgstr "角色" +msgid "Copy '%s' to '%s' failed:" +msgstr "移动 '%s' 到 '%s'" -#: include/class_acl.inc:984 -#, fuzzy -msgid "unknown role" -msgstr "! 未知 id" +#: setup/setup_license.tpl:8 +msgid "I have read the license and accept it" +msgstr "" -#: include/class_acl.inc:992 -#, php-format -msgid "Contains settings for these objects: %s" +#: setup/setup_checks.tpl:9 +msgid "PHP module and extension checks" msgstr "" -#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 -msgid "Members" -msgstr "成员" +#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 +msgid "GOsa will NOT run without fixing this." +msgstr "" -#: include/class_acl.inc:1007 -msgid "ACL takes effect for all users" +#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 +msgid "GOsa will run without fixing this." msgstr "" -#: include/class_acl.inc:1177 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "Access control list" -msgstr "访问选项" +msgid "PHP setup configuration" +msgstr "PHP 安装检查" -#: include/class_acl.inc:1182 +#: setup/setup_checks.tpl:67 #, fuzzy -msgid "ACL roles" -msgstr "MAC 地址" +msgid "show information" +msgstr "个人信息" -#: include/class_acl.inc:1185 +#: setup/setup_schema.tpl:3 #, fuzzy -msgid "Role name" -msgstr "重命名" +msgid "Schema specific settings" +msgstr "Samba 设置" -#: include/class_acl.inc:1186 +#: setup/setup_schema.tpl:7 +msgid "Enable schema validation when logging in" +msgstr "" + +#: setup/setup_schema.tpl:16 #, fuzzy -msgid "Role description" -msgstr "单元描述" +msgid "Check status" +msgstr "具有状态" -#: include/class_pluglist.inc:56 -msgid "All objects in this category" +#: setup/setup_schema.tpl:20 +msgid "Schema check succeeded" msgstr "" -#: include/class_pluglist.inc:152 -msgid "The configuration format has changed. Please re-run setup!" -msgstr "" +#: setup/setup_schema.tpl:23 +#, fuzzy +msgid "Schema check failed" +msgstr "保存电话失败" -#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 -#: include/class_pluglist.inc:280 -msgid "Unknown" -msgstr "未知" +#: setup/setup_schema.tpl:31 +msgid "" +"Could not read any schema informations, all checks skipped. Adjust your ldap " +"acls." +msgstr "" -#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 -#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 -#: ihtml/themes/default/framework.tpl:24 +#: setup/setup_schema.tpl:35 msgid "" -"You are currently editing a database entry. Do you want to dismiss the " -"changes?" -msgstr "您正在编辑一个数据项。您确认要丢弃当前的修改么?" +"It seems that your ldap database wasn't initialized yet. This maybe the " +"reason, why GOsa can't read your schema configuration!" +msgstr "" -#: include/class_msg_dialog.inc:124 +#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 #, fuzzy -msgid "Please fix the above error and reload the page." -msgstr "请看一下 GOsa 日志文件。" +msgid "GOsa settings 3/3" +msgstr "用户设置" -#: include/class_config.inc:107 -#, php-format -msgid "XML error in gosa.conf: %s at line %d" -msgstr "XML 出错于 gosa.conf: %s ,行 %d" +#: setup/class_setupStep_Config3.inc:79 +msgid "Tweak some GOsa core behaviour" +msgstr "" -#: include/class_config.inc:242 +#: setup/class_setupStep_Config3.inc:198 #, fuzzy -msgid "Cannot bind to LDAP. Please contact the system administrator." -msgstr "无法绑定 LDAP。请联系系统管理员。" +msgid "Session lifetime must be a numeric value!" +msgstr "需要的分值必须是数字。" -#: include/class_config.inc:574 +#: setup/class_setupStep_Config3.inc:202 #, fuzzy -msgid "SID and/or RIDBASE missing in the configuration!" -msgstr "您的配置文件缺少 SID 和/或 RIDBASE!" +msgid "Maximum LDAP query time must be a numeric value!" +msgstr "需要的分值必须是数字。" -#: include/class_config.inc:878 +#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 #, fuzzy -msgid "Configuration" -msgstr "配置文件" +msgid "License" +msgstr "行" -#: include/class_config.inc:878 -msgid "" -"The configuration file you are using seems to be outdated. Please move the " -"GOsa configuration file away to run the GOsa setup again." +#: setup/class_setupStep_License.inc:58 +msgid "Terms and conditions for usage" msgstr "" -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:126 -#: include/class_CopyPasteHandler.inc:158 -#: include/class_CopyPasteHandler.inc:175 -#: include/class_CopyPasteHandler.inc:183 -#: include/class_CopyPasteHandler.inc:192 -#: include/class_CopyPasteHandler.inc:268 -#, fuzzy, php-format -msgid "Copy and paste failed!" -msgstr "拷贝和粘贴精灵" - -#: include/class_CopyPasteHandler.inc:118 -#: include/class_CopyPasteHandler.inc:183 -#, fuzzy, php-format -msgid "Cannot set permission for '%s'" -msgstr "无法创建文件 '%s'。" +#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 +msgid "Installation check" +msgstr "" -#: include/class_CopyPasteHandler.inc:158 -#, php-format -msgid "'%s' is no vaild LDAP object" +#: setup/class_setupStep_Checks.inc:40 +msgid "Basic checks for PHP compatibility and extensions" msgstr "" -#: include/class_CopyPasteHandler.inc:175 -#, fuzzy, php-format -msgid "No write permission in '%s'" -msgstr "无法创建文件 '%s'。" +#: setup/class_setupStep_Checks.inc:64 +#, fuzzy +msgid "Checking PHP version" +msgstr "检查 PHP 版本 (>=4.1.0)" -#: include/class_CopyPasteHandler.inc:386 +#: setup/class_setupStep_Checks.inc:65 #, php-format -msgid "These objects will be pasted: %s" +msgid "PHP must be of version %s or above." msgstr "" -#: include/class_CopyPasteHandler.inc:410 -#, php-format -msgid "This object will be pasted: %s" +#: setup/class_setupStep_Checks.inc:66 +msgid "Please upgrade to a supported version." msgstr "" -#: include/class_CopyPasteHandler.inc:508 -#, fuzzy -msgid "Cannot paste" -msgstr "无法粘贴" +#: setup/class_setupStep_Checks.inc:73 +msgid "GOsa requires this module to talk with your LDAP server." +msgstr "" -#: include/class_gosaSupportDaemon.inc:82 -msgid "GOsa support daemon" +#: setup/class_setupStep_Checks.inc:81 +msgid "GOsa requires this module for an internationalized interface." msgstr "" -#: include/class_gosaSupportDaemon.inc:851 -#, fuzzy -msgid "Cannot not parse XML!" -msgstr "太多用户,无法分配一个可用的 ID!" +#: setup/class_setupStep_Checks.inc:89 +msgid "GOsa requires this module for the samba integration." +msgstr "" -#: include/class_gosaSupportDaemon.inc:1177 -#, fuzzy, php-format -msgid "Cannot send abort event for entry %s!" -msgstr "无法创建文件 '%s'。" +#: setup/class_setupStep_Checks.inc:97 +msgid "GOsa requires this module to make use of SSHA encryption." +msgstr "" -#: include/class_gosaSupportDaemon.inc:1197 -#, fuzzy, php-format -msgid "Cannot remove entry %s!" -msgstr "未知 FAIstate %s" +#: setup/class_setupStep_Checks.inc:105 +msgid "GOsa requires this module to talk to an IMAP server." +msgstr "" -#: include/functions_helpviewer.inc:45 -#, php-format -msgid "XML error in guide.xml: %s at line %d" -msgstr "XML 出错于 guide.xml: %s ,行 %d" +#: setup/class_setupStep_Checks.inc:112 +#, fuzzy +msgid "mbstring" +msgstr "Samba 设置" + +#: setup/class_setupStep_Checks.inc:113 +msgid "GOsa requires this module to handle unicode strings." +msgstr "" -#: include/functions_helpviewer.inc:88 -msgid "No help available for this plugin." -msgstr "此插件没有可用帮助信息。" +#: setup/class_setupStep_Checks.inc:121 +#, fuzzy +msgid "" +"GOsa requires this module to communicate with several supported databases." +msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。" -#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 -msgid "previous" -msgstr "上一个" +#: setup/class_setupStep_Checks.inc:128 +msgid "CUPS" +msgstr "" -#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 -msgid "next" -msgstr "下一个" +#: setup/class_setupStep_Checks.inc:129 +#, fuzzy +msgid "" +"GOsa requires this module to show printers that are not defined within the " +"LDAP." +msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。" -#: include/functions_helpviewer.inc:389 -#, php-format -msgid "%s results for your search with the keyword %s" -msgstr "%s 结果当您查找关键字 %s" +#: setup/class_setupStep_Checks.inc:146 +msgid "samba hash generator" +msgstr "" -#: include/functions_helpviewer.inc:463 -#, php-format -msgid "%s%% hit rate in file %s" -msgstr "%s%% 点击率于文件 %s" +#: setup/class_setupStep_Checks.inc:147 +msgid "GOsa requires this command to synchronize POSIX and samba passwords." +msgstr "" -#: include/class_SnapShotDialog.inc:90 -#, fuzzy, php-format -msgid "You're about to delete the snapshot '%s'." -msgstr "您将要删除宏 '%s'。" +#: setup/class_setupStep_Checks.inc:148 +msgid "" +"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +msgstr "" -#: include/class_SnapShotDialog.inc:145 +#: setup/class_setupStep_Checks.inc:158 #, fuzzy -msgid "Remove snapshot" -msgstr "删除记录" - -#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 -msgid "Y-m-d, H:i:s" +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 在两种情况下都可以运行。" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -msgid "Performance warning" +#: setup/class_setupStep_Checks.inc:159 +#, fuzzy +msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." +msgstr "检查 register_globals 是否设置为 'off'" + +#: setup/class_setupStep_Checks.inc:167 +msgid "PHP uses this value for the garbage collector to delete old sessions." msgstr "" -#: include/class_ldap.inc:232 include/class_ldap.inc:265 -#, php-format -msgid "LDAP performance is poor: last query took about %.2fs!" +#: setup/class_setupStep_Checks.inc:168 +#, fuzzy +msgid "" +"Setting this value to one day will prevent loosing session and cookies " +"before they really timeout." msgstr "" +"PHP 用这个值来进行垃圾回收,删除旧的会话。设置这个值为一天,将会防止在真正超" +"时之前的会话和 cookie 丢失。" -#: include/class_ldap.inc:636 -#, php-format +#: setup/class_setupStep_Checks.inc:169 msgid "" -"Cannot automatically create subtrees with RDN '%s': no object class found!" +"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " +"higher." msgstr "" -#: include/class_ldap.inc:684 -#, php-format -msgid "Cannot automatically create subtrees with RDN '%s': not supported" +#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 +#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 +msgid "Off" msgstr "" -#: include/class_ldap.inc:768 -#, php-format -msgid "while operating on '%s' using LDAP server '%s'" -msgstr "当操作 '%s' 使用 LDAP 服务器 '%s' 时" +#: setup/class_setupStep_Checks.inc:177 +#, 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'。" -#: include/class_ldap.inc:770 -#, php-format -msgid "while operating on LDAP server %s" -msgstr "当操作 LDAP 服务器 '%s' 时" +#: setup/class_setupStep_Checks.inc:178 +#, fuzzy +msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." +msgstr "" +"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必" +"须设置为 'Off'。" -#: include/class_ldap.inc:992 -#, php-format +#: setup/class_setupStep_Checks.inc:185 +#, fuzzy msgid "" -"This is not a valid DN: '%s'. A block for import should begin with 'dn: ...' " -"in line %s" -msgstr "这不是一条有效的 DN: '%s'。导入数据应该以 'dn:...' 开始于行 %s" +"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 内存,太少会导致无法预料的错误!将其设置为更大。" -#: include/class_ldap.inc:1021 -#, php-format -msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" -msgstr "导入 dn: '%s' 时错误,请从行 %s 开始检查您的 LDIF!" +#: setup/class_setupStep_Checks.inc:186 +msgid "" +"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." +msgstr "" -#: include/class_multi_plug.inc:362 +#: setup/class_setupStep_Checks.inc:193 #, fuzzy -msgid "You are currently editing mutliple entries." -msgstr "您无权删除这个部门。" +msgid "" +"This option influences the PHP output handling. Turn this Option off, to " +"increase performance." +msgstr "这个选项影响输出处理。关闭这个选项,可以提高性能。" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:194 +msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +msgstr "" + +#: setup/class_setupStep_Checks.inc:201 #, fuzzy -msgid "Password reset" -msgstr "口令过期截止日" +msgid "The Execution time should be at least 30 seconds." +msgstr "执行时间应该至少 30 秒,因为一些动作可能会花很多时间。" -#: include/class_multi_plug.inc:391 +#: setup/class_setupStep_Checks.inc:202 +msgid "" +"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." +msgstr "" + +#: setup/class_setupStep_Checks.inc:209 #, fuzzy -msgid "The user password was resetted, please set a new password value!" -msgstr "您的口令已经过期 !! 选择一个新口令" +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 将不会发送任何有关正运行着" +"的服务器的信息。" -#: include/class_log.inc:88 -#, fuzzy, php-format -msgid "Logging failed: %s" -msgstr "Logging DB 用户" +#: setup/class_setupStep_Checks.inc:210 +msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +msgstr "" -#: include/class_log.inc:107 +#: setup/class_setupStep_Checks.inc:216 #, fuzzy -msgid "MySQL error" -msgstr "LDAP 错误:" +msgid "On" +msgstr "打开" -#: include/class_log.inc:107 -msgid "Logging to MySQL database will be disabled for this session!" +#: setup/class_setupStep_Checks.inc:217 +msgid "" +"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 会将字符串" +"中所有引号编码。" -#: include/class_log.inc:120 -#, php-format -msgid "Invalid option '%s' specified!" +#: setup/class_setupStep_Checks.inc:218 +msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." msgstr "" -#: include/class_log.inc:124 +#: setup/class_setupStep_Checks.inc:225 #, fuzzy -msgid "Specified objectType is empty or invalid!" -msgstr "指定的 branch 名称无效。" +msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +msgstr "" +"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串" +"中所有引号编码。" -#: include/class_log.inc:145 include/class_log.inc:157 -#: include/class_log.inc:165 include/class_log.inc:177 -#: include/class_log.inc:192 include/class_log.inc:228 -msgid "MySQL logging" +#: setup/class_setupStep_Checks.inc:226 +msgid "" +"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." msgstr "" -#: include/class_log.inc:205 -#, fuzzy, php-format -msgid "Cannot add location to the database!" -msgstr "无法连接到数据库!" +#: setup/class_setupStep_Checks.inc:236 +#, fuzzy +msgid "Configuration writeable" +msgstr "配置文件" -#: include/class_baseSelectDialog.inc:44 +#: setup/class_setupStep_Checks.inc:237 #, fuzzy -msgid "Choose a base" -msgstr "选择一个位置" +msgid "The configuration file can't be written" +msgstr "查看配置信息" -#: include/class_baseSelectDialog.inc:55 +#: setup/class_setupStep_Checks.inc:238 +#, php-format msgid "" -"Step in the prefered tree and click save to use the current subtree as base. " -"Or click the image at the end of each entry." +"GOsa reads its configuration from a file located in (%s/%s). The setup can " +"write the configuration directly if it is writeable." msgstr "" -#: include/class_baseSelectDialog.inc:61 -#, fuzzy -msgid "Use" -msgstr "用户" +#: setup/setup_config1.tpl:2 +msgid "Look and feel" +msgstr "" -#: include/class_baseSelectDialog.inc:66 -msgid "Action" -msgstr "行动" +#: setup/setup_config1.tpl:6 +#, fuzzy +msgid "Theme" +msgstr "模板" -#: include/class_baseSelectDialog.inc:72 +#: setup/setup_config1.tpl:15 #, fuzzy -msgid "Filter entries with this syntax" -msgstr "用这个语法过滤条目" +msgid "Apache" +msgstr "缓存" -#: include/class_baseSelectDialog.inc:136 -#, fuzzy, php-format -msgid "Select this base" -msgstr "选择一个位置" +#: setup/setup_config1.tpl:19 +msgid "Compress output send to browser" +msgstr "" + +#: setup/setup_config1.tpl:27 +#, fuzzy +msgid "People and group storage" +msgstr "People dn attribute" -#: setup/class_setupStep_Ldap.inc:53 +#: setup/setup_config1.tpl:30 #, fuzzy -msgid "LDAP setup" -msgstr "LDAP 服务器" +msgid "People DN attribute" +msgstr "People dn attribute" -#: setup/class_setupStep_Ldap.inc:54 +#: setup/setup_config1.tpl:41 +msgid "People storage subtree" +msgstr "" + +#: setup/setup_config1.tpl:50 #, fuzzy -msgid "LDAP connection setup" -msgstr "断开" +msgid "Group storage subtree" +msgstr "忽略子树" -#: setup/class_setupStep_Ldap.inc:55 -msgid "" -"This dialog performs the basic configuration of the LDAP connectivity for " -"GOsa." +#: setup/setup_config1.tpl:59 +msgid "Include personal title in user DN" msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:55 setup/setup_feedback.tpl:73 -#: setup/class_setupStep_Schema.inc:86 -msgid "No" -msgstr "否" +#: setup/setup_config1.tpl:70 +msgid "Relaxed naming policies" +msgstr "" -#: setup/class_setupStep_Ldap.inc:74 setup/class_setupStep_Config1.inc:88 -#: setup/class_setupStep_Config2.inc:167 setup/class_setupStep_Config3.inc:89 -#: setup/setup_feedback.tpl:53 setup/setup_feedback.tpl:71 -#: setup/class_setupStep_Schema.inc:86 -msgid "Yes" -msgstr "是" +#: setup/setup_config1.tpl:81 +#, fuzzy +msgid "Automatic UIDs" +msgstr "自动" -#: setup/class_setupStep_Ldap.inc:105 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' failed!" -msgstr "为服务器 '%s' 插入新宏失败。" +#: setup/setup_config1.tpl:113 +#, fuzzy +msgid "Number base for people/groups" +msgstr "用户/组起始 ID" -#: setup/class_setupStep_Ldap.inc:107 -#, fuzzy, php-format -msgid "Bind as user '%s' failed!" -msgstr "为服务器 '%s' 插入新宏失败。" +#: setup/setup_config1.tpl:121 +msgid "Hook for number base" +msgstr "" -#: setup/class_setupStep_Ldap.inc:112 -#, fuzzy, php-format -msgid "Anonymous bind to server '%s' succeeded." -msgstr "为服务器 '%s' 插入新宏失败。" +#: setup/setup_config1.tpl:140 +#, fuzzy +msgid "Password encryption algorithm" +msgstr "加密算法" -#: setup/class_setupStep_Ldap.inc:113 +#: setup/setup_config1.tpl:151 #, fuzzy -msgid "Please specify user and password!" -msgstr "请输入您的口令!" +msgid "Password restrictions" +msgstr "口令过期截止日" -#: setup/class_setupStep_Ldap.inc:115 -#, fuzzy, php-format -msgid "Bind as user '%s' to server '%s' succeeded!" -msgstr "无法在主服务器 '%s' 上选择数据库 '%s'。" +#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 +msgid "Password minimum length" +msgstr "" -#: setup/class_setupStep_Finish.inc:37 -#: ihtml/themes/default/copyPasteDialog.tpl:32 -msgid "Finish" -msgstr "完成" +#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 +msgid "Different characters from old password" +msgstr "" -#: setup/class_setupStep_Finish.inc:38 +#: setup/setup_config1.tpl:182 #, fuzzy -msgid "Write configuration file" -msgstr "配置文件" +msgid "Password change hook" +msgstr "不允许修改口令" -#: setup/class_setupStep_Finish.inc:39 -#, fuzzy -msgid "Finish - write the configuration file" -msgstr "需要 XML 功能来解析配置文件。" +#: setup/setup_config1.tpl:198 +msgid "Use SASL for kerberos" +msgstr "" -#: setup/class_setupStep_Finish.inc:101 +#: setup/setup_config1.tpl:209 #, fuzzy +msgid "Use account expiration" +msgstr "账号过期于" + +#: setup/setup_config1.tpl:221 msgid "" -"Your configuration file is currently world readable. Please update the file " -"permissions!" -msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" +"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 支持好几种口令加密算法。通常可以通过用户模板调整算法,但是在这里您可以定" +"义一个缺省方法。" -#: setup/class_setupStep_Finish.inc:103 +#: setup/setup_config1.tpl:222 #, fuzzy -msgid "The configuration is currently not readable or it does not exists." -msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" +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 和正确的口令。" -#: setup/class_setupStep_Finish.inc:112 -#, fuzzy, php-format +#: setup/setup_config1.tpl:223 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:" +"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 "" -"将文件保存在 GOsa 配置文件目录中,确认 Web 服务器运行的账号能够读取 gosa." -"conf,其他用户则无权访问。您可以执行如下命令来实现:" +"有的基本的 LDAP 参数是可调的,并影响位置Gosa 保存用户和组的地方。包括账号创建" +"的方式。点击下面的值如果它们不符合您的需要。" -#: setup/class_setupStep_License.inc:56 setup/class_setupStep_License.inc:57 +#: setup/setup_config1.tpl:224 #, fuzzy -msgid "License" -msgstr "行" - -#: setup/class_setupStep_License.inc:58 -msgid "Terms and conditions for usage" +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 插件以保持您的邮件设置不被更改。" -#: setup/class_setupStep_Language.inc:40 setup/class_setupStep_Language.inc:41 +#: setup/class_setup.inc:77 setup/class_setupStep_Feedback.inc:132 #, fuzzy -msgid "Language setup" -msgstr "语言" - -#: setup/class_setupStep_Language.inc:42 -msgid "This step allows you to select your preferred language." -msgstr "" +msgid "Setup error" +msgstr "PHP 错误" -#: setup/class_setupStep_Language.inc:47 +#: setup/class_setup.inc:197 #, fuzzy -msgid "Automatic" -msgstr "自动" +msgid "Completed" +msgstr "不完整" #: setup/class_setupStep_Feedback.inc:92 msgid "UNIX accounts/groups" @@ -4339,1613 +4236,1738 @@ msgstr "用户管理" msgid "System inventory" msgstr "删除 inventory" -#: setup/class_setupStep_Feedback.inc:104 -#, fuzzy -msgid "System-/Configmanagement" -msgstr "系统管理" +#: setup/class_setupStep_Feedback.inc:104 +#, fuzzy +msgid "System-/Configmanagement" +msgstr "系统管理" + +#: setup/class_setupStep_Feedback.inc:106 +msgid "Addressbook" +msgstr "地址簿" + +#: setup/class_setupStep_Feedback.inc:112 +#: setup/class_setupStep_Feedback.inc:114 +msgid "Notification and feedback" +msgstr "" + +#: setup/class_setupStep_Feedback.inc:113 +#, fuzzy +msgid "Get notifications or send feedback" +msgstr "主机通知命令" + +#: setup/class_setupStep_Feedback.inc:141 +#: setup/class_setupStep_Feedback.inc:148 +msgid "Feedback error" +msgstr "" + +#: setup/class_setupStep_Feedback.inc:141 +#, php-format +msgid "Cannot send feedback to '%s': %s" +msgstr "" + +#: setup/class_setupStep_Feedback.inc:148 +msgid "Cannot send feedback: service temporarily unavailable" +msgstr "" + +#: setup/class_setupStep_Feedback.inc:150 +msgid "Feedback sucessfully send" +msgstr "" + +#: setup/class_setupStep_Feedback.inc:180 +#, fuzzy +msgid "Please specify a valid email address." +msgstr "请输入一个有效的 iSerial。" + +#: setup/class_setupStep_Feedback.inc:184 +msgid "" +"You have to select at least one of both options, subscribe or send feedback." +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 "" + +#: setup/setup_feedback.tpl:30 +msgid "Mail address" +msgstr "邮件地址" + +#: setup/setup_feedback.tpl:41 +msgid "Send feedback to the GOsa project team" +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 "" + +#: setup/setup_feedback.tpl:50 +msgid "Did the setup procedure help you to get started?" +msgstr "" + +#: setup/setup_feedback.tpl:60 +msgid "If not, what problems did you encounter" +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" +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/class_setupStep_Feedback.inc:106 -msgid "Addressbook" -msgstr "地址簿" +#: setup/setup_feedback.tpl:106 +msgid "LDAP" +msgstr "" -#: setup/class_setupStep_Feedback.inc:112 -#: setup/class_setupStep_Feedback.inc:114 -msgid "Notification and feedback" +#: setup/setup_feedback.tpl:110 +msgid "What kind of LDAP server(s) do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:113 -#, fuzzy -msgid "Get notifications or send feedback" -msgstr "主机通知命令" +#: setup/setup_feedback.tpl:116 +msgid "How many objects are in your LDAP?" +msgstr "" -#: setup/class_setupStep_Feedback.inc:132 setup/class_setup.inc:77 +#: setup/setup_feedback.tpl:123 #, fuzzy -msgid "Setup error" -msgstr "PHP 错误" +msgid "Features" +msgstr "功能" -#: setup/class_setupStep_Feedback.inc:141 -#: setup/class_setupStep_Feedback.inc:148 -msgid "Feedback error" +#: setup/setup_feedback.tpl:126 +msgid "What features of GOsa do you use?" msgstr "" -#: setup/class_setupStep_Feedback.inc:141 -#, php-format -msgid "Cannot send feedback to '%s': %s" +#: setup/setup_feedback.tpl:136 +msgid "What features do you want to see in future versions of GOsa?" msgstr "" -#: setup/class_setupStep_Feedback.inc:148 -msgid "Cannot send feedback: service temporarily unavailable" +#: setup/setup_feedback.tpl:143 +msgid "Send feedback" msgstr "" -#: setup/class_setupStep_Feedback.inc:150 -msgid "Feedback sucessfully send" +#: include/class_SnapShotDialog.inc:90 +#, fuzzy, php-format +msgid "You're about to delete the snapshot '%s'." +msgstr "您将要删除宏 '%s'。" + +#: include/class_SnapShotDialog.inc:143 include/class_plugin.inc:1987 +msgid "Restore snapshot" msgstr "" -#: setup/class_setupStep_Feedback.inc:180 +#: include/class_SnapShotDialog.inc:145 #, fuzzy -msgid "Please specify a valid email address." -msgstr "请输入一个有效的 iSerial。" +msgid "Remove snapshot" +msgstr "删除记录" -#: setup/class_setupStep_Feedback.inc:184 -msgid "" -"You have to select at least one of both options, subscribe or send feedback." +#: include/class_SnapShotDialog.inc:147 include/class_SnapShotDialog.inc:167 +msgid "Y-m-d, H:i:s" msgstr "" -#: setup/class_setup.inc:197 -#, fuzzy -msgid "Completed" -msgstr "不完整" - -#: setup/class_setup.inc:267 setup/setup_migrate.tpl:198 -#, fuzzy -msgid "Next" -msgstr "下一个" +#: include/class_plugin.inc:497 +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 "" -#: setup/setup_finish.tpl:3 -#, fuzzy -msgid "Create your configuration file" -msgstr "配置文件" +#: include/class_plugin.inc:1311 include/class_plugin.inc:1323 +#, php-format +msgid "" +"The snapshot functionality is enabled, but the required variable '%s' is not " +"set." +msgstr "" -#: setup/setup_finish.tpl:13 -msgid "Download configuration" -msgstr "下载配置" +#: include/class_plugin.inc:1527 +#, fuzzy, php-format +msgid "You are not allowed to create a snapshot for %s." +msgstr "您无权删除这个用户!" -#: setup/setup_finish.tpl:18 -#, fuzzy -msgid "Status: " -msgstr "状态" +#: include/class_plugin.inc:1540 include/class_plugin.inc:1555 +#: include/class_plugin.inc:1568 +#, fuzzy, php-format +msgid "You are not allowed to restore a snapshot for %s." +msgstr "您无权删除这个用户!" -#: setup/setup_ldap.tpl:7 -msgid "Please choose the LDAP user to be used by GOsa" +#: include/class_plugin.inc:1786 +msgid "Changing ACL dn" msgstr "" -#: setup/setup_ldap.tpl:13 ihtml/themes/default/help.tpl:21 -msgid "Search" -msgstr "查找" +#: include/class_plugin.inc:1786 +msgid "from" +msgstr "从" -#: setup/setup_ldap.tpl:25 +#: include/class_plugin.inc:1969 include/class_plugin.inc:1971 #, fuzzy -msgid "LDAP connection" -msgstr "断开" - -#: setup/setup_ldap.tpl:29 -msgid "Location name" -msgstr "位置名称" +msgid "Restore" +msgstr "仓库" -#: setup/setup_ldap.tpl:37 +#: include/class_plugin.inc:1994 #, fuzzy -msgid "Connection URL" -msgstr "连接 URL" +msgid "Create snapshot" +msgstr "创建 nagios 账户" -#: setup/setup_ldap.tpl:45 +#: include/class_plugin.inc:1995 #, fuzzy -msgid "TLS connection" -msgstr "连接" +msgid "Create a new snapshot from this object" +msgstr "创建新 FAI 对象" -#: setup/setup_ldap.tpl:65 +#: include/class_plugin.inc:2013 +msgid "cut" +msgstr "剪切" + +#: include/class_plugin.inc:2013 +msgid "Cut this entry" +msgstr "剪切条目" + +#: include/class_plugin.inc:2021 +msgid "copy" +msgstr "复制" + +#: include/class_plugin.inc:2021 +msgid "Copy this entry" +msgstr "拷贝条目" + +#: include/class_plugin.inc:2055 #, fuzzy -msgid "Reload" -msgstr "读" +msgid "Copy" +msgstr "复制" -#: setup/setup_ldap.tpl:69 +#: include/class_plugin.inc:2059 #, fuzzy -msgid "Authentication" -msgstr "Nagios 鉴权" +msgid "Cut" +msgstr "剪切" -#: setup/setup_ldap.tpl:73 -msgid "Admin DN" -msgstr "管理员 DN" +#: include/class_plugin.inc:2066 include/class_plugin.inc:2069 +#: include/class_CopyPasteHandler.inc:506 +msgid "Paste" +msgstr "粘贴" -#: setup/setup_ldap.tpl:78 -#, fuzzy -msgid "Select user" -msgstr "删除用户" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:126 +#: include/class_CopyPasteHandler.inc:158 +#: include/class_CopyPasteHandler.inc:175 +#: include/class_CopyPasteHandler.inc:183 +#: include/class_CopyPasteHandler.inc:192 +#: include/class_CopyPasteHandler.inc:268 +#, fuzzy, php-format +msgid "Copy and paste failed!" +msgstr "拷贝和粘贴精灵" -#: setup/setup_ldap.tpl:86 -msgid "Automatically append LDAP base to admin DN" -msgstr "" +#: include/class_CopyPasteHandler.inc:118 +#: include/class_CopyPasteHandler.inc:183 +#, fuzzy, php-format +msgid "Cannot set permission for '%s'" +msgstr "无法创建文件 '%s'。" -#: setup/setup_ldap.tpl:93 -msgid "Admin password" -msgstr "管理员口令" +#: include/class_CopyPasteHandler.inc:158 +#, php-format +msgid "'%s' is no vaild LDAP object" +msgstr "" -#: setup/setup_ldap.tpl:101 +#: include/class_CopyPasteHandler.inc:159 +#: include/class_CopyPasteHandler.inc:269 include/class_ldap.inc:636 +#: include/class_ldap.inc:684 include/class_log.inc:88 +#: include/functions.inc:467 include/functions.inc:612 +#: include/functions.inc:698 include/functions.inc:1085 +#: include/functions.inc:1902 include/functions.inc:1936 +#: include/functions.inc:1956 include/class_acl.inc:879 #, fuzzy -msgid "Schema based settings" -msgstr "Samba 设置" +msgid "Internal error" +msgstr "终端服务器" -#: setup/setup_ldap.tpl:105 -msgid "Use rfc2307bis compliant groups" +#: include/class_CopyPasteHandler.inc:175 +#, fuzzy, php-format +msgid "No write permission in '%s'" +msgstr "无法创建文件 '%s'。" + +#: include/class_CopyPasteHandler.inc:386 +#, php-format +msgid "These objects will be pasted: %s" msgstr "" -#: setup/setup_ldap.tpl:117 -#, fuzzy -msgid "Current status" -msgstr "当前版本" +#: include/class_CopyPasteHandler.inc:410 +#, php-format +msgid "This object will be pasted: %s" +msgstr "" -#: setup/class_setupStep_Config1.inc:74 setup/class_setupStep_Config1.inc:75 +#: include/class_CopyPasteHandler.inc:508 #, fuzzy -msgid "GOsa settings 1/3" -msgstr "用户设置" +msgid "Cannot paste" +msgstr "无法粘贴" -#: setup/class_setupStep_Config1.inc:76 -#, fuzzy -msgid "GOsa generic settings" -msgstr "用户设置" +#: include/utils/class_msgPool.inc:15 +#, fuzzy, php-format +msgid "Select to list objects of type '%s'." +msgstr "选择要添加的对象" -#: setup/class_setupStep_Config1.inc:118 +#: include/utils/class_msgPool.inc:17 #, fuzzy, php-format -msgid "The specified value for '%s' must be a numeric value" -msgstr "指定 '%s' 的值必须是数字类型。" +msgid "Select to list objects containig '%s'." +msgstr "选择查看包含用户的组" + +#: include/utils/class_msgPool.inc:19 +#, fuzzy, php-format +msgid "Select to list objects that have '%s' enabled" +msgstr "选择要添加的对象" + +#: include/utils/class_msgPool.inc:33 +msgid "This object will be deleted!" +msgstr "" + +#: include/utils/class_msgPool.inc:35 +#, php-format +msgid "This '%s' object will be deleted!" +msgstr "" + +#: include/utils/class_msgPool.inc:40 +#, php-format +msgid "This object will be deleted: %s" +msgstr "" -#: setup/class_setupStep_Config1.inc:118 setup/setup_config1.tpl:97 -msgid "GID / UID min id" +#: include/utils/class_msgPool.inc:42 +#, php-format +msgid "This '%s' object will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config1.inc:122 setup/class_setupStep_Config1.inc:126 +#: include/utils/class_msgPool.inc:47 +msgid "This object will be deleted:" +msgstr "" + +#: include/utils/class_msgPool.inc:49 #, php-format -msgid "Don't add a trailing comma to '%s'." +msgid "This '%s' object will be deleted:" msgstr "" -#: setup/class_setupStep_Config1.inc:122 -msgid "People storage ou" +#: include/utils/class_msgPool.inc:53 +#, php-format +msgid "These objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config1.inc:126 -msgid "Group storage ou" +#: include/utils/class_msgPool.inc:55 +#, php-format +msgid "These '%s' objects will be deleted: %s" msgstr "" -#: setup/class_setupStep_Config1.inc:130 +#: include/utils/class_msgPool.inc:63 #, fuzzy -msgid "Uid base must be numeric" -msgstr "超时必须填数字" +msgid "You have no permission to delete this object!" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Config1.inc:134 +#: include/utils/class_msgPool.inc:67 include/utils/class_msgPool.inc:71 #, fuzzy -msgid "The given password minimum length is not numeric." -msgstr "Sieve 端口应为数字。" +msgid "You have no permission to delete the object:" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Config1.inc:137 +#: include/utils/class_msgPool.inc:74 #, fuzzy -msgid "The given password differ value is not numeric." -msgstr "Sieve 端口应为数字。" +msgid "You have no permission to delete these objects:" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Config2.inc:86 setup/class_setupStep_Config2.inc:87 +#: include/utils/class_msgPool.inc:81 #, fuzzy -msgid "GOsa settings 2/3" -msgstr "用户设置" +msgid "You have no permission to create this object!" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Config2.inc:88 +#: include/utils/class_msgPool.inc:85 include/utils/class_msgPool.inc:89 #, fuzzy -msgid "Customize special parameters" -msgstr "检查参数" - -#: setup/setup_license.tpl:8 -msgid "I have read the license and accept it" -msgstr "" +msgid "You have no permission to create the object:" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Migrate.inc:106 setup/class_setupStep_Migrate.inc:107 +#: include/utils/class_msgPool.inc:92 #, fuzzy -msgid "LDAP inspection" -msgstr "PHP 安装检查" - -#: setup/class_setupStep_Migrate.inc:108 -msgid "Analyze your current LDAP for GOsa compatibility" -msgstr "" +msgid "You have no permission to create these objects:" +msgstr "您无权删除这个部门。" -#: setup/class_setupStep_Migrate.inc:114 +#: include/utils/class_msgPool.inc:99 #, fuzzy -msgid "Checking for root object" -msgstr "检查 iconv 支持" - -#: setup/class_setupStep_Migrate.inc:120 -msgid "Checking permissions on LDAP database" -msgstr "" +msgid "You have no permission to modify this object!" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:126 +#: include/utils/class_msgPool.inc:103 include/utils/class_msgPool.inc:107 #, fuzzy -msgid "Checking for invisible departments" -msgstr "检查 iconv 支持" +msgid "You have no permission to modify the object:" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:131 +#: include/utils/class_msgPool.inc:110 #, fuzzy -msgid "Checking for invisible users" -msgstr "检查 iconv 支持" +msgid "You have no permission to modify these objects:" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:137 +#: include/utils/class_msgPool.inc:117 #, fuzzy -msgid "Checking for super administrator" -msgstr "检查一些附加程序" +msgid "You have no permission to view this object!" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:143 +#: include/utils/class_msgPool.inc:121 include/utils/class_msgPool.inc:125 #, fuzzy -msgid "Checking for users outside the people tree" -msgstr "检查 cups 模块" +msgid "You have no permission to view the object:" +msgstr "您无权在此 'Base' 下创建一个电话" -#: setup/class_setupStep_Migrate.inc:149 +#: include/utils/class_msgPool.inc:128 #, fuzzy -msgid "Checking for groups outside the groups tree" -msgstr "检查 cups 模块" - -#: setup/class_setupStep_Migrate.inc:156 -msgid "Checking for windows workstations outside the winstation tree" -msgstr "" +msgid "You have no permission to view these objects:" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:162 +#: include/utils/class_msgPool.inc:135 #, fuzzy -msgid "Checking for duplicated UID numbers" -msgstr "检查函数 %s" +msgid "You have no permission to move this object!" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:168 +#: include/utils/class_msgPool.inc:139 include/utils/class_msgPool.inc:143 #, fuzzy -msgid "Checking for duplicate GID numbers" -msgstr "检查函数 %s" +msgid "You have no permission to move the object:" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:194 setup/class_setupStep_Migrate.inc:246 -#: setup/class_setupStep_Migrate.inc:311 setup/class_setupStep_Migrate.inc:375 -#: setup/class_setupStep_Migrate.inc:446 setup/class_setupStep_Migrate.inc:523 -#: setup/class_setupStep_Migrate.inc:608 setup/class_setupStep_Migrate.inc:749 -#: setup/class_setupStep_Migrate.inc:838 +#: include/utils/class_msgPool.inc:146 #, fuzzy -msgid "LDAP query failed" -msgstr "Mysql 查询失败。" +msgid "You have no permission to move these objects:" +msgstr "您无权删除这个黑名单。" -#: setup/class_setupStep_Migrate.inc:195 setup/class_setupStep_Migrate.inc:247 -#: setup/class_setupStep_Migrate.inc:312 setup/class_setupStep_Migrate.inc:376 -#: setup/class_setupStep_Migrate.inc:447 setup/class_setupStep_Migrate.inc:524 -#: setup/class_setupStep_Migrate.inc:609 setup/class_setupStep_Migrate.inc:750 -#: setup/class_setupStep_Migrate.inc:839 -msgid "Possibly the 'root object' is missing." -msgstr "" +#: include/utils/class_msgPool.inc:156 include/utils/class_msgPool.inc:168 +#: include/utils/class_msgPool.inc:186 +#, fuzzy +msgid "Connection information" +msgstr "个人信息" -#: setup/class_setupStep_Migrate.inc:217 +#: include/utils/class_msgPool.inc:158 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'uidNumber'." -msgstr "发现记录类型 '%s' 有重复。" +msgid "Cannot connect to %s database!" +msgstr "无法连接到数据库!" -#: setup/class_setupStep_Migrate.inc:269 +#: include/utils/class_msgPool.inc:170 #, fuzzy, php-format -msgid "Found %s duplicate values for attribute 'gidNumber'." -msgstr "发现记录类型 '%s' 有重复。" - -#: setup/class_setupStep_Migrate.inc:327 setup/class_setupStep_Migrate.inc:538 -#: setup/class_setupStep_Migrate.inc:551 setup/class_setupStep_Migrate.inc:912 -#: setup/class_setupStep_Migrate.inc:1650 -#: setup/class_setupStep_Migrate.inc:1663 -msgid "Failed" -msgstr "失败" - -#: setup/class_setupStep_Migrate.inc:329 -#, php-format -msgid "" -"Found %s winstations outside the predefined winstation department ou '%s'." -msgstr "" - -#: setup/class_setupStep_Migrate.inc:330 setup/class_setupStep_Migrate.inc:619 -#: setup/class_setupStep_Migrate.inc:759 -#, fuzzy -msgid "Migrate" -msgstr "创建" - -#: setup/class_setupStep_Migrate.inc:402 -#, php-format -msgid "Found %s groups outside the configured tree '%s'." -msgstr "" - -#: setup/class_setupStep_Migrate.inc:403 setup/class_setupStep_Migrate.inc:480 -#, fuzzy -msgid "Move" -msgstr "模式" - -#: setup/class_setupStep_Migrate.inc:479 -#, php-format -msgid "Found %s user(s) outside the configured tree '%s'." -msgstr "" - -#: setup/class_setupStep_Migrate.inc:540 setup/class_setupStep_Migrate.inc:553 -#, php-format -msgid "" -"The specified user '%s' does not have full access to your ldap database." -msgstr "" +msgid "Cannot select %s database!" +msgstr "无法选择数据库!" -#: setup/class_setupStep_Migrate.inc:617 +#: include/utils/class_msgPool.inc:176 #, php-format -msgid "Found %s user(s) that will not be visible in GOsa." +msgid "No %s server defined!" msgstr "" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 -#: setup/class_setupStep_Migrate.inc:979 -#, fuzzy -msgid "Migration error" -msgstr "创建" +#: include/utils/class_msgPool.inc:188 +#, fuzzy, php-format +msgid "Cannot query %s database!" +msgstr "无法选择数据库!" -#: setup/class_setupStep_Migrate.inc:667 setup/class_setupStep_Migrate.inc:810 +#: include/utils/class_msgPool.inc:194 #, fuzzy, php-format -msgid "Cannot migrate department '%s':" -msgstr "转到根部门" +msgid "The field '%s' contains a reserved keyword!" +msgstr "“传真”字段包含一个无效电话号码" -#: setup/class_setupStep_Migrate.inc:758 -#, php-format -msgid "Found %s department(s) that will not be visible in GOsa." -msgstr "" +#: include/utils/class_msgPool.inc:200 +#, fuzzy, php-format +msgid "Command specified as %s hook for plugin '%s' does not exist!" +msgstr "命令 '%s',作为插件 '%s' 的 CHECK hook 好像并不存在。" -#: setup/class_setupStep_Migrate.inc:913 -msgid "There is no GOsa administrator account inside your LDAP." -msgstr "" +#: include/utils/class_msgPool.inc:207 +#, fuzzy, php-format +msgid "'%s' command is invalid!" +msgstr "指定的 branch 名称无效。" -#: setup/class_setupStep_Migrate.inc:979 +#: include/utils/class_msgPool.inc:209 #, php-format -msgid "Cannot add ACL for user '%s':" +msgid "'%s' command (%s) for plugin %s is invalid!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1004 -#, fuzzy -msgid "Password error" -msgstr "口令过期截止日" - -#: setup/class_setupStep_Migrate.inc:1004 -#, fuzzy -msgid "Provided passwords do not match!" -msgstr "输入的新口令和重复口令不匹配!" - -#: setup/class_setupStep_Migrate.inc:1009 -#, fuzzy -msgid "Input error" -msgstr "PHP 错误" - -#: setup/class_setupStep_Migrate.inc:1009 -#, fuzzy -msgid "Specify a valid user ID!" -msgstr "请输入一个有效的用户名!" +#: include/utils/class_msgPool.inc:211 +#, php-format +msgid "'%s' command for plugin %s is invalid!" +msgstr "" -#: setup/class_setupStep_Migrate.inc:1051 +#: include/utils/class_msgPool.inc:213 #, fuzzy, php-format -msgid "Adding an administrative user failed: object '%s' already exists!" -msgstr "为对象 '%s' 设置动作状态(FAIstate) 失败,值为 '%s'。" +msgid "'%s' command (%s) is invalid!" +msgstr "指定的 branch 名称无效。" -#: setup/class_setupStep_Migrate.inc:1090 -#: setup/class_setupStep_Migrate.inc:1139 -#: setup/class_setupStep_Migrate.inc:1188 -#, fuzzy -msgid "Cannot move users to the requested department!" -msgstr "选择放置部门的子树" +#: include/utils/class_msgPool.inc:221 +#, fuzzy, php-format +msgid "Cannot execute '%s' command!" +msgstr "无法选择数据库!" -#: setup/class_setupStep_Migrate.inc:1100 -msgid "Winstation will be moved from" +#: include/utils/class_msgPool.inc:223 +#, php-format +msgid "Cannot execute '%s' command (%s) for plugin %s!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1111 -#: setup/class_setupStep_Migrate.inc:1160 -msgid "Updating following references too" +#: include/utils/class_msgPool.inc:225 +#, php-format +msgid "Cannot execute '%s' command for plugin %s!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1150 -msgid "Group will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:227 +#, fuzzy, php-format +msgid "Cannot execute '%s' command (%s)!" +msgstr "无法选择数据库!" -#: setup/class_setupStep_Migrate.inc:1198 -msgid "User will be moved from" -msgstr "" +#: include/utils/class_msgPool.inc:235 +#, fuzzy, php-format +msgid "Value for '%s' is too large!" +msgstr "'UID' 赋值太小。" -#: setup/class_setupStep_Migrate.inc:1208 -msgid "The following references will be updated" +#: include/utils/class_msgPool.inc:237 +#, php-format +msgid "'%s' must be smaller than %d!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1651 -msgid "" -"The LDAP root object is missing. It is required to use your LDAP service." -msgstr "" +#: include/utils/class_msgPool.inc:245 +#, fuzzy, php-format +msgid "Value for '%s' is too small!" +msgstr "'UID' 赋值太小。" -#: setup/class_setupStep_Migrate.inc:1652 -#: setup/class_setupStep_Migrate.inc:1665 -msgid "Try to create root object" +#: include/utils/class_msgPool.inc:247 +#, php-format +msgid "'%s' must be %d or above!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1664 -msgid "Root object couldn't be created, you should try it on your own." +#: include/utils/class_msgPool.inc:254 +#, php-format +msgid "'%s' depends on '%s' - please provide both values!" msgstr "" -#: setup/class_setupStep_Migrate.inc:1955 +#: include/utils/class_msgPool.inc:260 #, fuzzy, php-format -msgid "Copy '%s' to '%s' failed:" -msgstr "移动 '%s' 到 '%s'" +msgid "There is already an entry with this '%s' attribute in the system!" +msgstr "数据库中已经有同样登录名的用户。" -#: setup/class_setupStep_Config3.inc:77 setup/class_setupStep_Config3.inc:78 -#, fuzzy -msgid "GOsa settings 3/3" -msgstr "用户设置" +#: include/utils/class_msgPool.inc:266 +#, fuzzy, php-format +msgid "The required field '%s' is empty!" +msgstr "需要的“姓名”字段没有设置" -#: setup/class_setupStep_Config3.inc:79 -msgid "Tweak some GOsa core behaviour" +#: include/utils/class_msgPool.inc:274 +msgid "Example" msgstr "" -#: setup/class_setupStep_Config3.inc:198 -#, fuzzy -msgid "Session lifetime must be a numeric value!" -msgstr "需要的分值必须是数字。" +#: include/utils/class_msgPool.inc:291 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters" +msgstr "“姓名”字段包含无效字符。" -#: setup/class_setupStep_Config3.inc:202 -#, fuzzy -msgid "Maximum LDAP query time must be a numeric value!" -msgstr "需要的分值必须是数字。" +#: include/utils/class_msgPool.inc:292 +#, php-format +msgid "'%s' is not allowed:" +msgstr "" -#: setup/setup_language.tpl:3 -#, fuzzy -msgid "Please select the preferred language" -msgstr "请选择一个打印机或者取消。" +#: include/utils/class_msgPool.inc:292 +#, fuzzy, php-format +msgid "'%s' are not allowed!" +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 "" +#: include/utils/class_msgPool.inc:295 +#, fuzzy, php-format +msgid "The Field '%s' contains invalid characters!" +msgstr "“姓名”字段包含无效字符。" -#: setup/setup_language.tpl:9 -#, fuzzy -msgid "Please select your preferred language here" -msgstr "首选语种" +#: include/utils/class_msgPool.inc:302 +#, fuzzy, php-format +msgid "Missing %s PHP extension!" +msgstr "删除打印机扩展" -#: setup/setup_feedback.tpl:6 -msgid "Subscribe to the gosa-announce mailinglist" -msgstr "" +#: include/utils/class_msgPool.inc:326 include/class_MultiSelectWindow.inc:134 +#: ihtml/themes/default/copyPasteDialog.tpl:19 +#, php-format +msgid "Save" +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 "" +#: include/utils/class_msgPool.inc:332 +#, php-format +msgid "Add" +msgstr "添加" -#: setup/setup_feedback.tpl:30 -msgid "Mail address" -msgstr "邮件地址" +#: include/utils/class_msgPool.inc:332 +#, fuzzy, php-format +msgid "Add %s" +msgstr "添加" -#: setup/setup_feedback.tpl:41 -msgid "Send feedback to the GOsa project team" -msgstr "" +#: include/utils/class_msgPool.inc:338 +#, fuzzy, php-format +msgid "Delete %s" +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 "" +#: include/utils/class_msgPool.inc:344 +#, fuzzy, php-format +msgid "Set %s" +msgstr "设置" -#: setup/setup_feedback.tpl:50 -msgid "Did the setup procedure help you to get started?" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit..." +msgstr "编辑" -#: setup/setup_feedback.tpl:60 -msgid "If not, what problems did you encounter" -msgstr "" +#: include/utils/class_msgPool.inc:350 +#, fuzzy, php-format +msgid "Edit %s..." +msgstr "编辑用户" -#: setup/setup_feedback.tpl:68 -msgid "Is this the first time you use GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:356 +msgid "Back" +msgstr "返回" -#: setup/setup_feedback.tpl:74 -msgid "I use it since" -msgstr "" +#: include/utils/class_msgPool.inc:375 +#, fuzzy, php-format +msgid "This account has no valid %s extensions!" +msgstr "该账户没有有效的 Gosa 扩展。" -#: setup/setup_feedback.tpl:75 -msgid "Select the year since when you are using GOsa" -msgstr "" +#: include/utils/class_msgPool.inc:381 +#, fuzzy, php-format +msgid "" +"This account has %s settings enabled. You can disable them by clicking below." +msgstr "这个账户已经启用 posix 功能。要禁用请点击下面按钮。" -#: setup/setup_feedback.tpl:82 -msgid "What operating system / distribution do you use?" +#: include/utils/class_msgPool.inc:384 include/utils/class_msgPool.inc:391 +#, 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 / 环境变量账户。" -#: setup/setup_feedback.tpl:90 -msgid "What web server do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:400 +#, fuzzy, php-format +msgid "" +"This account has %s settings disabled. You can enable them by clicking below." +msgstr "这个账户已经启用 posix 功能。要启用请点击下面按钮。" -#: setup/setup_feedback.tpl:98 -msgid "What PHP version do you use?" +#: include/utils/class_msgPool.inc:403 +#, 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 / 环境变量账户。" -#: setup/setup_feedback.tpl:106 -msgid "LDAP" +#: include/utils/class_msgPool.inc:410 +#, 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 / 环境变量账户。" -#: setup/setup_feedback.tpl:110 -msgid "What kind of LDAP server(s) do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:418 +#, fuzzy, php-format +msgid "Add %s settings" +msgstr "应用程序设置" -#: setup/setup_feedback.tpl:116 -msgid "How many objects are in your LDAP?" -msgstr "" +#: include/utils/class_msgPool.inc:424 +#, fuzzy, php-format +msgid "Remove %s settings" +msgstr "Posix 设置" + +#: include/utils/class_msgPool.inc:430 +msgid "Click the 'Edit' button below to change informations in this dialog" +msgstr "点击下面的“编辑”按钮修改该对话框内的信息" + +#: include/utils/class_msgPool.inc:436 +msgid "January" +msgstr "一月" -#: setup/setup_feedback.tpl:123 -#, fuzzy -msgid "Features" -msgstr "功能" +#: include/utils/class_msgPool.inc:436 +msgid "February" +msgstr "二月" -#: setup/setup_feedback.tpl:126 -msgid "What features of GOsa do you use?" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "March" +msgstr "三月" -#: setup/setup_feedback.tpl:136 -msgid "What features do you want to see in future versions of GOsa?" -msgstr "" +#: include/utils/class_msgPool.inc:436 +msgid "April" +msgstr "四月" -#: setup/setup_feedback.tpl:143 -msgid "Send feedback" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "May" +msgstr "五月" -#: setup/class_setupStep_Welcome.inc:38 -#, fuzzy -msgid "Welcome" -msgstr "欢迎 %s!" +#: include/utils/class_msgPool.inc:437 +msgid "June" +msgstr "六月" -#: setup/class_setupStep_Welcome.inc:39 -#, fuzzy -msgid "The welcome message" -msgstr "解除挂起的邮件" +#: include/utils/class_msgPool.inc:437 +msgid "July" +msgstr "七月" -#: setup/class_setupStep_Welcome.inc:40 -#, fuzzy -msgid "Welcome to GOsa setup wizard" -msgstr "欢迎进入 Gosa 安装程序!" +#: include/utils/class_msgPool.inc:437 +msgid "August" +msgstr "八月" -#: setup/setup_config1.tpl:2 -msgid "Look and feel" -msgstr "" +#: include/utils/class_msgPool.inc:437 +msgid "September" +msgstr "九月" -#: setup/setup_config1.tpl:6 -#, fuzzy -msgid "Theme" -msgstr "模板" +#: include/utils/class_msgPool.inc:438 +msgid "October" +msgstr "十月" -#: setup/setup_config1.tpl:15 -#, fuzzy -msgid "Apache" -msgstr "缓存" +#: include/utils/class_msgPool.inc:438 +msgid "November" +msgstr "十一月" -#: setup/setup_config1.tpl:19 -msgid "Compress output send to browser" -msgstr "" +#: include/utils/class_msgPool.inc:438 +msgid "December" +msgstr "十二月" -#: setup/setup_config1.tpl:27 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "People and group storage" -msgstr "People dn attribute" +msgid "Sunday" +msgstr "姓" -#: setup/setup_config1.tpl:30 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "People DN attribute" -msgstr "People dn attribute" +msgid "Monday" +msgstr "月" -#: setup/setup_config1.tpl:41 -msgid "People storage subtree" +#: include/utils/class_msgPool.inc:444 +msgid "Tuesday" msgstr "" -#: setup/setup_config1.tpl:50 +#: include/utils/class_msgPool.inc:444 #, fuzzy -msgid "Group storage subtree" -msgstr "忽略子树" +msgid "Wednesday" +msgstr "星期三" -#: setup/setup_config1.tpl:59 -msgid "Include personal title in user DN" +#: include/utils/class_msgPool.inc:444 +msgid "Thursday" msgstr "" -#: setup/setup_config1.tpl:70 -msgid "Relaxed naming policies" +#: include/utils/class_msgPool.inc:444 +msgid "Friday" msgstr "" -#: setup/setup_config1.tpl:81 -#, fuzzy -msgid "Automatic UIDs" -msgstr "自动" +#: include/utils/class_msgPool.inc:444 +msgid "Saturday" +msgstr "" -#: setup/setup_config1.tpl:113 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Number base for people/groups" -msgstr "用户/组起始 ID" +msgid "read operation" +msgstr "邮件选项" -#: setup/setup_config1.tpl:121 -msgid "Hook for number base" +#: include/utils/class_msgPool.inc:451 +msgid "add operation" msgstr "" -#: setup/setup_config1.tpl:140 +#: include/utils/class_msgPool.inc:451 #, fuzzy -msgid "Password encryption algorithm" -msgstr "加密算法" +msgid "modify operation" +msgstr "个人信息" -#: setup/setup_config1.tpl:151 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Password restrictions" -msgstr "口令过期截止日" - -#: setup/setup_config1.tpl:158 setup/setup_config1.tpl:162 -msgid "Password minimum length" -msgstr "" +msgid "delete operation" +msgstr "选择查看工作站" -#: setup/setup_config1.tpl:169 setup/setup_config1.tpl:173 -msgid "Different characters from old password" -msgstr "" +#: include/utils/class_msgPool.inc:452 +#, fuzzy +msgid "search operation" +msgstr "账号过期于" -#: setup/setup_config1.tpl:182 +#: include/utils/class_msgPool.inc:452 #, fuzzy -msgid "Password change hook" -msgstr "不允许修改口令" +msgid "authentication" +msgstr "Nagios 鉴权" -#: setup/setup_config1.tpl:198 -msgid "Use SASL for kerberos" -msgstr "" +#: include/utils/class_msgPool.inc:455 +#, fuzzy, php-format +msgid "LDAP %s failed!" +msgstr "Mysql 查询失败。" -#: setup/setup_config1.tpl:209 +#: include/utils/class_msgPool.inc:457 #, fuzzy -msgid "Use account expiration" -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 支持好几种口令加密算法。通常可以通过用户模板调整算法,但是在这里您可以定" -"义一个缺省方法。" +msgid "LDAP operation failed!" +msgstr "Mysql 查询失败。" -#: setup/setup_config1.tpl:222 +#: include/utils/class_msgPool.inc:472 #, 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." +msgid "Upload failed!" +msgstr "用户登录失败。LDAP 服务器返回 '%s'。" + +#: include/utils/class_msgPool.inc:475 +#, fuzzy, php-format +msgid "Upload failed: %s" +msgstr "Logging DB 用户" + +#: include/utils/class_msgPool.inc:482 +msgid "Communication failure with the infrastructure service!" msgstr "" -"GOsa 总是作为 LDAP 管理员,并且管理内部权限。这是一个临时方案直到 OpenLDAP 目" -"录 ACI 被完全实现。为了让其实现,我们需要管理员 DN 和正确的口令。" -#: 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." +#: include/utils/class_msgPool.inc:484 +#, php-format +msgid "Communication failure with the infrastructure service: %s" msgstr "" -"有的基本的 LDAP 参数是可调的,并影响位置Gosa 保存用户和组的地方。包括账号创建" -"的方式。点击下面的值如果它们不符合您的需要。" -#: 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." +#: include/utils/class_msgPool.inc:491 include/utils/class_msgPool.inc:494 +#, php-format +msgid "This '%s' is still in use by this object: %s" msgstr "" -"GOsa 通过模组支持几种邮件方法。这些方法提供用户邮箱的界面以及管理用户空间。您" -"可以选择选择 dummy 插件以保持您的邮件设置不被更改。" -#: setup/setup_config2.tpl:2 -msgid "Samba settings" -msgstr "Samba 设置" +#: include/utils/class_msgPool.inc:497 +#, fuzzy, php-format +msgid "This '%s' is still in use." +msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" -#: setup/setup_config2.tpl:6 -msgid "Samba hash generator" +#: include/utils/class_msgPool.inc:499 +#, fuzzy, php-format +msgid "This '%s' is still in use by these objects: %s" +msgstr "这个共享不能被删除,因为仍然被 %d 个用户使用:" + +#: include/utils/class_msgPool.inc:505 +#, php-format +msgid "File '%s' does not exist!" msgstr "" -#: setup/setup_config2.tpl:31 -#, fuzzy -msgid "RID base" -msgstr "数据库" +#: include/utils/class_msgPool.inc:511 +#, fuzzy, php-format +msgid "Cannot open file '%s' for reading!" +msgstr "无法打开文件 '%s'。" -#: setup/setup_config2.tpl:46 -#, fuzzy -msgid "Workstation container" -msgstr "工作站名称" +#: include/utils/class_msgPool.inc:517 +#, fuzzy, php-format +msgid "Cannot open file '%s' for writing!" +msgstr "无法打开文件 '%s'。" -#: setup/setup_config2.tpl:61 -msgid "Samba SID mapping" -msgstr "" +#: include/utils/class_msgPool.inc:523 +#, fuzzy, php-format +msgid "Cannot delete file '%s'!" +msgstr "无法打开文件 '%s'。" -#: setup/setup_config2.tpl:71 -#, fuzzy -msgid "Timezone" -msgstr "用户时区" +#: include/utils/class_msgPool.inc:529 +#, fuzzy, php-format +msgid "Cannot create folder '%s'!" +msgstr "转到根部门" -#: setup/setup_config2.tpl:74 -#, fuzzy -msgid "Please choose your preferred timezone here" -msgstr "首选语种" +#: include/utils/class_msgPool.inc:535 +#, fuzzy, php-format +msgid "Cannot delete folder '%s'!" +msgstr "无法打开文件 '%s'。" -#: setup/setup_config2.tpl:96 -#, fuzzy -msgid "Additional GOsa settings" -msgstr "应用程序设置" +#: include/utils/class_msgPool.inc:541 +#, fuzzy, php-format +msgid "Checking for %s support" +msgstr "检查 iconv 支持" -#: setup/setup_config2.tpl:100 -msgid "Enable Copy & Paste" +#: include/utils/class_msgPool.inc:547 +#, php-format +msgid "Install and activate the %s PHP module." msgstr "" -#: setup/setup_config2.tpl:112 -#, fuzzy -msgid "Enable DNS extension" -msgstr "删除打印机扩展" - -#: setup/setup_config2.tpl:124 -#, fuzzy -msgid "Enable DHCP extension" -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 "" -#: setup/setup_config2.tpl:136 +#: include/class_msg_dialog.inc:124 #, fuzzy -msgid "Enable mime type management" -msgstr "系统管理" +msgid "Please fix the above error and reload the page." +msgstr "请看一下 GOsa 日志文件。" -#: setup/setup_config2.tpl:148 -#, fuzzy -msgid "Enable FAI release management" -msgstr "Asterisk 管理" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_baseSelectDialog.inc:47 +msgid "Go to root department" +msgstr "转到根部门" -#: setup/setup_config2.tpl:160 -#, fuzzy -msgid "Enable user netatalk plugin" -msgstr "管理 netatalk 账号" +#: include/class_MultiSelectWindow.inc:240 +#: include/class_MultiSelectWindow.inc:242 +#: include/class_baseSelectDialog.inc:47 +msgid "Root" +msgstr "根" -#: setup/setup_config2.tpl:171 -#, fuzzy -msgid "Government mode" -msgstr "部门名称" +#: include/class_MultiSelectWindow.inc:248 +#: include/class_baseSelectDialog.inc:49 +msgid "Go up one department" +msgstr "向上跳转一个部门" -#: setup/setup_config2.tpl:182 -#, fuzzy -msgid "Logging options" -msgstr "未知" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_baseSelectDialog.inc:51 +msgid "Go to users department" +msgstr "转到用户部门" -#: setup/setup_config2.tpl:186 -#, fuzzy -msgid "Syslog" -msgstr "系统日志" +#: include/class_MultiSelectWindow.inc:256 +#: include/class_MultiSelectWindow.inc:258 +#: include/class_baseSelectDialog.inc:51 +msgid "Home" +msgstr "" -#: setup/setup_config2.tpl:188 setup/class_setupStep_Checks.inc:120 -#, fuzzy -msgid "MySQL" -msgstr "LDAP 错误:" +#: include/class_MultiSelectWindow.inc:263 +#: include/class_baseSelectDialog.inc:52 +msgid "Reload list" +msgstr "重新加载列表" -#: setup/setup_config2.tpl:193 -msgid "Mail settings" -msgstr "邮件选项" +#: include/class_MultiSelectWindow.inc:530 +#, php-format +msgid "Inconsistent DN encoding detected: '%s'" +msgstr "" -#: setup/setup_config2.tpl:197 -msgid "Mail method" -msgstr "邮件方法" +#: include/class_socketClient.inc:60 +msgid "The mcrypt module was not found. Please install php5-mcrypt." +msgstr "" -#: setup/setup_config2.tpl:213 -msgid "Account identification attribute" +#: include/class_socketClient.inc:108 +#, php-format +msgid "Socket connection to host '%s:%s' failed: %s" msgstr "" -#: setup/setup_config2.tpl:227 -#, fuzzy -msgid "Vacation templates" -msgstr "工作站模板" +#: include/class_socketClient.inc:191 +#, php-format +msgid "Socket timeout of %s seconds reached." +msgstr "" -#: setup/setup_config2.tpl:243 -msgid "Use Cyrus UNIX style" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +msgid "Performance warning" msgstr "" -#: setup/setup_config2.tpl:253 -msgid "Snapshots / Undo" +#: include/class_ldap.inc:232 include/class_ldap.inc:265 +#, php-format +msgid "LDAP performance is poor: last query took about %.2fs!" msgstr "" -#: setup/setup_config2.tpl:262 setup/setup_config2.tpl:307 -msgid "Enable snapshots" +#: include/class_ldap.inc:636 +#, php-format +msgid "" +"Cannot automatically create subtrees with RDN '%s': no object class found!" msgstr "" -#: setup/setup_config2.tpl:268 setup/setup_config2.tpl:313 -msgid "Snapshot base" +#: include/class_ldap.inc:684 +#, php-format +msgid "Cannot automatically create subtrees with RDN '%s': not supported" msgstr "" -#: setup/setup_config3.tpl:2 -#, fuzzy -msgid "GOsa core settings" -msgstr "用户设置" +#: include/class_ldap.inc:768 +#, php-format +msgid "while operating on '%s' using LDAP server '%s'" +msgstr "当操作 '%s' 使用 LDAP 服务器 '%s' 时" -#: setup/setup_config3.tpl:6 -#, fuzzy -msgid "Disable primary group filter" -msgstr "显示用户组" +#: include/class_ldap.inc:770 +#, php-format +msgid "while operating on LDAP server %s" +msgstr "当操作 LDAP 服务器 '%s' 时" -#: setup/setup_config3.tpl:18 +#: include/class_ldap.inc:992 +#, 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:1021 +#, php-format +msgid "Error while importing dn: '%s', please check your LDIF from line %s on!" +msgstr "导入 dn: '%s' 时错误,请从行 %s 开始检查您的 LDIF!" + +#: include/class_config.inc:107 +#, php-format +msgid "XML error in gosa.conf: %s at line %d" +msgstr "XML 出错于 gosa.conf: %s ,行 %d" + +#: include/class_config.inc:242 #, fuzzy -msgid "Display summary in listings" -msgstr "显示匹配的宏" +msgid "Cannot bind to LDAP. Please contact the system administrator." +msgstr "无法绑定 LDAP。请联系系统管理员。" -#: setup/setup_config3.tpl:30 +#: include/class_config.inc:574 #, fuzzy -msgid "Honour administrative units" -msgstr "组管理" +msgid "SID and/or RIDBASE missing in the configuration!" +msgstr "您的配置文件缺少 SID 和/或 RIDBASE!" -#: setup/setup_config3.tpl:42 +#: include/class_config.inc:878 #, fuzzy -msgid "Smarty compile directory" -msgstr "用户主目录" +msgid "Configuration" +msgstr "配置文件" -#: setup/setup_config3.tpl:51 -msgid "SNMP community" +#: include/class_config.inc:878 +msgid "" +"The configuration file you are using seems to be outdated. Please move the " +"GOsa configuration file away to run the GOsa setup again." msgstr "" -#: setup/setup_config3.tpl:60 -#, fuzzy -msgid "Path for PPD storage" -msgstr "口令存储" +#: include/password-methods/class_password-methods.inc:145 +msgid "Cannot find a suitable password method for the current hash!" +msgstr "" -#: setup/setup_config3.tpl:77 -#, fuzzy -msgid "Path for kiosk profile storage" -msgstr "Kiosk profile 设置" +#: include/class_gosaSupportDaemon.inc:82 +msgid "GOsa support daemon" +msgstr "" -#: setup/setup_config3.tpl:96 +#: include/class_gosaSupportDaemon.inc:851 #, fuzzy -msgid "Override sudo role ou" -msgstr "! 未知 id" +msgid "Cannot not parse XML!" +msgstr "太多用户,无法分配一个可用的 ID!" -#: setup/setup_config3.tpl:115 +#: include/class_gosaSupportDaemon.inc:1177 +#, fuzzy, php-format +msgid "Cannot send abort event for entry %s!" +msgstr "无法创建文件 '%s'。" + +#: include/class_gosaSupportDaemon.inc:1197 +#, fuzzy, php-format +msgid "Cannot remove entry %s!" +msgstr "未知 FAIstate %s" + +#: include/class_multi_plug.inc:362 #, fuzzy -msgid "Mail queue script" -msgstr "邮件队列" +msgid "You are currently editing mutliple entries." +msgstr "您无权删除这个部门。" -#: setup/setup_config3.tpl:134 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Notification script" -msgstr "主机通知周期" +msgid "Password reset" +msgstr "口令过期截止日" -#: setup/setup_config3.tpl:153 +#: include/class_multi_plug.inc:391 #, fuzzy -msgid "Enable edit locking" -msgstr "启用邮件扫描" +msgid "The user password was resetted, please set a new password value!" +msgstr "您的口令已经过期 !! 选择一个新口令" -#: setup/setup_config3.tpl:172 -msgid "Login and session" -msgstr "" +#: include/class_tabs.inc:238 +#, php-format +msgid "Delete process has been canceled by plugin '%s': %s" +msgstr "删除进程被插件 '%s' 取消: %s" + +#: include/class_tabs.inc:373 +msgid "References" +msgstr "参考" -#: setup/setup_config3.tpl:175 +#: include/class_baseSelectDialog.inc:44 #, fuzzy -msgid "Login attribute" -msgstr "电话属性" +msgid "Choose a base" +msgstr "选择一个位置" -#: setup/setup_config3.tpl:186 -msgid "Enforce register_globals to be deactivated" +#: include/class_baseSelectDialog.inc:55 +msgid "" +"Step in the prefered tree and click save to use the current subtree as base. " +"Or click the image at the end of each entry." msgstr "" -#: setup/setup_config3.tpl:198 +#: include/class_baseSelectDialog.inc:61 #, fuzzy -msgid "Enforce encrypted connections" -msgstr "封锁加密归档" +msgid "Use" +msgstr "用户" -#: setup/setup_config3.tpl:210 -#, fuzzy -msgid "Warn if session is not encrypted" -msgstr "会话不会被加密。" +#: include/class_baseSelectDialog.inc:66 +msgid "Action" +msgstr "行动" -#: setup/setup_config3.tpl:222 +#: include/class_baseSelectDialog.inc:72 #, fuzzy -msgid "Remember dialog filter settings" -msgstr "通用队列设置" +msgid "Filter entries with this syntax" +msgstr "用这个语法过滤条目" -#: setup/setup_config3.tpl:234 -#, fuzzy -msgid "Session lifetime" -msgstr "检测道会话冲突" +#: include/class_baseSelectDialog.inc:136 +#, fuzzy, php-format +msgid "Select this base" +msgstr "选择一个位置" -#: setup/setup_config3.tpl:243 -#, fuzzy -msgid "Debugging" -msgstr "启用 debug" +#: include/functions_helpviewer.inc:45 +#, php-format +msgid "XML error in guide.xml: %s at line %d" +msgstr "XML 出错于 guide.xml: %s ,行 %d" -#: setup/setup_config3.tpl:247 -#, fuzzy -msgid "Show PHP errors" -msgstr "PHP 错误" +#: include/functions_helpviewer.inc:88 +msgid "No help available for this plugin." +msgstr "此插件没有可用帮助信息。" -#: setup/setup_config3.tpl:259 -#, fuzzy -msgid "Maximum LDAP query time" -msgstr "最大文件大小" +#: include/functions_helpviewer.inc:97 html/helpviewer.php:199 +msgid "previous" +msgstr "上一个" -#: setup/setup_config3.tpl:277 -msgid "Log LDAP statistics" -msgstr "" +#: include/functions_helpviewer.inc:101 html/helpviewer.php:203 +msgid "next" +msgstr "下一个" -#: setup/setup_config3.tpl:289 -#, fuzzy -msgid "Debug level" -msgstr "日志级别" +#: include/functions_helpviewer.inc:389 +#, php-format +msgid "%s results for your search with the keyword %s" +msgstr "%s 结果当您查找关键字 %s" -#: setup/setup_config3.tpl:294 setup/setup_config3.tpl:297 -#, fuzzy -msgid "Disabled" -msgstr "禁用" +#: include/functions_helpviewer.inc:463 +#, php-format +msgid "%s%% hit rate in file %s" +msgstr "%s%% 点击率于文件 %s" -#: setup/setup_config3.tpl:295 setup/setup_config3.tpl:298 -#, fuzzy -msgid "Enabled" -msgstr "禁用" +#: include/php_setup.inc:95 +msgid "Generating this page caused the PHP interpreter to raise some errors!" +msgstr "生成这个页面导致 PHP 解析器发生一些错误!" -#: 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." +#: include/php_setup.inc:100 +msgid "Send bug report to the GOsa Team" msgstr "" -#: setup/setup_migrate.tpl:33 +#: include/php_setup.inc:100 #, fuzzy -msgid "Check again" -msgstr "检查" - -#: setup/setup_migrate.tpl:37 -msgid "Move windows workstations into a valid windows workstation department" -msgstr "" +msgid "Send bugreport" +msgstr "发送者" -#: setup/setup_migrate.tpl:39 -msgid "" -"This dialog allows you to move the displayed windows workstations into a " -"valid department" -msgstr "" +#: include/php_setup.inc:105 +msgid "Toggle information" +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 "" +#: include/php_setup.inc:115 +msgid "PHP error" +msgstr "PHP 错误" -#: setup/setup_migrate.tpl:67 -msgid "Move selected windows workstations into the following GOsa department" -msgstr "" +#: include/php_setup.inc:134 +msgid "class" +msgstr "类" -#: setup/setup_migrate.tpl:72 -#, fuzzy -msgid "Move selected workstations" -msgstr "选择查看工作站" +#: include/php_setup.inc:140 +msgid "function" +msgstr "功能" -#: setup/setup_migrate.tpl:73 -msgid "What will be done here" -msgstr "" +#: include/php_setup.inc:145 +msgid "static" +msgstr "静态" -#: setup/setup_migrate.tpl:85 -msgid "Move groups into configured group tree" -msgstr "" +#: include/php_setup.inc:149 +msgid "method" +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 "" +#: include/php_setup.inc:182 +msgid "Trace" +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 "" +#: include/php_setup.inc:183 +msgid "File" +msgstr "文件" -#: setup/setup_migrate.tpl:94 -msgid "Move selected groups into this group tree" -msgstr "" +#: include/php_setup.inc:183 +msgid "Line" +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 "" +#: include/php_setup.inc:183 +msgid "Type" +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 "显示软件包" +#: include/php_setup.inc:184 +msgid "Arguments" +msgstr "参数" -#: setup/setup_migrate.tpl:140 -msgid "Move users into configured user tree" +#: include/class_pluglist.inc:56 +msgid "All objects in this category" 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." +#: include/class_pluglist.inc:152 +msgid "The configuration format has changed. Please re-run setup!" msgstr "" -#: setup/setup_migrate.tpl:145 +#: include/class_pluglist.inc:167 include/class_pluglist.inc:168 +#: include/class_pluglist.inc:280 +msgid "Unknown" +msgstr "未知" + +#: include/class_pluglist.inc:175 ihtml/themes/default/framework.tpl:8 +#: ihtml/themes/default/framework.tpl:11 ihtml/themes/default/framework.tpl:20 +#: ihtml/themes/default/framework.tpl:24 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 "" +"You are currently editing a database entry. Do you want to dismiss the " +"changes?" +msgstr "您正在编辑一个数据项。您确认要丢弃当前的修改么?" -#: setup/setup_migrate.tpl:148 -#, fuzzy -msgid "Move selected users into this people tree" -msgstr "创建使用该模板的用户" +#: include/class_log.inc:88 +#, fuzzy, php-format +msgid "Logging failed: %s" +msgstr "Logging DB 用户" -#: setup/setup_migrate.tpl:199 +#: include/class_log.inc:107 #, fuzzy -msgid "Abort" -msgstr "端口" +msgid "MySQL error" +msgstr "LDAP 错误:" -#: setup/setup_migrate.tpl:201 -#, fuzzy -msgid "Create a new GOsa administrator account" -msgstr "创建 netatalk 账号" +#: include/class_log.inc:107 +msgid "Logging to MySQL database will be disabled for this session!" +msgstr "" -#: setup/setup_migrate.tpl:204 -msgid "" -"This dialog will automatically add a new super administrator to your LDAP " -"tree." +#: include/class_log.inc:120 +#, php-format +msgid "Invalid option '%s' specified!" msgstr "" -#: setup/setup_migrate.tpl:233 +#: include/class_log.inc:124 #, fuzzy -msgid "Password (again)" -msgstr "口令存储" +msgid "Specified objectType is empty or invalid!" +msgstr "指定的 branch 名称无效。" + +#: include/class_log.inc:145 include/class_log.inc:157 +#: include/class_log.inc:165 include/class_log.inc:177 +#: include/class_log.inc:192 include/class_log.inc:228 +msgid "MySQL logging" +msgstr "" + +#: include/class_log.inc:205 +#, fuzzy, php-format +msgid "Cannot add location to the database!" +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." +#: include/functions.inc:118 +#, php-format +msgid "Fatal error: no class locations defined - please run '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:259 setup/setup_migrate.tpl:314 +#: include/functions.inc:125 +#, php-format msgid "" -"If you want to know what will be done when migrating the selected entries, " -"use the 'Show changes' button to see the LDIF." +"Fatal error: cannot instantiate class '%s' - try running '%s' to fix this" msgstr "" -#: setup/setup_migrate.tpl:269 setup/setup_migrate.tpl:323 -#, fuzzy -msgid "Current" -msgstr "当前版本" +#: include/functions.inc:335 +#, php-format +msgid "FATAL: Error when connecting the LDAP. Server said '%s'." +msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。" -#: setup/setup_migrate.tpl:276 setup/setup_migrate.tpl:330 +#: include/functions.inc:397 #, fuzzy -msgid "After migration" -msgstr "用户管理" +msgid "Username / UID is not unique inside the LDAP tree!" +msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。" -#: setup/setup_migrate.tpl:313 +#: include/functions.inc:467 +#, fuzzy 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." +"Username / UID is not unique inside the LDAP tree. Please contact your " +"Administrator." +msgstr "用户名 / UID 不唯一。请检查您的 LDAP 数据库。" + +#: include/functions.inc:612 include/functions.inc:698 +msgid "Error while adding a lock. Contact the developers!" msgstr "" -#: setup/setup_frame.tpl:12 -#, fuzzy -msgid "GOsa setup wizard" -msgstr "GOsa 帮助浏览器" +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "" +"Cannot create locking information in LDAP tree. Please contact your " +"administrator!" +msgstr "无法获得 LDAP 数据库的锁信息。检查 gosa.conf 中的 'config' 条目!" -#: setup/setup_frame.tpl:19 -#, fuzzy -msgid "Installation" -msgstr "Windows 工作站" +#: include/functions.inc:622 +#, fuzzy, php-format +msgid "LDAP server returned: %s" +msgstr "LDAP 服务器" -#: setup/setup_frame.tpl:19 +#: include/functions.inc:716 #, fuzzy -msgid "Steps" -msgstr "系统设置" +msgid "" +"Found multiple locks for object to be locked. This should not happen - " +"cleaning up multiple references." +msgstr "发现要锁定的对象由多个锁。这虽然不可能──清除多个引用。" -#: setup/class_setupStep_Schema.inc:42 setup/class_setupStep_Schema.inc:43 -msgid "LDAP schema check" -msgstr "" +#: include/functions.inc:1013 +#, php-format +msgid "The size limit of %d entries is exceed!" +msgstr "超过了 %d 个条目的大小限制!" -#: setup/class_setupStep_Schema.inc:44 -msgid "Perform test on your current LDAP schema" -msgstr "" +#: include/functions.inc:1015 +#, php-format +msgid "" +"Set the new size limit to %s and show me this message if the limit still " +"exceeds" +msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。" -#: setup/class_setupStep_Checks.inc:38 setup/class_setupStep_Checks.inc:39 -msgid "Installation check" -msgstr "" +#: include/functions.inc:1032 +msgid "incomplete" +msgstr "不完整" -#: setup/class_setupStep_Checks.inc:40 -msgid "Basic checks for PHP compatibility and extensions" -msgstr "" +#: include/functions.inc:1311 +msgid "Continue anyway" +msgstr "仍然继续" -#: setup/class_setupStep_Checks.inc:64 -#, fuzzy -msgid "Checking PHP version" -msgstr "检查 PHP 版本 (>=4.1.0)" +#: include/functions.inc:1313 +msgid "Edit anyway" +msgstr "仍然编辑" -#: setup/class_setupStep_Checks.inc:65 -#, php-format -msgid "PHP must be of version %s or above." -msgstr "" +#: include/functions.inc:1315 +#, fuzzy, php-format +msgid "You're going to edit the LDAP entry/entries %s" +msgstr "您将要拷贝条目 '%s'。" -#: setup/class_setupStep_Checks.inc:66 -msgid "Please upgrade to a supported version." -msgstr "" +#: include/functions.inc:1499 +msgid "Entries per page" +msgstr "每页条目数" -#: setup/class_setupStep_Checks.inc:73 -msgid "GOsa requires this module to talk with your LDAP server." -msgstr "" +#: include/functions.inc:1527 +msgid "Apply filter" +msgstr "应用过滤器" -#: setup/class_setupStep_Checks.inc:81 -msgid "GOsa requires this module for an internationalized interface." -msgstr "" +#: include/functions.inc:1779 +msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" +msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" -#: setup/class_setupStep_Checks.inc:89 -msgid "GOsa requires this module for the samba integration." -msgstr "" +#: include/functions.inc:1823 +#, php-format +msgid "GOsa development snapshot (Rev %s)" +msgstr "GOsa 开发版(版本 %s)" -#: setup/class_setupStep_Checks.inc:97 -msgid "GOsa requires this module to make use of SSHA encryption." +#: include/functions.inc:1902 +#, php-format +msgid "File '%s' could not be deleted." msgstr "" -#: setup/class_setupStep_Checks.inc:105 -msgid "GOsa requires this module to talk to an IMAP server." -msgstr "" +#: include/functions.inc:1936 include/functions.inc:1956 +#, fuzzy +msgid "Cannot write to revision file!" +msgstr "无法创建文件 '%s'。" -#: setup/class_setupStep_Checks.inc:112 +#: include/functions.inc:2198 include/functions.inc:2202 +#: include/functions.inc:2208 #, fuzzy -msgid "mbstring" -msgstr "Samba 设置" +msgid "'base_hook' is not available. Using default base!" +msgstr "警告: base_hook不可用。使用缺省 base。" -#: setup/class_setupStep_Checks.inc:113 -msgid "GOsa requires this module to handle unicode strings." -msgstr "" +#: include/functions.inc:2230 +#, fuzzy +msgid "LDAP warning" +msgstr "LDAP 管理" -#: setup/class_setupStep_Checks.inc:121 +#: include/functions.inc:2230 #, fuzzy -msgid "" -"GOsa requires this module to communicate with several supported databases." -msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。" +msgid "Cannot get schema information from server. No schema check possible!" +msgstr "不能从服务器得到 schema 信息。无法对 schema 检查!" -#: setup/class_setupStep_Checks.inc:128 -msgid "CUPS" +#: include/functions.inc:2256 +msgid "Used to store account specific informations." msgstr "" -#: setup/class_setupStep_Checks.inc:129 -#, fuzzy +#: include/functions.inc:2263 msgid "" -"GOsa requires this module to show printers that are not defined within the " -"LDAP." -msgstr "需要 MySQL 支持来从数据库中读取 GOfax 报告。" +"Used to lock currently edited entries to avoid multiple changes at the same " +"time." +msgstr "" -#: setup/class_setupStep_Checks.inc:146 -msgid "samba hash generator" +#: include/functions.inc:2306 +#, php-format +msgid "Missing required object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:147 -msgid "GOsa requires this command to synchronize POSIX and samba passwords." +#: include/functions.inc:2308 +#, php-format +msgid "Missing optional object class '%s'!" msgstr "" -#: setup/class_setupStep_Checks.inc:148 -msgid "" -"Deploy a gosa-si installation or install the perl Crypt::SmbHash modules." +#: include/functions.inc:2314 +#, php-format +msgid "Version mismatch for required object class '%s' (!=%s)!" msgstr "" -#: setup/class_setupStep_Checks.inc:158 -#, 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." +#: include/functions.inc:2316 +#, php-format +msgid "Version mismatch for optional object class '%s' (!=%s)!" msgstr "" -"register_globals 是 PHP 的一个不必修改范围就可以从脚本中访问所有全局变量的机" -"制。这可能存在安全风险。GOsa 在两种情况下都可以运行。" -#: setup/class_setupStep_Checks.inc:159 -#, fuzzy -msgid "Search for 'register_globals' in your php.ini and switch it to 'Off'." -msgstr "检查 register_globals 是否设置为 'off'" +#: include/functions.inc:2320 +#, fuzzy, php-format +msgid "Class(es) available" +msgstr "文件可用。" -#: setup/class_setupStep_Checks.inc:167 -msgid "PHP uses this value for the garbage collector to delete old sessions." +#: include/functions.inc:2342 +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_Checks.inc:168 -#, fuzzy +#: include/functions.inc:2343 msgid "" -"Setting this value to one day will prevent loosing session and cookies " -"before they really timeout." +"In order to use rfc2307bis conform groups the objectClass 'posixGroup' must " +"be AUXILIARY" msgstr "" -"PHP 用这个值来进行垃圾回收,删除旧的会话。设置这个值为一天,将会防止在真正超" -"时之前的会话和 cookie 丢失。" -#: setup/class_setupStep_Checks.inc:169 +#: include/functions.inc:2347 msgid "" -"Search for 'session.gc_maxlifetime' in your php.ini and set it to 86400 or " -"higher." +"Your schema is configured to support the rfc2307bis group, but you have " +"disabled this option on the 'ldap setup' step." msgstr "" -#: setup/class_setupStep_Checks.inc:176 setup/class_setupStep_Checks.inc:192 -#: setup/class_setupStep_Checks.inc:208 setup/class_setupStep_Checks.inc:224 -msgid "Off" +#: include/functions.inc:2348 +msgid "The objectClass 'posixGroup' must be STRUCTURAL" msgstr "" -#: setup/class_setupStep_Checks.inc:177 -#, 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'。" +#: include/functions.inc:2371 +msgid "German" +msgstr "德语" -#: setup/class_setupStep_Checks.inc:178 -#, fuzzy -msgid "Search for 'session.auto_start' in your php.ini and set it to 'Off'." -msgstr "" -"为了在是使用 GOsa 中不遇到麻烦,您的 php.ini 中 session.auto_register 选项必" -"须设置为 'Off'。" +#: include/functions.inc:2372 +msgid "French" +msgstr "法语" -#: setup/class_setupStep_Checks.inc:185 -#, 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 内存,太少会导致无法预料的错误!将其设置为更大。" +#: include/functions.inc:2373 +msgid "Italian" +msgstr "意大利语" -#: setup/class_setupStep_Checks.inc:186 -msgid "" -"Search for 'memory_limit' in your php.ini and set it to '32M' or higher." -msgstr "" +#: include/functions.inc:2374 +msgid "Spanish" +msgstr "西班牙语" -#: setup/class_setupStep_Checks.inc:193 -#, fuzzy -msgid "" -"This option influences the PHP output handling. Turn this Option off, to " -"increase performance." -msgstr "这个选项影响输出处理。关闭这个选项,可以提高性能。" +#: include/functions.inc:2375 +msgid "English" +msgstr "英语" -#: setup/class_setupStep_Checks.inc:194 -msgid "Search for 'implicit_flush' in your php.ini and set it to 'Off'." +#: include/functions.inc:2376 +msgid "Dutch" +msgstr "荷兰语" + +#: include/functions.inc:2377 +msgid "Polish" +msgstr "波兰语" + +#: include/functions.inc:2378 +msgid "Swedish" msgstr "" -#: setup/class_setupStep_Checks.inc:201 +#: include/functions.inc:2379 #, fuzzy -msgid "The Execution time should be at least 30 seconds." -msgstr "执行时间应该至少 30 秒,因为一些动作可能会花很多时间。" +msgid "Chinese" +msgstr "芯片组" -#: setup/class_setupStep_Checks.inc:202 -msgid "" -"Search for 'max_execution_time' in your php.ini and set it to '30' or higher." -msgstr "" +#: include/functions.inc:2380 +msgid "Russian" +msgstr "俄语" -#: setup/class_setupStep_Checks.inc:209 -#, fuzzy +#: include/functions.inc:2561 +#, php-format 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 将不会发送任何有关正运行着" -"的服务器的信息。" +"Command '%s', specified as POSTMODIFY for plugin '%s' doesn't seem to exist." +msgstr "命令 '%s',作为插件 '%s' 的 POSTMODIFY 好像并不存在。" -#: setup/class_setupStep_Checks.inc:210 -msgid "Search for 'expose_php' in your php.ini and set if to 'Off'." +#: include/functions.inc:2594 +msgid "Cannot generate samba hash!" msgstr "" -#: setup/class_setupStep_Checks.inc:216 +#: include/class_acl.inc:26 #, fuzzy -msgid "On" -msgstr "打开" +msgid "Access control" +msgstr "访问选项" -#: setup/class_setupStep_Checks.inc:217 -msgid "" -"Increase your server security by setting magic_quotes_gpc to 'on'. PHP will " -"escape all quotes in strings in this case." +#: include/class_acl.inc:207 +msgid "Reset ACLs" msgstr "" -"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串" -"中所有引号编码。" -#: setup/class_setupStep_Checks.inc:218 -msgid "Search for 'magic_quotes_gpc' in your php.ini and set it to 'On'." +#: include/class_acl.inc:212 include/class_acl.inc:215 +msgid "Use ACL defined in role" msgstr "" -#: setup/class_setupStep_Checks.inc:225 -#, fuzzy -msgid "Increase your server performance by setting magic_quotes_gpc to 'off'." +#: include/class_acl.inc:489 +msgid "No ACL settings for this category!" msgstr "" -"将 magic_quotes_gpc 设置为 'on' 会增加服务器安全性。这种情况下 PHP 会将字符串" -"中所有引号编码。" -#: setup/class_setupStep_Checks.inc:226 -msgid "" -"Search for 'zend.ze1_compatibility_mode' in your php.ini and set it to 'Off'." +#: include/class_acl.inc:491 +#, php-format +msgid "Contains ACLs for these objects: %s" msgstr "" -#: setup/class_setupStep_Checks.inc:236 -#, fuzzy -msgid "Configuration writeable" -msgstr "配置文件" - -#: setup/class_setupStep_Checks.inc:237 +#: include/class_acl.inc:496 include/class_acl.inc:497 #, fuzzy -msgid "The configuration file can't be written" -msgstr "查看配置信息" +msgid "category ACL" +msgstr "分类" -#: setup/class_setupStep_Checks.inc:238 +#: include/class_acl.inc:543 #, 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." +msgid "Edit ACL for '%s' - scope is '%s'" 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 "" +#: include/class_acl.inc:698 include/class_acl.inc:705 +#, fuzzy +msgid "Show/hide advanced settings" +msgstr "高级电话设置" -#: setup/setup_welcome.tpl:8 -msgid "What will the wizard do for you?" -msgstr "" +#: include/class_acl.inc:723 +#, fuzzy +msgid "Create objects" +msgstr "创建新 FAI 对象" -#: setup/setup_welcome.tpl:11 -msgid "Create a basic, single site configuration" -msgstr "" +#: include/class_acl.inc:724 +#, fuzzy +msgid "Move objects" +msgstr "成员对象" -#: setup/setup_welcome.tpl:12 -msgid "Tries to find problems within your PHP and LDAP setup" -msgstr "" +#: include/class_acl.inc:725 +#, fuzzy +msgid "Remove objects" +msgstr "成员对象" -#: setup/setup_welcome.tpl:13 -msgid "Let you choose from a set of basic and advanced configuration switches" +#: include/class_acl.inc:727 +msgid "Modifyable by owner" msgstr "" -#: setup/setup_welcome.tpl:14 -msgid "Guided migration of existing LDAP trees" -msgstr "" +#: include/class_acl.inc:738 include/class_acl.inc:835 +#: include/class_acl.inc:839 +msgid "read" +msgstr "读" -#: setup/setup_welcome.tpl:17 -msgid "What will the wizard NOT do for you?" -msgstr "" +#: include/class_acl.inc:739 include/class_acl.inc:837 +#: include/class_acl.inc:840 +msgid "write" +msgstr "写" -#: setup/setup_welcome.tpl:20 -msgid "Find every possible configuration error" -msgstr "" +#: include/class_acl.inc:743 +#, fuzzy +msgid "Complete object" +msgstr "成员对象" -#: setup/setup_welcome.tpl:21 -msgid "Migrate every possible LDAP setup - create backup dumps!" -msgstr "" +#: include/class_acl.inc:879 +#, fuzzy, php-format +msgid "Unkown ACL type '%s'!" +msgstr "未知 FAIstate %s" -#: setup/setup_welcome.tpl:25 -#, fuzzy -msgid "To continue..." -msgstr "安装继续..." +#: include/class_acl.inc:922 +#, fuzzy, php-format +msgid "Unknown entry '%s'!" +msgstr "未知 FAIstate %s" -#: 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:982 include/class_acl.inc:984 +#, fuzzy, php-format +msgid "Role: %s" +msgstr "角色" -#: setup/setup_welcome.tpl:34 -msgid "Click the 'Continue' button when you've finished." -msgstr "" +#: include/class_acl.inc:984 +#, fuzzy +msgid "unknown role" +msgstr "! 未知 id" -#: setup/setup_checks.tpl:9 -msgid "PHP module and extension checks" +#: include/class_acl.inc:992 +#, php-format +msgid "Contains settings for these objects: %s" msgstr "" -#: setup/setup_checks.tpl:41 setup/setup_checks.tpl:103 -msgid "GOsa will NOT run without fixing this." -msgstr "" +#: include/class_acl.inc:1001 ihtml/themes/default/acl.tpl:77 +msgid "Members" +msgstr "成员" -#: setup/setup_checks.tpl:45 setup/setup_checks.tpl:107 -msgid "GOsa will run without fixing this." +#: include/class_acl.inc:1007 +msgid "ACL takes effect for all users" msgstr "" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:1177 #, fuzzy -msgid "PHP setup configuration" -msgstr "PHP 安装检查" +msgid "Access control list" +msgstr "访问选项" -#: setup/setup_checks.tpl:67 +#: include/class_acl.inc:1182 #, fuzzy -msgid "show information" -msgstr "个人信息" +msgid "ACL roles" +msgstr "MAC 地址" -#: setup/setup_schema.tpl:3 +#: include/class_acl.inc:1185 #, fuzzy -msgid "Schema specific settings" -msgstr "Samba 设置" - -#: setup/setup_schema.tpl:7 -msgid "Enable schema validation when logging in" -msgstr "" +msgid "Role name" +msgstr "重命名" -#: setup/setup_schema.tpl:16 +#: include/class_acl.inc:1186 #, fuzzy -msgid "Check status" -msgstr "具有状态" - -#: setup/setup_schema.tpl:20 -msgid "Schema check succeeded" -msgstr "" +msgid "Role description" +msgstr "单元描述" -#: setup/setup_schema.tpl:23 +#: include/class_certificate.inc:73 #, fuzzy -msgid "Schema check failed" -msgstr "保存电话失败" +msgid "Certificate is empty!" +msgstr "证书" -#: setup/setup_schema.tpl:31 -msgid "" -"Could not read any schema informations, all checks skipped. Adjust your ldap " -"acls." +#: include/class_certificate.inc:100 +msgid "Cannot load certificate - only PEM/DER is supported!" 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!" +#: include/class_certificate.inc:115 +msgid "Cannot extract information for non PEM certificates!" msgstr "" -#: html/helpviewer.php:70 -msgid "Help browser" -msgstr "帮助浏览器" - -#: html/helpviewer.php:124 -msgid "There is no helpfile specified for this class" -msgstr "此类没有帮助文件" - -#: html/helpviewer.php:274 -#, php-format -msgid "Helpdir '%s' is not accessible, can't read any helpfiles." -msgstr "帮助目录 '%s' 不能访问,无法读取任何帮助文件。" - -#: html/setup.php:66 +#: include/class_certificate.inc:219 #, fuzzy -msgid "Smarty" -msgstr "总结" - -#: html/setup.php:66 html/password.php:78 html/index.php:167 -#, php-format -msgid "Directory '%s' specified as compile directory is not accessible!" -msgstr "目录 '%s' 作为编译目录无法访问!" +msgid "No valid certificate loaded!" +msgstr "无有效证书加载" -#: html/password.php:58 html/index.php:142 -#, fuzzy, php-format -msgid "GOsa configuration %s/%s is not readable. Aborted." -msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" +#: ihtml/themes/default/accountexpired.tpl:15 +#, fuzzy +msgid "Your password has expired. Please choose a new one!" +msgstr "您的口令已经过期 !! 选择一个新口令" -#: html/password.php:163 -msgid "Error: Password method not available!" -msgstr "" +#: ihtml/themes/default/accountexpired.tpl:23 +#: ihtml/themes/default/accountexpired.tpl:27 +#, fuzzy +msgid "Old password" +msgstr "旧口令" -#: html/password.php:228 html/index.php:326 -msgid "Please check the username/password combination." -msgstr "请检查用户名/口令。" +#: ihtml/themes/default/accountexpired.tpl:41 +#: ihtml/themes/default/accountexpired.tpl:45 +#, fuzzy +msgid "Verify password" +msgstr "口令确认" -#: html/password.php:232 -msgid "You have no permissions to change your password." -msgstr "您无权修改您的口令。" +#: ihtml/themes/default/accountexpired.tpl:52 +#: ihtml/themes/default/password.tpl:101 +#, fuzzy +msgid "Click here to change your password" +msgstr "点击这里来修改您的口令" -#: html/password.php:253 -msgid "External password changer reported a problem: " -msgstr "外部口令更改程序报告错误:" +#: ihtml/themes/default/islocked.tpl:2 +msgid "Locking conflict detected" +msgstr "检测到锁定冲突" -#: html/password.php:284 html/index.php:420 -msgid "Session will not be encrypted." -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 "" +"如果锁检查失败,明显的是另外的人在进行编辑操作时关闭了浏览器。您可以通过按“仍" +"然编辑”按钮来接管这个锁文件。" -#: html/password.php:284 html/index.php:420 -msgid "Enter SSL session" -msgstr "进入 SSL 会话" +#: ihtml/themes/default/logout.tpl:5 +msgid "Your GOsa session has expired!" +msgstr "您的 GOsa 会话已经过期!" -#: html/main.php:154 -#, php-format -msgid "Cannot locate file '%s' - please run '%s' to fix this" +#: 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 界面是在很长时间之前。出于安全上的考虑,已经关闭了连接。要继" +"续执行管理任务,请重新登录。" -#: html/main.php:172 +#: ihtml/themes/default/logout.tpl:10 +msgid "Sign in again" +msgstr "重新登录" + +#: ihtml/themes/default/acl.tpl:31 #, fuzzy -msgid "PHP configuration" -msgstr "PHP 安装检查" +msgid "Additional filter options" +msgstr "应用程序设置" -#: html/main.php:173 -msgid "" -"FATAL: Register globals is on. GOsa will refuse to login unless this is " -"fixed by an administrator." -msgstr "致命错误:全局注册已打开。GOsa 将拒绝登录直到被管理修正。" +#: ihtml/themes/default/acl.tpl:42 +msgid "Use members from" +msgstr "" -#: html/main.php:218 -msgid "Running out of memory!" +#: ihtml/themes/default/acl.tpl:56 +msgid "Available members" msgstr "" -#: html/main.php:292 -msgid "User ACL checks disabled" +#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 +msgid "List message possible targets" msgstr "" -#: html/main.php:361 -#, fuzzy -msgid "Your password is about to expire, please change your password!" -msgstr "您的口令就要过期,请修改您的口令" +#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 +msgid "List message recipients" +msgstr "" -#: html/main.php:370 +#: ihtml/themes/default/acl.tpl:107 #, fuzzy -msgid "Plugin" -msgstr "于" - -#: html/main.php:371 -#, fuzzy, php-format -msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" -msgstr "警告: 没有发现针对插件 '%s' 的任何插件定义!" +msgid "ACL for this object" +msgstr "检查 iconv 支持" -#: html/index.php:57 +#: ihtml/themes/default/acl.tpl:113 #, fuzzy -msgid "Session is not encrypted!" -msgstr "会话不会被加密。" +msgid "Available roles" +msgstr "可用的应用程序" -#: html/index.php:64 +#: ihtml/themes/default/remove.tpl:6 msgid "" -"The session lifetime configured in your gosa.conf will be overridden by php." -"ini settings." +"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 没有办法将您的数据" +"找回。" -#: html/index.php:167 -#, fuzzy -msgid "Smarty error" -msgstr "PHP 错误" +#: ihtml/themes/default/snapshotdialog.tpl:3 +msgid "Restoring object snapshots" +msgstr "" -#: html/index.php:218 -msgid "There is a problem with the authentication setup!" +#: 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 "" -#: html/index.php:226 -msgid "Cannot find a valid user for the current authentication setup!" +#: 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 "" -#: html/index.php:230 -msgid "User information is not unique accross the configured LDAP trees!" +#: 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 "" -#: html/index.php:270 -msgid "Cannot detect information about the installed LDAP schema!" +#: ihtml/themes/default/snapshotdialog.tpl:29 +#, fuzzy +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 "" -#: html/index.php:283 +#: ihtml/themes/default/snapshotdialog.tpl:49 #, fuzzy -msgid "Your LDAP setup contains old schema definitions:" -msgstr "您 LDAP 的设置包含老的 schema 定义。请重新执行安装。" +msgid "Creating object snapshots" +msgstr "创建新对象组" -#: html/index.php:304 -msgid "Please specify a valid username!" -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." +msgstr "" -#: html/index.php:307 -msgid "Please specify your password!" -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 "" -#: html/index.php:319 +#: ihtml/themes/default/snapshotdialog.tpl:70 #, fuzzy -msgid "Authentication error" -msgstr "Nagios 鉴权" +msgid "Timestamp" +msgstr "过期" -#: html/index.php:319 -msgid "Cannot retrieve user information for htaccess authentication!" +#: ihtml/themes/default/snapshotdialog.tpl:79 +msgid "Reason for generating this snapshot" msgstr "" -#: html/index.php:375 -#, fuzzy -msgid "Account locked. Please contact your system administrator!" -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 服务器过载。最简单让大数据库处理" +"不发成长时间超时的办法是,将查询缩小到更少并且使用过滤器。" -#: html/index.php:426 +#: ihtml/themes/default/sizelimit.tpl:6 +msgid "Please choose the way to react for this session" +msgstr "请选择响应这个会话的方法" + +#: ihtml/themes/default/sizelimit.tpl:9 +msgid "ignore this error and show all entries the LDAP server returns" +msgstr "忽略错误并显示 LDAP 服务器返回的所有条目" + +#: ihtml/themes/default/sizelimit.tpl:10 msgid "" -"Your browser has cookies disabled. Please enable cookies and reload this " -"page before logging in!" -msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!" +"ignore this error and show all entries that fit into the defined sizelimit " +"and let me use filters instead" +msgstr "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。" #: ihtml/themes/default/copyPasteDialog.tpl:1 #, fuzzy @@ -5988,19 +6010,6 @@ msgstr "GOsa 帮助浏览器" msgid "Index" msgstr "索引" -#: ihtml/themes/default/islocked.tpl:2 -msgid "Locking conflict detected" -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 "" -"如果锁检查失败,明显的是另外的人在进行编辑操作时关闭了浏览器。您可以通过按“仍" -"然编辑”按钮来接管这个锁文件。" - #: ihtml/themes/default/framework.tpl:8 ihtml/themes/default/framework.tpl:11 msgid "Main" msgstr "首页" @@ -6021,44 +6030,45 @@ msgstr "登录:" msgid "GOsa main menu" 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 没有办法将您的数据" -"找回。" - -#: ihtml/themes/default/acl.tpl:31 +#: ihtml/themes/default/logout-close.tpl:5 #, fuzzy -msgid "Additional filter options" -msgstr "应用程序设置" - -#: ihtml/themes/default/acl.tpl:42 -msgid "Use members from" -msgstr "" - -#: ihtml/themes/default/acl.tpl:56 -msgid "Available members" -msgstr "" +msgid "Your GOsa session has been closed!" +msgstr "您的 GOsa 会话已经过期!" -#: ihtml/themes/default/acl.tpl:58 ihtml/themes/default/acl.tpl:63 -msgid "List message possible targets" +#: 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 "" -#: ihtml/themes/default/acl.tpl:79 ihtml/themes/default/acl.tpl:85 -msgid "List message recipients" +#: ihtml/themes/default/login.tpl:10 +msgid "GOsa login screen" msgstr "" -#: ihtml/themes/default/acl.tpl:107 +#: ihtml/themes/default/login.tpl:27 #, fuzzy -msgid "ACL for this object" -msgstr "检查 iconv 支持" +msgid "Login screen" +msgstr "登录脚本" -#: ihtml/themes/default/acl.tpl:113 +#: ihtml/themes/default/login.tpl:34 #, fuzzy -msgid "Available roles" -msgstr "可用的应用程序" +msgid "" +"Please use your username and your password to log into the site " +"administration system." +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 "目录" + +#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 +msgid "Sign in" +msgstr "登录" + +#: ihtml/themes/default/login.tpl:78 +msgid "Click here to log in" +msgstr "点击这里登录" #: ihtml/themes/default/conflict.tpl:2 msgid "Session conflict detected" @@ -6108,11 +6118,6 @@ msgid "" "'Change' button." msgstr "" -#: ihtml/themes/default/password.tpl:59 ihtml/themes/default/password.tpl:61 -#: ihtml/themes/default/login.tpl:52 ihtml/themes/default/login.tpl:53 -msgid "Directory" -msgstr "目录" - #: ihtml/themes/default/password.tpl:85 ihtml/themes/default/password.tpl:86 #, fuzzy msgid "New password repeated" @@ -6123,164 +6128,162 @@ msgstr "新口令" msgid "Change" msgstr "频道" -#: ihtml/themes/default/password.tpl:101 -#: ihtml/themes/default/accountexpired.tpl:52 -#, fuzzy -msgid "Click here to change your password" -msgstr "点击这里来修改您的口令" - -#: ihtml/themes/default/login.tpl:10 -msgid "GOsa login screen" +#: html/main.php:154 +#, php-format +msgid "Cannot locate file '%s' - please run '%s' to fix this" msgstr "" -#: ihtml/themes/default/login.tpl:27 +#: html/main.php:172 #, fuzzy -msgid "Login screen" -msgstr "登录脚本" +msgid "PHP configuration" +msgstr "PHP 安装检查" -#: ihtml/themes/default/login.tpl:34 -#, fuzzy +#: html/main.php:173 msgid "" -"Please use your username and your password to log into the site " -"administration system." -msgstr "请用您的用户名和口令登录" - -#: ihtml/themes/default/login.tpl:77 ihtml/themes/default/login.tpl:80 -msgid "Sign in" -msgstr "登录" - -#: 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 "您的 GOsa 会话已经过期!" +"FATAL: Register globals is on. GOsa will refuse to login unless this is " +"fixed by an administrator." +msgstr "致命错误:全局注册已打开。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." +#: html/main.php:218 +msgid "Running out of memory!" msgstr "" -"上一次操作 GOsa 界面是在很长时间之前。出于安全上的考虑,已经关闭了连接。要继" -"续执行管理任务,请重新登录。" - -#: ihtml/themes/default/logout.tpl:10 -msgid "Sign in again" -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." +#: html/main.php:292 +msgid "User ACL checks disabled" msgstr "" -"大小限制选项会让 LDAP 操作更快,以免使 LDAP 服务器过载。最简单让大数据库处理" -"不发成长时间超时的办法是,将查询缩小到更少并且使用过滤器。" -#: ihtml/themes/default/sizelimit.tpl:6 -msgid "Please choose the way to react for this session" -msgstr "请选择响应这个会话的方法" +#: html/main.php:361 +#, fuzzy +msgid "Your password is about to expire, please change your password!" +msgstr "您的口令就要过期,请修改您的口令" -#: ihtml/themes/default/sizelimit.tpl:9 -msgid "ignore this error and show all entries the LDAP server returns" -msgstr "忽略错误并显示 LDAP 服务器返回的所有条目" +#: html/main.php:370 +#, fuzzy +msgid "Plugin" +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 "忽略错误并显示在定义限制长度内的所有条目,并让我使用过滤器。" +#: html/main.php:371 +#, fuzzy, php-format +msgid "FATAL: Cannot find any plugin definitions for plugin '%s'!" +msgstr "警告: 没有发现针对插件 '%s' 的任何插件定义!" -#: ihtml/themes/default/logout-close.tpl:5 +#: html/index.php:57 #, fuzzy -msgid "Your GOsa session has been closed!" -msgstr "您的 GOsa 会话已经过期!" +msgid "Session is not encrypted!" +msgstr "会话不会被加密。" -#: ihtml/themes/default/logout-close.tpl:7 +#: html/index.php:64 msgid "" -"Please close this browser window and clean the authentication caches to " -"avoid an automatic re-authentication by your browser." +"The session lifetime configured in your gosa.conf will be overridden by php." +"ini settings." msgstr "" -#: ihtml/themes/default/accountexpired.tpl:15 -#, fuzzy -msgid "Your password has expired. Please choose a new one!" -msgstr "您的口令已经过期 !! 选择一个新口令" +#: html/index.php:142 html/password.php:58 +#, fuzzy, php-format +msgid "GOsa configuration %s/%s is not readable. Aborted." +msgstr "GOsa 配置 %s/gosa.conf 不可读取。退出。" -#: ihtml/themes/default/accountexpired.tpl:23 -#: ihtml/themes/default/accountexpired.tpl:27 +#: html/index.php:167 #, fuzzy -msgid "Old password" -msgstr "旧口令" +msgid "Smarty error" +msgstr "PHP 错误" -#: ihtml/themes/default/accountexpired.tpl:41 -#: ihtml/themes/default/accountexpired.tpl:45 -#, fuzzy -msgid "Verify password" -msgstr "口令确认" +#: html/index.php:167 html/password.php:78 html/setup.php:66 +#, php-format +msgid "Directory '%s' specified as compile directory is not accessible!" +msgstr "目录 '%s' 作为编译目录无法访问!" -#: ihtml/themes/default/snapshotdialog.tpl:3 -msgid "Restoring object snapshots" +#: html/index.php:218 +msgid "There is a problem with the authentication setup!" 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." +#: html/index.php:226 +msgid "Cannot find a valid user for the current authentication setup!" 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)." +#: html/index.php:230 +msgid "User information is not unique accross the configured LDAP trees!" 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 ?" +#: html/index.php:270 +msgid "Cannot detect information about the installed LDAP schema!" msgstr "" -#: ihtml/themes/default/snapshotdialog.tpl:29 +#: html/index.php:283 #, fuzzy -msgid "There is no snapshot available that could be restored" -msgstr "没有可用的 mysql 扩展,请检查您的 php 设置。" +msgid "Your LDAP setup contains old schema definitions:" +msgstr "您 LDAP 的设置包含老的 schema 定义。请重新执行安装。" -#: ihtml/themes/default/snapshotdialog.tpl:31 -msgid "Choose a snapshot and click the folder image, to restore the snapshot" -msgstr "" +#: html/index.php:304 +msgid "Please specify a valid username!" +msgstr "请输入一个有效的用户名!" -#: ihtml/themes/default/snapshotdialog.tpl:49 +#: html/index.php:307 +msgid "Please specify your password!" +msgstr "请输入您的口令!" + +#: html/index.php:319 #, fuzzy -msgid "Creating object snapshots" -msgstr "创建新对象组" +msgid "Authentication error" +msgstr "Nagios 鉴权" -#: 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." +#: html/index.php:319 +msgid "Cannot retrieve user information for htaccess authentication!" 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 "" +#: html/index.php:326 html/password.php:228 +msgid "Please check the username/password combination." +msgstr "请检查用户名/口令。" -#: ihtml/themes/default/snapshotdialog.tpl:70 +#: html/index.php:375 #, fuzzy -msgid "Timestamp" -msgstr "过期" +msgid "Account locked. Please contact your system administrator!" +msgstr "账户锁定。请联系管理员。" -#: ihtml/themes/default/snapshotdialog.tpl:79 -msgid "Reason for generating this snapshot" +#: html/index.php:420 html/password.php:284 +msgid "Session will not be encrypted." +msgstr "会话不会被加密。" + +#: html/index.php:420 html/password.php:284 +msgid "Enter SSL session" +msgstr "进入 SSL 会话" + +#: html/index.php:426 +msgid "" +"Your browser has cookies disabled. Please enable cookies and reload this " +"page before logging in!" +msgstr "您的浏览器已经禁用 cookies。请启用 cookies 并在登录前重新加载本页面!" + +#: html/password.php:163 +msgid "Error: Password method not available!" 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/helpviewer.php:70 +msgid "Help browser" +msgstr "帮助浏览器" + +#: html/helpviewer.php:124 +msgid "There is no helpfile specified for this class" +msgstr "此类没有帮助文件" + +#: html/helpviewer.php:274 +#, php-format +msgid "Helpdir '%s' is not accessible, can't read any helpfiles." +msgstr "帮助目录 '%s' 不能访问,无法读取任何帮助文件。" + +#: html/setup.php:66 +#, fuzzy +msgid "Smarty" +msgstr "总结" + #, fuzzy #~ msgid "Move object" #~ msgstr "成员对象" -- 2.30.2