From 8a3c0a6bb3bc792e161b2b9299603256111a10ba Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 7 Nov 2004 12:56:55 +0000 Subject: [PATCH] translation update --- lam/help/help.inc | 18 --- lam/lib/cache.inc | 2 +- lam/lib/modules.inc | 14 +- lam/lib/modules/inetOrgPerson.inc | 14 +- lam/locale/de_DE/LC_MESSAGES/messages.mo | Bin 70537 -> 71190 bytes lam/locale/de_DE/LC_MESSAGES/messages.po | 175 ++++++++++------------- lam/templates/delete.php | 8 +- 7 files changed, 91 insertions(+), 140 deletions(-) diff --git a/lam/help/help.inc b/lam/help/help.inc index 0c9fb5e2..d8058793 100644 --- a/lam/help/help.inc +++ b/lam/help/help.inc @@ -210,24 +210,6 @@ $helpArray = array ( "variables" => array('user', 'group')), "438" => array ("ext" => "FALSE", "Headline" => _("Domain"), "Text" => _("Windows-Domain of user."). ' '. _("Can be left empty.")), - "448" => array ("ext" => "FALSE", "Headline" => _("Title"), - "Text" => _("Title of user, Mr., Ms., ...")), - "449" => array ("ext" => "FALSE", "Headline" => _("Employee type"), - "Text" => _("Employee type: worker, student, nurse, ...")), - "450" => array ("ext" => "FALSE", "Headline" => _("Street"), - "Text" => _("Street")), - "451" => array ("ext" => "FALSE", "Headline" => _("Postal code"), - "Text" => _("Postal code")), - "452" => array ("ext" => "FALSE", "Headline" => _("Postal address"), - "Text" => _("Postal address, city")), - "453" => array ("ext" => "FALSE", "Headline" => _("Telephone number"), - "Text" => _("Telephone number")), - "454" => array ("ext" => "FALSE", "Headline" => _("Mobile number"), - "Text" => _("Mobile number")), - "455" => array ("ext" => "FALSE", "Headline" => _("Fax number"), - "Text" => _("Fax number")), - "456" => array ("ext" => "FALSE", "Headline" => _("eMail address"), - "Text" => _("eMail address")), "457" => array ("ext" => "FALSE", "Headline" => _("Save profile"), "Text" => _("This will make a profile of the current account. The saved values are the same as in the profile editor. Profile names may contain the letters a-z, 0-9 and -_.")), "458" => array ("ext" => "FALSE", "Headline" => _("Select group profile"), diff --git a/lam/lib/cache.inc b/lam/lib/cache.inc index 80982a9a..6eee7790 100644 --- a/lam/lib/cache.inc +++ b/lam/lib/cache.inc @@ -76,7 +76,7 @@ class cache { if (strpos($_SESSION['ldap']->objectClasses[$i], "NAME '$objectClass'")) $line = $i; } // Return error if objectClass isn't found - if ($line==-1) trigger_error (sprintf(_("objectClass %s required but not defined in ldap."), $objectClass), E_USER_WARNING); + if ($line==-1) trigger_error (sprintf(_("ObjectClass %s required but not defined in LDAP."), $objectClass), E_USER_WARNING); // Create list of all allowed attributes for ($i=0; $iobjectClasses); $i++ ) { diff --git a/lam/lib/modules.inc b/lam/lib/modules.inc index 05f2bc70..276d56a8 100644 --- a/lam/lib/modules.inc +++ b/lam/lib/modules.inc @@ -910,7 +910,7 @@ class accountContainer { if (strpos(strtolower($_SESSION['ldap']->objectClasses[$i]), strtolower("NAME '$objectClass'"))) $line = $i; } // Return error if objectClass isn't found - if ($line==-1) trigger_error (sprintf(_("objectClass %s required but not defined in ldap."), $objectClass), E_USER_WARNING); + if ($line==-1) trigger_error (sprintf(_("ObjectClass %s required but not defined in LDAP."), $objectClass), E_USER_WARNING); // create array with must-attributes // Get startposition in string if (strpos($_SESSION['ldap']->objectClasses[$line], 'MUST (')) { @@ -948,7 +948,7 @@ class accountContainer { if (strpos($_SESSION['ldap']->objectClasses[$i], "NAME '$subclass'")) $line = $i; } // Return error if objectClass isn't found - if ($line==-1) trigger_error (sprintf(_("objectClass %s required but not defined in ldap."), $objectClass), E_USER_WARNING); + if ($line==-1) trigger_error (sprintf(_("ObjectClass %s required but not defined in LDAP."), $objectClass), E_USER_WARNING); // create array with must-attributes // Get startposition in string if (strpos($_SESSION['ldap']->objectClasses[$line], 'MUST (')) { @@ -1368,7 +1368,7 @@ class accountContainer { $_SESSION['cache']->update_cache($this->$dn, 'delete_dn'); } if (!$success) { - $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to create dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $this->dn)); + $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to create DN: %s.'), $this->dn)); $stopprocessing = true; } } @@ -1377,7 +1377,7 @@ class accountContainer { $attr = array_merge_recursive($attributes[$this->dn]['add'], $attributes[$this->dn]['notchanged'], $attributes[$this->dn]['modify']); $success = ldap_add($_SESSION['ldap']->server(), $this->dn, $attr); if (!$success) { - $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to create dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $this->dn)); + $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to create DN: %s.'), $this->dn)); $stopprocessing = true; } else @@ -1393,7 +1393,7 @@ class accountContainer { if (isset($attributes[$DNs[$i]]['modify']) && !$stopprocessing) { $success = @ldap_mod_replace($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['modify']); if (!$success) { - $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to modify attribtues from dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to modify attribtues from DN: %s.'), $DNs[$i])); $stopprocessing = true; } else @@ -1403,7 +1403,7 @@ class accountContainer { if (isset($attributes[$DNs[$i]]['add']) && !$stopprocessing) { $success = @ldap_mod_add($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['add']); if (!$success) { - $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to add attribtues to dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to add attribtues to DN: %s.'), $DNs[$i])); $stopprocessing = true; } else @@ -1413,7 +1413,7 @@ class accountContainer { if (isset($attributes[$DNs[$i]]['remove']) && !$stopprocessing) { $success = @ldap_mod_del($_SESSION['ldap']->server(), $DNs[$i], $attributes[$DNs[$i]]['remove']); if (!$success) { - $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from DN: %s.'), $DNs[$i])); $stopprocessing = true; } else diff --git a/lam/lib/modules/inetOrgPerson.inc b/lam/lib/modules/inetOrgPerson.inc index dcf866c5..56dd3889 100644 --- a/lam/lib/modules/inetOrgPerson.inc +++ b/lam/lib/modules/inetOrgPerson.inc @@ -67,8 +67,8 @@ class inetOrgPerson extends baseModule { $this->messages['postalAddress'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_address', _('Please enter a valid postal address!')); $this->messages['postalCode'][0] = array('ERROR', _('Postal code'), _('Please enter a valid postal code!')); $this->messages['postalCode'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_postalCode', _('Please enter a valid postal code!')); - $this->messages['title'][0] = array('ERROR', _('Title'), _('Please enter a valid title!')); - $this->messages['title'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_title', _('Please enter a valid title!')); + $this->messages['title'][0] = array('ERROR', _('Job title'), _('Please enter a valid job title!')); + $this->messages['title'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_title', _('Please enter a valid job title!')); $this->messages['employeeType'][0] = array('ERROR', _('Employee type'), _('Please enter a valid employee type!')); $this->messages['employeeType'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_type', _('Please enter a valid employee type!')); $this->messages['cn'][0] = array('ERROR', _('Account %s:') . ' inetOrgPerson_cn', _('Please enter a valid common name!')); @@ -146,7 +146,7 @@ class inetOrgPerson extends baseModule { 'name' => 'inetOrgPerson_type', 'description' => _('Employee type'), 'help' => 'employeeType', - 'example' => _('Worker') + 'example' => _('Temp') ), array( 'name' => 'inetOrgPerson_street', @@ -216,8 +216,8 @@ class inetOrgPerson extends baseModule { "Text" => _("User description. If left empty sur- and give name will be used.") ), 'title' => array ( - "Headline" => _("Title"), - "Text" => _("Title of user, Mr., Ms., ...") + "Headline" => _("Job title"), + "Text" => _("Job title of user: President, department manager, ...") ), 'givenName' => array ( "Headline" => _("First name"), @@ -229,7 +229,7 @@ class inetOrgPerson extends baseModule { ), 'employeeType' => array ( "Headline" => _("Employee type"), - "Text" => _("Employee type: worker, student, nurse, ...") + "Text" => _("Employee type: Contractor, Employee, Intern, Temp, External, ...") ), 'street' => array ( "Headline" => _("Street"), @@ -460,7 +460,7 @@ class inetOrgPerson extends baseModule { function get_pdfEntries($account_type = "user") { return array( 'inetOrgPerson_description' => array('' . _('Description') . '' . $this->attributes['description'][0] . ''), 'inetOrgPerson_host' => array('' . _('Unix workstations') . '' . $this->attributes['host'][0] . ''), - 'inetOrgPerson_title' => array('' . _('Title') . '' . $this->attributes['title'][0] . ''), + 'inetOrgPerson_title' => array('' . _('Job title') . '' . $this->attributes['title'][0] . ''), 'inetOrgPerson_givenName' => array('' . _('First name') . '' . $this->attributes['givenName'][0] . ''), 'inetOrgPerson_sn' => array('' . _('Last name') . '' . $this->attributes['sn'][0] . ''), 'inetOrgPerson_employeeType' => array('' . _('Employee type') . '' . $this->attributes['employeeType'][0]), diff --git a/lam/locale/de_DE/LC_MESSAGES/messages.mo b/lam/locale/de_DE/LC_MESSAGES/messages.mo index b829d988dcd3f1399dd03429c469baaa92ecf415..368c22f3423b50e5b36ffb92c567c954ac5f1e6c 100644 GIT binary patch delta 16372 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 Oo|c~5s|9\n" "Language-Team: Deutsch \n" "MIME-Version: 1.0\n" @@ -156,7 +156,7 @@ msgstr "Administrator" msgid "Administrators group" msgstr "Administratoren" -#: ../templates/domain.php:146 ../help/help.inc:270 +#: ../templates/domain.php:146 ../help/help.inc:252 msgid "Algorithmic RID Base" msgstr "RID-Basisnummer" @@ -348,8 +348,8 @@ msgstr "Cache Zeitbegrenzung ist ungültig!" #: ../help/help.inc:139 ../help/help.inc:163 ../help/help.inc:165 #: ../help/help.inc:167 ../help/help.inc:169 ../help/help.inc:201 #: ../help/help.inc:204 ../help/help.inc:207 ../help/help.inc:209 -#: ../help/help.inc:212 ../help/help.inc:236 ../help/help.inc:246 -#: ../help/help.inc:248 ../help/help.inc:250 +#: ../help/help.inc:212 ../help/help.inc:218 ../help/help.inc:228 +#: ../help/help.inc:230 ../help/help.inc:232 msgid "Can be left empty." msgstr "Kann leer bleiben." @@ -412,7 +412,7 @@ msgstr "Hier klicken wenn Sie nicht zur nächsten Seite weitergeleitet werden." msgid "Columns:" msgstr "Spalten:" -#: ../help/help.inc:246 +#: ../help/help.inc:228 msgid "Comma separated list of unix workstations the user is allowed to login." msgstr "" "Kommagetrennte Liste der Unix-Arbeitsstationen, auf welchen sich der " @@ -614,7 +614,7 @@ msgstr "Löschoperation abgebrochen." #: ../templates/ou_edit.php:357 ../templates/ou_edit.php:390 #: ../templates/ou_edit.php:423 ../templates/ou_edit.php:456 -#: ../help/help.inc:256 +#: ../help/help.inc:238 msgid "Delete organizational unit" msgstr "Organizational Unit löschen" @@ -712,7 +712,7 @@ msgstr "Sollen die folgenden Accounts wirklich gelöscht werden?" #: ../lib/modules/sambaGroupMapping.inc:187 #: ../lib/modules/sambaGroupMapping.inc:279 #: ../lib/modules/sambaGroupMapping.inc:321 ../help/help.inc:211 -#: ../help/help.inc:247 +#: ../help/help.inc:229 msgid "Domain" msgstr "Domäne" @@ -759,7 +759,7 @@ msgid "Domain Policy Admins" msgstr "Domänen-Policy-Administratoren" #: ../templates/lists/listdomains.php:99 ../templates/domain.php:104 -#: ../help/help.inc:262 +#: ../help/help.inc:244 msgid "Domain SID" msgstr "Domänen-SID" @@ -790,7 +790,7 @@ msgid "Domain has been modified." msgstr "Domäne wurde geändert." #: ../templates/lists/listdomains.php:98 ../templates/domain.php:88 -#: ../lib/modules/sambaAccount.inc:46 ../help/help.inc:258 +#: ../lib/modules/sambaAccount.inc:46 ../help/help.inc:240 msgid "Domain name" msgstr "Domänenname" @@ -864,13 +864,12 @@ msgstr "Arbeitsstationen ändern" #: ../lib/modules/inetOrgPerson.inc:72 ../lib/modules/inetOrgPerson.inc:99 #: ../lib/modules/inetOrgPerson.inc:147 ../lib/modules/inetOrgPerson.inc:231 #: ../lib/modules/inetOrgPerson.inc:417 ../lib/modules/inetOrgPerson.inc:466 -#: ../help/help.inc:215 msgid "Employee type" msgstr "Angestelltentyp" -#: ../lib/modules/inetOrgPerson.inc:232 ../help/help.inc:216 -msgid "Employee type: worker, student, nurse, ..." -msgstr "" +#: ../lib/modules/inetOrgPerson.inc:232 +msgid "Employee type: Contractor, Employee, Intern, Temp, External, ..." +msgstr "Angestelltentyp: Angestellter, Extern, Aushilfskraft, ..." #: ../templates/login.php:297 msgid "Empty Password submitted. Try again." @@ -925,7 +924,6 @@ msgstr "Konnte Domäne nicht ändern!" #: ../lib/modules/inetOrgPerson.inc:60 ../lib/modules/inetOrgPerson.inc:183 #: ../lib/modules/inetOrgPerson.inc:255 ../lib/modules/inetOrgPerson.inc:256 #: ../lib/modules/inetOrgPerson.inc:441 ../lib/modules/inetOrgPerson.inc:472 -#: ../help/help.inc:227 ../help/help.inc:228 msgid "Fax number" msgstr "Faxnummer" @@ -1051,7 +1049,7 @@ msgstr "DNs der Gruppenmitglieder" #: ../lib/modules/posixGroup.inc:134 ../lib/modules/posixGroup.inc:193 #: ../lib/modules/posixGroup.inc:309 ../lib/modules/posixGroup.inc:335 #: ../lib/modules/posixGroup.inc:339 ../lib/modules/posixGroup.inc:372 -#: ../lib/lists.inc:200 ../help/help.inc:172 ../help/help.inc:249 +#: ../lib/lists.inc:200 ../help/help.inc:172 ../help/help.inc:231 msgid "Group members" msgstr "Gruppenmitglieder" @@ -1373,7 +1371,7 @@ msgstr "" "Wenn in der CSV-Datei eine Gruppe, die noch nicht existiert, vorkommt wird " "sie im gewählten Gruppensuffix erstellt." -#: ../help/help.inc:234 +#: ../help/help.inc:216 msgid "" "If a not yet existing group is defined in csv-file, a new group with the " "selected group profile will be created." @@ -1431,7 +1429,7 @@ msgid "" "here." msgstr "Wenn Sie das aktuelle Hauptpasswort ändern wollen, geben Sie es hier ein." -#: ../lib/modules/sambaGroupMapping.inc:272 ../help/help.inc:244 +#: ../lib/modules/sambaGroupMapping.inc:272 ../help/help.inc:226 msgid "If you want to use a well known RID you can selcet a well known group." msgstr "" "Wenn Sie eine vordefinierte RID verwenden wollen, wählen Sie eine der " @@ -1504,11 +1502,16 @@ msgstr "" msgid "Ivalid Account" msgstr "Ungültiger Account" -#: ../lib/modules/inetOrgPerson.inc:95 ../lib/modules/inetOrgPerson.inc:141 -#: ../lib/modules/inetOrgPerson.inc:405 +#: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:95 +#: ../lib/modules/inetOrgPerson.inc:141 ../lib/modules/inetOrgPerson.inc:219 +#: ../lib/modules/inetOrgPerson.inc:405 ../lib/modules/inetOrgPerson.inc:463 msgid "Job title" msgstr "Berufsbezeichnung" +#: ../lib/modules/inetOrgPerson.inc:220 +msgid "Job title of user: President, department manager, ..." +msgstr "Berufsbezeichnung des Benutzers: Präsident, Abteilungsleiter, ..." + #: ../lib/status.inc:60 msgid "LAM Internal Error" msgstr "LAM interner Fehler" @@ -1827,7 +1830,6 @@ msgstr "Minimales Passwortalter" #: ../lib/modules/inetOrgPerson.inc:58 ../lib/modules/inetOrgPerson.inc:177 #: ../lib/modules/inetOrgPerson.inc:251 ../lib/modules/inetOrgPerson.inc:252 #: ../lib/modules/inetOrgPerson.inc:437 ../lib/modules/inetOrgPerson.inc:471 -#: ../help/help.inc:225 ../help/help.inc:226 msgid "Mobile number" msgstr "Mobil" @@ -1912,7 +1914,7 @@ msgstr "Neues Hauptpasswort wurde erfolgreich gesetzt." #: ../templates/ou_edit.php:344 ../templates/ou_edit.php:377 #: ../templates/ou_edit.php:410 ../templates/ou_edit.php:443 -#: ../help/help.inc:254 +#: ../help/help.inc:236 msgid "New organizational unit" msgstr "Neue Organizational Unit" @@ -1928,11 +1930,11 @@ msgstr "Neues Profil wurde erstellt." msgid "New user" msgstr "Neuer Benutzer" -#: ../templates/domain.php:135 ../help/help.inc:268 +#: ../templates/domain.php:135 ../help/help.inc:250 msgid "Next Group RID" msgstr "Nächste Gruppen-RID" -#: ../templates/domain.php:119 ../help/help.inc:264 +#: ../templates/domain.php:119 ../help/help.inc:246 msgid "Next RID" msgstr "Nächste RID" @@ -1940,19 +1942,19 @@ msgstr "Nächste RID" msgid "Next RID is not a number!" msgstr "Nächste RID ist keine Zahl!" -#: ../help/help.inc:265 +#: ../help/help.inc:247 msgid "Next RID to use when creating accounts." msgstr "Nächste RID für neue Accounts." -#: ../help/help.inc:269 +#: ../help/help.inc:251 msgid "Next RID to use when creating groups." msgstr "Nächste RID für neue Gruppen." -#: ../help/help.inc:267 +#: ../help/help.inc:249 msgid "Next RID to use when creating user accounts." msgstr "Nächste RID für neue Benutzer." -#: ../templates/domain.php:127 ../help/help.inc:266 +#: ../templates/domain.php:127 ../help/help.inc:248 msgid "Next User RID" msgstr "Nächste Benutzer-RID" @@ -2076,10 +2078,11 @@ msgstr "OU ist ungültig!" msgid "OU is not empty or invalid!" msgstr "OU ist nicht leer oder ungültig!" -#: ../help/help.inc:254 ../help/help.inc:256 +#: ../help/help.inc:236 ../help/help.inc:238 msgid "OU-Editor" msgstr "OU-Editor" +#: ../lib/cache.inc:79 ../lib/modules.inc:913 ../lib/modules.inc:951 #: ../lib/modules.inc:1050 #, php-format msgid "ObjectClass %s required but not defined in LDAP." @@ -2247,6 +2250,10 @@ msgstr "Bitte geben Sie einen gültigen Angestelltentyp ein!" msgid "Please enter a valid fax number!" msgstr "Bitte geben Sie eine gültige Faxnummer ein!" +#: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:71 +msgid "Please enter a valid job title!" +msgstr "Bitte geben Sie eine gültige Berufsbezeichnung ein!" + #: ../lib/modules/inetOrgPerson.inc:58 ../lib/modules/inetOrgPerson.inc:59 msgid "Please enter a valid mobile number!" msgstr "Bitte geben Sie eine gültige Mobiltelefonnummer ein!" @@ -2267,10 +2274,6 @@ msgstr "Bitte geben Sie einen gültigen Straßennamen ein!" msgid "Please enter a valid telephone number!" msgstr "Bitte geben Sie eine gültige Telefonnummer ein!" -#: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:71 -msgid "Please enter a valid title!" -msgstr "Bitte geben Sie eine gültige Berufsbezeichnung ein!" - #: ../lib/modules/posixGroup.inc:532 ../lib/modules/posixAccount.inc:653 #, php-format msgid "Please enter a value between %s and %s!" @@ -2361,15 +2364,15 @@ msgstr "" msgid "Position" msgstr "Position" -#: ../help/help.inc:240 +#: ../help/help.inc:222 msgid "Position in ldap-tree where the group should be created." msgstr "Position im LDAP-Baum, wo die Gruppe erstellt werden soll." -#: ../help/help.inc:242 +#: ../help/help.inc:224 msgid "Position in ldap-tree where the host should be created." msgstr "Position im LDAP-Baum, wo der Host erstellt werden soll." -#: ../help/help.inc:238 +#: ../help/help.inc:220 msgid "Position in ldap-tree where the user should be created." msgstr "Position im LDAP-Baum, wo der Benutzer erstellt werden soll." @@ -2380,18 +2383,17 @@ msgstr "Mögliche Werte" #: ../lib/modules/inetOrgPerson.inc:66 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:243 ../lib/modules/inetOrgPerson.inc:429 -#: ../lib/modules/inetOrgPerson.inc:469 ../help/help.inc:221 +#: ../lib/modules/inetOrgPerson.inc:469 msgid "Postal address" msgstr "Anschrift" -#: ../lib/modules/inetOrgPerson.inc:244 ../help/help.inc:222 +#: ../lib/modules/inetOrgPerson.inc:244 msgid "Postal address, city" msgstr "Bitte geben Sie hier die Anschrift ein." #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:159 #: ../lib/modules/inetOrgPerson.inc:239 ../lib/modules/inetOrgPerson.inc:240 #: ../lib/modules/inetOrgPerson.inc:425 ../lib/modules/inetOrgPerson.inc:468 -#: ../help/help.inc:219 ../help/help.inc:220 msgid "Postal code" msgstr "Postleitzahl" @@ -2596,7 +2598,7 @@ msgid "Save" msgstr "Speichern" #: ../lib/modules.inc:614 ../lib/modules.inc:617 ../lib/modules.inc:618 -#: ../lib/modules.inc:752 ../lib/modules.inc:757 ../help/help.inc:231 +#: ../lib/modules.inc:752 ../lib/modules.inc:757 ../help/help.inc:213 msgid "Save profile" msgstr "Profil speichern" @@ -2663,7 +2665,7 @@ msgstr "Siehe auch" msgid "Select all" msgstr "Alle auswählen" -#: ../help/help.inc:233 +#: ../help/help.inc:215 msgid "Select group profile" msgstr "Gruppenprofil wählen" @@ -2763,10 +2765,6 @@ msgstr "weiches Inode-Limit" msgid "Some required information is missing" msgstr "Einige benötigte Informationen fehlen noch" -#: ../templates/help.php:123 -msgid "Sorry no help number submitted." -msgstr "" - #: ../templates/help.php:144 #, php-format msgid "" @@ -2812,7 +2810,6 @@ msgstr "Hans Müller,Raum 2.14,123-123-1234,123-123-1234" #: ../lib/modules/inetOrgPerson.inc:64 ../lib/modules/inetOrgPerson.inc:153 #: ../lib/modules/inetOrgPerson.inc:235 ../lib/modules/inetOrgPerson.inc:236 #: ../lib/modules/inetOrgPerson.inc:421 ../lib/modules/inetOrgPerson.inc:467 -#: ../help/help.inc:217 ../help/help.inc:218 msgid "Street" msgstr "Straße" @@ -2840,18 +2837,21 @@ msgstr "Seiteneinstellungen übernehmen" #: ../templates/lists/listhosts.php:278 ../templates/lists/listgroups.php:294 #: ../templates/lists/listdomains.php:200 ../templates/lists/listusers.php:328 -#: ../templates/domain.php:159 ../lib/modules.inc:740 ../help/help.inc:237 -#: ../help/help.inc:239 ../help/help.inc:241 ../help/help.inc:260 +#: ../templates/domain.php:159 ../lib/modules.inc:740 ../help/help.inc:219 +#: ../help/help.inc:221 ../help/help.inc:223 ../help/help.inc:242 msgid "Suffix" msgstr "Suffix" #: ../lib/modules/inetOrgPerson.inc:56 ../lib/modules/inetOrgPerson.inc:171 #: ../lib/modules/inetOrgPerson.inc:247 ../lib/modules/inetOrgPerson.inc:248 #: ../lib/modules/inetOrgPerson.inc:433 ../lib/modules/inetOrgPerson.inc:470 -#: ../help/help.inc:223 ../help/help.inc:224 msgid "Telephone number" msgstr "Telefonnummer" +#: ../lib/modules/inetOrgPerson.inc:149 +msgid "Temp" +msgstr "Aushilfskraft" + #: ../lib/modules/inetOrgPerson.inc:137 msgid "Temp, contract until december" msgstr "Aushilfskraft, Vertrag bis Dezember" @@ -2868,7 +2868,7 @@ msgstr "Die primäre Gruppe des Benutzers." msgid "The Primary group the host should be member of." msgstr "Die primäre Gruppe des Hosts." -#: ../help/help.inc:263 +#: ../help/help.inc:245 msgid "The SID of your Samba server. Get it with \"net getlocalsid\"." msgstr "Die Domänen-SID des Samba-Servers. Auszulesen mit \"net getlocalsid\"." @@ -2883,7 +2883,7 @@ msgstr "" "setzen Sie die minimalen UID-Nummern auf den selben Wert oder verwenden Sie " "unabhängige Bereiche." -#: ../help/help.inc:261 +#: ../help/help.inc:243 msgid "The domain entry will be saved under this suffix." msgstr "Der Domäneneintrag wird unter diesem Suffix gespeichert." @@ -2897,7 +2897,9 @@ msgstr "Folgende Suffixe fehlen in LDAP. LAM kann sie für Sie erstellen." #: ../templates/pdfedit/pdfpage.php:73 msgid "The headline for a new section must contain at least one character." -msgstr "Die Überschrift für einen neuen Abschnitt muss mindestens ein Zeichen enthalten." +msgstr "" +"Die Überschrift für einen neuen Abschnitt muss mindestens ein Zeichen " +"enthalten." #: ../templates/pdfedit/pdfpage.php:61 msgid "" @@ -2908,7 +2910,7 @@ msgstr "" "Der Bezeichner für die PDF-Struktur ist ungültig. Ein gültiger besteht " "mindestens aus einem der folgenden Zeichen: 'a-z','A-Z','0-9','_','-','.'." -#: ../help/help.inc:259 +#: ../help/help.inc:241 msgid "The name of your Windows domain or workgroup." msgstr "Der Name ihrer Windows-Domäne oder Arbeitsgruppe." @@ -3163,11 +3165,11 @@ msgstr "Dieser Wert darf nur \\\"true\\\" oder \\\"false\\\" sein." msgid "This value must be a list of user names separated by semicolons." msgstr "Dieser Wert muss eine Liste von Benutzernamen, getrennt duch Kommata, sein." -#: ../help/help.inc:255 +#: ../help/help.inc:237 msgid "This will create a new organizational unit under the selected one." msgstr "Dies erzeugt eine neue Organizational Unit unterhalb der markierten." -#: ../help/help.inc:257 +#: ../help/help.inc:239 msgid "This will delete the selected organizational unit. The OU has to be empty." msgstr "Dies löscht die markierte Organizational Unit. Die OU muss leer sein." @@ -3175,7 +3177,7 @@ msgstr "Dies löscht die markierte Organizational Unit. Die OU muss leer sein." msgid "This will delete the selected profile." msgstr "Dies löscht das markierte Profil." -#: ../help/help.inc:232 +#: ../help/help.inc:214 msgid "" "This will make a profile of the current account. The saved values are the " "same as in the profile editor. Profile names may contain the letters a-z, 0-" @@ -3185,16 +3187,6 @@ msgstr "" "selben Werte wie im Profileditor gespeichert. Profilnamen dürfen die " "Buchstaben a-z, 0-9 und -_ enthalten." -#: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:219 -#: ../lib/modules/inetOrgPerson.inc:463 ../help/help.inc:213 -msgid "Title" -msgstr "Titel" - -#: ../lib/modules/inetOrgPerson.inc:220 ../help/help.inc:214 -#, fuzzy -msgid "Title of user, Mr., Ms., ..." -msgstr "Berufsbezeichnung des Benutzers (Präsident, Abteilungsleiter, etc.)." - #: ../lib/modules/posixAccount.inc:327 ../help/help.inc:145 msgid "" "To disable login use /bin/false. List of shells is read from lam/config/" @@ -3316,7 +3308,7 @@ msgid "Unix" msgstr "Unix" #: ../lib/modules/inetOrgPerson.inc:51 ../lib/modules/inetOrgPerson.inc:400 -#: ../lib/modules/inetOrgPerson.inc:462 ../help/help.inc:245 +#: ../lib/modules/inetOrgPerson.inc:462 ../help/help.inc:227 msgid "Unix workstations" msgstr "Arbeitsstationen" @@ -3324,11 +3316,6 @@ msgstr "Arbeitsstationen" msgid "Unix workstations is invalid." msgstr "Unix-Arbeitsstationen sind ungültig." -#: ../templates/config/confmain.php:549 -#: ../templates/profedit/profilepage.php:247 -msgid "Unrecognized type" -msgstr "" - #: ../templates/config/confmodules.php:245 #: ../templates/config/confmodules.php:348 #: ../templates/config/confmodules.php:451 @@ -3388,7 +3375,7 @@ msgstr "Benutzte Blöcke" msgid "Used blocks. 1000 blocks are usually 1MB" msgstr "Verwendete Blöcke. 1000 Blöcke sind normalerweise 1 MB." -#: ../help/help.inc:271 +#: ../help/help.inc:253 msgid "Used for calculating RIDs from UID/GID. Do not change if unsure." msgstr "" "Wird für die Berechnung der RIDs aus UID/GID verwendet. Nicht ändern, wenn " @@ -3515,7 +3502,7 @@ msgstr "" msgid "Users" msgstr "Benutzer" -#: ../lib/modules/posixGroup.inc:336 ../help/help.inc:250 +#: ../lib/modules/posixGroup.inc:336 ../help/help.inc:232 msgid "Users also being member of the current group." msgstr "Benutzer die Mitglieder der Gruppe sind." @@ -3536,17 +3523,13 @@ msgstr "Berechtigte Benutzer" #: ../templates/delete.php:184 ../lib/modules.inc:1406 #, php-format -msgid "" -"Was unable to add attribtues to dn: %s. This is possible a bug. Please check " -"your ldap logs and send a bug report if it is a possible bug." -msgstr "" +msgid "Was unable to add attribtues to DN: %s." +msgstr "Konnte keine Attribute zum DN hinzufügen: %s." #: ../lib/modules.inc:1371 ../lib/modules.inc:1380 #, php-format -msgid "" -"Was unable to create dn: %s. This is possible a bug. Please check your ldap " -"logs and send a bug report if it is a possible bug." -msgstr "" +msgid "Was unable to create DN: %s." +msgstr "Konnte DN nicht erstellen: %s." #: ../lib/modules.inc:1364 #, php-format @@ -3555,18 +3538,14 @@ msgstr "Konnte DN nicht löschen: %s." #: ../templates/delete.php:174 ../lib/modules.inc:1396 #, php-format -msgid "" -"Was unable to modify attribtues from dn: %s. This is possible a bug. Please " -"check your ldap logs and send a bug report if it is a possible bug." -msgstr "" +msgid "Was unable to modify attribtues from DN: %s." +msgstr "Konnte die Attribute nicht ändern: %s." #: ../templates/delete.php:194 ../templates/delete.php:218 #: ../lib/modules.inc:1416 #, php-format -msgid "" -"Was unable to remove attribtues from dn: %s. This is possible a bug. Please " -"check your ldap logs and send a bug report if it is a possible bug." -msgstr "" +msgid "Was unable to remove attribtues from DN: %s." +msgstr "Konnte die Attribute nicht löschen: %s." #: ../help/help.inc:59 msgid "" @@ -3584,11 +3563,11 @@ msgstr "Breite" msgid "Windows clients will show display name as group description." msgstr "Der Anzeigename wird von Windows als Gruppenbeschreibung angezeigt." -#: ../help/help.inc:235 +#: ../help/help.inc:217 msgid "Windows domain" msgstr "Windows-Domäne" -#: ../help/help.inc:236 +#: ../help/help.inc:218 msgid "Windows domain of host." msgstr "Windows-Domäne des Hosts." @@ -3603,7 +3582,7 @@ msgstr "Windows-Gruppe" msgid "Windows group type." msgstr "Windows-Gruppentyp." -#: ../lib/modules/sambaGroupMapping.inc:271 ../help/help.inc:243 +#: ../lib/modules/sambaGroupMapping.inc:271 ../help/help.inc:225 msgid "Windows groupname" msgstr "Windows-Gruppenname" @@ -3611,7 +3590,7 @@ msgstr "Windows-Gruppenname" msgid "Windows-Domain name of group." msgstr "Windows-Domänenname der Gruppe." -#: ../help/help.inc:248 +#: ../help/help.inc:230 msgid "Windows-Domain of group." msgstr "Windows-Domäne der Gruppe." @@ -3619,10 +3598,6 @@ msgstr "Windows-Domäne der Gruppe." msgid "Windows-Domain of user." msgstr "Windows-Domäne des Benutzers." -#: ../lib/modules/inetOrgPerson.inc:149 -msgid "Worker" -msgstr "Arbeiter" - #: ../templates/pdfedit/pdfpage.php:784 msgid "Write your text in the field below." msgstr "" @@ -3685,7 +3660,6 @@ msgstr "Basismodul" #: ../lib/modules/inetOrgPerson.inc:62 ../lib/modules/inetOrgPerson.inc:189 #: ../lib/modules/inetOrgPerson.inc:259 ../lib/modules/inetOrgPerson.inc:260 #: ../lib/modules/inetOrgPerson.inc:445 ../lib/modules/inetOrgPerson.inc:473 -#: ../help/help.inc:229 ../help/help.inc:230 msgid "eMail address" msgstr "E-Mail Adresse" @@ -3716,11 +3690,6 @@ msgstr "" msgid "machines" msgstr "Hosts" -#: ../lib/cache.inc:79 ../lib/modules.inc:913 ../lib/modules.inc:951 -#, php-format -msgid "objectClass %s required but not defined in ldap." -msgstr "" - #: ../help/help.inc:65 msgid "" "ou=People,dc=yourcompany,dc=com will read and store all accounts in this " diff --git a/lam/templates/delete.php b/lam/templates/delete.php index e6cc992f..88bc0dd2 100644 --- a/lam/templates/delete.php +++ b/lam/templates/delete.php @@ -171,7 +171,7 @@ if ($_POST['delete']) { if (isset($attributes[$DNs[$i]]['modify']) && !$stopprocessing) { $success = @ldap_mod_replace($_SESSION[$_SESSION['account']->ldap]->server(), $DNs[$i], $attributes[$DNs[$i]]['modify']); if (!$success) { - $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to modify attribtues from dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to modify attribtues from DN: %s.'), $DNs[$i])); $stopprocessing = true; } else @@ -181,7 +181,7 @@ if ($_POST['delete']) { if (isset($attributes[$DNs[$i]]['add']) && !$stopprocessing) { $success = @ldap_mod_add($_SESSION[$_SESSION['account']->ldap]->server(), $DNs[$i], $attributes[$DNs[$i]]['add']); if (!$success) { - $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to add attribtues to dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to add attribtues to DN: %s.'), $DNs[$i])); $stopprocessing = true; } else @@ -191,7 +191,7 @@ if ($_POST['delete']) { if (isset($attributes[$DNs[$i]]['remove']) && !$stopprocessing) { $success = @ldap_mod_del($_SESSION[$_SESSION['account']->ldap]->server(), $DNs[$i], $attributes[$DNs[$i]]['remove']); if (!$success) { - $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from DN: %s.'), $DNs[$i])); $stopprocessing = true; } else @@ -215,7 +215,7 @@ if ($_POST['delete']) { } if (!$stopprocessing) { $success = @ldap_delete($_SESSION[$_SESSION['account']->ldap]->server(), $_SESSION['delete_dn'][$m]); - if (!$success) $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from dn: %s. This is possible a bug. Please check your ldap logs and send a bug report if it is a possible bug.'), $DNs[$i])); + if (!$success) $errors[] = array ('ERROR', 'LDAP', sprintf(_('Was unable to remove attribtues from DN: %s.'), $DNs[$i])); else $_SESSION['cache']->update_cache($_SESSION['delete_dn'][$m], 'delete_dn'); }