From 07f5ae2d7a68e38db878894c51faf5f431b3ca99 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Fri, 10 Apr 2020 20:48:09 +0200 Subject: [PATCH 01/11] #213 fixed Google reCaptcha --- lam/lib/security.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/security.inc b/lam/lib/security.inc index e1fb6cd4..0aaf5ca6 100644 --- a/lam/lib/security.inc +++ b/lam/lib/security.inc @@ -687,7 +687,7 @@ function getSecurityTokenValue() { function setLAMHeaders() { if (!headers_sent()) { header('X-Frame-Options: sameorigin'); - header('Content-Security-Policy: frame-ancestors \'self\'; form-action \'self\'; base-uri \'none\'; object-src \'none\'; frame-src \'self\' https://*.duosecurity.com; worker-src \'self\''); + header('Content-Security-Policy: frame-ancestors \'self\'; form-action \'self\'; base-uri \'none\'; object-src \'none\'; frame-src \'self\' https://*.duosecurity.com https://www.google.com/recaptcha/; worker-src \'self\''); header('X-Content-Type-Options: nosniff'); header('X-XSS-Protection: 1; mode=block'); header("Feature-Policy: ambient-light-sensor 'none'; autoplay 'none'; accelerometer 'none'; camera 'none'; encrypted-media 'none'; fullscreen 'self'; geolocation 'none'; gyroscope 'none'; magnetometer 'none'; microphone 'none'; midi 'none'; payment 'none'; picture-in-picture 'none'; speaker 'none'; sync-xhr 'self'; usb 'none'; vr 'none'"); From 8b38839daefe4f57ceda80cd97c72556b2c2feb0 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 19 Apr 2020 20:49:25 +0200 Subject: [PATCH 02/11] fixed issue when no quotas are found --- lam/lib/modules/quota.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lam/lib/modules/quota.inc b/lam/lib/modules/quota.inc index 8598d6b4..b9b27c78 100644 --- a/lam/lib/modules/quota.inc +++ b/lam/lib/modules/quota.inc @@ -599,6 +599,9 @@ class quota extends baseModule { } $dirs = explode(":", $quotas); array_pop($dirs); // remove empty element at the end + if (empty($dirs)) { + continue; + } for ($i = 0; $i < sizeof($dirs); $i++) { if (strpos($dirs[$i], self::$QUOTA_PREFIX) !== 0) { unset($dirs[$i]); From 58882affa7851a60ac3670f84372b6df7e32e42a Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 19 Apr 2020 20:53:56 +0200 Subject: [PATCH 03/11] fixed issue when no quotas are found --- lam/lib/modules/quota.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lam/lib/modules/quota.inc b/lam/lib/modules/quota.inc index b9b27c78..8b63e55a 100644 --- a/lam/lib/modules/quota.inc +++ b/lam/lib/modules/quota.inc @@ -663,6 +663,9 @@ class quota extends baseModule { $remote->disconnect(); $dirs = explode(":", $quotas); array_pop($dirs); // remove empty element at the end + if (empty($dirs)) { + continue; + } for ($i = 0; $i < sizeof($dirs); $i++) { if (strpos($dirs[$i], self::$QUOTA_PREFIX) !== 0) { unset($dirs[$i]); From a52393dc79fb7acbcbf14b5de75f6b45b83b16ce Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Mon, 20 Apr 2020 21:05:11 +0200 Subject: [PATCH 04/11] fixed issue when no quotas are found --- lam/lib/modules/quota.inc | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/lam/lib/modules/quota.inc b/lam/lib/modules/quota.inc index 8b63e55a..56cba488 100644 --- a/lam/lib/modules/quota.inc +++ b/lam/lib/modules/quota.inc @@ -666,41 +666,37 @@ class quota extends baseModule { if (empty($dirs)) { continue; } - for ($i = 0; $i < sizeof($dirs); $i++) { - if (strpos($dirs[$i], self::$QUOTA_PREFIX) !== 0) { - unset($dirs[$i]); - $i--; + $quotaDirs = array(); + foreach ($dirs as $dirString) { + if (strpos($dirString, self::$QUOTA_PREFIX) !== 0) { continue; } - $dirs[$i] = substr($dirs[$i], strlen(self::$QUOTA_PREFIX)); - $dirs[$i] = explode(",", $dirs[$i]); - $dirs[$i] = $dirs[$i][0]; + $dirData = explode(",", substr($dirString, strlen(self::$QUOTA_PREFIX))); + $quotaDirs[] = $dirData[0]; } - $dirs = array_values($dirs); - for ($i = 0; $i < sizeof($dirs); $i++) { - if (!empty($options["quota_softblock_" . $id . "_" . $dirs[$i]][0]) && !get_preg($options["quota_softblock_" . $id . "_" . $dirs[$i]][0], 'quotaNumber')) { + foreach ($quotaDirs as $dirName) { + if (!empty($options["quota_softblock_" . $id . "_" . $dirName][0]) && !get_preg($options["quota_softblock_" . $id . "_" . $dirName][0], 'quotaNumber')) { $return[] = $this->messages['softblock'][0]; } - if (!empty($options["quota_hardblock_" . $id . "_" . $dirs[$i]][0]) && !get_preg($options["quota_hardblock_" . $id . "_" . $dirs[$i]][0], 'quotaNumber')) { + if (!empty($options["quota_hardblock_" . $id . "_" . $dirName][0]) && !get_preg($options["quota_hardblock_" . $id . "_" . $dirName][0], 'quotaNumber')) { $return[] = $this->messages['hardblock'][0]; } - if (!empty($options["quota_softinode_" . $id . "_" . $dirs[$i]][0]) && !get_preg($options["quota_softinode_" . $id . "_" . $dirs[$i]][0], 'quotaNumber')) { + if (!empty($options["quota_softinode_" . $id . "_" . $dirName][0]) && !get_preg($options["quota_softinode_" . $id . "_" . $dirName][0], 'quotaNumber')) { $return[] = $this->messages['softinode'][0]; } - if (!empty($options["quota_hardinode_" . $id . "_" . $dirs[$i]][0]) && !get_preg($options["quota_hardinode_" . $id . "_" . $dirs[$i]][0], 'quotaNumber')) { + if (!empty($options["quota_hardinode_" . $id . "_" . $dirName][0]) && !get_preg($options["quota_hardinode_" . $id . "_" . $dirName][0], 'quotaNumber')) { $return[] = $this->messages['hardinode'][0]; } - if (!empty($options["quota_softblock_" . $id . "_" . $dirs[$i]][0]) - && !empty($options["quota_hardblock_" . $id . "_" . $dirs[$i]][0]) - && ($this->getQuotaNumber($options["quota_softblock_" . $id . "_" . $dirs[$i]][0]) > $this->getQuotaNumber($options["quota_hardblock_" . $id . "_" . $dirs[$i]][0]))) { + if (!empty($options["quota_softblock_" . $id . "_" . $dirName][0]) + && !empty($options["quota_hardblock_" . $id . "_" . $dirName][0]) + && ($this->getQuotaNumber($options["quota_softblock_" . $id . "_" . $dirName][0]) > $this->getQuotaNumber($options["quota_hardblock_" . $id . "_" . $dirName][0]))) { $return[] = $this->messages['block_cmp'][0]; } - if (!empty($options["quota_softinode_" . $id . "_" . $dirs[$i]][0]) - && !empty($options["quota_hardinode_" . $id . "_" . $dirs[$i]][0]) - && ($this->getQuotaNumber($options["quota_softinode_" . $id . "_" . $dirs[$i]][0]) > $this->getQuotaNumber($options["quota_hardinode_" . $id . "_" . $dirs[$i]][0]))) { + if (!empty($options["quota_softinode_" . $id . "_" . $dirName][0]) + && !empty($options["quota_hardinode_" . $id . "_" . $dirName][0]) + && ($this->getQuotaNumber($options["quota_softinode_" . $id . "_" . $dirName][0]) > $this->getQuotaNumber($options["quota_hardinode_" . $id . "_" . $dirName][0]))) { $return[] = $this->messages['inode_cmp'][0]; } - $i++; } } return $return; From 56d51c8e8cdda60b34e2b990c4154f2dd6ca9120 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 21 Apr 2020 20:01:35 +0200 Subject: [PATCH 05/11] fixed issue with LDAP escaping --- lam/lib/account.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/account.inc b/lam/lib/account.inc index c216d6b7..1fa8dabf 100644 --- a/lam/lib/account.inc +++ b/lam/lib/account.inc @@ -756,7 +756,7 @@ function searchLDAPByAttribute($name, $value, $objectClass, $attributes, $scopes $filter = ''; $filterParts = array(); if ($name != null) { - $filterParts[] = '(' . $name . '=' . ldap_escape($value) . ')'; + $filterParts[] = '(' . $name . '=' . ldap_escape($value, '*', LDAP_ESCAPE_FILTER) . ')'; } if ($objectClass != null) { $filterParts[] = '(objectClass=' . $objectClass . ')'; From d980ffc1a5ee71ff4960f5968f924ed3f0baa664 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 21 Apr 2020 20:14:57 +0200 Subject: [PATCH 06/11] 7.2 --- lam/HISTORY | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lam/HISTORY b/lam/HISTORY index f7ff148c..0f3fe153 100644 --- a/lam/HISTORY +++ b/lam/HISTORY @@ -3,6 +3,9 @@ June 2020 7.2 - LAM Pro: -> EMail sending can be done via SMTP without local mail server -> License expiration warning can be sent via email or disabled + - Fixed bugs: + -> Captcha don't show anymore in Self Service login page (213) + -> Unix memberships cannot be changed. This issue can also affect other membership relations. 17.03.2020 7.1 From 5a40e6fed1064aac84a5ebaa19041de1f2936de1 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 21 Apr 2020 21:18:39 +0200 Subject: [PATCH 07/11] 7.2 --- lam/help/help.inc | 6 +- lam/locale/de_DE/LC_MESSAGES/messages.mo | Bin 351525 -> 352065 bytes lam/locale/de_DE/LC_MESSAGES/messages.po | 2660 +++++++++++---------- lam/locale/en_US/LC_MESSAGES/messages.mo | Bin 332433 -> 332955 bytes lam/locale/en_US/LC_MESSAGES/messages.po | 2781 ++++++++++++---------- lam/templates/config/mainmanage.php | 4 +- 6 files changed, 2846 insertions(+), 2605 deletions(-) diff --git a/lam/help/help.inc b/lam/help/help.inc index b3cbe109..9ec58a10 100644 --- a/lam/help/help.inc +++ b/lam/help/help.inc @@ -238,9 +238,9 @@ $helpArray = array ( '287' => array ("Headline" => _('Licence'), "Text" => _('Please enter your licence key.')), '288' => array ("Headline" => _('Expiration warning'), - "Text" => _('Please select how to be warned before your license expires.')), + "Text" => _('Please select how to be warned before your licence expires.')), '289' => array ("Headline" => _('From address'), - "Text" => _('This email address will be set as sender address of all mails.')), + "Text" => _('This email address will be set as sender address of the mails.')), '290' => array ("Headline" => _('TO address'), "Text" => _('This email address will be set as TO address for the mails.')), // 300 - 399 @@ -388,7 +388,7 @@ $helpArray = array ( // jobs '800' => array( "Headline" => _('From address'), - "Text" => _('This email address will be set as sender address of all mails.') + "Text" => _('This email address will be set as sender address of the mails.') ), '801' => array( "Headline" => _('Reply-to address'), diff --git a/lam/locale/de_DE/LC_MESSAGES/messages.mo b/lam/locale/de_DE/LC_MESSAGES/messages.mo index f1e24d351648e190d34754c1daf0b67e41b66605..e1675b9782ef015bffe4c5fc2bd854ac25344ba4 100644 GIT binary patch delta 74467 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\n" "Language-Team: German \n" "Language: de\n" @@ -86,32 +86,32 @@ msgstr "/home/hmueller" msgid "123-123-1234" msgstr "01234 123456" -#: ../lib/modules/windowsLDSUser.inc:488 ../lib/modules/windowsLDSUser.inc:496 +#: ../lib/modules/windowsLDSUser.inc:492 ../lib/modules/windowsLDSUser.inc:500 #: ../lib/modules/windowsUser.inc:645 ../lib/modules/windowsUser.inc:653 #: ../lib/modules/inetOrgPerson.inc:365 msgid "123-123-1235" msgstr "01234 123457" -#: ../lib/modules/windowsLDSUser.inc:464 ../lib/modules/windowsLDSUser.inc:472 -#: ../lib/modules/windowsLDSUser.inc:480 ../lib/modules/windowsUser.inc:621 +#: ../lib/modules/windowsLDSUser.inc:468 ../lib/modules/windowsLDSUser.inc:476 +#: ../lib/modules/windowsLDSUser.inc:484 ../lib/modules/windowsUser.inc:621 #: ../lib/modules/windowsUser.inc:629 ../lib/modules/windowsUser.inc:637 #: ../lib/modules/inetOrgPerson.inc:373 ../lib/modules/inetOrgPerson.inc:381 msgid "123-123-1236" msgstr "01234 123458" -#: ../lib/modules/windowsLDSUser.inc:425 ../lib/modules/windowsLDSUser.inc:431 +#: ../lib/modules/windowsLDSUser.inc:429 ../lib/modules/windowsLDSUser.inc:435 #: ../lib/modules/windowsUser.inc:520 ../lib/modules/windowsUser.inc:526 #: ../lib/modules/inetOrgPerson.inc:357 msgid "123-124-1234" msgstr "01234 123459" -#: ../lib/modules/windowsLDSUser.inc:389 ../lib/modules/windowsUser.inc:478 +#: ../lib/modules/windowsLDSUser.inc:393 ../lib/modules/windowsUser.inc:478 #: ../lib/modules/inetOrgPerson.inc:341 msgid "12345" msgstr "12345" #: ../templates/config/confmain.php:463 -#: ../templates/selfService/adminMain.php:485 ../help/help.inc:302 +#: ../templates/selfService/adminMain.php:485 ../help/help.inc:312 msgid "2-factor authentication" msgstr "2-Faktor-Authentifizierung" @@ -188,8 +188,8 @@ msgstr "SOA-Einträge erlauben keine anderen Einträge außer NS/MX/A." msgid "A SOA record requires that the host name is set to \"@\"." msgstr "Ein SOA-Eintrag erfordert, dass der Hostname \"@\" ist." -#: ../lib/modules/selfRegistration.inc:772 -#: ../lib/modules/passwordSelfReset.inc:1862 +#: ../lib/modules/selfRegistration.inc:771 +#: ../lib/modules/passwordSelfReset.inc:1860 msgid "" "A confirmation mail was sent. Please click on the link in the mail to " "proceed." @@ -275,7 +275,7 @@ msgstr "AMA-Flags" msgid "Abandon" msgstr "Abbrechen" -#: ../templates/lists/changePassword.php:752 +#: ../templates/lists/changePassword.php:756 msgid "Aborted password change." msgstr "Passwortänderung wurde abgebrochen." @@ -283,7 +283,7 @@ msgstr "Passwortänderung wurde abgebrochen." msgid "Access level" msgstr "Zugriffsrechte" -#: ../lib/modules/windowsLDSUser.inc:946 ../lib/modules/account.inc:61 +#: ../lib/modules/windowsLDSUser.inc:954 ../lib/modules/account.inc:61 #: ../lib/modules/windowsUser.inc:1248 msgid "Account" msgstr "Account" @@ -297,18 +297,18 @@ msgstr "Account" #: ../lib/modules/pykotaPrinter.inc:219 ../lib/modules/mitKerberos.inc:281 #: ../lib/modules/mitKerberos.inc:282 ../lib/modules/mitKerberos.inc:283 #: ../lib/modules/mitKerberos.inc:285 ../lib/modules/mitKerberos.inc:287 -#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/windowsLDSUser.inc:743 -#: ../lib/modules/windowsLDSUser.inc:745 ../lib/modules/windowsLDSUser.inc:747 -#: ../lib/modules/windowsLDSUser.inc:749 ../lib/modules/windowsLDSUser.inc:751 -#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:755 -#: ../lib/modules/windowsLDSUser.inc:757 ../lib/modules/windowsLDSUser.inc:759 -#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:763 -#: ../lib/modules/windowsLDSUser.inc:765 ../lib/modules/windowsLDSUser.inc:767 -#: ../lib/modules/windowsLDSUser.inc:769 ../lib/modules/windowsLDSUser.inc:771 -#: ../lib/modules/windowsLDSUser.inc:773 ../lib/modules/windowsLDSUser.inc:775 -#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:781 -#: ../lib/modules/windowsLDSUser.inc:783 ../lib/modules/windowsLDSUser.inc:784 -#: ../lib/modules/windowsLDSUser.inc:1642 ../lib/modules/kopanoServer.inc:150 +#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/windowsLDSUser.inc:750 +#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/windowsLDSUser.inc:754 +#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:758 +#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:762 +#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:766 +#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:776 ../lib/modules/windowsLDSUser.inc:778 +#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:782 +#: ../lib/modules/windowsLDSUser.inc:786 ../lib/modules/windowsLDSUser.inc:788 +#: ../lib/modules/windowsLDSUser.inc:790 ../lib/modules/windowsLDSUser.inc:791 +#: ../lib/modules/windowsLDSUser.inc:1660 ../lib/modules/kopanoServer.inc:150 #: ../lib/modules/kopanoServer.inc:152 ../lib/modules/kopanoServer.inc:154 #: ../lib/modules/kopanoServer.inc:155 ../lib/modules/autoDelete.inc:103 #: ../lib/modules/zarafaDynamicGroup.inc:181 @@ -339,8 +339,8 @@ msgstr "Account" #: ../lib/modules/zarafaContact.inc:179 ../lib/modules/zarafaContact.inc:180 #: ../lib/modules/zarafaContact.inc:181 ../lib/modules/zarafaContact.inc:184 #: ../lib/modules/zarafaContact.inc:185 ../lib/modules/windowsHost.inc:145 -#: ../lib/modules/posixGroup.inc:708 ../lib/modules/posixGroup.inc:712 -#: ../lib/modules/posixGroup.inc:713 ../lib/modules/zarafaGroup.inc:190 +#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 ../lib/modules/zarafaGroup.inc:190 #: ../lib/modules/zarafaGroup.inc:192 ../lib/modules/zarafaGroup.inc:193 #: ../lib/modules/zarafaGroup.inc:194 ../lib/modules/zarafaGroup.inc:195 #: ../lib/modules/zarafaGroup.inc:197 ../lib/modules/device.inc:127 @@ -579,7 +579,7 @@ msgstr "Erstellung von Accounts mittels Dateiupload" msgid "Account deactivated" msgstr "Account deaktiviert" -#: ../templates/lists/changePassword.php:272 +#: ../templates/lists/changePassword.php:276 msgid "Account details" msgstr "Accountdetails" @@ -639,7 +639,7 @@ msgstr "Account deaktiviert" msgid "Account is locked" msgstr "Account gesperrt" -#: ../templates/lists/changePassword.php:418 ../lib/modules/locking389ds.inc:57 +#: ../templates/lists/changePassword.php:422 ../lib/modules/locking389ds.inc:57 msgid "Account locking" msgstr "Kontensperrung" @@ -687,13 +687,13 @@ msgstr "" msgid "Account was created successfully." msgstr "Account wurde erfolgreich erstellt." -#: ../templates/lists/changePassword.php:782 -#: ../templates/lists/changePassword.php:893 -#: ../templates/lists/changePassword.php:943 ../lib/modules.inc:1399 +#: ../templates/lists/changePassword.php:786 +#: ../templates/lists/changePassword.php:897 +#: ../templates/lists/changePassword.php:947 ../lib/modules.inc:1399 msgid "Account was modified successfully." msgstr "Account wurde erfolgreich geändert." -#: ../lib/passwordExpirationJob.inc:488 ../help/help.inc:414 +#: ../lib/passwordExpirationJob.inc:486 ../help/help.inc:424 msgid "Action" msgstr "Aktion" @@ -705,11 +705,11 @@ msgstr "Aktionsart" msgid "Actions" msgstr "Aktionen" -#: ../templates/lists/changePassword.php:415 ../lib/types/user.inc:508 +#: ../templates/lists/changePassword.php:419 ../lib/types/user.inc:508 msgid "Activate" msgstr "Aktivieren" -#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:366 +#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:362 msgid "Activate DynDNS" msgstr "DynDNS aktivieren" @@ -718,7 +718,7 @@ msgstr "DynDNS aktivieren" msgid "Activate TLS" msgstr "TLS aktivieren" -#: ../help/help.inc:205 +#: ../help/help.inc:209 msgid "" "Activate this checkbox if you have any server side extension for referential " "integrity in place. LAM will then skip cleanup tasks like deletion of group " @@ -758,7 +758,7 @@ msgstr "" "Wenn Sie dieses Kästchen aktivieren, dann der Client-Drucker als " "Standarddrucker verwendet." -#: ../help/help.inc:376 +#: ../help/help.inc:386 msgid "" "Activate this option to export internal attributes that are not visible by " "default." @@ -807,7 +807,7 @@ msgstr "" #: ../lib/modules/kopanoAddressList.inc:141 #: ../lib/modules/kopanoAddressList.inc:185 #: ../lib/modules/kopanoAddressList.inc:298 ../lib/modules/fixed_ip.inc:119 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:763 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:761 msgid "Active" msgstr "Aktiv" @@ -839,18 +839,18 @@ msgstr "Aktive Accounttypen" #: ../lib/modules/bindDLZ.inc:995 ../lib/modules/bindDLZ.inc:1083 #: ../lib/modules/bindDLZ.inc:1197 ../lib/modules/bindDLZ.inc:1327 #: ../lib/modules/bindDLZ.inc:1493 ../lib/modules/bindDLZ.inc:1602 -#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:687 -#: ../lib/modules/kolabUser.inc:735 ../lib/modules/sambaGroupMapping.inc:372 +#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:686 +#: ../lib/modules/kolabUser.inc:734 ../lib/modules/sambaGroupMapping.inc:372 #: ../lib/modules/sambaGroupMapping.inc:465 ../lib/modules/pykotaUser.inc:373 #: ../lib/modules/ldapPublicKey.inc:355 ../lib/modules/ldapPublicKey.inc:364 #: ../lib/modules/nisNetGroupUser.inc:219 ../lib/modules/yubiKeyUser.inc:322 #: ../lib/modules/yubiKeyUser.inc:323 ../lib/modules/nisnetgroup.inc:301 -#: ../lib/modules/inetOrgPerson.inc:1768 ../lib/modules/kopanoUser.inc:843 +#: ../lib/modules/inetOrgPerson.inc:1766 ../lib/modules/kopanoUser.inc:843 #: ../lib/modules/kopanoUser.inc:1416 ../lib/modules/kopanoUser.inc:1447 #: ../lib/modules/windowsLDSGroup.inc:423 ../lib/modules/customFields.inc:1243 #: ../lib/modules/customFields.inc:2569 ../lib/modules/customFields.inc:2587 #: ../lib/modules/qmailGroup.inc:642 ../lib/modules/organizationalRole.inc:304 -#: ../lib/modules/fixed_ip.inc:608 ../lib/modules/windowsGroup.inc:656 +#: ../lib/modules/fixed_ip.inc:606 ../lib/modules/windowsGroup.inc:656 #: ../lib/modules/groupOfNames.inc:354 ../lib/modules/groupOfNames.inc:503 msgid "Add" msgstr "Hinzufügen" @@ -924,7 +924,7 @@ msgstr "Samba 3-Erweiterung hinzufügen" msgid "Add Shadow account extension" msgstr "Shadow-Erweiterung hinzufügen" -#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1704 +#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1759 msgid "Add Unix extension" msgstr "Unix-Erweiterung hinzufügen" @@ -943,7 +943,7 @@ msgstr "Zarafa-Kontakt-Erweiterung hinzufügen" msgid "Add Zarafa extension" msgstr "Zarafa-Erweiterung hinzufügen" -#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4118 +#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4115 msgid "Add addressbook (ou=addressbook)" msgstr "Adressbuch hinzufügen (ou=addressbook)" @@ -964,7 +964,7 @@ msgstr "Neuen Attributwert hinzufügen" msgid "Add another rule" msgstr "Regel hinzufügen" -#: ../lib/modules/inetOrgPerson.inc:1802 ../lib/modules/windowsLDSGroup.inc:476 +#: ../lib/modules/inetOrgPerson.inc:1800 ../lib/modules/windowsLDSGroup.inc:476 #: ../lib/modules/qmailGroup.inc:683 ../lib/modules/organizationalRole.inc:309 #: ../lib/modules/groupOfNames.inc:406 ../lib/modules/groupOfNames.inc:555 msgid "Add entries" @@ -981,7 +981,7 @@ msgstr "Einträge hinzufügen" msgid "Add entries of this type:" msgstr "Einträge diesen Typs hinzufügen:" -#: ../lib/modules/fixed_ip.inc:520 +#: ../lib/modules/fixed_ip.inc:518 msgid "Add existing host" msgstr "Bestehenden Host hinzufügen" @@ -989,7 +989,7 @@ msgstr "Bestehenden Host hinzufügen" msgid "Add extension" msgstr "Erweiterung hinzufügen" -#: ../lib/modules/ddns.inc:367 +#: ../lib/modules/ddns.inc:363 msgid "Add fix IP addresses to DNS" msgstr "Feste IP-Adressen zum DNS hinzufügen" @@ -997,7 +997,7 @@ msgstr "Feste IP-Adressen zum DNS hinzufügen" msgid "Add host extension" msgstr "Host-Erweiterung hinzufügen" -#: ../templates/selfService/adminMain.php:707 ../help/help.inc:290 +#: ../templates/selfService/adminMain.php:707 ../help/help.inc:300 msgid "Add input field" msgstr "Feld hinzufügen" @@ -1043,7 +1043,7 @@ msgstr "Neues Binärattribut hinzufügen" msgid "Add new field" msgstr "Feld hinzufügen" -#: ../templates/selfService/adminMain.php:695 ../help/help.inc:288 +#: ../templates/selfService/adminMain.php:695 ../help/help.inc:298 msgid "Add new group" msgstr "Gruppe hinzufügen" @@ -1064,8 +1064,8 @@ msgstr "Objektklasse und Attribut hinzufügen" msgid "Add password self reset extension" msgstr "Erweiterung für Passwortrücksetzung hinzufügen" -#: ../lib/modules/windowsLDSUser.inc:223 ../lib/modules/windowsLDSUser.inc:323 -#: ../lib/modules/windowsLDSUser.inc:976 ../lib/modules/windowsUser.inc:300 +#: ../lib/modules/windowsLDSUser.inc:227 ../lib/modules/windowsLDSUser.inc:327 +#: ../lib/modules/windowsLDSUser.inc:994 ../lib/modules/windowsUser.inc:300 #: ../lib/modules/windowsUser.inc:400 ../lib/modules/windowsUser.inc:1350 #: ../lib/modules/inetOrgPerson.inc:693 ../lib/modules/inetOrgPerson.inc:1609 msgid "Add photo" @@ -1094,7 +1094,7 @@ msgstr "Zu bestehendem Alias hinzufügen" msgid "Add value" msgstr "Wert hinzufügen" -#: ../lib/modules/posixGroup.inc:1002 ../lib/modules/posixGroup.inc:1045 +#: ../lib/modules/posixGroup.inc:1003 ../lib/modules/posixGroup.inc:1046 msgid "Added users" msgstr "Hinzugefügte Benutzer" @@ -1102,17 +1102,17 @@ msgstr "Hinzugefügte Benutzer" msgid "Adding" msgstr "Füge hinzu" -#: ../lib/modules/range.inc:139 -msgid "Adding the range failed because errors occured." +#: ../lib/modules/range.inc:138 +msgid "Adding the range failed because errors occurred." msgstr "Hinzufügen des Adressbereiches schlug fehl." -#: ../templates/selfService/adminMain.php:601 ../help/help.inc:294 +#: ../templates/selfService/adminMain.php:601 ../help/help.inc:304 msgid "Additional CSS links" msgstr "Zusätzliche CSS-Links" #: ../templates/config/conftypes.php:245 -#: ../templates/selfService/adminMain.php:447 ../help/help.inc:184 -#: ../help/help.inc:298 +#: ../templates/selfService/adminMain.php:447 ../help/help.inc:188 +#: ../help/help.inc:308 msgid "Additional LDAP filter" msgstr "Zusätzlicher LDAP-Filter" @@ -1127,8 +1127,8 @@ msgstr "Zusätzliche EMail-Adressen für diesen Account." #: ../lib/modules/posixAccount.inc:231 ../lib/modules/posixAccount.inc:304 #: ../lib/modules/posixAccount.inc:353 ../lib/modules/posixAccount.inc:439 -#: ../lib/modules/posixAccount.inc:1641 ../lib/modules/posixAccount.inc:1977 -#: ../lib/modules/posixAccount.inc:2113 +#: ../lib/modules/posixAccount.inc:1696 ../lib/modules/posixAccount.inc:2032 +#: ../lib/modules/posixAccount.inc:2167 msgid "Additional groups" msgstr "Zusätzliche Gruppen" @@ -1136,15 +1136,11 @@ msgstr "Zusätzliche Gruppen" msgid "Additional notes to describe this entry." msgstr "Zusätzliche Notizen für diesen Account." -#: ../templates/config/mainmanage.php:457 -msgid "Additional options" -msgstr "Zusätzliche Optionen" - -#: ../lib/upload.inc:257 +#: ../lib/upload.inc:256 msgid "Additional tasks for module:" msgstr "Zusätzliche Aufgaben des Moduls:" -#: ../lib/modules/windowsLDSUser.inc:868 ../lib/modules/windowsUser.inc:1169 +#: ../lib/modules/windowsLDSUser.inc:875 ../lib/modules/windowsUser.inc:1169 #: ../lib/modules/inetOrgPerson.inc:1253 msgid "Address" msgstr "Adresse" @@ -1159,7 +1155,7 @@ msgstr "Anzahl Adresslisten: %s" msgid "Address of IMAP server (e.g. mail.example.org)." msgstr "Adresse des IMAP-Servers (z.B. mail.beispiel.de)." -#: ../help/help.inc:289 +#: ../help/help.inc:299 msgid "" "Adds a new group element to the list of self service options. Use this to " "structure the input fields." @@ -1167,11 +1163,11 @@ msgstr "" "Fügt eine neue Gruppe hinzu. Sie können damit die Eingabefelder " "strukturieren." -#: ../lib/modules/range.inc:117 +#: ../lib/modules/range.inc:116 msgid "Adds a new range pool." msgstr "Fügt einen neuen Pool hinzu." -#: ../help/help.inc:291 +#: ../help/help.inc:301 msgid "Adds a new self service option to the selected group element." msgstr "Damit fügen Sie einer Gruppe ein neues Eingabefeld hinzu." @@ -1179,7 +1175,7 @@ msgstr "Damit fügen Sie einer Gruppe ein neues Eingabefeld hinzu." msgid "Adds an \"ou=addressbook\" subentry to each user." msgstr "Fügt jedem Benutzer einen \"ou=addressbook\" Untereintrag hinzu." -#: ../lib/modules/range.inc:113 +#: ../lib/modules/range.inc:112 msgid "Adds input fields for a new IP range." msgstr "Fügt Eingabefelder für einen neuen IP-Bereich hinzu." @@ -1222,8 +1218,8 @@ msgstr "Admin-email" msgid "Admin password" msgstr "Adminstratorpasswort" -#: ../lib/modules/windowsLDSUser.inc:543 ../lib/modules/windowsLDSUser.inc:551 -#: ../lib/modules/windowsLDSUser.inc:567 ../lib/modules/windowsUser.inc:726 +#: ../lib/modules/windowsLDSUser.inc:547 ../lib/modules/windowsLDSUser.inc:555 +#: ../lib/modules/windowsLDSUser.inc:571 ../lib/modules/windowsUser.inc:726 #: ../lib/modules/windowsUser.inc:734 ../lib/modules/windowsUser.inc:750 #: ../lib/modules/inetOrgPerson.inc:301 ../lib/modules/inetOrgPerson.inc:423 #: ../lib/modules/inetOrgPerson.inc:431 @@ -1236,14 +1232,14 @@ msgstr "Verwaltung" msgid "Administrators group" msgstr "Administratoren" -#: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2170 -#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4150 +#: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2210 +#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4147 msgid "Advanced options" msgstr "Erweiterte Optionen" #: ../lib/modules/eduPerson.inc:104 ../lib/modules/eduPerson.inc:108 #: ../lib/modules/eduPerson.inc:180 ../lib/modules/eduPerson.inc:224 -#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:550 +#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:544 msgid "Affiliations" msgstr "Zugehörigkeiten" @@ -1347,7 +1343,7 @@ msgstr "Aliase für Email" msgid "Aliases for user name" msgstr "Aliase für Benutzername" -#: ../lib/lists.inc:798 +#: ../lib/lists.inc:797 #, php-format msgid "All accounts (%s)" msgstr "Alle Accounts (%s)" @@ -1357,7 +1353,7 @@ msgstr "Alle Accounts (%s)" msgid "All changes were successful." msgstr "Alle Änderungen waren erfolgreich." -#: ../lib/lists.inc:797 +#: ../lib/lists.inc:796 #, php-format msgid "All selected accounts (%s)" msgstr "Alle selektierten Accounts (%s)" @@ -1366,7 +1362,7 @@ msgstr "Alle selektierten Accounts (%s)" msgid "Allow" msgstr "Erlauben" -#: ../templates/config/confmain.php:376 ../help/help.inc:349 +#: ../templates/config/confmain.php:376 ../help/help.inc:359 msgid "Allow alternate address" msgstr "Alternative Adresse erlauben" @@ -1395,7 +1391,7 @@ msgstr "Mehrere Werte erlauben" msgid "Allow password change" msgstr "Passwortänderung erlauben" -#: ../templates/config/confmain.php:329 ../help/help.inc:220 +#: ../templates/config/confmain.php:329 ../help/help.inc:224 msgid "Allow setting specific passwords" msgstr "Erlaube Setzen eines spezifischen Passwortes" @@ -1406,7 +1402,7 @@ msgstr "Erlaube Setzen eines spezifischen Passwortes" msgid "Allow terminal server login" msgstr "Terminalserver-Login erlauben" -#: ../templates/config/confmain.php:335 ../help/help.inc:222 +#: ../templates/config/confmain.php:335 ../help/help.inc:226 msgid "Allow to display password on screen" msgstr "Erlaube Passwortanzeige auf dem Bildschirm" @@ -1427,12 +1423,12 @@ msgstr "Benutzereingaben für dieses Feld erlauben." msgid "Allowed codec" msgstr "Erlaubter Codec" -#: ../templates/config/mainmanage.php:313 ../lib/types/user.inc:104 +#: ../templates/config/mainmanage.php:353 ../lib/types/user.inc:104 #: ../help/help.inc:160 msgid "Allowed hosts" msgstr "Erlaubte PCs" -#: ../templates/config/mainmanage.php:315 +#: ../templates/config/mainmanage.php:355 msgid "Allowed hosts (self service)" msgstr "Erlaubte Hosts (SelfService)" @@ -1476,7 +1472,7 @@ msgstr "Erlaubte Absender" msgid "Allowed workstations" msgstr "Erlaubte PCs" -#: ../help/help.inc:223 +#: ../help/help.inc:227 msgid "Allows to display a randomly generated password on screen." msgstr "" "Erlaubt die Anzeige eines zufällig erzeugten Passwortes auf dem Bildschirm." @@ -1489,12 +1485,12 @@ msgstr "Erlaubt die Eingabe mehrerer Werte für dieses Attribut." msgid "Allows to select multiple values from the list." msgstr "Erlaubt die Selektion mehrerer Werte in der Liste." -#: ../help/help.inc:221 +#: ../help/help.inc:225 msgid "Allows to set a specific password via input field." msgstr "Erlaubt das Setzen eines spezifischen Passwortes über ein Eingabefeld." -#: ../templates/lists/changePassword.php:334 -#: ../templates/lists/changePassword.php:370 ../lib/modules/qmailUser.inc:169 +#: ../templates/lists/changePassword.php:338 +#: ../templates/lists/changePassword.php:374 ../lib/modules/qmailUser.inc:169 #: ../lib/modules/qmailUser.inc:237 ../lib/modules/qmailUser.inc:357 #: ../lib/modules/qmailUser.inc:404 ../lib/modules/qmailUser.inc:451 #: ../lib/modules/qmailUser.inc:931 ../lib/modules/qmailGroup.inc:96 @@ -1504,7 +1500,7 @@ msgstr "Erlaubt das Setzen eines spezifischen Passwortes über ein Eingabefeld." msgid "Alternate address" msgstr "Alternative Adresse" -#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:270 +#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:280 msgid "Alternate recipient" msgstr "Alternativer Empfänger" @@ -1555,18 +1551,18 @@ msgstr "" msgid "Answer" msgstr "Antwort" -#: ../lib/modules/windowsLDSUser.inc:304 ../lib/modules/windowsLDSUser.inc:308 +#: ../lib/modules/windowsLDSUser.inc:308 ../lib/modules/windowsLDSUser.inc:312 #: ../lib/modules/windowsUser.inc:381 ../lib/modules/windowsUser.inc:385 msgid "Any secondary mobile numbers." msgstr "Die weiteren Handynummern des Benutzers." -#: ../lib/modules/windowsLDSUser.inc:292 ../lib/modules/windowsLDSUser.inc:296 +#: ../lib/modules/windowsLDSUser.inc:296 ../lib/modules/windowsLDSUser.inc:300 #: ../lib/modules/windowsUser.inc:369 ../lib/modules/windowsUser.inc:373 msgid "Any secondary pager numbers." msgstr "Die weiteren Pagernummern des Benutzers." #: ../lib/modules/kolabUser.inc:279 ../lib/modules/kolabUser.inc:604 -#: ../lib/modules/kolabUser.inc:710 ../lib/modules/kolabUser.inc:713 +#: ../lib/modules/kolabUser.inc:709 ../lib/modules/kolabUser.inc:712 msgid "Anyone" msgstr "Jeder" @@ -1623,7 +1619,7 @@ msgstr "Fragen" #: ../lib/modules/eduPerson.inc:141 ../lib/modules/eduPerson.inc:145 #: ../lib/modules/eduPerson.inc:217 ../lib/modules/eduPerson.inc:233 -#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:555 +#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:549 msgid "Assurance profiles" msgstr "Sicherheitsprofile" @@ -1709,7 +1705,7 @@ msgstr "Attributtypen" #: ../templates/tools/importexport.php:279 #: ../lib/modules/selfRegistration.inc:77 -#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:373 +#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:383 msgid "Attributes" msgstr "Attribute" @@ -1768,12 +1764,12 @@ msgstr "Automatische Skripte" #: ../lib/modules/puppetClient.inc:115 ../lib/modules/puppetClient.inc:172 #: ../lib/modules/qmailUser.inc:98 ../lib/modules/qmailUser.inc:229 #: ../lib/modules/zarafaContact.inc:90 ../lib/modules/zarafaContact.inc:651 -#: ../lib/modules/posixGroup.inc:393 ../lib/modules/posixGroup.inc:480 +#: ../lib/modules/posixGroup.inc:394 ../lib/modules/posixGroup.inc:481 #: ../lib/modules/eduPerson.inc:149 ../lib/modules/eduPerson.inc:154 #: ../lib/modules/pykotaGroup.inc:123 ../lib/modules/pykotaGroup.inc:134 #: ../lib/modules/sambaSamAccount.inc:165 #: ../lib/modules/sambaSamAccount.inc:404 ../lib/modules/posixAccount.inc:315 -#: ../lib/modules/posixAccount.inc:2018 ../lib/modules/zarafaUser.inc:154 +#: ../lib/modules/posixAccount.inc:2073 ../lib/modules/zarafaUser.inc:154 #: ../lib/modules/zarafaUser.inc:1345 ../lib/modules/kopanoContact.inc:90 #: ../lib/modules/kopanoContact.inc:603 #: ../lib/modules/courierMailAccount.inc:132 @@ -1843,10 +1839,10 @@ msgstr "Verfügbare Accounttypen" msgid "Available actions" msgstr "Verfügbare Aktionen" -#: ../lib/modules/windowsLDSUser.inc:1241 ../lib/modules/posixAccount.inc:1783 -#: ../lib/modules/posixAccount.inc:1814 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1838 +#: ../lib/modules/posixAccount.inc:1869 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Available groups" msgstr "Verfügbare Gruppen" @@ -1863,7 +1859,7 @@ msgstr "Verfügbare Module" msgid "Available roles" msgstr "Verfügbare Rollen" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Available users" msgstr "Verfügbare Benutzer" @@ -1876,25 +1872,25 @@ msgid "B-Node (0x01)" msgstr "B-Knoten (0x01)" #: ../lib/passwordExpirationJob.inc:86 ../lib/passwordExpirationJob.inc:140 -#: ../help/help.inc:406 +#: ../help/help.inc:416 msgid "BCC address" msgstr "BCC-Adresse" #: ../templates/config/jobList.php:174 #: ../templates/upload/massBuildAccounts.php:292 -#: ../lib/modules/windowsLDSUser.inc:1244 -#: ../lib/modules/windowsLDSUser.inc:1279 ../lib/modules/zarafaContact.inc:474 -#: ../lib/modules/posixGroup.inc:349 ../lib/modules/zarafaGroup.inc:489 +#: ../lib/modules/windowsLDSUser.inc:1262 +#: ../lib/modules/windowsLDSUser.inc:1297 ../lib/modules/zarafaContact.inc:474 +#: ../lib/modules/posixGroup.inc:350 ../lib/modules/zarafaGroup.inc:489 #: ../lib/modules/device.inc:295 ../lib/modules/kopanoGroup.inc:440 #: ../lib/modules/sambaSamAccount.inc:1372 -#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1888 -#: ../lib/modules/posixAccount.inc:1956 ../lib/modules/zarafaUser.inc:978 +#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1943 +#: ../lib/modules/posixAccount.inc:2011 ../lib/modules/zarafaUser.inc:978 #: ../lib/modules/zarafaUser.inc:1027 ../lib/modules/kopanoContact.inc:424 #: ../lib/modules/windowsUser.inc:1881 ../lib/modules/windowsUser.inc:2025 #: ../lib/modules/windowsUser.inc:2214 ../lib/modules/sambaGroupMapping.inc:485 #: ../lib/modules/pykotaUser.inc:581 ../lib/modules/pykotaUser.inc:624 -#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1711 -#: ../lib/modules/inetOrgPerson.inc:1803 ../lib/modules/inetOrgPerson.inc:1888 +#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1709 +#: ../lib/modules/inetOrgPerson.inc:1801 ../lib/modules/inetOrgPerson.inc:1886 #: ../lib/modules/kopanoUser.inc:899 ../lib/modules/kopanoUser.inc:947 #: ../lib/modules/windowsLDSGroup.inc:298 #: ../lib/modules/windowsLDSGroup.inc:484 @@ -1919,7 +1915,7 @@ msgstr "Zurück zur DNS-Liste" msgid "Back to NIS object list" msgstr "Zurück zur NIS-Objektliste" -#: ../lib/baseType.inc:56 +#: ../lib/baseType.inc:55 msgid "Back to account list" msgstr "Zurück zur Accountliste" @@ -2015,11 +2011,11 @@ msgstr "Nach oben" msgid "Backends" msgstr "Backends" -#: ../help/help.inc:323 +#: ../help/help.inc:333 msgid "Background color for self service pages." msgstr "Hintergrundfarbe für SelfService-Seiten." -#: ../templates/lists/changePassword.php:283 +#: ../templates/lists/changePassword.php:287 #: ../lib/modules/passwordSelfReset.inc:91 #: ../lib/modules/passwordSelfReset.inc:241 #: ../lib/modules/passwordSelfReset.inc:259 @@ -2109,23 +2105,23 @@ msgstr "Basis (nur Basis-DN)" #: ../templates/3rdParty/pla/lib/QueryRender.php:106 #: ../templates/3rdParty/pla/lib/QueryRender.php:479 #: ../templates/3rdParty/pla/htdocs/export_form.php:59 ../lib/export.inc:127 -#: ../lib/export.inc:254 ../help/help.inc:369 +#: ../lib/export.inc:254 ../help/help.inc:379 msgid "Base DN" msgstr "Basis-DN" #: ../templates/config/confmain.php:496 #: ../templates/selfService/adminMain.php:480 #: ../templates/selfService/adminMain.php:517 ../help/help.inc:136 -#: ../help/help.inc:304 +#: ../help/help.inc:314 msgid "Base URL" msgstr "Basis-URL" #: ../templates/config/confmain.php:499 -#: ../templates/selfService/adminMain.php:520 ../help/help.inc:306 +#: ../templates/selfService/adminMain.php:520 ../help/help.inc:316 msgid "Base URLs" msgstr "Basis-URLs" -#: ../templates/selfService/adminMain.php:599 ../help/help.inc:322 +#: ../templates/selfService/adminMain.php:599 ../help/help.inc:332 msgid "Base color" msgstr "Basisfarbe" @@ -2203,7 +2199,7 @@ msgstr "Bind-Passwort" msgid "Bind user" msgstr "Bind-Benutzer" -#: ../help/help.inc:134 ../help/help.inc:206 +#: ../help/help.inc:134 ../help/help.inc:210 msgid "Bind user and password" msgstr "Bind-Benutzer und Passwort" @@ -2242,8 +2238,8 @@ msgstr "" msgid "Block soft quota must be smaller than block hard quota." msgstr "Weiches Block-Quota muss kleiner sein als hartes Block-Quota." -#: ../templates/lists/changePassword.php:326 -#: ../templates/config/confmain.php:346 +#: ../templates/lists/changePassword.php:330 +#: ../templates/config/mainmanage.php:324 ../templates/config/confmain.php:346 msgid "Both" msgstr "Beide" @@ -2274,11 +2270,11 @@ msgstr "Die folgenden DNs gleichzeitig editieren" msgid "Bulk update the following DNs" msgstr "Die folgenden DNs gleichzeitig aktualisieren" -#: ../lib/modules/windowsLDSUser.inc:243 ../lib/modules/windowsLDSUser.inc:247 -#: ../lib/modules/windowsLDSUser.inc:541 ../lib/modules/windowsLDSUser.inc:613 -#: ../lib/modules/windowsLDSUser.inc:691 ../lib/modules/windowsLDSUser.inc:782 -#: ../lib/modules/windowsLDSUser.inc:916 ../lib/modules/windowsLDSUser.inc:1832 -#: ../lib/modules/windowsLDSUser.inc:2158 ../lib/modules/windowsUser.inc:320 +#: ../lib/modules/windowsLDSUser.inc:247 ../lib/modules/windowsLDSUser.inc:251 +#: ../lib/modules/windowsLDSUser.inc:545 ../lib/modules/windowsLDSUser.inc:617 +#: ../lib/modules/windowsLDSUser.inc:698 ../lib/modules/windowsLDSUser.inc:789 +#: ../lib/modules/windowsLDSUser.inc:923 ../lib/modules/windowsLDSUser.inc:1850 +#: ../lib/modules/windowsLDSUser.inc:2198 ../lib/modules/windowsUser.inc:320 #: ../lib/modules/windowsUser.inc:324 ../lib/modules/windowsUser.inc:724 #: ../lib/modules/windowsUser.inc:818 ../lib/modules/windowsUser.inc:940 #: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1218 @@ -2287,19 +2283,19 @@ msgstr "Die folgenden DNs gleichzeitig aktualisieren" #: ../lib/modules/inetOrgPerson.inc:299 ../lib/modules/inetOrgPerson.inc:540 #: ../lib/modules/inetOrgPerson.inc:709 ../lib/modules/inetOrgPerson.inc:713 #: ../lib/modules/inetOrgPerson.inc:1497 ../lib/modules/inetOrgPerson.inc:1500 -#: ../lib/modules/inetOrgPerson.inc:1985 ../lib/modules/inetOrgPerson.inc:2081 -#: ../lib/modules/inetOrgPerson.inc:2828 ../lib/modules/inetOrgPerson.inc:4093 -#: ../lib/modules/inetOrgPerson.inc:4132 +#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2079 +#: ../lib/modules/inetOrgPerson.inc:2826 ../lib/modules/inetOrgPerson.inc:4090 +#: ../lib/modules/inetOrgPerson.inc:4129 msgid "Business category" msgstr "Abteilung" -#: ../lib/modules/windowsLDSUser.inc:244 ../lib/modules/windowsLDSUser.inc:248 +#: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:252 #: ../lib/modules/windowsUser.inc:321 ../lib/modules/windowsUser.inc:325 #: ../lib/modules/inetOrgPerson.inc:710 ../lib/modules/inetOrgPerson.inc:714 -msgid "Business category (e.g. Administration, IT-Services, Manangement, ...)" +msgid "Business category (e.g. Administration, IT-Services, Management, ...)" msgstr "Abteilung (z.B. Verwaltung, IT-Service, Management, ...)" -#: ../help/help.inc:187 +#: ../help/help.inc:191 msgid "" "By default LAM will show all accounts that match the selected account " "modules." @@ -2307,7 +2303,7 @@ msgstr "" "Standardmäßig zeigt LAM alle Accounts an, die zu den gewählten " "Accountmodulen passen." -#: ../help/help.inc:301 +#: ../help/help.inc:311 msgid "" "By default all modifications are done as the user that authenticated in self " "service. If active then LAM will use the connection user for all LDAP " @@ -2339,7 +2335,7 @@ msgid "Bytes sent" msgstr "Bytes gesendet" #: ../lib/passwordExpirationJob.inc:85 ../lib/passwordExpirationJob.inc:134 -#: ../help/help.inc:402 +#: ../help/help.inc:412 msgid "CC address" msgstr "CC-Adresse" @@ -2401,10 +2397,10 @@ msgstr "Kann leer bleiben." msgid "Can call forward" msgstr "Kann weiterleiten" -#: ../templates/misc/ajax.php:288 ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 ../templates/tools/ou_edit.php:137 +#: ../templates/misc/ajax.php:288 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 ../templates/tools/ou_edit.php:137 #: ../templates/tools/importexport.php:209 #: ../templates/tools/importexport.php:367 ../templates/tools/webauthn.php:117 #: ../templates/config/profmanage.php:230 @@ -2412,7 +2408,7 @@ msgstr "Kann weiterleiten" #: ../templates/config/profmanage.php:252 #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:505 +#: ../templates/config/mainmanage.php:545 #: ../templates/config/confmodules.php:153 ../templates/config/jobList.php:185 #: ../templates/config/jobs.php:273 ../templates/config/jobs.php:316 #: ../templates/config/confmain.php:539 @@ -2438,7 +2434,7 @@ msgstr "Kann weiterleiten" #: ../lib/types/automountType.inc:213 ../lib/types/user.inc:357 #: ../lib/types/bind.inc:157 ../lib/html.inc:610 #: ../lib/modules/locking389ds.inc:185 ../lib/modules/pykotaPrinter.inc:422 -#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/windowsLDSUser.inc:1407 +#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/windowsLDSUser.inc:1425 #: ../lib/modules/nisMailAliasUser.inc:389 ../lib/modules/autoDelete.inc:211 #: ../lib/modules/qmailUser.inc:724 ../lib/modules/zarafaContact.inc:423 #: ../lib/modules/windowsHost.inc:270 ../lib/modules/zarafaGroup.inc:437 @@ -2449,31 +2445,31 @@ msgstr "Kann weiterleiten" #: ../lib/modules/kopanoContact.inc:375 ../lib/modules/windowsUser.inc:1738 #: ../lib/modules/windowsUser.inc:2153 ../lib/modules/sambaGroupMapping.inc:466 #: ../lib/modules/shadowAccount.inc:509 ../lib/modules/shadowAccount.inc:575 -#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1769 +#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1767 #: ../lib/modules/freeRadius.inc:568 ../lib/modules/kopanoUser.inc:844 #: ../lib/modules/windowsLDSGroup.inc:357 #: ../lib/modules/windowsLDSGroup.inc:424 ../lib/modules/webauthn.inc:175 #: ../lib/modules/customFields.inc:1244 ../lib/modules/aliasEntry.inc:157 #: ../lib/modules/aliasEntry.inc:180 ../lib/modules/qmailGroup.inc:643 -#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:609 +#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:607 #: ../lib/modules/heimdalKerberos.inc:615 ../lib/modules/windowsGroup.inc:591 #: ../lib/modules/windowsGroup.inc:657 ../lib/modules/groupOfNames.inc:355 #: ../lib/modules/groupOfNames.inc:504 ../lib/modules/nisMailAlias.inc:389 -#: ../lib/lists.inc:808 ../lib/lists.inc:891 ../lib/modules.inc:1312 +#: ../lib/lists.inc:807 ../lib/lists.inc:890 ../lib/modules.inc:1312 msgid "Cancel" msgstr "Abbrechen" -#: ../templates/login.php:513 ../templates/login.php:583 +#: ../templates/login.php:523 ../templates/login.php:593 #: ../templates/config/jobs.php:429 -#: ../templates/selfService/selfServiceLogin.php:196 -#: ../templates/selfService/selfServiceLogin.php:202 +#: ../templates/selfService/selfServiceLogin.php:197 +#: ../templates/selfService/selfServiceLogin.php:203 #: ../templates/selfService/selfServiceMain.php:171 -#: ../lib/modules/selfRegistration.inc:839 +#: ../lib/modules/selfRegistration.inc:838 msgid "Cannot connect to specified LDAP server. Please try again." msgstr "" "Kann keine Verbindung zum LDAP-Server aufbauen. Bitte erneut versuchen." -#: ../templates/login.php:281 ../lib/config.inc:2784 +#: ../templates/login.php:281 ../lib/config.inc:2837 msgid "Cannot open config file!" msgstr "Kann Konfigurationsdatei nicht öffnen!" @@ -2485,7 +2481,7 @@ msgstr "Kann Quota nicht lesen." msgid "Cannot update quota." msgstr "Kann Quota nicht ändern." -#: ../lib/config.inc:2796 ../lib/config.inc:2804 +#: ../lib/config.inc:2849 ../lib/config.inc:2857 msgid "" "Cannot write certificate file. Please check the permissions of config/" "serverCerts.pem." @@ -2503,8 +2499,8 @@ msgstr "" msgid "Capacity" msgstr "Kapazität" -#: ../templates/selfService/selfServiceLogin.php:116 -#: ../templates/selfService/selfServiceLogin.php:303 +#: ../templates/selfService/selfServiceLogin.php:117 +#: ../templates/selfService/selfServiceLogin.php:304 #: ../templates/selfService/adminMain.php:544 #: ../templates/selfService/adminMain.php:549 #: ../lib/modules/selfRegistration.inc:126 @@ -2519,7 +2515,7 @@ msgid "Captcha" msgstr "Captcha" #: ../templates/config/confmain.php:512 -#: ../templates/selfService/adminMain.php:533 ../help/help.inc:312 +#: ../templates/selfService/adminMain.php:533 ../help/help.inc:322 msgid "Caption" msgstr "Überschrift" @@ -2527,26 +2523,26 @@ msgstr "Überschrift" msgid "Captions and labels" msgstr "Überschriften und Beschriftungen" -#: ../lib/modules/windowsLDSUser.inc:231 ../lib/modules/windowsLDSUser.inc:517 -#: ../lib/modules/windowsLDSUser.inc:682 ../lib/modules/windowsLDSUser.inc:907 -#: ../lib/modules/windowsLDSUser.inc:1829 -#: ../lib/modules/windowsLDSUser.inc:2155 ../lib/modules/windowsUser.inc:308 +#: ../lib/modules/windowsLDSUser.inc:235 ../lib/modules/windowsLDSUser.inc:521 +#: ../lib/modules/windowsLDSUser.inc:689 ../lib/modules/windowsLDSUser.inc:914 +#: ../lib/modules/windowsLDSUser.inc:1847 +#: ../lib/modules/windowsLDSUser.inc:2195 ../lib/modules/windowsUser.inc:308 #: ../lib/modules/windowsUser.inc:700 ../lib/modules/windowsUser.inc:931 #: ../lib/modules/windowsUser.inc:1209 ../lib/modules/windowsUser.inc:2880 #: ../lib/modules/windowsUser.inc:3709 ../lib/modules/inetOrgPerson.inc:162 #: ../lib/modules/inetOrgPerson.inc:461 ../lib/modules/inetOrgPerson.inc:534 #: ../lib/modules/inetOrgPerson.inc:733 ../lib/modules/inetOrgPerson.inc:1473 -#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1987 -#: ../lib/modules/inetOrgPerson.inc:2802 ../lib/modules/inetOrgPerson.inc:4091 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1985 +#: ../lib/modules/inetOrgPerson.inc:2800 ../lib/modules/inetOrgPerson.inc:4088 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Car license" msgstr "Führerschein" #: ../templates/selfService/adminMain.php:617 #: ../lib/modules/locking389ds.inc:84 ../lib/modules/locking389ds.inc:179 #: ../lib/modules/mitKerberos.inc:369 ../lib/modules/mitKerberos.inc:381 -#: ../lib/modules/mitKerberos.inc:711 ../lib/modules/windowsLDSUser.inc:939 -#: ../lib/modules/windowsLDSUser.inc:1403 ../lib/modules/autoDelete.inc:129 +#: ../lib/modules/mitKerberos.inc:711 ../lib/modules/windowsLDSUser.inc:946 +#: ../lib/modules/windowsLDSUser.inc:1421 ../lib/modules/autoDelete.inc:129 #: ../lib/modules/autoDelete.inc:210 ../lib/modules/qmailUser.inc:516 #: ../lib/modules/qmailUser.inc:718 ../lib/modules/zarafaContact.inc:243 #: ../lib/modules/windowsHost.inc:198 ../lib/modules/windowsHost.inc:269 @@ -2573,36 +2569,36 @@ msgstr "Führerschein" msgid "Change" msgstr "Ändern" -#: ../templates/lists/changePassword.php:223 +#: ../templates/lists/changePassword.php:227 msgid "Change Asterisk password" msgstr "Asterisk-Passwort ändern" -#: ../templates/lists/changePassword.php:226 +#: ../templates/lists/changePassword.php:230 msgid "Change Asterisk voicemail password" msgstr "Asterisk-Anrufbeantworterpasswort ändern" -#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:450 +#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:451 msgid "Change GID number of users and hosts" msgstr "Ändere die GID-Nummern aller Benutzer auf den neuen Wert" -#: ../templates/lists/changePassword.php:229 -#: ../templates/lists/changePassword.php:232 +#: ../templates/lists/changePassword.php:233 +#: ../templates/lists/changePassword.php:236 msgid "Change Kerberos password" msgstr "Kerberos-Passwort ändern" -#: ../templates/lists/changePassword.php:216 +#: ../templates/lists/changePassword.php:220 msgid "Change Samba LM password" msgstr "Samba-LM-Passwort ändern" -#: ../templates/lists/changePassword.php:214 +#: ../templates/lists/changePassword.php:218 msgid "Change Samba NT password" msgstr "Samba-NT-Passwort ändern" -#: ../templates/lists/changePassword.php:208 +#: ../templates/lists/changePassword.php:212 msgid "Change Unix password" msgstr "Unix-Passwort ändern" -#: ../templates/lists/changePassword.php:235 +#: ../templates/lists/changePassword.php:239 msgid "Change Windows password" msgstr "Windows-Passwort ändern" @@ -2619,26 +2615,26 @@ msgstr "Standardprofil wechseln" msgid "Change field label." msgstr "Feldbezeichner ändern." -#: ../lib/lists.inc:891 +#: ../lib/lists.inc:890 msgid "Change list settings" msgstr "Listeneinstellungen ändern" -#: ../templates/config/mainmanage.php:490 ../help/help.inc:148 +#: ../templates/config/mainmanage.php:530 ../help/help.inc:148 msgid "Change master password" msgstr "Hauptpasswort ändern" -#: ../templates/lists/changePassword.php:211 -#: ../templates/lists/changePassword.php:256 -#: ../templates/lists/changePassword.php:337 -#: ../templates/lists/changePassword.php:339 -#: ../templates/lists/changePassword.php:374 -#: ../templates/lists/changePassword.php:376 ../lib/types/user.inc:810 +#: ../templates/lists/changePassword.php:215 +#: ../templates/lists/changePassword.php:260 +#: ../templates/lists/changePassword.php:341 +#: ../templates/lists/changePassword.php:343 +#: ../templates/lists/changePassword.php:378 +#: ../templates/lists/changePassword.php:380 ../lib/types/user.inc:810 #: ../help/help.inc:109 msgid "Change password" msgstr "Passwort ändern" -#: ../templates/lists/changePassword.php:263 -#: ../templates/lists/changePassword.php:264 +#: ../templates/lists/changePassword.php:267 +#: ../templates/lists/changePassword.php:268 msgid "Change password now?" msgstr "Passwort jetzt ändern?" @@ -2646,11 +2642,11 @@ msgstr "Passwort jetzt ändern?" msgid "Change passwords" msgstr "Passwörter ändern" -#: ../lib/lists.inc:892 +#: ../lib/lists.inc:891 msgid "Change settings" msgstr "Einstellungen ändern" -#: ../lib/modules/posixAccount.inc:1190 +#: ../lib/modules/posixAccount.inc:1189 msgid "Changed value because only ASCII characters are allowed." msgstr "Wert wurde geändert da nur ASCII-Zeichen erlaubt sind." @@ -2660,7 +2656,7 @@ msgstr "Wert wurde geändert da nur ASCII-Zeichen erlaubt sind." msgid "Charlie" msgstr "Charlie" -#: ../lib/modules/posixAccount.inc:1671 +#: ../lib/modules/posixAccount.inc:1726 msgid "Check home directories" msgstr "Heimatverzeichnisse prüfen" @@ -2732,11 +2728,11 @@ msgid "Classes" msgstr "Klassen" #: ../lib/modules/qmailUser.inc:1091 ../lib/modules/windowsUser.inc:4179 -#: ../lib/modules/shadowAccount.inc:1072 ../lib/modules/freeRadius.inc:816 +#: ../lib/modules/shadowAccount.inc:1071 ../lib/modules/freeRadius.inc:816 msgid "Cleanup expired user accounts" msgstr "Abgelaufene Benutzerkonten löschen" -#: ../lib/lists.inc:462 +#: ../lib/lists.inc:461 msgid "Clear filter" msgstr "Suchfilter löschen" @@ -2761,7 +2757,7 @@ msgid "Click to popup a dialog to select an entry (DN) graphically" msgstr "Hiermit können Sie den DN grafisch auswählen" #: ../templates/config/confmain.php:502 -#: ../templates/selfService/adminMain.php:523 ../help/help.inc:324 +#: ../templates/selfService/adminMain.php:523 ../help/help.inc:334 msgid "Client id" msgstr "Client ID" @@ -2833,19 +2829,19 @@ msgstr "Bestätigen" msgid "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." msgstr "Typische Beispiele sind \"@givenname@%sn%\" oder \"%givenname%.%sn%\"." -#: ../templates/config/mainmanage.php:361 ../lib/types/host.inc:96 +#: ../templates/config/mainmanage.php:401 ../lib/types/host.inc:96 #: ../lib/types/user.inc:95 ../lib/types/customType.inc:71 -#: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:357 -#: ../lib/modules/windowsLDSUser.inc:588 ../lib/modules/windowsLDSUser.inc:649 -#: ../lib/modules/windowsLDSUser.inc:746 ../lib/modules/windowsLDSUser.inc:863 -#: ../lib/modules/windowsLDSUser.inc:1804 ../lib/modules/pykotaGroup.inc:107 +#: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:361 +#: ../lib/modules/windowsLDSUser.inc:592 ../lib/modules/windowsLDSUser.inc:653 +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:870 +#: ../lib/modules/windowsLDSUser.inc:1822 ../lib/modules/pykotaGroup.inc:107 #: ../lib/modules/pykotaGroup.inc:385 ../lib/modules/pykotaGroup.inc:475 #: ../lib/modules/pykotaGroup.inc:487 ../lib/modules/posixAccount.inc:119 #: ../lib/modules/posixAccount.inc:175 ../lib/modules/posixAccount.inc:443 -#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1613 -#: ../lib/modules/posixAccount.inc:1996 ../lib/modules/posixAccount.inc:2085 -#: ../lib/modules/posixAccount.inc:2115 ../lib/modules/posixAccount.inc:2425 -#: ../lib/modules/posixAccount.inc:3194 ../lib/modules/windowsUser.inc:127 +#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1659 +#: ../lib/modules/posixAccount.inc:2051 ../lib/modules/posixAccount.inc:2139 +#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/posixAccount.inc:2479 +#: ../lib/modules/posixAccount.inc:3248 ../lib/modules/windowsUser.inc:127 #: ../lib/modules/windowsUser.inc:446 ../lib/modules/windowsUser.inc:779 #: ../lib/modules/windowsUser.inc:873 ../lib/modules/windowsUser.inc:1022 #: ../lib/modules/windowsUser.inc:1164 ../lib/modules/windowsUser.inc:2851 @@ -2853,14 +2849,14 @@ msgstr "Typische Beispiele sind \"@givenname@%sn%\" oder \"%givenname%.%sn%\"." #: ../lib/modules/pykotaUser.inc:245 ../lib/modules/pykotaUser.inc:357 #: ../lib/modules/pykotaUser.inc:886 ../lib/modules/inetOrgPerson.inc:98 #: ../lib/modules/inetOrgPerson.inc:681 ../lib/modules/inetOrgPerson.inc:1228 -#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1948 -#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2018 -#: ../lib/modules/inetOrgPerson.inc:2194 ../lib/modules/inetOrgPerson.inc:4140 +#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1946 +#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2016 +#: ../lib/modules/inetOrgPerson.inc:2192 ../lib/modules/inetOrgPerson.inc:4137 #: ../lib/modules/asteriskExtension.inc:119 msgid "Common name" msgstr "Allgemeiner Name" -#: ../lib/modules/windowsLDSUser.inc:748 ../lib/modules/windowsLDSUser.inc:749 +#: ../lib/modules/windowsLDSUser.inc:755 ../lib/modules/windowsLDSUser.inc:756 #: ../lib/modules/windowsUser.inc:1024 ../lib/modules/windowsUser.inc:1025 msgid "Common name already exists." msgstr "Allgemeiner Name existiert bereits." @@ -2869,11 +2865,11 @@ msgstr "Allgemeiner Name existiert bereits." msgid "Common name of the Asterisk extension." msgstr "Name der Asterisk-Erweiterung." -#: ../lib/types/user.inc:96 ../lib/modules/windowsLDSUser.inc:283 -#: ../lib/modules/windowsLDSUser.inc:502 ../lib/modules/windowsLDSUser.inc:592 -#: ../lib/modules/windowsLDSUser.inc:709 ../lib/modules/windowsLDSUser.inc:919 -#: ../lib/modules/windowsLDSUser.inc:1820 -#: ../lib/modules/windowsLDSUser.inc:2159 ../lib/modules/windowsUser.inc:360 +#: ../lib/types/user.inc:96 ../lib/modules/windowsLDSUser.inc:287 +#: ../lib/modules/windowsLDSUser.inc:506 ../lib/modules/windowsLDSUser.inc:596 +#: ../lib/modules/windowsLDSUser.inc:716 ../lib/modules/windowsLDSUser.inc:926 +#: ../lib/modules/windowsLDSUser.inc:1838 +#: ../lib/modules/windowsLDSUser.inc:2199 ../lib/modules/windowsUser.inc:360 #: ../lib/modules/windowsUser.inc:659 ../lib/modules/windowsUser.inc:797 #: ../lib/modules/windowsUser.inc:958 ../lib/modules/windowsUser.inc:1221 #: ../lib/modules/windowsUser.inc:2869 ../lib/modules/windowsUser.inc:3713 @@ -2938,6 +2934,7 @@ msgstr "Konfigurationstyp" msgid "Confirm sender" msgstr "Absender prüfen" +#: ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:215 msgid "Confirmation mail settings" msgstr "Einstellungen für Bestätigungsmail" @@ -2999,7 +2996,7 @@ msgstr "Konstante" msgid "Contact address for this zone (e.g. \"root.example.com.\")." msgstr "Kontaktadresse für diese Zone (z.B. \"root.beispiel.de.\")." -#: ../lib/modules/windowsLDSUser.inc:876 ../lib/modules/windowsUser.inc:1177 +#: ../lib/modules/windowsLDSUser.inc:883 ../lib/modules/windowsUser.inc:1177 #: ../lib/modules/inetOrgPerson.inc:1396 msgid "Contact data" msgstr "Kontaktdaten" @@ -3108,16 +3105,16 @@ msgstr "Courier" #: ../templates/3rdParty/pla/lib/TemplateRender.php:1077 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1081 #: ../templates/initsuff.php:201 ../lib/modules/nisMailAliasUser.inc:364 -#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1937 +#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1992 msgid "Create" msgstr "Erstellen" -#: ../lib/lists.inc:571 ../lib/lists.inc:776 ../lib/modules.inc:1430 -#: ../help/help.inc:256 +#: ../lib/lists.inc:570 ../lib/lists.inc:775 ../lib/modules.inc:1430 +#: ../help/help.inc:266 msgid "Create PDF file" msgstr "PDF-Datei erstellen" -#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:220 +#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:219 msgid "Create PDF files" msgstr "PDF-Dateien erstellen" @@ -3147,7 +3144,7 @@ msgstr "Weiteren DNS-Eintrag anlegen" msgid "Create another NIS object" msgstr "Weiteres NIS-Objekt anlegen" -#: ../lib/baseType.inc:55 +#: ../lib/baseType.inc:54 msgid "Create another account" msgstr "Weiteren Account anlegen" @@ -3222,12 +3219,16 @@ msgstr "Weiteren Benutzer anlegen" msgid "Create another view" msgstr "Weitere Ansicht anlegen" -#: ../lib/lists.inc:787 +#: ../lib/lists.inc:786 msgid "Create for" msgstr "Erstellen für" -#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1656 -#: ../lib/modules/posixAccount.inc:2004 +#: ../lib/modules/posixAccount.inc:1692 ../lib/modules/posixAccount.inc:2281 +msgid "Create group with same name" +msgstr "Gruppe mit selben Namen erstellen" + +#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1711 +#: ../lib/modules/posixAccount.inc:2059 msgid "Create home directory" msgstr "Heimatverzeichnis anlegen" @@ -3267,6 +3268,10 @@ msgstr "Erstellt von" msgid "Created new automount map." msgstr "Neue Automount-Map wurde angelegt." +#: ../lib/modules/posixAccount.inc:1226 +msgid "Created new group." +msgstr "Neue Gruppe angelegt." + #: ../templates/config/profmanage.php:77 #: ../templates/selfService/profManage.php:56 msgid "Created new profile." @@ -3285,7 +3290,7 @@ msgstr "" "einen Container für Objektklassen und Attribute." #: ../lib/tools/fileUpload.inc:54 -msgid "Creates accounts by uploading a CSV formated file." +msgid "Creates accounts by uploading a CSV formatted file." msgstr "Erstellt Accounts durch das Hochladen einer CSV formatierten Datei." #: ../templates/3rdParty/pla/htdocs/create.php:77 @@ -3297,12 +3302,12 @@ msgstr "Erstellung erfolgreich. DN %s wurde erzeugt." msgid "Creation time" msgstr "Erstellzeit" -#: ../templates/config/jobs.php:224 ../help/help.inc:210 +#: ../templates/config/jobs.php:224 ../help/help.inc:214 msgid "Cron configuration" msgstr "Cron-Einstellungen" -#: ../lib/modules/windowsLDSUser.inc:1282 ../lib/modules/windowsUser.inc:2028 -#: ../lib/modules/inetOrgPerson.inc:1714 +#: ../lib/modules/windowsLDSUser.inc:1300 ../lib/modules/windowsUser.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:1712 msgid "Crop image" msgstr "Bild zuschneiden" @@ -3336,7 +3341,7 @@ msgid "Custom icon" msgstr "Eigenes Symbol" #: ../templates/config/conftypes.php:238 ../lib/modules/customFields.inc:181 -#: ../help/help.inc:194 +#: ../help/help.inc:198 msgid "Custom label" msgstr "Eigener Bezeichner" @@ -3363,9 +3368,8 @@ msgstr "Ausschneiden" msgid "DDNS" msgstr "DDNS" -#: ../lib/modules/ddns.inc:375 -msgid "" -"DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." +#: ../lib/modules/ddns.inc:371 +msgid "DDNS is not activated. You can activate it in the DHCP settings (DDNS)." msgstr "" "DDNS ist nicht aktiviert. Sie können es in den DHCP-Einstellungen (DDNS) " "ändern." @@ -3396,7 +3400,7 @@ msgstr "DHCP-Einstellungen" #: ../templates/3rdParty/pla/htdocs/delete_form.php:35 #: ../templates/3rdParty/pla/htdocs/delete_form.php:112 #: ../templates/3rdParty/pla/htdocs/mass_delete.php:57 ../lib/modules.inc:443 -#: ../lib/modules.inc:2105 +#: ../lib/modules.inc:2103 msgid "DN" msgstr "DN" @@ -3410,8 +3414,8 @@ msgstr "DN existiert nicht" msgid "DN settings" msgstr "DN-Einstellungen" -#: ../templates/upload/masscreate.php:334 ../help/help.inc:244 -#: ../help/help.inc:252 +#: ../templates/upload/masscreate.php:334 ../help/help.inc:254 +#: ../help/help.inc:262 msgid "DN suffix" msgstr "DN-Suffix" @@ -3431,8 +3435,8 @@ msgid "DNAME records" msgstr "DNAME-Einträge" #: ../lib/modules/dhcp_settings.inc:218 ../lib/modules/dhcp_settings.inc:234 -#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:598 -#: ../lib/modules/dhcp_settings.inc:711 +#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:590 +#: ../lib/modules/dhcp_settings.inc:703 msgid "DNS" msgstr "DNS" @@ -3490,11 +3494,11 @@ msgstr "Datenbankverbindung ok." msgid "Database count: %s" msgstr "Anzahl Datenbanken: %s" -#: ../templates/config/jobs.php:198 ../help/help.inc:212 +#: ../templates/config/jobs.php:198 ../help/help.inc:216 msgid "Database host" msgstr "Datenbankserver" -#: ../templates/config/jobs.php:203 ../help/help.inc:218 +#: ../templates/config/jobs.php:203 ../help/help.inc:222 msgid "Database name" msgstr "Datenbankname" @@ -3502,11 +3506,11 @@ msgstr "Datenbankname" msgid "Database password" msgstr "Datenbankpasswort" -#: ../templates/config/jobs.php:201 ../help/help.inc:214 +#: ../templates/config/jobs.php:201 ../help/help.inc:218 msgid "Database port" msgstr "Datenbank-Port" -#: ../templates/config/jobs.php:158 ../help/help.inc:208 +#: ../templates/config/jobs.php:158 ../help/help.inc:212 msgid "Database type" msgstr "Datenbanktyp" @@ -3514,7 +3518,7 @@ msgstr "Datenbanktyp" msgid "Database user" msgstr "Datenbankbenutzer" -#: ../help/help.inc:216 +#: ../help/help.inc:220 msgid "Database user and password" msgstr "Datenbankbenutzer und Passwort" @@ -3546,7 +3550,7 @@ msgstr "" msgid "Days to delete" msgstr "Tage bis zum Löschen" -#: ../templates/lists/changePassword.php:452 ../lib/types/user.inc:469 +#: ../templates/lists/changePassword.php:456 ../lib/types/user.inc:469 msgid "Deactivate" msgstr "Deaktivieren" @@ -3554,7 +3558,7 @@ msgstr "Deaktivieren" msgid "Deactivated" msgstr "Deaktiviert" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Debug" msgstr "Debug" @@ -3565,13 +3569,9 @@ msgstr "Debug" msgid "Default" msgstr "Standard" -#: ../templates/config/mainmanage.php:459 -msgid "Default (\\r\\n)" -msgstr "Standard (\\r\\n)" - #: ../lib/modules/dhcp_settings.inc:163 ../lib/modules/dhcp_settings.inc:219 #: ../lib/modules/dhcp_settings.inc:236 ../lib/modules/dhcp_settings.inc:289 -#: ../lib/modules/dhcp_settings.inc:608 ../lib/modules/dhcp_settings.inc:713 +#: ../lib/modules/dhcp_settings.inc:600 ../lib/modules/dhcp_settings.inc:705 msgid "Default gateway" msgstr "Standard-Gateway" @@ -3580,11 +3580,11 @@ msgstr "Standard-Gateway" msgid "Default language" msgstr "Standardsprache" -#: ../help/help.inc:225 +#: ../help/help.inc:229 msgid "Default method to output a random password." msgstr "Standardmethode zur Ausgabe zufälliger Passwörter." -#: ../templates/config/confmain.php:348 ../help/help.inc:224 +#: ../templates/config/confmain.php:348 ../help/help.inc:228 msgid "Default password output" msgstr "Standardausgabe für Passwörter" @@ -3607,7 +3607,7 @@ msgstr "Standardbenutzer" msgid "Default value" msgstr "Standardwert" -#: ../help/help.inc:167 +#: ../help/help.inc:165 msgid "" "Defines if the PHP error reporting setting from php.ini is used or the " "setting preferred by LAM (\"E_ALL & ~E_NOTICE\"). If you do not develop LAM " @@ -3631,12 +3631,12 @@ msgid "" msgstr "" "Gibt das Postfach für Message Waiting Indication (MWI) dieses Teilnehmers an." -#: ../lib/passwordExpirationJob.inc:480 ../lib/passwordExpirationJob.inc:527 -#: ../help/help.inc:410 +#: ../lib/passwordExpirationJob.inc:478 ../lib/passwordExpirationJob.inc:525 +#: ../help/help.inc:420 msgid "Delay" msgstr "Verzögerung" -#: ../help/help.inc:411 +#: ../help/help.inc:421 msgid "Delay this action by a number of days after account expiry." msgstr "Verzögert die Aktion um die angegebene Anzahl Tage nach Accountablauf." @@ -3644,7 +3644,7 @@ msgstr "Verzögert die Aktion um die angegebene Anzahl Tage nach Accountablauf." #: ../lib/modules/kolabUser.inc:119 ../lib/modules/kolabUser.inc:123 #: ../lib/modules/kolabUser.inc:179 ../lib/modules/kolabUser.inc:201 #: ../lib/modules/kolabUser.inc:308 ../lib/modules/kolabUser.inc:617 -#: ../lib/modules/kolabUser.inc:689 ../lib/modules/kolabSharedFolder.inc:116 +#: ../lib/modules/kolabUser.inc:688 ../lib/modules/kolabSharedFolder.inc:116 #: ../lib/modules/kolabSharedFolder.inc:120 #: ../lib/modules/kolabSharedFolder.inc:190 #: ../lib/modules/kolabSharedFolder.inc:201 @@ -3666,7 +3666,7 @@ msgstr "" #: ../templates/tools/serverInfo.php:355 ../templates/tools/multiEdit.php:150 #: ../templates/tools/ou_edit.php:135 ../templates/tools/webauthn.php:107 #: ../templates/config/profmanage.php:250 -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/profManage.php:226 #: ../templates/pdfedit/pdfmain.php:247 ../templates/pdfedit/pdfmain.php:248 #: ../templates/pdfedit/pdfmain.php:288 ../templates/delete.php:151 @@ -3674,18 +3674,18 @@ msgstr "" #: ../templates/profedit/profilemain.php:228 #: ../templates/3rdParty/pla/htdocs/delete_form.php:33 #: ../templates/3rdParty/pla/htdocs/delete_form.php:124 -#: ../lib/passwordExpirationJob.inc:485 ../lib/modules/pykotaPrinter.inc:277 +#: ../lib/passwordExpirationJob.inc:483 ../lib/modules/pykotaPrinter.inc:277 #: ../lib/modules/nisNetGroupHost.inc:109 -#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1929 +#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1984 #: ../lib/modules/zarafaUser.inc:1468 ../lib/modules/zarafaUser.inc:1519 #: ../lib/modules/bindDLZ.inc:1322 ../lib/modules/bindDLZ.inc:1713 -#: ../lib/modules/kolabUser.inc:676 ../lib/modules/sambaGroupMapping.inc:386 +#: ../lib/modules/kolabUser.inc:675 ../lib/modules/sambaGroupMapping.inc:386 #: ../lib/modules/ldapPublicKey.inc:350 ../lib/modules/nisNetGroupUser.inc:193 #: ../lib/modules/yubiKeyUser.inc:315 ../lib/modules/nisnetgroup.inc:261 -#: ../lib/modules/inetOrgPerson.inc:3055 ../lib/modules/inetOrgPerson.inc:3176 +#: ../lib/modules/inetOrgPerson.inc:3053 ../lib/modules/inetOrgPerson.inc:3174 #: ../lib/modules/kopanoUser.inc:1388 ../lib/modules/kopanoUser.inc:1439 #: ../lib/modules/webauthn.inc:160 ../lib/modules/customFields.inc:2563 -#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:565 +#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:564 #: ../lib/modules.inc:1319 msgid "Delete" msgstr "Löschen" @@ -3709,7 +3709,7 @@ msgstr "Nach kopieren löschen (verschieben):" msgid "Delete all %s objects" msgstr "Alle %s-Objekte löschen" -#: ../templates/config/mainmanage.php:339 +#: ../templates/config/mainmanage.php:379 msgid "Delete all CA certificates" msgstr "Alle CA-Zertifikate löschen" @@ -3717,7 +3717,7 @@ msgstr "Alle CA-Zertifikate löschen" msgid "Delete group" msgstr "Gruppe löschen" -#: ../lib/modules/posixAccount.inc:1736 +#: ../lib/modules/posixAccount.inc:1791 msgid "Delete home directory" msgstr "Heimatverzeichnis löschen" @@ -3725,22 +3725,22 @@ msgstr "Heimatverzeichnis löschen" msgid "Delete mailbox" msgstr "Postfach löschen" -#: ../lib/modules/posixGroup.inc:335 ../lib/modules/posixGroup.inc:344 -#: ../lib/modules/posixAccount.inc:1862 ../lib/modules/windowsUser.inc:1864 +#: ../lib/modules/posixGroup.inc:336 ../lib/modules/posixGroup.inc:345 +#: ../lib/modules/posixAccount.inc:1917 ../lib/modules/windowsUser.inc:1864 msgid "Delete non-matching entries" msgstr "Unpassende Einträge löschen" -#: ../templates/tools/ou_edit.php:218 ../help/help.inc:355 +#: ../templates/tools/ou_edit.php:218 ../help/help.inc:365 msgid "Delete organisational unit" msgstr "Organisational Unit löschen" #: ../templates/3rdParty/pla/lib/functions.php:1923 -#: ../lib/modules/windowsLDSUser.inc:979 ../lib/modules/windowsUser.inc:1353 +#: ../lib/modules/windowsLDSUser.inc:997 ../lib/modules/windowsUser.inc:1353 #: ../lib/modules/inetOrgPerson.inc:1612 msgid "Delete photo" msgstr "Foto löschen" -#: ../lib/modules/range.inc:550 +#: ../lib/modules/range.inc:549 msgid "Delete pool" msgstr "Pool löschen" @@ -3751,8 +3751,8 @@ msgstr "Pool löschen" msgid "Delete profile" msgstr "Lösche Profil" -#: ../lib/modules/range.inc:108 ../lib/modules/range.inc:140 -#: ../lib/modules/range.inc:526 ../lib/modules/range.inc:601 +#: ../lib/modules/range.inc:107 ../lib/modules/range.inc:139 +#: ../lib/modules/range.inc:525 ../lib/modules/range.inc:600 msgid "Delete range" msgstr "Bereich löschen" @@ -3853,7 +3853,7 @@ msgstr "Ausgewählte Ansichten löschen" msgid "Delete successful: %s" msgstr "Löschen war erfolgreich: %s" -#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1741 +#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1796 msgid "Delete sudo rights" msgstr "Sudo-Rechte löschen" @@ -3889,7 +3889,7 @@ msgstr "PDF-Struktur gelöscht." msgid "Deleted profile." msgstr "Profil gelöscht." -#: ../lib/modules/range.inc:109 +#: ../lib/modules/range.inc:108 msgid "Deletes an IP range." msgstr "Löscht einen IP-Adressbereich." @@ -3918,11 +3918,11 @@ msgstr "Löschdatum" #: ../lib/modules/autoDelete.inc:65 ../lib/modules/autoDelete.inc:77 #: ../lib/modules/autoDelete.inc:84 ../lib/modules/autoDelete.inc:117 #: ../lib/modules/autoDelete.inc:152 ../lib/modules/autoDelete.inc:385 -#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:106 +#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:105 msgid "Deletion time" msgstr "Löschdatum" -#: ../lib/lists.inc:1254 +#: ../lib/lists.inc:1253 msgid "Deletion was successful." msgstr "Löschen war erfolgreich." @@ -3952,11 +3952,11 @@ msgstr "Verbieten" msgid "Deny printing" msgstr "Drucken verbieten" -#: ../lib/types/user.inc:97 ../lib/modules/windowsLDSUser.inc:251 -#: ../lib/modules/windowsLDSUser.inc:549 ../lib/modules/windowsLDSUser.inc:595 -#: ../lib/modules/windowsLDSUser.inc:694 ../lib/modules/windowsLDSUser.inc:922 -#: ../lib/modules/windowsLDSUser.inc:1833 -#: ../lib/modules/windowsLDSUser.inc:2160 ../lib/modules/windowsUser.inc:328 +#: ../lib/types/user.inc:97 ../lib/modules/windowsLDSUser.inc:255 +#: ../lib/modules/windowsLDSUser.inc:553 ../lib/modules/windowsLDSUser.inc:599 +#: ../lib/modules/windowsLDSUser.inc:701 ../lib/modules/windowsLDSUser.inc:929 +#: ../lib/modules/windowsLDSUser.inc:1851 +#: ../lib/modules/windowsLDSUser.inc:2200 ../lib/modules/windowsUser.inc:328 #: ../lib/modules/windowsUser.inc:732 ../lib/modules/windowsUser.inc:800 #: ../lib/modules/windowsUser.inc:943 ../lib/modules/windowsUser.inc:990 #: ../lib/modules/windowsUser.inc:1224 ../lib/modules/windowsUser.inc:2884 @@ -3964,17 +3964,17 @@ msgstr "Drucken verbieten" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:421 #: ../lib/modules/inetOrgPerson.inc:543 ../lib/modules/inetOrgPerson.inc:745 #: ../lib/modules/inetOrgPerson.inc:749 ../lib/modules/inetOrgPerson.inc:1505 -#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1997 -#: ../lib/modules/inetOrgPerson.inc:2066 ../lib/modules/inetOrgPerson.inc:2856 -#: ../lib/modules/inetOrgPerson.inc:4094 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1995 +#: ../lib/modules/inetOrgPerson.inc:2064 ../lib/modules/inetOrgPerson.inc:2854 +#: ../lib/modules/inetOrgPerson.inc:4091 ../lib/modules/inetOrgPerson.inc:4130 msgid "Department" msgstr "Unternehmensbereich" -#: ../lib/modules/windowsLDSUser.inc:255 ../lib/modules/windowsLDSUser.inc:259 -#: ../lib/modules/windowsLDSUser.inc:557 ../lib/modules/windowsLDSUser.inc:598 -#: ../lib/modules/windowsLDSUser.inc:697 ../lib/modules/windowsLDSUser.inc:925 -#: ../lib/modules/windowsLDSUser.inc:1834 -#: ../lib/modules/windowsLDSUser.inc:2161 ../lib/modules/windowsUser.inc:332 +#: ../lib/modules/windowsLDSUser.inc:259 ../lib/modules/windowsLDSUser.inc:263 +#: ../lib/modules/windowsLDSUser.inc:561 ../lib/modules/windowsLDSUser.inc:602 +#: ../lib/modules/windowsLDSUser.inc:704 ../lib/modules/windowsLDSUser.inc:932 +#: ../lib/modules/windowsLDSUser.inc:1852 +#: ../lib/modules/windowsLDSUser.inc:2201 ../lib/modules/windowsUser.inc:332 #: ../lib/modules/windowsUser.inc:336 ../lib/modules/windowsUser.inc:740 #: ../lib/modules/windowsUser.inc:803 ../lib/modules/windowsUser.inc:946 #: ../lib/modules/windowsUser.inc:991 ../lib/modules/windowsUser.inc:1227 @@ -4016,21 +4016,21 @@ msgstr "" #: ../lib/modules/pykotaPrinter.inc:98 ../lib/modules/pykotaPrinter.inc:152 #: ../lib/modules/pykotaPrinter.inc:193 ../lib/modules/pykotaPrinter.inc:246 #: ../lib/modules/pykotaPrinter.inc:572 ../lib/modules/windowsLDSUser.inc:125 -#: ../lib/modules/windowsLDSUser.inc:375 ../lib/modules/windowsLDSUser.inc:650 -#: ../lib/modules/windowsLDSUser.inc:866 ../lib/modules/windowsLDSUser.inc:1805 +#: ../lib/modules/windowsLDSUser.inc:379 ../lib/modules/windowsLDSUser.inc:654 +#: ../lib/modules/windowsLDSUser.inc:873 ../lib/modules/windowsLDSUser.inc:1823 #: ../lib/modules/account.inc:78 ../lib/modules/account.inc:88 #: ../lib/modules/account.inc:98 ../lib/modules/account.inc:106 -#: ../lib/modules/account.inc:222 ../lib/modules/account.inc:244 +#: ../lib/modules/account.inc:219 ../lib/modules/account.inc:241 #: ../lib/modules/windowsHost.inc:79 ../lib/modules/windowsHost.inc:114 #: ../lib/modules/windowsHost.inc:133 ../lib/modules/windowsHost.inc:156 #: ../lib/modules/windowsHost.inc:329 ../lib/modules/posixGroup.inc:215 -#: ../lib/modules/posixGroup.inc:422 ../lib/modules/posixGroup.inc:650 -#: ../lib/modules/posixGroup.inc:668 ../lib/modules/device.inc:84 +#: ../lib/modules/posixGroup.inc:423 ../lib/modules/posixGroup.inc:651 +#: ../lib/modules/posixGroup.inc:669 ../lib/modules/device.inc:84 #: ../lib/modules/device.inc:109 ../lib/modules/device.inc:117 #: ../lib/modules/device.inc:159 ../lib/modules/device.inc:428 #: ../lib/modules/dhcp_settings.inc:195 ../lib/modules/dhcp_settings.inc:224 -#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:645 -#: ../lib/modules/dhcp_settings.inc:718 ../lib/modules/courierMailAlias.inc:92 +#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:637 +#: ../lib/modules/dhcp_settings.inc:710 ../lib/modules/courierMailAlias.inc:92 #: ../lib/modules/courierMailAlias.inc:101 #: ../lib/modules/courierMailAlias.inc:126 #: ../lib/modules/courierMailAlias.inc:155 @@ -4065,9 +4065,9 @@ msgstr "" #: ../lib/modules/nisnetgroup.inc:571 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:259 ../lib/modules/inetOrgPerson.inc:480 #: ../lib/modules/inetOrgPerson.inc:566 ../lib/modules/inetOrgPerson.inc:1241 -#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1965 -#: ../lib/modules/inetOrgPerson.inc:2024 ../lib/modules/inetOrgPerson.inc:2998 -#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1963 +#: ../lib/modules/inetOrgPerson.inc:2022 ../lib/modules/inetOrgPerson.inc:2996 +#: ../lib/modules/inetOrgPerson.inc:4071 ../lib/modules/inetOrgPerson.inc:4118 #: ../lib/modules/sudoRole.inc:69 ../lib/modules/sudoRole.inc:152 #: ../lib/modules/sudoRole.inc:214 ../lib/modules/sudoRole.inc:298 #: ../lib/modules/sudoRole.inc:453 ../lib/modules/windowsLDSGroup.inc:88 @@ -4086,7 +4086,7 @@ msgstr "" #: ../lib/modules/organizationalRole.inc:170 #: ../lib/modules/organizationalRole.inc:481 #: ../lib/modules/organizationalRole.inc:735 ../lib/modules/fixed_ip.inc:115 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:764 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:762 #: ../lib/modules/pykotaBillingCode.inc:80 #: ../lib/modules/pykotaBillingCode.inc:108 #: ../lib/modules/pykotaBillingCode.inc:115 @@ -4097,7 +4097,7 @@ msgstr "" #: ../lib/modules/groupOfNames.inc:92 ../lib/modules/groupOfNames.inc:138 #: ../lib/modules/groupOfNames.inc:174 ../lib/modules/groupOfNames.inc:211 #: ../lib/modules/groupOfNames.inc:734 ../lib/modules/groupOfNames.inc:1047 -#: ../lib/baseType.inc:107 +#: ../lib/baseType.inc:106 msgid "Description" msgstr "Beschreibung" @@ -4132,15 +4132,15 @@ msgid "Disable POP3 access" msgstr "POP3 deaktivieren" #: ../templates/config/confmain.php:511 -#: ../templates/selfService/adminMain.php:532 ../help/help.inc:308 +#: ../templates/selfService/adminMain.php:532 ../help/help.inc:318 msgid "Disable certificate check" msgstr "Zertifikatsprüfung deaktivieren" -#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:368 +#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:364 msgid "Disable client updates" msgstr "Client-Änderungen deaktivieren" -#: ../lib/modules/posixGroup.inc:476 ../lib/modules/posixGroup.inc:584 +#: ../lib/modules/posixGroup.inc:477 ../lib/modules/posixGroup.inc:585 msgid "Disable membership management" msgstr "Verwaltung von Mitgliedschaften deaktivieren" @@ -4169,7 +4169,7 @@ msgid "Disables the client to update DNS entries." msgstr "" "Deaktiviert die Möglichkeit, dass Clients DNS-Einträge verändern dürfen." -#: ../lib/modules/posixGroup.inc:477 +#: ../lib/modules/posixGroup.inc:478 msgid "Disables the group membership management." msgstr "Deaktiviert die Verwaltung von Gruppenmitgliedschaften." @@ -4193,7 +4193,7 @@ msgstr "TGT-basierte Tickets verbieten" msgid "Disallow all tickets" msgstr "Alle Tickets verbieten" -#: ../templates/config/conftypes.php:290 ../help/help.inc:192 +#: ../templates/config/conftypes.php:290 ../help/help.inc:196 msgid "Disallow delete" msgstr "Verbiete Löschen" @@ -4273,9 +4273,9 @@ msgstr "Mehrere Gruppen als Akkordeon anzeigen" #: ../templates/config/confmain.php:227 ../lib/types/group.inc:111 #: ../lib/types/user.inc:98 ../lib/modules/windowsLDSUser.inc:129 -#: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:589 -#: ../lib/modules/windowsLDSUser.inc:651 ../lib/modules/windowsLDSUser.inc:750 -#: ../lib/modules/windowsLDSUser.inc:864 ../lib/modules/windowsLDSUser.inc:1806 +#: ../lib/modules/windowsLDSUser.inc:367 ../lib/modules/windowsLDSUser.inc:593 +#: ../lib/modules/windowsLDSUser.inc:655 ../lib/modules/windowsLDSUser.inc:757 +#: ../lib/modules/windowsLDSUser.inc:871 ../lib/modules/windowsLDSUser.inc:1824 #: ../lib/modules/sambaSamAccount.inc:111 #: ../lib/modules/sambaSamAccount.inc:210 #: ../lib/modules/sambaSamAccount.inc:260 @@ -4291,14 +4291,14 @@ msgstr "Mehrere Gruppen als Akkordeon anzeigen" #: ../lib/modules/sambaGroupMapping.inc:336 #: ../lib/modules/sambaGroupMapping.inc:513 #: ../lib/modules/inetOrgPerson.inc:166 ../lib/modules/inetOrgPerson.inc:685 -#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1953 -#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2219 -#: ../lib/modules/inetOrgPerson.inc:3025 ../lib/modules/inetOrgPerson.inc:4106 -#: ../help/help.inc:202 +#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1951 +#: ../lib/modules/inetOrgPerson.inc:1996 ../lib/modules/inetOrgPerson.inc:2217 +#: ../lib/modules/inetOrgPerson.inc:3023 ../lib/modules/inetOrgPerson.inc:4103 +#: ../help/help.inc:206 msgid "Display name" msgstr "Anzeigename" -#: ../templates/lists/changePassword.php:316 +#: ../templates/lists/changePassword.php:320 #: ../templates/config/confmain.php:344 msgid "Display on screen" msgstr "Auf dem Bildschirm anzeigen" @@ -4323,7 +4323,7 @@ msgstr "Angezeigte Attribute" msgid "Distribution" msgstr "Versand" -#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2305 +#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2359 msgid "Do not add object class" msgstr "Objektklasse nicht hinzufügen" @@ -4352,7 +4352,7 @@ msgstr "Wollen Sie wirklich an diese Mailingliste schreiben?" msgid "Do you really want to remove the following accounts?" msgstr "Sollen die folgenden Accounts wirklich gelöscht werden?" -#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:484 +#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:524 #: ../lib/modules/webauthn.inc:133 msgid "Do you really want to remove this device?" msgstr "Soll dieses Gerät gelöscht werden?" @@ -4367,7 +4367,7 @@ msgstr "Wollen Sie die Änderungen übernehmen?" #: ../templates/config/confmain.php:506 #: ../templates/selfService/adminMain.php:527 -#: ../lib/modules/windowsLDSUser.inc:121 ../lib/modules/windowsLDSUser.inc:1863 +#: ../lib/modules/windowsLDSUser.inc:121 ../lib/modules/windowsLDSUser.inc:1883 #: ../lib/modules/sambaSamAccount.inc:212 #: ../lib/modules/sambaSamAccount.inc:338 #: ../lib/modules/sambaSamAccount.inc:420 @@ -4379,7 +4379,7 @@ msgstr "Wollen Sie die Änderungen übernehmen?" #: ../lib/modules/windowsUser.inc:2942 ../lib/modules/sambaGroupMapping.inc:158 #: ../lib/modules/sambaGroupMapping.inc:367 #: ../lib/modules/sambaGroupMapping.inc:547 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:334 +#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:344 msgid "Domain" msgstr "Domäne" @@ -4448,8 +4448,8 @@ msgstr "Domänenlokal" #: ../lib/types/smbDomain.inc:95 ../lib/modules/dhcp_settings.inc:143 #: ../lib/modules/dhcp_settings.inc:215 ../lib/modules/dhcp_settings.inc:231 -#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:588 -#: ../lib/modules/dhcp_settings.inc:708 ../lib/modules/nisNetGroupHost.inc:102 +#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:580 +#: ../lib/modules/dhcp_settings.inc:700 ../lib/modules/nisNetGroupHost.inc:102 #: ../lib/modules/nisNetGroupHost.inc:217 #: ../lib/modules/nisNetGroupHost.inc:261 ../lib/modules/nisNetGroupUser.inc:98 #: ../lib/modules/nisNetGroupUser.inc:186 @@ -4487,7 +4487,7 @@ msgstr "Domain-Suffix" msgid "Domain users" msgstr "Domänenbenutzer" -#: ../lib/modules/windowsLDSUser.inc:215 ../lib/modules/windowsLDSUser.inc:2141 +#: ../lib/modules/windowsLDSUser.inc:215 ../lib/modules/windowsLDSUser.inc:2180 #: ../lib/modules/windowsUser.inc:261 ../lib/modules/windowsUser.inc:3690 msgid "Domains" msgstr "Domänen" @@ -4497,8 +4497,8 @@ msgstr "Domänen" msgid "Don't stop on errors" msgstr "Bei Fehlern weitermachen" -#: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:1725 +#: ../lib/modules/windowsLDSUser.inc:1311 ../lib/modules/windowsUser.inc:2039 +#: ../lib/modules/inetOrgPerson.inc:1723 msgid "Done" msgstr "Fertig" @@ -4507,7 +4507,7 @@ msgstr "Fertig" msgid "Down" msgstr "nach unten" -#: ../templates/config/mainmanage.php:336 +#: ../templates/config/mainmanage.php:376 msgid "Download CA certificates" msgstr "CA-Zertifikate herunterladen" @@ -4553,7 +4553,7 @@ msgstr "" #: ../lib/modules/sambaSamAccount.inc:1286 #: ../lib/modules/windowsLDSGroup.inc:192 #: ../lib/modules/windowsLDSGroup.inc:221 ../lib/modules/windowsGroup.inc:378 -#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:559 +#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:558 msgid "Edit" msgstr "Editieren" @@ -4561,11 +4561,11 @@ msgstr "Editieren" msgid "Edit again" msgstr "Erneut editieren" -#: ../templates/config/mainmanage.php:262 ../templates/config/index.php:79 +#: ../templates/config/mainmanage.php:278 ../templates/config/index.php:79 msgid "Edit general settings" msgstr "Allgemeine Einstellungen ändern" -#: ../lib/modules/windowsLDSUser.inc:985 ../lib/modules/posixAccount.inc:1643 +#: ../lib/modules/windowsLDSUser.inc:1003 ../lib/modules/posixAccount.inc:1698 #: ../lib/modules/windowsUser.inc:1359 msgid "Edit groups" msgstr "Gruppen ändern" @@ -4590,6 +4590,7 @@ msgstr "Untergruppen ändern" msgid "Edit workstations" msgstr "Arbeitsstationen ändern" +#: ../templates/config/mainmanage.php:323 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1688 #: ../lib/types/kopanoDynamicGroupType.inc:81 #: ../lib/types/zarafaDynamicGroupType.inc:95 ../lib/types/user.inc:107 @@ -4603,24 +4604,24 @@ msgid "Email" msgstr "EMail" #: ../lib/modules/selfRegistration.inc:520 -#: ../lib/modules/windowsLDSUser.inc:774 ../lib/modules/windowsLDSUser.inc:775 +#: ../lib/modules/windowsLDSUser.inc:781 ../lib/modules/windowsLDSUser.inc:782 #: ../lib/modules/windowsUser.inc:1052 ../lib/modules/windowsUser.inc:1053 #: ../lib/modules/inetOrgPerson.inc:83 ../lib/modules/inetOrgPerson.inc:84 #, php-format msgid "Email \"%s\" already in use." msgstr "EMail-Adresse \"%s\" wird bereits verwendet." -#: ../templates/lists/changePassword.php:279 ../lib/modules/kolabGroup.inc:82 +#: ../templates/lists/changePassword.php:283 ../lib/modules/kolabGroup.inc:82 #: ../lib/modules/kolabGroup.inc:86 ../lib/modules/kolabGroup.inc:155 #: ../lib/modules/kolabGroup.inc:157 ../lib/modules/kolabGroup.inc:175 #: ../lib/modules/kolabGroup.inc:287 ../lib/modules/kolabGroup.inc:348 #: ../lib/modules/kolabGroup.inc:359 ../lib/modules/selfRegistration.inc:401 #: ../lib/modules/selfRegistration.inc:500 #: ../lib/modules/selfRegistration.inc:519 -#: ../lib/modules/windowsLDSUser.inc:145 ../lib/modules/windowsLDSUser.inc:417 -#: ../lib/modules/windowsLDSUser.inc:590 ../lib/modules/windowsLDSUser.inc:655 -#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:774 -#: ../lib/modules/windowsLDSUser.inc:877 ../lib/modules/windowsLDSUser.inc:1810 +#: ../lib/modules/windowsLDSUser.inc:145 ../lib/modules/windowsLDSUser.inc:421 +#: ../lib/modules/windowsLDSUser.inc:594 ../lib/modules/windowsLDSUser.inc:659 +#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:781 +#: ../lib/modules/windowsLDSUser.inc:884 ../lib/modules/windowsLDSUser.inc:1828 #: ../lib/modules/zarafaDynamicGroup.inc:66 #: ../lib/modules/zarafaDynamicGroup.inc:67 #: ../lib/modules/zarafaDynamicGroup.inc:123 @@ -4657,9 +4658,9 @@ msgstr "EMail-Adresse \"%s\" wird bereits verwendet." #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:387 #: ../lib/modules/inetOrgPerson.inc:525 ../lib/modules/inetOrgPerson.inc:662 #: ../lib/modules/inetOrgPerson.inc:666 ../lib/modules/inetOrgPerson.inc:1441 -#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1981 -#: ../lib/modules/inetOrgPerson.inc:2060 ../lib/modules/inetOrgPerson.inc:2607 -#: ../lib/modules/inetOrgPerson.inc:4089 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1979 +#: ../lib/modules/inetOrgPerson.inc:2058 ../lib/modules/inetOrgPerson.inc:2605 +#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/kolabSharedFolder.inc:94 #: ../lib/modules/kolabSharedFolder.inc:151 #: ../lib/modules/kolabSharedFolder.inc:202 @@ -4788,51 +4789,47 @@ msgstr "EMail-Aliasliste hat ungültiges Format!" msgid "Email aliases" msgstr "EMail-Aliase" -#: ../templates/config/mainmanage.php:462 ../help/help.inc:164 -msgid "Email format" -msgstr "Emailformat" - -#: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:235 -#: ../lib/modules/windowsLDSUser.inc:525 ../lib/modules/windowsLDSUser.inc:685 -#: ../lib/modules/windowsLDSUser.inc:910 ../lib/modules/windowsLDSUser.inc:1830 -#: ../lib/modules/windowsLDSUser.inc:2156 ../lib/modules/windowsUser.inc:312 +#: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:239 +#: ../lib/modules/windowsLDSUser.inc:529 ../lib/modules/windowsLDSUser.inc:692 +#: ../lib/modules/windowsLDSUser.inc:917 ../lib/modules/windowsLDSUser.inc:1848 +#: ../lib/modules/windowsLDSUser.inc:2196 ../lib/modules/windowsUser.inc:312 #: ../lib/modules/windowsUser.inc:708 ../lib/modules/windowsUser.inc:934 #: ../lib/modules/windowsUser.inc:1212 ../lib/modules/windowsUser.inc:2881 #: ../lib/modules/windowsUser.inc:3710 ../lib/modules/inetOrgPerson.inc:275 #: ../lib/modules/inetOrgPerson.inc:555 ../lib/modules/inetOrgPerson.inc:778 #: ../lib/modules/inetOrgPerson.inc:1481 ../lib/modules/inetOrgPerson.inc:1484 -#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:4098 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1990 ../lib/modules/inetOrgPerson.inc:4095 +#: ../lib/modules/inetOrgPerson.inc:4132 #: ../lib/modules/passwordSelfReset.inc:631 #: ../lib/modules/passwordSelfReset.inc:1042 #: ../lib/modules/passwordSelfReset.inc:1261 msgid "Employee number" msgstr "Personalnummer" -#: ../lib/modules/windowsLDSUser.inc:239 ../lib/modules/windowsLDSUser.inc:533 -#: ../lib/modules/windowsLDSUser.inc:610 ../lib/modules/windowsLDSUser.inc:688 -#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:913 -#: ../lib/modules/windowsLDSUser.inc:1831 -#: ../lib/modules/windowsLDSUser.inc:2157 ../lib/modules/windowsUser.inc:316 +#: ../lib/modules/windowsLDSUser.inc:243 ../lib/modules/windowsLDSUser.inc:537 +#: ../lib/modules/windowsLDSUser.inc:614 ../lib/modules/windowsLDSUser.inc:695 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:920 +#: ../lib/modules/windowsLDSUser.inc:1849 +#: ../lib/modules/windowsLDSUser.inc:2197 ../lib/modules/windowsUser.inc:316 #: ../lib/modules/windowsUser.inc:716 ../lib/modules/windowsUser.inc:815 #: ../lib/modules/windowsUser.inc:937 ../lib/modules/windowsUser.inc:1073 #: ../lib/modules/windowsUser.inc:1215 ../lib/modules/windowsUser.inc:2882 #: ../lib/modules/windowsUser.inc:3711 ../lib/modules/inetOrgPerson.inc:96 #: ../lib/modules/inetOrgPerson.inc:283 ../lib/modules/inetOrgPerson.inc:537 #: ../lib/modules/inetOrgPerson.inc:586 ../lib/modules/inetOrgPerson.inc:1489 -#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1990 -#: ../lib/modules/inetOrgPerson.inc:2078 ../lib/modules/inetOrgPerson.inc:4092 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1988 +#: ../lib/modules/inetOrgPerson.inc:2076 ../lib/modules/inetOrgPerson.inc:4089 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Employee type" msgstr "Angestelltentyp" -#: ../lib/modules/windowsLDSUser.inc:240 ../lib/modules/windowsUser.inc:317 +#: ../lib/modules/windowsLDSUser.inc:244 ../lib/modules/windowsUser.inc:317 #: ../lib/modules/inetOrgPerson.inc:587 msgid "Employee type: Contractor, Employee, Intern, Temp, External, ..." msgstr "Angestelltentyp: Angestellter, Extern, Aushilfskraft, ..." -#: ../templates/lists/changePassword.php:525 -#: ../templates/lists/changePassword.php:532 ../templates/login.php:489 +#: ../templates/lists/changePassword.php:529 +#: ../templates/lists/changePassword.php:536 ../templates/login.php:499 msgid "Empty password submitted. Please try again." msgstr "Das Passwort war leer. Bitte erneut eingeben." @@ -4887,7 +4884,7 @@ msgstr "" msgid "Encountered an error while performing search." msgstr "Die LDAP-Suche ist fehlgeschlagen." -#: ../templates/config/mainmanage.php:318 ../help/help.inc:168 +#: ../templates/config/mainmanage.php:358 ../help/help.inc:166 msgid "Encrypt session" msgstr "Sitzung verschlüsseln" @@ -4903,7 +4900,7 @@ msgstr "" "LAM benötigt eine verschlüsselte Verbindung zum IMAP-Server. Hier geben Sie " "die Art der Verschlüsselung an." -#: ../help/help.inc:169 +#: ../help/help.inc:167 msgid "" "Encrypts sensitive data like passwords in your session. This requires the " "PHP OpenSSL extension." @@ -4927,7 +4924,7 @@ msgstr "Klassen erzwingen" msgid "Enforce language" msgstr "Sprache erzwingen" -#: ../help/help.inc:227 +#: ../help/help.inc:231 msgid "Enforce password change on next login by default." msgstr "Standardmäßig Passwortwechsel beim nächsten Login erzwingen." @@ -4945,11 +4942,11 @@ msgstr "" "Bitte geben Sie die Basis-DN Ihrer Gruppen an. Dies ist nur erforderlich " "wenn Sie Gruppenmitgliedschaften auf der Self Service Seite anzeigen möchten." -#: ../help/help.inc:213 +#: ../help/help.inc:217 msgid "Enter the host name of your database server." msgstr "Bitte geben Sie den Servernamen Ihres Datenbankservers ein." -#: ../help/help.inc:215 +#: ../help/help.inc:219 msgid "" "Enter the port number of your database server. The default port will be used " "if empty." @@ -4963,7 +4960,7 @@ msgstr "Geben Sie die neuen Werte ein:" #: ../lib/modules/eduPerson.inc:117 ../lib/modules/eduPerson.inc:121 #: ../lib/modules/eduPerson.inc:193 ../lib/modules/eduPerson.inc:230 -#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:551 +#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:545 msgid "Entitlements" msgstr "Berechtigungen" @@ -5007,7 +5004,7 @@ msgstr "Eintrag erstellt" #: ../templates/3rdParty/pla/htdocs/mass_edit.php:27 #: ../templates/3rdParty/pla/htdocs/rdelete.php:24 #: ../templates/3rdParty/pla/htdocs/rdelete.php:56 -#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:955 +#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:959 msgid "Entry does not exist" msgstr "Eintrag existiert nicht" @@ -5031,7 +5028,7 @@ msgstr "Equipment" #: ../lib/3rdParty/yubico/Yubico.php:175 ../lib/3rdParty/yubico/Yubico.php:220 #: ../lib/3rdParty/yubico/Yubico.php:229 ../lib/3rdParty/yubico/Yubico.php:240 #: ../lib/3rdParty/yubico/Yubico.php:243 ../lib/3rdParty/yubico/Yubico.php:248 -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/Template.php:399 #: ../templates/3rdParty/pla/lib/Template.php:442 #: ../templates/3rdParty/pla/lib/Template.php:486 @@ -5047,7 +5044,7 @@ msgstr "Fehler" msgid "Error number" msgstr "Fehlernummer" -#: ../lib/modules/mitKerberos.inc:1199 ../lib/modules/heimdalKerberos.inc:1045 +#: ../lib/modules/mitKerberos.inc:1195 ../lib/modules/heimdalKerberos.inc:1045 msgid "Error while changing Kerberos password." msgstr "Konnte Kerberos-Passwort nicht ändern." @@ -5056,7 +5053,7 @@ msgstr "Konnte Kerberos-Passwort nicht ändern." msgid "Error while deleting DN: %s" msgstr "Fehler beim Löschen von DN: %s" -#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:251 +#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:252 #: ../lib/env.inc:245 msgid "Evaluation Licence" msgstr "Testlizenz" @@ -5086,7 +5083,7 @@ msgstr "Beispielwert" msgid "Examples" msgstr "Beispiele" -#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2232 +#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2286 #: ../lib/modules/windowsUser.inc:404 ../lib/modules/windowsUser.inc:3736 msgid "Exclude from group sync" msgstr "Von der Gruppensynchronisierung ausnehmen" @@ -5129,6 +5126,10 @@ msgstr "Ablaufdatum" msgid "Expiration timestamp (\"regseconds\" option)." msgstr "Ablaufzeit (\"regseconds\" Option)." +#: ../templates/config/mainmanage.php:327 ../help/help.inc:240 +msgid "Expiration warning" +msgstr "Ablaufwarnung" + #: ../lib/types/ppolicyType.inc:89 ../lib/modules/ppolicy.inc:116 #: ../lib/modules/ppolicy.inc:152 ../lib/modules/ppolicy.inc:179 #: ../lib/modules/ppolicy.inc:211 ../lib/modules/ppolicy.inc:483 @@ -5157,7 +5158,7 @@ msgid "Export" msgstr "Export" #: ../templates/pdfedit/pdfmain.php:264 ../templates/pdfedit/pdfmain.php:265 -#: ../help/help.inc:268 +#: ../help/help.inc:278 msgid "Export PDF structure" msgstr "PDF-Struktur exportieren" @@ -5167,7 +5168,7 @@ msgid "Export format" msgstr "Exportformat" #: ../templates/profedit/profilemain.php:240 -#: ../templates/profedit/profilemain.php:241 ../help/help.inc:248 +#: ../templates/profedit/profilemain.php:241 ../help/help.inc:258 msgid "Export profile" msgstr "Profil exportieren" @@ -5213,7 +5214,7 @@ msgstr "Besitzer der Erweiterung" msgid "Extension with this name already exists." msgstr "Eine Erweiterung mit diesem Namen existiert bereits." -#: ../templates/config/mainmanage.php:401 ../help/help.inc:176 +#: ../templates/config/mainmanage.php:441 ../help/help.inc:174 msgid "External password check" msgstr "Externe Passwortprüfung" @@ -5238,7 +5239,7 @@ msgstr "Kopieren fehlgeschlagen" msgid "Failed to create entry!" msgstr "Konnte Eintrag nicht erstellen!" -#: ../lib/modules/range.inc:124 ../lib/modules/range.inc:561 +#: ../lib/modules/range.inc:123 ../lib/modules/range.inc:560 msgid "Failover peer" msgstr "Ausfallknoten" @@ -5248,10 +5249,10 @@ msgstr "Ausfallknoten" msgid "Failure count interval" msgstr "Fehlerzählerintervall" -#: ../lib/modules/windowsLDSUser.inc:185 ../lib/modules/windowsLDSUser.inc:462 -#: ../lib/modules/windowsLDSUser.inc:673 ../lib/modules/windowsLDSUser.inc:758 -#: ../lib/modules/windowsLDSUser.inc:896 ../lib/modules/windowsLDSUser.inc:1819 -#: ../lib/modules/windowsLDSUser.inc:2147 ../lib/modules/windowsUser.inc:203 +#: ../lib/modules/windowsLDSUser.inc:185 ../lib/modules/windowsLDSUser.inc:466 +#: ../lib/modules/windowsLDSUser.inc:677 ../lib/modules/windowsLDSUser.inc:765 +#: ../lib/modules/windowsLDSUser.inc:903 ../lib/modules/windowsLDSUser.inc:1837 +#: ../lib/modules/windowsLDSUser.inc:2186 ../lib/modules/windowsUser.inc:203 #: ../lib/modules/windowsUser.inc:619 ../lib/modules/windowsUser.inc:910 #: ../lib/modules/windowsUser.inc:980 ../lib/modules/windowsUser.inc:1036 #: ../lib/modules/windowsUser.inc:1198 ../lib/modules/windowsUser.inc:2868 @@ -5260,9 +5261,9 @@ msgstr "Fehlerzählerintervall" #: ../lib/modules/inetOrgPerson.inc:371 ../lib/modules/inetOrgPerson.inc:519 #: ../lib/modules/inetOrgPerson.inc:646 ../lib/modules/inetOrgPerson.inc:650 #: ../lib/modules/inetOrgPerson.inc:1425 ../lib/modules/inetOrgPerson.inc:1428 -#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2057 -#: ../lib/modules/inetOrgPerson.inc:2672 ../lib/modules/inetOrgPerson.inc:4087 -#: ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1981 ../lib/modules/inetOrgPerson.inc:2055 +#: ../lib/modules/inetOrgPerson.inc:2670 ../lib/modules/inetOrgPerson.inc:4084 +#: ../lib/modules/inetOrgPerson.inc:4125 msgid "Fax number" msgstr "Faxnummer" @@ -5281,8 +5282,8 @@ msgstr "Feld" #: ../templates/tools/importexport.php:152 #: ../templates/tools/importexport.php:169 -#: ../templates/config/mainmanage.php:413 -#: ../templates/config/mainmanage.php:444 +#: ../templates/config/mainmanage.php:453 +#: ../templates/config/mainmanage.php:484 #: ../templates/3rdParty/pla/lib/functions.php:526 #: ../templates/3rdParty/pla/tools/unserialize.php:14 #: ../templates/3rdParty/pla/htdocs/import.php:48 @@ -5297,7 +5298,7 @@ msgstr "Datei existiert nicht." msgid "File extension" msgstr "Dateierweiterung" -#: ../lib/modules/windowsLDSUser.inc:788 ../lib/modules/windowsUser.inc:1081 +#: ../lib/modules/windowsLDSUser.inc:795 ../lib/modules/windowsUser.inc:1081 #: ../lib/modules/inetOrgPerson.inc:106 #, php-format msgid "File is too large. Maximum allowed size is %s kB." @@ -5331,7 +5332,7 @@ msgstr "Dateipfad" #: ../templates/upload/masscreate.php:272 ../lib/tools/fileUpload.inc:45 #: ../lib/modules/ldapPublicKey.inc:93 ../lib/modules/customFields.inc:4238 -#: ../lib/lists.inc:875 +#: ../lib/lists.inc:874 msgid "File upload" msgstr "Dateiupload" @@ -5346,7 +5347,7 @@ msgstr "Dateiupload" #: ../lib/modules/zarafaDynamicGroup.inc:170 #: ../lib/modules/zarafaDynamicGroup.inc:223 #: ../lib/modules/zarafaDynamicGroup.inc:413 -#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:471 +#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:472 #: ../lib/modules/nisNetGroupHost.inc:119 #: ../lib/modules/zarafaAddressList.inc:78 #: ../lib/modules/zarafaAddressList.inc:133 @@ -5379,8 +5380,8 @@ msgstr "Dateiupload" #: ../lib/modules/groupOfNames.inc:316 ../lib/modules/groupOfNames.inc:391 #: ../lib/modules/groupOfNames.inc:465 ../lib/modules/groupOfNames.inc:541 #: ../lib/modules/nisMailAlias.inc:92 ../lib/modules/nisMailAlias.inc:374 -#: ../lib/lists.inc:456 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 -#: ../help/help.inc:178 +#: ../lib/lists.inc:455 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 +#: ../help/help.inc:176 msgid "Filter" msgstr "Filtern" @@ -5398,21 +5399,21 @@ msgstr "Alle Operationen beendet." #: ../lib/types/user.inc:102 ../lib/modules/selfRegistration.inc:82 #: ../lib/modules/selfRegistration.inc:205 -#: ../lib/modules/windowsLDSUser.inc:133 ../lib/modules/windowsLDSUser.inc:345 -#: ../lib/modules/windowsLDSUser.inc:652 ../lib/modules/windowsLDSUser.inc:752 -#: ../lib/modules/windowsLDSUser.inc:861 ../lib/modules/windowsLDSUser.inc:1807 +#: ../lib/modules/windowsLDSUser.inc:133 ../lib/modules/windowsLDSUser.inc:349 +#: ../lib/modules/windowsLDSUser.inc:656 ../lib/modules/windowsLDSUser.inc:759 +#: ../lib/modules/windowsLDSUser.inc:868 ../lib/modules/windowsLDSUser.inc:1825 #: ../lib/modules/windowsUser.inc:151 ../lib/modules/windowsUser.inc:434 #: ../lib/modules/windowsUser.inc:876 ../lib/modules/windowsUser.inc:1030 #: ../lib/modules/windowsUser.inc:1162 ../lib/modules/windowsUser.inc:2855 #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:236 ../lib/modules/inetOrgPerson.inc:476 #: ../lib/modules/inetOrgPerson.inc:578 ../lib/modules/inetOrgPerson.inc:1204 -#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1967 -#: ../lib/modules/inetOrgPerson.inc:2581 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1965 +#: ../lib/modules/inetOrgPerson.inc:2579 ../lib/modules/inetOrgPerson.inc:4119 msgid "First name" msgstr "Vorname" -#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/windowsLDSUser.inc:753 +#: ../lib/modules/windowsLDSUser.inc:759 ../lib/modules/windowsLDSUser.inc:760 #: ../lib/modules/windowsUser.inc:1030 ../lib/modules/windowsUser.inc:1031 #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:69 msgid "First name contains invalid characters!" @@ -5432,7 +5433,7 @@ msgstr "Feste IP-Adressen" msgid "Fixed list" msgstr "Feste Liste" -#: ../lib/modules/posixGroup.inc:548 ../lib/modules/posixAccount.inc:2151 +#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2205 msgid "Fixed range" msgstr "Fester Adressbereich" @@ -5445,8 +5446,8 @@ msgstr "Faltmarken" msgid "Follow referrals" msgstr "Referrals folgen" -#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:780 -#: ../help/help.inc:272 +#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:779 +#: ../help/help.inc:282 msgid "Font" msgstr "Schriftart" @@ -5462,19 +5463,19 @@ msgstr "" "Für den Upload geben Sie bitte die Einträge im Format \"(HOST,BENUTZER," "DOMAIN)\" ein. Mehrere Einträge werden durch Strichpunkt getrennt." -#: ../templates/lists/changePassword.php:238 ../lib/modules/locking389ds.inc:87 +#: ../templates/lists/changePassword.php:242 ../lib/modules/locking389ds.inc:87 #: ../lib/modules/mitKerberos.inc:182 ../lib/modules/mitKerberos.inc:414 #: ../lib/modules/shadowAccount.inc:376 ../lib/modules/heimdalKerberos.inc:126 #: ../lib/modules/heimdalKerberos.inc:340 ../lib/modules.inc:1132 -#: ../help/help.inc:262 +#: ../help/help.inc:272 msgid "Force password change" msgstr "Passwortänderung erzwingen" -#: ../templates/config/confmain.php:341 ../help/help.inc:226 +#: ../templates/config/confmain.php:341 ../help/help.inc:230 msgid "Force password change by default" msgstr "Passwortwechsel standardmäßig erzwingen" -#: ../lib/modules/posixGroup.inc:484 ../lib/modules/posixGroup.inc:531 +#: ../lib/modules/posixGroup.inc:485 ../lib/modules/posixGroup.inc:532 msgid "Force sync with group of names" msgstr "Sync mit Namensgruppe erzwingen" @@ -5482,7 +5483,7 @@ msgstr "Sync mit Namensgruppe erzwingen" msgid "Forgot password?" msgstr "Passwort vergessen?" -#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:342 +#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:352 msgid "Format" msgstr "Format" @@ -5503,7 +5504,7 @@ msgid "Free printing" msgstr "Freies Drucken" #: ../lib/modules/freeRadius.inc:76 ../lib/modules/freeRadius.inc:816 -#: ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/freeRadius.inc:884 msgid "FreeRadius" msgstr "FreeRadius" @@ -5511,17 +5512,19 @@ msgstr "FreeRadius" msgid "Friday" msgstr "Freitag" -#: ../templates/config/confmain.php:357 ../lib/passwordExpirationJob.inc:83 -#: ../lib/passwordExpirationJob.inc:122 ../lib/modules/selfRegistration.inc:89 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:339 ../templates/config/confmain.php:357 +#: ../lib/passwordExpirationJob.inc:83 ../lib/passwordExpirationJob.inc:122 +#: ../lib/modules/selfRegistration.inc:89 #: ../lib/modules/selfRegistration.inc:217 #: ../lib/modules/passwordSelfReset.inc:119 #: ../lib/modules/passwordSelfReset.inc:663 -#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:336 -#: ../help/help.inc:380 +#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:242 +#: ../help/help.inc:346 ../help/help.inc:390 msgid "From address" msgstr "Absenderadresse" -#: ../templates/config/confmain.php:615 +#: ../templates/config/confmain.php:614 ../templates/config/confmain.php:617 msgid "From address for password mails is invalid." msgstr "Absenderadresse für Passwortmails ist ungültig." @@ -5560,7 +5563,7 @@ msgstr "Quellbenutzer für diesen Account." msgid "Full contact" msgstr "Vollständiger Kontakt" -#: ../templates/lists/changePassword.php:276 +#: ../templates/lists/changePassword.php:280 #: ../lib/modules/asteriskVoicemail.inc:102 #: ../lib/modules/asteriskVoicemail.inc:138 #: ../lib/modules/asteriskVoicemail.inc:171 @@ -5578,12 +5581,12 @@ msgstr "Vollständiger Name für den Anrufbeantworter." msgid "Function" msgstr "Funktion" -#: ../lib/modules/windowsLDSUser.inc:395 ../lib/modules/windowsUser.inc:484 +#: ../lib/modules/windowsLDSUser.inc:399 ../lib/modules/windowsUser.inc:484 #: ../lib/modules/inetOrgPerson.inc:317 msgid "GB-12345" msgstr "DE-12345" -#: ../lib/modules/posixGroup.inc:458 ../lib/modules/posixGroup.inc:553 +#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixGroup.inc:554 msgid "GID generator" msgstr "GID-Generator" @@ -5592,17 +5595,17 @@ msgstr "GID-Generator" #: ../lib/modules/qmailUser.inc:298 ../lib/modules/qmailUser.inc:375 #: ../lib/modules/qmailUser.inc:461 ../lib/modules/qmailUser.inc:934 #: ../lib/modules/qmailUser.inc:1059 ../lib/modules/posixGroup.inc:211 -#: ../lib/modules/posixGroup.inc:398 ../lib/modules/posixGroup.inc:404 -#: ../lib/modules/posixGroup.inc:418 ../lib/modules/posixGroup.inc:438 -#: ../lib/modules/posixGroup.inc:667 ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:399 ../lib/modules/posixGroup.inc:405 +#: ../lib/modules/posixGroup.inc:419 ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:668 ../lib/modules/posixGroup.inc:702 #: ../lib/modules/posixAccount.inc:115 ../lib/modules/posixAccount.inc:302 -#: ../lib/modules/posixAccount.inc:2117 +#: ../lib/modules/posixAccount.inc:2171 #: ../lib/modules/sambaGroupMapping.inc:110 #: ../lib/modules/sambaGroupMapping.inc:511 msgid "GID number" msgstr "GID Nummer" -#: ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:702 msgid "" "GID number has changed. Please select checkbox to change GID number of users " "and hosts." @@ -5620,7 +5623,7 @@ msgstr "" "ausführen, um die Dateirechte zu ändern: 'find / -gid %s -uid %s -exec chgrp " "%s {} \\;'" -#: ../lib/modules/posixGroup.inc:708 +#: ../lib/modules/posixGroup.inc:709 msgid "GID number has to be a numeric value!" msgstr "GID-Nummer muss eine Zahl sein!" @@ -5629,14 +5632,14 @@ msgid "GID number is already in use." msgstr "GID-Nummer wird bereits verwendet." #: ../lib/modules/posixAccount.inc:419 ../lib/modules/posixAccount.inc:457 -#: ../lib/modules/posixAccount.inc:1628 ../lib/modules/posixAccount.inc:2088 -#: ../lib/modules/posixAccount.inc:2120 ../lib/modules/posixAccount.inc:2223 -#: ../lib/modules/posixAccount.inc:2292 ../lib/modules/posixAccount.inc:2433 -#: ../lib/modules/posixAccount.inc:2441 +#: ../lib/modules/posixAccount.inc:1674 ../lib/modules/posixAccount.inc:2142 +#: ../lib/modules/posixAccount.inc:2174 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2346 ../lib/modules/posixAccount.inc:2487 +#: ../lib/modules/posixAccount.inc:2495 msgid "Gecos" msgstr "Gecos" -#: ../lib/modules/windowsLDSUser.inc:837 ../lib/modules/windowsUser.inc:1135 +#: ../lib/modules/windowsLDSUser.inc:844 ../lib/modules/windowsUser.inc:1135 msgid "General" msgstr "Allgemein" @@ -5644,7 +5647,7 @@ msgstr "Allgemein" msgid "General information" msgstr "Allgemeine Informationen" -#: ../templates/config/mainmanage.php:286 +#: ../templates/config/mainmanage.php:302 #: ../templates/selfService/adminMain.php:408 #: ../templates/profedit/profilepage.php:189 ../lib/configPages.inc:87 msgid "General settings" @@ -5654,7 +5657,7 @@ msgstr "Allgemeine Einstellungen" msgid "Generate new serial number." msgstr "Neue Seriennummer generieren." -#: ../templates/lists/changePassword.php:307 ../help/help.inc:316 +#: ../templates/lists/changePassword.php:311 ../help/help.inc:326 msgid "Generate random password" msgstr "Zufälliges Passwort generieren" @@ -5683,7 +5686,7 @@ msgstr "Zurück" msgid "Go to" msgstr "Gehe zu" -#: ../templates/selfService/adminMain.php:547 ../help/help.inc:318 +#: ../templates/selfService/adminMain.php:547 ../help/help.inc:328 msgid "Google reCAPTCHA" msgstr "Google reCAPTCHA" @@ -5693,7 +5696,7 @@ msgstr "Google reCAPTCHA" msgid "Grace authentication limit" msgstr "Aufschublimit" -#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:524 msgid "Grace block period" msgstr "Block-Frist" @@ -5710,7 +5713,7 @@ msgid "" msgstr "" "Inode-Frist. Viele Dateisysteme verwenden ein festes Maximum von 7 Tagen." -#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:525 msgid "Grace inode period" msgstr "Inode-Frist" @@ -5752,7 +5755,7 @@ msgstr "Gruppenbeschreibung" msgid "Group description." msgstr "Gruppenbeschreibung." -#: ../lib/modules/posixGroup.inc:423 +#: ../lib/modules/posixGroup.inc:424 msgid "Group description. If left empty group name will be used." msgstr "Gruppenbeschreibung. Falls leer wird der Gruppename verwendet." @@ -5766,15 +5769,15 @@ msgstr "DNs der Gruppenmitglieder" #: ../lib/modules/pykotaPrinter.inc:122 ../lib/modules/pykotaPrinter.inc:185 #: ../lib/modules/pykotaPrinter.inc:198 ../lib/modules/pykotaPrinter.inc:262 #: ../lib/modules/pykotaPrinter.inc:594 ../lib/modules/posixGroup.inc:85 -#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:304 -#: ../lib/modules/posixGroup.inc:426 ../lib/modules/posixGroup.inc:430 -#: ../lib/modules/posixGroup.inc:653 ../lib/modules/posixGroup.inc:665 -#: ../lib/modules/posixGroup.inc:678 ../lib/modules/windowsLDSGroup.inc:190 +#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:305 +#: ../lib/modules/posixGroup.inc:427 ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:654 ../lib/modules/posixGroup.inc:666 +#: ../lib/modules/posixGroup.inc:679 ../lib/modules/windowsLDSGroup.inc:190 #: ../lib/modules/windowsGroup.inc:376 msgid "Group members" msgstr "Gruppenmitglieder" -#: ../lib/modules/posixGroup.inc:654 +#: ../lib/modules/posixGroup.inc:655 msgid "Group members (incl. primary members)" msgstr "Gruppenmitglieder (inkl. primären Mitgliedern)" @@ -5787,10 +5790,10 @@ msgstr "Gruppenmitglieder (inkl. primären Mitgliedern)" #: ../lib/modules/zarafaDynamicGroup.inc:180 #: ../lib/modules/zarafaDynamicGroup.inc:204 #: ../lib/modules/zarafaDynamicGroup.inc:410 ../lib/modules/posixGroup.inc:66 -#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:446 -#: ../lib/modules/posixGroup.inc:649 ../lib/modules/posixGroup.inc:666 -#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:710 -#: ../lib/modules/posixGroup.inc:711 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:650 ../lib/modules/posixGroup.inc:667 +#: ../lib/modules/posixGroup.inc:710 ../lib/modules/posixGroup.inc:711 +#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:170 ../lib/modules/pykotaGroup.inc:190 #: ../lib/modules/kopanoDynamicGroup.inc:62 #: ../lib/modules/kopanoDynamicGroup.inc:119 @@ -5830,8 +5833,8 @@ msgid "Group name already in use." msgstr "Der Gruppenname wird bereits verwendet." #: ../lib/modules/zarafaDynamicGroup.inc:180 -#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:711 -#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:712 +#: ../lib/modules/posixGroup.inc:713 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:169 ../lib/modules/pykotaGroup.inc:172 #: ../lib/modules/pykotaGroup.inc:173 ../lib/modules/kopanoDynamicGroup.inc:184 #: ../lib/modules/kopanoDynamicGroup.inc:185 ../lib/modules/nisnetgroup.inc:153 @@ -5849,7 +5852,7 @@ msgstr "" msgid "Group name for NIS." msgstr "Gruppenname für NIS." -#: ../lib/modules/posixGroup.inc:710 +#: ../lib/modules/posixGroup.inc:711 msgid "Group name in use. Selected next free group name." msgstr "" "Gruppenname wird bereits verwendet. Nächster freier Gruppenname wurde " @@ -5864,7 +5867,7 @@ msgstr "" "Gruppenname der zu erstellenden Gruppe. Gültige Zeichen sind: a-z, A-Z, 0-9 " "und .-_." -#: ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:448 msgid "" "Group name of the group which should be created. Valid characters are: a-z, " "A-Z, 0-9 and .-_ . If group name is already used group name will be expanded " @@ -5901,7 +5904,7 @@ msgstr "Namensgruppen" msgid "Group of unique names" msgstr "Gruppe eindeutiger Namen" -#: ../lib/modules/posixGroup.inc:410 ../lib/modules/posixGroup.inc:434 +#: ../lib/modules/posixGroup.inc:411 ../lib/modules/posixGroup.inc:435 msgid "Group password" msgstr "Gruppenpasswort" @@ -5918,19 +5921,19 @@ msgid "Group type" msgstr "Gruppentyp" #: ../lib/types/group.inc:69 ../lib/modules/windowsLDSUser.inc:201 -#: ../lib/modules/windowsLDSUser.inc:204 ../lib/modules/windowsLDSUser.inc:447 -#: ../lib/modules/windowsLDSUser.inc:666 ../lib/modules/windowsLDSUser.inc:984 -#: ../lib/modules/windowsLDSUser.inc:1221 -#: ../lib/modules/windowsLDSUser.inc:1842 -#: ../lib/modules/windowsLDSUser.inc:1870 ../lib/modules/posixGroup.inc:505 +#: ../lib/modules/windowsLDSUser.inc:204 ../lib/modules/windowsLDSUser.inc:451 +#: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:1002 +#: ../lib/modules/windowsLDSUser.inc:1239 +#: ../lib/modules/windowsLDSUser.inc:1860 +#: ../lib/modules/windowsLDSUser.inc:1890 ../lib/modules/posixGroup.inc:506 #: ../lib/modules/zarafaGroup.inc:737 ../lib/modules/kopanoGroup.inc:698 -#: ../lib/modules/posixAccount.inc:3227 ../lib/modules/windowsUser.inc:239 +#: ../lib/modules/posixAccount.inc:3281 ../lib/modules/windowsUser.inc:239 #: ../lib/modules/windowsUser.inc:242 ../lib/modules/windowsUser.inc:604 #: ../lib/modules/windowsUser.inc:897 ../lib/modules/windowsUser.inc:1358 #: ../lib/modules/windowsUser.inc:1820 ../lib/modules/windowsUser.inc:2919 #: ../lib/modules/windowsUser.inc:2949 ../lib/modules/windowsLDSGroup.inc:271 #: ../lib/modules/generalInformation.inc:111 -#: ../lib/modules/groupOfNamesUser.inc:537 ../lib/modules/windowsGroup.inc:505 +#: ../lib/modules/groupOfNamesUser.inc:538 ../lib/modules/windowsGroup.inc:505 msgid "Groups" msgstr "Gruppen" @@ -5939,15 +5942,15 @@ msgid "Groups (read-only)" msgstr "Gruppen (nur lesen)" #: ../lib/types/gon.inc:54 ../lib/modules/posixAccount.inc:261 -#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1811 -#: ../lib/modules/posixAccount.inc:1988 ../lib/modules/posixAccount.inc:2131 -#: ../lib/modules/posixAccount.inc:2227 ../lib/modules/groupOfNamesUser.inc:54 +#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:2043 ../lib/modules/posixAccount.inc:2185 +#: ../lib/modules/posixAccount.inc:2280 ../lib/modules/groupOfNamesUser.inc:54 #: ../lib/modules/groupOfNamesUser.inc:56 #: ../lib/modules/groupOfNamesUser.inc:60 #: ../lib/modules/groupOfNamesUser.inc:64 #: ../lib/modules/groupOfNamesUser.inc:75 -#: ../lib/modules/groupOfNamesUser.inc:329 -#: ../lib/modules/groupOfNamesUser.inc:367 +#: ../lib/modules/groupOfNamesUser.inc:330 +#: ../lib/modules/groupOfNamesUser.inc:368 msgid "Groups of names" msgstr "Namensgruppen" @@ -5958,7 +5961,7 @@ msgstr "H-Knoten (0x08)" #: ../templates/config/confmain.php:370 ../lib/passwordExpirationJob.inc:88 #: ../lib/modules/selfRegistration.inc:221 #: ../lib/modules/passwordSelfReset.inc:665 -#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:345 +#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:355 msgid "HTML format" msgstr "HTML Format" @@ -5976,17 +5979,17 @@ msgstr "HTTP-Authentifizierung" msgid "HTTP port" msgstr "HTTP-Port" -#: ../lib/modules/quota.inc:713 ../lib/modules/systemQuotas.inc:372 +#: ../lib/modules/quota.inc:776 ../lib/modules/systemQuotas.inc:372 msgid "Hard block" msgstr "Hartes Block-Limit" #: ../lib/modules/quota.inc:123 ../lib/modules/quota.inc:124 -#: ../lib/modules/quota.inc:467 ../lib/modules/quota.inc:567 +#: ../lib/modules/quota.inc:524 ../lib/modules/quota.inc:627 #: ../lib/modules/systemQuotas.inc:128 msgid "Hard block limit" msgstr "Hartes Block-Limit" -#: ../lib/modules/quota.inc:715 ../lib/modules/systemQuotas.inc:374 +#: ../lib/modules/quota.inc:778 ../lib/modules/systemQuotas.inc:374 msgid "Hard inode" msgstr "Hartes Inode-Limit" @@ -5994,8 +5997,8 @@ msgstr "Hartes Inode-Limit" msgid "Hard inode (files) limit" msgstr "Hartes Inode-Limit (Dateien)" -#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:573 ../lib/modules/systemQuotas.inc:132 +#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:633 ../lib/modules/systemQuotas.inc:132 msgid "Hard inode limit" msgstr "Hartes Inode-Limit" @@ -6059,7 +6062,7 @@ msgid "Here you can enter a description for this role." msgstr "Hier können Sie eine Beschreibung für die Sudo-Rolle eintragen." #: ../lib/modules/pykotaPrinter.inc:128 ../lib/modules/zarafaContact.inc:95 -#: ../lib/modules/posixGroup.inc:472 ../lib/modules/zarafaUser.inc:159 +#: ../lib/modules/posixGroup.inc:473 ../lib/modules/zarafaUser.inc:159 #: ../lib/modules/kopanoContact.inc:95 ../lib/modules/sambaGroupMapping.inc:171 #: ../lib/modules/nisnetgroup.inc:107 ../lib/modules/kopanoUser.inc:159 #: ../lib/modules/windowsLDSGroup.inc:109 @@ -6105,7 +6108,7 @@ msgstr "Hier können Sie eine Seriennummer für das Gerät eintragen." msgid "Here you can enter additional web sites for the user." msgstr "Hier können Sie zusätzliche Webseiten für den Benutzer eintragen." -#: ../help/help.inc:271 +#: ../help/help.inc:281 msgid "" "Here you can enter an alternative mail address for the password. To use the " "user's primary email address please leave the field blank." @@ -6128,13 +6131,13 @@ msgstr "" "eingeben. Das erlaubt Ihnen die Attribute der Gruppe inklusive Objektklassen " "hinzufügen oder zu entfernen." -#: ../lib/modules/windowsLDSUser.inc:256 ../lib/modules/windowsLDSUser.inc:260 +#: ../lib/modules/windowsLDSUser.inc:260 ../lib/modules/windowsLDSUser.inc:264 #: ../lib/modules/windowsUser.inc:333 ../lib/modules/windowsUser.inc:337 msgid "Here you can enter the user's department number." msgstr "" "Hier können Sie die Nummer des Unternehmensbereichs des Benutzers eingeben." -#: ../lib/modules/windowsLDSUser.inc:252 ../lib/modules/windowsUser.inc:329 +#: ../lib/modules/windowsLDSUser.inc:256 ../lib/modules/windowsUser.inc:329 #: ../lib/modules/inetOrgPerson.inc:746 ../lib/modules/inetOrgPerson.inc:750 msgid "Here you can enter the user's department." msgstr "Hier können Sie den Unternehmensbereich des Benutzers eingeben." @@ -6147,7 +6150,7 @@ msgstr "Hier können Sie einzelne Kopano-Funktionen (de)aktivieren." msgid "Here you can explicitly enable and disable Zarafa features." msgstr "Hier können Sie einzelne Zarafa-Funktionen (de)aktivieren." -#: ../help/help.inc:269 +#: ../help/help.inc:279 msgid "" "Here you can export PDF structures to other server profiles (overwrite " "existing). You may also export a structure to the global templates. In this " @@ -6159,7 +6162,7 @@ msgstr "" "die globalen Vorlagen exportieren. In diesem Fall wird die Struktur in alle " "Serverprofile kopiert, die noch keine Struktur gleichen Namens haben." -#: ../help/help.inc:249 +#: ../help/help.inc:259 msgid "" "Here you can export account profiles to other server profiles (overwrite " "existing). You may also export a profile to the global templates. In this " @@ -6172,7 +6175,7 @@ msgstr "" "alle Serverprofile kopiert, die noch kein Accountprofil gleichen Namens " "haben." -#: ../help/help.inc:267 +#: ../help/help.inc:277 msgid "" "Here you can import PDF structures from other server profiles (overwrite " "existing)." @@ -6180,7 +6183,7 @@ msgstr "" "Damit können Sie PDF-Strukturen aus anderen Serverprofilen importieren " "(überschreibt bestehende PDF-Strukturen)." -#: ../help/help.inc:247 +#: ../help/help.inc:257 msgid "" "Here you can import account profiles from other server profiles (overwrite " "existing)." @@ -6188,7 +6191,7 @@ msgstr "" "Damit können Sie Accountprofile aus anderen Serverprofilen importieren " "(überschreibt bestehende Accountprofile)." -#: ../lib/lists.inc:458 ../help/help.inc:179 +#: ../lib/lists.inc:457 ../help/help.inc:177 msgid "" "Here you can input simple filter expressions (e.g. 'value' or 'v*'). The " "filter is case-insensitive." @@ -6196,7 +6199,7 @@ msgstr "" "Hier können Sie einfache Filter angeben (z.B. 'wert' oder 'w*'). LAM filtert " "ohne Berücksichtigung von Groß-/Kleinschreibung." -#: ../help/help.inc:255 +#: ../help/help.inc:265 msgid "" "Here you can load an account profile to set default settings for your " "account. The \"default\" profile is automatically loaded for new accounts." @@ -6212,11 +6215,11 @@ msgstr "Hier können Sie Ihre Accountprofile verwalten." msgid "Here you can manage your webauthn devices." msgstr "Hier können Sie Ihre Webauthn-Geräte verwalten." -#: ../help/help.inc:195 +#: ../help/help.inc:199 msgid "Here you can overwrite the display name for this account type." msgstr "Hier können Sie den Anzeigename für diesen Kontotyp überschreiben." -#: ../help/help.inc:257 +#: ../help/help.inc:267 msgid "" "Here you can select a PDF structure and export the account to a PDF file." msgstr "" @@ -6262,7 +6265,7 @@ msgstr "" msgid "Here you can set the URL to a custom icon (32x32px) for this module." msgstr "Hier können Sie die URL für ein eigenes Symbol (32x32px) eintragen." -#: ../help/help.inc:295 +#: ../help/help.inc:305 msgid "" "Here you can specify additional CSS links to change the layout of the self " "service pages. This is useful to adapt them to your corporate design. Please " @@ -6314,7 +6317,7 @@ msgid "" "Here you can specify the minimum number of characters for a user password." msgstr "Bestimmt die minimale Länge für Benutzerpasswörter." -#: ../templates/lists/changePassword.php:352 +#: ../templates/lists/changePassword.php:356 msgid "Here you can specify the new password yourself." msgstr "Hier können Sie das neue Passwort selbst eingeben." @@ -6369,11 +6372,11 @@ msgstr "Hier können Sie eine neue Datei hochladen." #: ../lib/modules/kopanoAddressList.inc:111 #: ../lib/modules/kopanoAddressList.inc:142 #: ../lib/modules/kopanoAddressList.inc:179 -#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:188 +#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:192 msgid "Hidden" msgstr "Versteckt" -#: ../help/help.inc:189 +#: ../help/help.inc:193 msgid "" "Hidden account types will not show up in LAM. This is useful if you want to " "display e.g. only groups but still need to manage their members." @@ -6382,7 +6385,7 @@ msgstr "" "diese Einstellung wenn Sie z.B. nur Gruppen anzeigen möchten und Mitglieder " "trotzdem änderbar sein sollen." -#: ../lib/modules/windowsLDSUser.inc:211 ../lib/modules/windowsLDSUser.inc:2143 +#: ../lib/modules/windowsLDSUser.inc:211 ../lib/modules/windowsLDSUser.inc:2182 #: ../lib/modules/kopanoServer.inc:87 ../lib/modules/kopanoServer.inc:373 #: ../lib/modules/nisMailAliasUser.inc:104 #: ../lib/modules/nisMailAliasUser.inc:558 @@ -6392,10 +6395,10 @@ msgstr "" #: ../lib/modules/zarafaGroup.inc:761 ../lib/modules/kopanoGroup.inc:114 #: ../lib/modules/kopanoGroup.inc:722 ../lib/modules/sambaSamAccount.inc:401 #: ../lib/modules/sambaSamAccount.inc:1946 ../lib/modules/posixAccount.inc:324 -#: ../lib/modules/posixAccount.inc:2218 ../lib/modules/posixAccount.inc:2287 +#: ../lib/modules/posixAccount.inc:2272 ../lib/modules/posixAccount.inc:2341 #: ../lib/modules/zarafaUser.inc:150 ../lib/modules/zarafaUser.inc:1816 #: ../lib/modules/windowsUser.inc:257 ../lib/modules/windowsUser.inc:3692 -#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4071 +#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4068 #: ../lib/modules/freeRadius.inc:127 ../lib/modules/freeRadius.inc:298 #: ../lib/modules/kopanoUser.inc:150 ../lib/modules/kopanoUser.inc:1746 #: ../lib/modules/windowsLDSGroup.inc:80 ../lib/modules/zarafaServer.inc:88 @@ -6476,8 +6479,8 @@ msgstr "Halten Sie Strg gedrückt um mehrere Rollen zu markieren." #: ../lib/modules/posixAccount.inc:237 ../lib/modules/posixAccount.inc:305 #: ../lib/modules/posixAccount.inc:357 ../lib/modules/posixAccount.inc:361 #: ../lib/modules/posixAccount.inc:365 ../lib/modules/posixAccount.inc:369 -#: ../lib/modules/posixAccount.inc:1649 ../lib/modules/posixAccount.inc:1902 -#: ../lib/modules/posixAccount.inc:1999 ../lib/modules/posixAccount.inc:2118 +#: ../lib/modules/posixAccount.inc:1704 ../lib/modules/posixAccount.inc:1957 +#: ../lib/modules/posixAccount.inc:2054 ../lib/modules/posixAccount.inc:2172 #: ../lib/modules/courierMailAccount.inc:136 #: ../lib/modules/courierMailAccount.inc:244 #: ../lib/modules/courierMailAccount.inc:423 @@ -6537,8 +6540,8 @@ msgstr "Dies ist der Heimatserver des Benutzers." #: ../lib/modules/inetOrgPerson.inc:355 ../lib/modules/inetOrgPerson.inc:513 #: ../lib/modules/inetOrgPerson.inc:697 ../lib/modules/inetOrgPerson.inc:701 #: ../lib/modules/inetOrgPerson.inc:1409 ../lib/modules/inetOrgPerson.inc:1412 -#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2646 -#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2644 +#: ../lib/modules/inetOrgPerson.inc:4082 ../lib/modules/inetOrgPerson.inc:4124 msgid "Home telephone number" msgstr "Telefon privat" @@ -6555,7 +6558,7 @@ msgstr "Heimatverzeichnis enthält ungültige Zeichen." #: ../lib/modules/asteriskAccount.inc:316 #: ../lib/modules/asteriskAccount.inc:589 #: ../lib/modules/asteriskAccount.inc:984 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:604 +#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:602 #: ../lib/modules/hostObject.inc:144 msgid "Host" msgstr "Host" @@ -6584,14 +6587,14 @@ msgid "Host list" msgstr "Hostliste" #: ../lib/types/host.inc:95 ../lib/types/bind.inc:80 -#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:216 +#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:213 #: ../lib/modules/windowsHost.inc:75 ../lib/modules/windowsHost.inc:107 #: ../lib/modules/windowsHost.inc:132 ../lib/modules/windowsHost.inc:144 #: ../lib/modules/windowsHost.inc:155 ../lib/modules/windowsHost.inc:328 #: ../lib/modules/posixAccount.inc:105 ../lib/modules/posixAccount.inc:106 #: ../lib/modules/posixAccount.inc:108 ../lib/modules/posixAccount.inc:272 #: ../lib/modules/posixAccount.inc:295 ../lib/modules/posixAccount.inc:453 -#: ../lib/modules/posixAccount.inc:1606 ../lib/modules/posixAccount.inc:2100 +#: ../lib/modules/posixAccount.inc:1652 ../lib/modules/posixAccount.inc:2154 #: ../lib/modules/bindDLZ.inc:93 ../lib/modules/bindDLZ.inc:156 #: ../lib/modules/bindDLZ.inc:160 ../lib/modules/bindDLZ.inc:264 #: ../lib/modules/bindDLZ.inc:351 ../lib/modules/bindDLZ.inc:492 @@ -6644,7 +6647,7 @@ msgstr "" #: ../lib/types/host.inc:55 ../lib/modules/posixAccount.inc:85 #: ../lib/modules/posixAccount.inc:86 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2240 ../lib/modules/sudoRole.inc:77 +#: ../lib/modules/posixAccount.inc:2294 ../lib/modules/sudoRole.inc:77 #: ../lib/modules/sudoRole.inc:102 ../lib/modules/sudoRole.inc:164 #: ../lib/modules/sudoRole.inc:216 ../lib/modules/sudoRole.inc:228 #: ../lib/modules/sudoRole.inc:302 ../lib/modules/sudoRole.inc:455 @@ -6657,16 +6660,16 @@ msgstr "Hosts" msgid "I am out of office." msgstr "Ich bin derzeit nicht im Büro." -#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:705 #: ../lib/modules/posixAccount.inc:96 ../lib/modules/kopanoContact.inc:183 msgid "ID is already in use" msgstr "ID wird bereits verwendet" -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixGroup.inc:703 -#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixGroup.inc:851 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/posixGroup.inc:705 ../lib/modules/posixGroup.inc:852 #: ../lib/modules/posixAccount.inc:94 ../lib/modules/posixAccount.inc:95 -#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 msgid "ID-Number" msgstr "ID-Nummer" @@ -6701,13 +6704,13 @@ msgstr "IMAP-Passworteingabe" #: ../lib/modules/freeRadius.inc:204 ../lib/modules/freeRadius.inc:253 #: ../lib/modules/freeRadius.inc:302 ../lib/modules/freeRadius.inc:351 #: ../lib/modules/freeRadius.inc:689 ../lib/modules/fixed_ip.inc:111 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:761 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:759 msgid "IP address" msgstr "IP-Adresse" #: ../lib/modules/ddns.inc:97 ../lib/modules/ddns.inc:111 -#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:379 -#: ../lib/modules/ddns.inc:421 +#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:375 +#: ../lib/modules/ddns.inc:417 msgid "IP address of the DNS server" msgstr "IP-Adresse des DNS-Servers" @@ -6812,7 +6815,7 @@ msgstr "Falls angekreuzt läuft das Passwort nicht aus." msgid "If checked password does not expire. (Setting X-Flag)" msgstr "Falls angekreuzt läuft das Passwort nicht aus. (X-Flag wird gesetzt)" -#: ../help/help.inc:315 +#: ../help/help.inc:325 msgid "" "If checked then also users who did not setup a second factor are able to " "login." @@ -6838,7 +6841,7 @@ msgstr "" "können diese Einstellung verwenden, um durch falsche Passworteingaben " "gesperrte Accounts zu entsperren." -#: ../help/help.inc:191 +#: ../help/help.inc:195 msgid "" "If checked then the user will not be able to create new entries of this " "account type." @@ -6846,28 +6849,28 @@ msgstr "" "Falls angekreuzt, kann der Benutzer keine neuen Einträge dieses Typs " "erstellen." -#: ../help/help.inc:193 +#: ../help/help.inc:197 msgid "" "If checked then the user will not be able to delete entries of this account " "type." msgstr "" "Falls angekreuzt, kann der Benutzer keine Einträge dieses Typs löschen." -#: ../lib/modules/posixGroup.inc:419 +#: ../lib/modules/posixGroup.inc:420 msgid "" -"If empty GID number will be generated automaticly depending on your " +"If empty GID number will be generated automatically depending on your " "configuration settings." msgstr "" "Falls leer wird die GID-Nummer automatisch auf Basis Ihrer " "Konfigurationseinstellungen generiert." #: ../lib/modules/qmailUser.inc:202 -msgid "If empty GID number will be generated automaticly." +msgid "If empty GID number will be generated automatically." msgstr "Falls leer wird die GID-Nummer automatisch generiert." #: ../lib/modules/qmailUser.inc:198 ../lib/modules/zarafaContact.inc:118 #: ../lib/modules/posixAccount.inc:346 ../lib/modules/kopanoContact.inc:118 -msgid "If empty UID number will be generated automaticly." +msgid "If empty UID number will be generated automatically." msgstr "Falls leer wird die UID-Nummer automatisch generiert." #: ../lib/modules/selfRegistration.inc:110 @@ -6952,7 +6955,7 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:162 msgid "" -"If set to true then all incomming mails needs to come from a member of the " +"If set to true then all incoming mails needs to come from a member of the " "list." msgstr "" "Wenn Sie diese Option aktivieren dann dürfen Emails nur von Mitgliedern der " @@ -7005,7 +7008,7 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:194 msgid "" -"If this is set to true then an incomming mail needs to be approved by the " +"If this is set to true then an incoming mail needs to be approved by the " "sender." msgstr "" "Wenn Sie diese Option aktivieren dann müssen alle Emails vom Absender " @@ -7098,7 +7101,7 @@ msgstr "" #: ../lib/modules/mitKerberos.inc:183 ../lib/modules/sambaSamAccount.inc:297 #: ../lib/modules/windowsUser.inc:237 ../lib/modules/heimdalKerberos.inc:127 -#: ../help/help.inc:263 +#: ../help/help.inc:273 msgid "" "If you set this option then the user has to change his password at the next " "login." @@ -7163,7 +7166,7 @@ msgstr "" "Falls Ihr Server auf einem anderen Port hört, dann fügen Sie ein Komma und " "die Portnummer nach dem Servernamen hinzu." -#: ../lib/modules/windowsLDSUser.inc:319 ../lib/modules/windowsUser.inc:396 +#: ../lib/modules/windowsLDSUser.inc:323 ../lib/modules/windowsUser.inc:396 #: ../lib/modules/inetOrgPerson.inc:794 msgid "Image cropping" msgstr "Bildzuschneidung" @@ -7182,16 +7185,16 @@ msgid "Import" msgstr "Import" #: ../templates/pdfedit/pdfmain.php:256 ../templates/pdfedit/pdfmain.php:257 -#: ../help/help.inc:266 +#: ../help/help.inc:276 msgid "Import PDF structures" msgstr "PDF-Strukturen importieren" -#: ../templates/config/mainmanage.php:353 +#: ../templates/config/mainmanage.php:393 msgid "Import from server" msgstr "Vom Server importieren" #: ../templates/profedit/profilemain.php:233 -#: ../templates/profedit/profilemain.php:234 ../help/help.inc:246 +#: ../templates/profedit/profilemain.php:234 ../help/help.inc:256 msgid "Import profiles" msgstr "Profile importieren" @@ -7200,7 +7203,7 @@ msgstr "Profile importieren" msgid "Import successful" msgstr "Import war erfolgreich" -#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:241 msgid "Imported certificate from server." msgstr "Zertifikat wurde vom Server importiert." @@ -7208,7 +7211,7 @@ msgstr "Zertifikat wurde vom Server importiert." msgid "Imports and exports LDAP data." msgstr "Importiert und exportiert LDAP-Daten." -#: ../templates/config/mainmanage.php:355 +#: ../templates/config/mainmanage.php:395 msgid "Imports the certificate directly from your LDAP server." msgstr "Damit importieren Sie die Zertifikate direkt vom LDAP-Server." @@ -7225,7 +7228,7 @@ msgid "Inactive hosts will not be able to get an address from the DHCP server." msgstr "Inaktive Hosts bekommen keine Adresse vom DHCP-Server." #: ../templates/tools/importexport.php:280 -#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:375 +#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:385 msgid "Include system attributes" msgstr "Systemattribute miteinbeziehen" @@ -7259,17 +7262,17 @@ msgstr "Initialzahlung" msgid "Initial program" msgstr "Startprogramm" -#: ../lib/modules/windowsLDSUser.inc:137 ../lib/modules/windowsLDSUser.inc:369 -#: ../lib/modules/windowsLDSUser.inc:653 ../lib/modules/windowsLDSUser.inc:865 -#: ../lib/modules/windowsLDSUser.inc:1808 ../lib/modules/windowsUser.inc:155 +#: ../lib/modules/windowsLDSUser.inc:137 ../lib/modules/windowsLDSUser.inc:373 +#: ../lib/modules/windowsLDSUser.inc:657 ../lib/modules/windowsLDSUser.inc:872 +#: ../lib/modules/windowsLDSUser.inc:1826 ../lib/modules/windowsUser.inc:155 #: ../lib/modules/windowsUser.inc:458 ../lib/modules/windowsUser.inc:877 #: ../lib/modules/windowsUser.inc:1166 ../lib/modules/windowsUser.inc:2856 #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:251 #: ../lib/modules/inetOrgPerson.inc:558 ../lib/modules/inetOrgPerson.inc:782 #: ../lib/modules/inetOrgPerson.inc:1219 ../lib/modules/inetOrgPerson.inc:1222 -#: ../lib/modules/inetOrgPerson.inc:1995 ../lib/modules/inetOrgPerson.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:2869 ../lib/modules/inetOrgPerson.inc:4099 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2019 +#: ../lib/modules/inetOrgPerson.inc:2867 ../lib/modules/inetOrgPerson.inc:4096 +#: ../lib/modules/inetOrgPerson.inc:4132 msgid "Initials" msgstr "Initialen" @@ -7345,7 +7348,7 @@ msgstr "Benutzer- oder Gruppenname wurde in Profilpfad eingefügt." msgid "Insufficient rights for this operation." msgstr "Ihre Rechte sind für diese Operation nicht ausreichend." -#: ../lib/modules/fixed_ip.inc:459 +#: ../lib/modules/fixed_ip.inc:457 msgid "Invalid MAC address." msgstr "Ungültige MAC-Adresse." @@ -7357,7 +7360,7 @@ msgstr "Ungültiges RDN-Attribut!" msgid "Invalid RDN value" msgstr "Ungültiger RDN Wert" -#: ../lib/modules/posixAccount.inc:1723 ../lib/modules/yubiKeyUser.inc:147 +#: ../lib/modules/posixAccount.inc:1778 ../lib/modules/yubiKeyUser.inc:147 msgid "" "Invalid configuration detected. Please edit your server profile (module " "settings) and fill all required fields." @@ -7372,7 +7375,7 @@ msgstr "" msgid "Invalid data" msgstr "Ungültige Daten" -#: ../lib/modules/fixed_ip.inc:464 +#: ../lib/modules/fixed_ip.inc:462 msgid "Invalid description." msgstr "Ungültige Beschreibung." @@ -7393,15 +7396,15 @@ msgid "Invalid option" msgstr "Ungültige Option" #: ../lib/modules/imapAccess.inc:161 -msgid "Invalid password for IMAP admin or other problem occured." +msgid "Invalid password for IMAP admin or other problem occurred." msgstr "Das IMAP-Passwort ist falsch oder anderer Fehler ist aufgetreten." -#: ../lib/modules/ldapPublicKey.inc:651 ../lib/modules/yubiKeyUser.inc:530 -#: ../lib/modules/inetOrgPerson.inc:3884 ../lib/modules/customFields.inc:1577 +#: ../lib/modules/ldapPublicKey.inc:649 ../lib/modules/yubiKeyUser.inc:530 +#: ../lib/modules/inetOrgPerson.inc:3881 ../lib/modules/customFields.inc:1577 msgid "Invalid request" msgstr "Ungültige Anfrage" -#: ../templates/config/mainmanage.php:237 +#: ../templates/config/mainmanage.php:248 msgid "Invalid server name. Please enter \"server\" or \"server:port\"." msgstr "" "Ungültiger Servername, bitte geben Sie \"server\" oder \"server:port\" ein." @@ -7415,7 +7418,7 @@ msgstr "Ungültiger Wert im Feld \"%s\"." #: ../lib/modules/kolabUser.inc:104 ../lib/modules/kolabUser.inc:111 #: ../lib/modules/kolabUser.inc:161 ../lib/modules/kolabUser.inc:198 #: ../lib/modules/kolabUser.inc:263 ../lib/modules/kolabUser.inc:602 -#: ../lib/modules/kolabUser.inc:737 +#: ../lib/modules/kolabUser.inc:736 msgid "Invitation policy" msgstr "Einladungsregeln" @@ -7423,11 +7426,11 @@ msgstr "Einladungsregeln" msgid "Invitation policy list" msgstr "Liste der Einladungsregeln" -#: ../lib/modules/range.inc:140 +#: ../lib/modules/range.inc:139 msgid "It is not possible to delete all ranges." msgstr "Sie können nicht alle Adressbereiche löschen." -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixAccount.inc:95 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:95 msgid "" "It is possible that this ID-number is reused. This can cause several " "problems because files with old permissions might still exist. To avoid this " @@ -7453,11 +7456,11 @@ msgstr "Jobhistorie" msgid "Job suffix" msgstr "Job-Suffix" -#: ../lib/types/user.inc:117 ../lib/modules/windowsLDSUser.inc:227 -#: ../lib/modules/windowsLDSUser.inc:509 ../lib/modules/windowsLDSUser.inc:607 -#: ../lib/modules/windowsLDSUser.inc:679 ../lib/modules/windowsLDSUser.inc:778 -#: ../lib/modules/windowsLDSUser.inc:904 ../lib/modules/windowsLDSUser.inc:1828 -#: ../lib/modules/windowsLDSUser.inc:2154 ../lib/modules/windowsUser.inc:304 +#: ../lib/types/user.inc:117 ../lib/modules/windowsLDSUser.inc:231 +#: ../lib/modules/windowsLDSUser.inc:513 ../lib/modules/windowsLDSUser.inc:611 +#: ../lib/modules/windowsLDSUser.inc:686 ../lib/modules/windowsLDSUser.inc:785 +#: ../lib/modules/windowsLDSUser.inc:911 ../lib/modules/windowsLDSUser.inc:1846 +#: ../lib/modules/windowsLDSUser.inc:2194 ../lib/modules/windowsUser.inc:304 #: ../lib/modules/windowsUser.inc:692 ../lib/modules/windowsUser.inc:812 #: ../lib/modules/windowsUser.inc:928 ../lib/modules/windowsUser.inc:1071 #: ../lib/modules/windowsUser.inc:1206 ../lib/modules/windowsUser.inc:2879 @@ -7465,13 +7468,13 @@ msgstr "Job-Suffix" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:267 #: ../lib/modules/inetOrgPerson.inc:531 ../lib/modules/inetOrgPerson.inc:570 #: ../lib/modules/inetOrgPerson.inc:574 ../lib/modules/inetOrgPerson.inc:1465 -#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1966 -#: ../lib/modules/inetOrgPerson.inc:2075 ../lib/modules/inetOrgPerson.inc:2882 -#: ../lib/modules/inetOrgPerson.inc:4090 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1964 +#: ../lib/modules/inetOrgPerson.inc:2073 ../lib/modules/inetOrgPerson.inc:2880 +#: ../lib/modules/inetOrgPerson.inc:4087 ../lib/modules/inetOrgPerson.inc:4127 msgid "Job title" msgstr "Berufsbezeichnung" -#: ../lib/modules/windowsLDSUser.inc:228 ../lib/modules/windowsUser.inc:305 +#: ../lib/modules/windowsLDSUser.inc:232 ../lib/modules/windowsUser.inc:305 #: ../lib/modules/inetOrgPerson.inc:571 ../lib/modules/inetOrgPerson.inc:575 msgid "Job title of user: President, department manager, ..." msgstr "Berufsbezeichnung des Benutzers: Präsident, Abteilungsleiter, ..." @@ -7580,7 +7583,7 @@ msgstr "Kopano speichert die Archive des Benutzers auf diesen Servern." msgid "Korean" msgstr "Koreanisch" -#: ../lib/modules/posixGroup.inc:455 +#: ../lib/modules/posixGroup.inc:456 msgid "" "LAM checks if the entered group name and GID are unique. Here you can enter " "the LDAP suffix that is used to search for duplicates. By default the " @@ -7616,7 +7619,7 @@ msgstr "LAM-Einstellungen" msgid "LAM has checked your input and is now ready to create the accounts." msgstr "LAM hat Ihre Eingaben überprüft und kann die Accounts nun erstellen." -#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixAccount.inc:341 +#: ../lib/modules/posixGroup.inc:444 ../lib/modules/posixAccount.inc:341 #: ../lib/modules/inetOrgPerson.inc:758 ../lib/modules/customFields.inc:150 msgid "" "LAM supports CRYPT, CRYPT-SHA512, SHA, SSHA, MD5 and SMD5 to generate the " @@ -7637,9 +7640,9 @@ msgstr "LAM-Tests" msgid "LAM user password" msgstr "LAM-Benutzerpasswort" -#: ../lib/upload.inc:156 +#: ../lib/upload.inc:155 #, php-format -msgid "LAM was unable to create account %s! An LDAP error occured." +msgid "LAM was unable to create account %s! An LDAP error occurred." msgstr "LAM konnte den Account %s nicht anlegen! Ein LDAP-Fehler trat auf." #: ../lib/modules/sambaGroupMapping.inc:574 @@ -7650,15 +7653,15 @@ msgstr "LAM konnte keine Samba 3 Domäne mit diesem Namen finden!" msgid "LAM was unable to find a domain with this name!" msgstr "LAM konnte keine Domäne mit diesem Namen finden!" -#: ../lib/modules/windowsLDSUser.inc:1643 ../lib/modules/posixAccount.inc:113 +#: ../lib/modules/windowsLDSUser.inc:1661 ../lib/modules/posixAccount.inc:113 #: ../lib/modules/windowsUser.inc:2654 msgid "LAM was unable to find a group with this name!" msgstr "LAM konnte keine Gruppe mit diesem Namen finden!" -#: ../lib/modules/windowsLDSUser.inc:1772 ../lib/modules/posixAccount.inc:2867 -#: ../lib/modules/posixAccount.inc:2949 ../lib/modules/windowsUser.inc:2799 +#: ../lib/modules/windowsLDSUser.inc:1790 ../lib/modules/posixAccount.inc:2921 +#: ../lib/modules/posixAccount.inc:3003 ../lib/modules/windowsUser.inc:2799 #: ../lib/modules/nisNetGroupUser.inc:580 -#: ../lib/modules/groupOfNamesUser.inc:449 +#: ../lib/modules/groupOfNamesUser.inc:450 #, php-format msgid "LAM was unable to modify group memberships for group: %s" msgstr "LAM konnte die Gruppenzugehörigkeiten für Gruppe %s nicht ändern." @@ -7668,7 +7671,7 @@ msgstr "LAM konnte die Gruppenzugehörigkeiten für Gruppe %s nicht ändern." msgid "LAM was unable to modify memberships for role: %s" msgstr "LAM konnte die Rollenzugehörigkeiten für Rolle %s nicht ändern." -#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixAccount.inc:386 +#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:386 msgid "" "LAM will automatically suggest UID/GID numbers. You can either use a fixed " "range of numbers or an LDAP entry with object class \"sambaUnixIdPool\" or " @@ -7678,7 +7681,7 @@ msgstr "" "festen Nummernkreis festlegen oder einen LDAP-Eintrag mit der Objektklasse " "\"sambaUnixIdPool\" oder \"msSFU30DomainInfo\" verwenden." -#: ../help/help.inc:277 +#: ../help/help.inc:287 msgid "LAM will search for accounts in this part of the LDAP tree." msgstr "LAM wird innerhalb dieses LDAP-Astes nach Objekten suchen." @@ -7694,7 +7697,7 @@ msgstr "" "@givenname@ wird durch den ersten Buchstaben des Vornamens ersetzt. Es " "können nur Attribute des Tabs Persönlich verwendet werden." -#: ../help/help.inc:279 +#: ../help/help.inc:289 msgid "" "LAM will use this LDAP DN and password to search for accounts. It is " "sufficient to specify an account with read rights. If nothing is inserted " @@ -7762,13 +7765,13 @@ msgstr "LDAP-Einträge, die Mitglieder dieser Liste sind." msgid "LDAP entries that moderate this list (e.g. approve mails)." msgstr "LDAP-Einträge, die diese Liste moderieren (z.B. Emails genehmigen)." -#: ../templates/login.php:593 ../lib/account.inc:1507 +#: ../templates/login.php:603 ../lib/account.inc:1490 msgid "LDAP error, server says:" msgstr "LDAP-Fehler, der Server meldet:" #: ../templates/tools/multiEdit.php:139 ../templates/config/confmain.php:448 #: ../lib/modules/customFields.inc:197 ../lib/modules/customFields.inc:4095 -#: ../help/help.inc:361 +#: ../help/help.inc:371 msgid "LDAP filter" msgstr "LDAP-Filter" @@ -7808,11 +7811,11 @@ msgstr "LDAP meldet" msgid "LDAP search" msgstr "LDAP-Suche" -#: ../templates/selfService/adminMain.php:434 ../help/help.inc:280 +#: ../templates/selfService/adminMain.php:434 ../help/help.inc:290 msgid "LDAP search attribute" msgstr "LDAP-Suchattribut" -#: ../lib/account.inc:1011 +#: ../lib/account.inc:1015 msgid "LDAP search failed! Please check your preferences." msgstr "LDAP-Suche fehlgeschlagen! Bitte überprüfen Sie die Einstellungen." @@ -7828,7 +7831,7 @@ msgstr "Auswahlliste mit LDAP-Suche" msgid "LDAP server" msgstr "LDAP-Server" -#: ../lib/account.inc:1002 +#: ../lib/account.inc:1006 msgid "LDAP sizelimit exceeded, not all entries are shown." msgstr "" "LDAP Größenbeschränkung überschritten, es werden nicht alle Einträge " @@ -7839,11 +7842,11 @@ msgstr "" #: ../templates/selfService/adminMain.php:425 #: ../templates/profedit/profilepage.php:205 #: ../lib/modules/customFields.inc:193 ../lib/modules/customFields.inc:4092 -#: ../help/help.inc:75 ../help/help.inc:276 ../help/help.inc:359 +#: ../help/help.inc:75 ../help/help.inc:286 ../help/help.inc:369 msgid "LDAP suffix" msgstr "LDAP-Suffix" -#: ../lib/upload.inc:217 +#: ../lib/upload.inc:216 msgid "LDAP upload in progress. Please wait." msgstr "LDAP-Upload läuft. Bitte warten." @@ -7851,7 +7854,7 @@ msgstr "LDAP-Upload läuft. Bitte warten." msgid "LDAP user" msgstr "LDAP-Benutzer" -#: ../help/help.inc:278 +#: ../help/help.inc:288 msgid "LDAP user and password" msgstr "LDAP-Benutzer und Passwort" @@ -7867,7 +7870,7 @@ msgstr "LDAP-Ansichten mit nsview" msgid "LDIF Export" msgstr "LDIF-Export" -#: ../templates/tools/importexport.php:170 ../help/help.inc:367 +#: ../templates/tools/importexport.php:170 ../help/help.inc:377 msgid "LDIF data" msgstr "LDIF-Daten" @@ -7888,7 +7891,7 @@ msgstr "Der LDIF-Import unterstützt nur Version 1." #: ../templates/selfService/adminMain.php:529 #: ../lib/modules/customFields.inc:93 ../lib/modules/customFields.inc:653 #: ../lib/modules/customFields.inc:1211 ../lib/modules/customFields.inc:1964 -#: ../lib/modules/customFields.inc:3640 ../help/help.inc:310 +#: ../lib/modules/customFields.inc:3640 ../help/help.inc:320 msgid "Label" msgstr "Beschriftung" @@ -7937,11 +7940,11 @@ msgstr "Lamdaemon: NSS LDAP prüfen" msgid "Lamdaemon: read quotas" msgstr "Lamdaemon: Quotas lesen" -#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:308 +#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:309 msgid "Language" msgstr "Sprache" -#: ../templates/config/confmain.php:665 +#: ../templates/config/confmain.php:667 msgid "Language is not defined!" msgstr "Sprache ist nicht definiert!" @@ -7951,9 +7954,9 @@ msgstr "Spacheinstellungen" #: ../lib/modules/mitKerberos.inc:143 ../lib/modules/mitKerberos.inc:255 #: ../lib/modules/mitKerberos.inc:399 ../lib/modules/mitKerberos.inc:830 -#: ../lib/modules/windowsLDSUser.inc:219 ../lib/modules/windowsLDSUser.inc:676 -#: ../lib/modules/windowsLDSUser.inc:949 ../lib/modules/windowsLDSUser.inc:1851 -#: ../lib/modules/windowsLDSUser.inc:2152 ../lib/modules/windowsHost.inc:95 +#: ../lib/modules/windowsLDSUser.inc:219 ../lib/modules/windowsLDSUser.inc:680 +#: ../lib/modules/windowsLDSUser.inc:967 ../lib/modules/windowsLDSUser.inc:1871 +#: ../lib/modules/windowsLDSUser.inc:2192 ../lib/modules/windowsHost.inc:95 #: ../lib/modules/windowsHost.inc:169 ../lib/modules/windowsUser.inc:284 #: ../lib/modules/windowsUser.inc:925 ../lib/modules/windowsUser.inc:1284 #: ../lib/modules/windowsUser.inc:2930 ../lib/modules/windowsUser.inc:3705 @@ -7962,21 +7965,21 @@ msgstr "Letzte Anmeldung" #: ../lib/types/user.inc:114 ../lib/modules/selfRegistration.inc:83 #: ../lib/modules/selfRegistration.inc:206 -#: ../lib/modules/windowsLDSUser.inc:169 ../lib/modules/windowsLDSUser.inc:351 -#: ../lib/modules/windowsLDSUser.inc:660 ../lib/modules/windowsLDSUser.inc:754 -#: ../lib/modules/windowsLDSUser.inc:862 ../lib/modules/windowsLDSUser.inc:1815 +#: ../lib/modules/windowsLDSUser.inc:169 ../lib/modules/windowsLDSUser.inc:355 +#: ../lib/modules/windowsLDSUser.inc:664 ../lib/modules/windowsLDSUser.inc:761 +#: ../lib/modules/windowsLDSUser.inc:869 ../lib/modules/windowsLDSUser.inc:1833 #: ../lib/modules/windowsUser.inc:187 ../lib/modules/windowsUser.inc:440 #: ../lib/modules/windowsUser.inc:885 ../lib/modules/windowsUser.inc:1032 #: ../lib/modules/windowsUser.inc:1163 ../lib/modules/windowsUser.inc:2864 #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:242 ../lib/modules/inetOrgPerson.inc:477 #: ../lib/modules/inetOrgPerson.inc:582 ../lib/modules/inetOrgPerson.inc:1211 -#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1968 -#: ../lib/modules/inetOrgPerson.inc:2594 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1966 +#: ../lib/modules/inetOrgPerson.inc:2592 ../lib/modules/inetOrgPerson.inc:4119 msgid "Last name" msgstr "Nachname" -#: ../lib/modules/windowsLDSUser.inc:754 ../lib/modules/windowsLDSUser.inc:755 +#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:762 #: ../lib/modules/windowsUser.inc:1032 ../lib/modules/windowsUser.inc:1033 #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:71 msgid "Last name contains invalid characters or is empty!" @@ -7990,8 +7993,10 @@ msgstr "" #: ../lib/modules/mitKerberos.inc:139 ../lib/modules/mitKerberos.inc:254 #: ../lib/modules/mitKerberos.inc:389 ../lib/modules/mitKerberos.inc:826 -#: ../lib/modules/windowsHost.inc:91 ../lib/modules/windowsHost.inc:160 -#: ../lib/modules/sambaSamAccount.inc:398 +#: ../lib/modules/windowsLDSUser.inc:223 ../lib/modules/windowsLDSUser.inc:683 +#: ../lib/modules/windowsLDSUser.inc:958 ../lib/modules/windowsLDSUser.inc:1869 +#: ../lib/modules/windowsLDSUser.inc:2191 ../lib/modules/windowsHost.inc:91 +#: ../lib/modules/windowsHost.inc:160 ../lib/modules/sambaSamAccount.inc:398 #: ../lib/modules/sambaSamAccount.inc:1147 #: ../lib/modules/sambaSamAccount.inc:1954 #: ../lib/modules/sambaSamAccount.inc:2370 ../lib/modules/ppolicyUser.inc:91 @@ -8026,12 +8031,14 @@ msgstr "Letzte Benutzung" #: ../lib/modules/dhcp_settings.inc:151 ../lib/modules/dhcp_settings.inc:216 #: ../lib/modules/dhcp_settings.inc:232 ../lib/modules/dhcp_settings.inc:265 -#: ../lib/modules/dhcp_settings.inc:590 ../lib/modules/dhcp_settings.inc:709 +#: ../lib/modules/dhcp_settings.inc:582 ../lib/modules/dhcp_settings.inc:701 msgid "Lease time" msgstr "Lease-Zeit" -#: ../templates/config/mainmanage.php:303 -#: ../templates/config/mainmanage.php:304 ../help/help.inc:234 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:319 +#: ../templates/config/mainmanage.php:320 ../help/help.inc:238 msgid "Licence" msgstr "Lizenz" @@ -8110,7 +8117,7 @@ msgstr "" "Liste der Samba-Arbeitsstationen, auf welchen sich der Benutzer anmelden " "darf. Leer heißt jede Arbeitsstation." -#: ../templates/config/confmain.php:659 +#: ../templates/config/confmain.php:661 msgid "List of admin users is empty or invalid!" msgstr "Liste der berechtigten Benutzer ist ungültig!" @@ -8143,7 +8150,7 @@ msgstr "" msgid "Listeners" msgstr "Listener" -#: ../lib/modules.inc:1333 ../help/help.inc:254 +#: ../lib/modules.inc:1333 ../help/help.inc:264 msgid "Load profile" msgstr "Profil laden" @@ -8202,8 +8209,8 @@ msgid "Local members" msgstr "Lokale Mitglieder" #: ../lib/types/host.inc:101 ../lib/modules/windowsLDSUser.inc:141 -#: ../lib/modules/windowsLDSUser.inc:399 ../lib/modules/windowsLDSUser.inc:654 -#: ../lib/modules/windowsLDSUser.inc:872 ../lib/modules/windowsLDSUser.inc:1809 +#: ../lib/modules/windowsLDSUser.inc:403 ../lib/modules/windowsLDSUser.inc:658 +#: ../lib/modules/windowsLDSUser.inc:879 ../lib/modules/windowsLDSUser.inc:1827 #: ../lib/modules/ipHost.inc:73 ../lib/modules/ipHost.inc:97 #: ../lib/modules/ipHost.inc:113 ../lib/modules/ipHost.inc:140 #: ../lib/modules/ipHost.inc:299 ../lib/modules/windowsHost.inc:83 @@ -8219,9 +8226,9 @@ msgstr "Lokale Mitglieder" #: ../lib/modules/inetOrgPerson.inc:445 ../lib/modules/inetOrgPerson.inc:492 #: ../lib/modules/inetOrgPerson.inc:717 ../lib/modules/inetOrgPerson.inc:721 #: ../lib/modules/inetOrgPerson.inc:1286 ../lib/modules/inetOrgPerson.inc:1289 -#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2036 -#: ../lib/modules/inetOrgPerson.inc:2776 ../lib/modules/inetOrgPerson.inc:4078 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2034 +#: ../lib/modules/inetOrgPerson.inc:2774 ../lib/modules/inetOrgPerson.inc:4075 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "Location" msgstr "Ort" @@ -8233,18 +8240,18 @@ msgstr "Lageort für den neuen Alias." msgid "Lock" msgstr "Sperren" -#: ../templates/lists/changePassword.php:440 -#: ../templates/lists/changePassword.php:458 -#: ../templates/lists/changePassword.php:460 ../lib/modules/ppolicyUser.inc:154 +#: ../templates/lists/changePassword.php:444 +#: ../templates/lists/changePassword.php:462 +#: ../templates/lists/changePassword.php:464 ../lib/modules/ppolicyUser.inc:154 msgid "Lock account" msgstr "Account sperren" -#: ../templates/lists/changePassword.php:266 +#: ../templates/lists/changePassword.php:270 msgid "Lock account?" msgstr "Account sperren?" -#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1687 -#: ../lib/modules/posixAccount.inc:2415 ../lib/modules/inetOrgPerson.inc:1579 +#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1742 +#: ../lib/modules/posixAccount.inc:2469 ../lib/modules/inetOrgPerson.inc:1579 msgid "Lock password" msgstr "Passwort deaktivieren" @@ -8253,7 +8260,7 @@ msgstr "Passwort deaktivieren" msgid "Locked" msgstr "Gesperrt" -#: ../templates/lists/changePassword.php:424 ../lib/types/user.inc:330 +#: ../templates/lists/changePassword.php:428 ../lib/types/user.inc:330 #: ../lib/types/user.inc:520 ../lib/types/user.inc:1117 #: ../lib/modules/locking389ds.inc:94 msgid "Locked till" @@ -8294,11 +8301,11 @@ msgstr "" "Die Anzahl fehlerhafter Anmeldungen bis zur Sperrung muss zwischen 0 und 999 " "liegen." -#: ../templates/config/mainmanage.php:431 ../help/help.inc:158 +#: ../templates/config/mainmanage.php:471 ../help/help.inc:158 msgid "Log destination" msgstr "Ziel für Logging" -#: ../templates/config/mainmanage.php:407 ../help/help.inc:156 +#: ../templates/config/mainmanage.php:447 ../help/help.inc:156 msgid "Log level" msgstr "Log-Level" @@ -8306,14 +8313,14 @@ msgstr "Log-Level" msgid "Log output" msgstr "Logausgaben" -#: ../templates/config/mainmanage.php:405 +#: ../templates/config/mainmanage.php:445 msgid "Logging" msgstr "Logging" #: ../templates/login.php:404 ../templates/config/conflogin.php:71 #: ../templates/config/mainlogin.php:68 -#: ../templates/selfService/selfServiceLogin.php:224 -#: ../templates/selfService/selfServiceLogin.php:327 +#: ../templates/selfService/selfServiceLogin.php:225 +#: ../templates/selfService/selfServiceLogin.php:328 #: ../templates/selfService/adminLogin.php:57 #: ../templates/selfService/selfService2Factor.php:132 #: ../templates/3rdParty/pla/lib/HTMLTree.php:497 @@ -8321,15 +8328,15 @@ msgstr "Logging" msgid "Login" msgstr "Login" -#: ../templates/selfService/adminMain.php:567 ../help/help.inc:282 +#: ../templates/selfService/adminMain.php:567 ../help/help.inc:292 msgid "Login attribute label" msgstr "Beschriftung des Login-Attributs" -#: ../templates/selfService/adminMain.php:574 ../help/help.inc:284 +#: ../templates/selfService/adminMain.php:574 ../help/help.inc:294 msgid "Login caption" msgstr "Login-Überschrift" -#: ../templates/selfService/adminMain.php:579 ../help/help.inc:328 +#: ../templates/selfService/adminMain.php:579 ../help/help.inc:338 msgid "Login footer" msgstr "Login-Fußzeile" @@ -8339,14 +8346,14 @@ msgstr "Login-Methode" #: ../lib/types/user.inc:106 ../lib/modules/posixAccount.inc:176 #: ../lib/modules/posixAccount.inc:251 ../lib/modules/posixAccount.inc:306 -#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1678 -#: ../lib/modules/posixAccount.inc:2001 ../lib/modules/posixAccount.inc:2119 -#: ../lib/modules/posixAccount.inc:3209 +#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1733 +#: ../lib/modules/posixAccount.inc:2056 ../lib/modules/posixAccount.inc:2173 +#: ../lib/modules/posixAccount.inc:3263 msgid "Login shell" msgstr "Login Shell" #: ../lib/modules/posixAccount.inc:186 ../lib/modules/posixAccount.inc:381 -#: ../lib/modules/posixAccount.inc:2302 +#: ../lib/modules/posixAccount.inc:2356 msgid "Login shells" msgstr "Login-Shells" @@ -8415,7 +8422,7 @@ msgstr "M-Knoten (0x04)" #: ../lib/types/dhcp.inc:99 ../lib/modules/ieee802device.inc:57 #: ../lib/modules/ieee802device.inc:67 ../lib/modules/ieee802device.inc:78 #: ../lib/modules/ieee802device.inc:105 ../lib/modules/fixed_ip.inc:107 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:762 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:760 msgid "MAC address" msgstr "MAC-Adresse" @@ -8443,14 +8450,14 @@ msgstr "MX-Eintrag" msgid "MX records" msgstr "MX-Einträge" -#: ../lib/modules/posixGroup.inc:488 ../lib/modules/posixGroup.inc:551 -#: ../lib/modules/posixGroup.inc:580 ../lib/modules/posixGroup.inc:717 -#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2154 -#: ../lib/modules/posixAccount.inc:2211 ../lib/modules/posixAccount.inc:2282 +#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixGroup.inc:552 +#: ../lib/modules/posixGroup.inc:581 ../lib/modules/posixGroup.inc:718 +#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2208 +#: ../lib/modules/posixAccount.inc:2265 ../lib/modules/posixAccount.inc:2336 msgid "Magic number" msgstr "Magische Zahl" -#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:387 +#: ../lib/modules/posixGroup.inc:461 ../lib/modules/posixAccount.inc:387 msgid "" "Magic number will set a fixed value that must match your server " "configuration." @@ -8467,27 +8474,31 @@ msgstr "Mail-Aliase" msgid "Mail domains" msgstr "Maildomänen" +#: ../templates/config/mainmanage.php:497 +msgid "Mail options" +msgstr "Mailoptionen" + #: ../lib/modules/inetLocalMailRecipient.inc:68 msgid "Mail routing" msgstr "Mail-Routing" #: ../lib/modules/selfRegistration.inc:756 -#: ../lib/modules/selfRegistration.inc:776 -#: ../lib/modules/passwordSelfReset.inc:1818 -#: ../lib/modules/passwordSelfReset.inc:1833 -#: ../lib/modules/passwordSelfReset.inc:1866 +#: ../lib/modules/selfRegistration.inc:775 +#: ../lib/modules/passwordSelfReset.inc:1817 +#: ../lib/modules/passwordSelfReset.inc:1832 +#: ../lib/modules/passwordSelfReset.inc:1864 msgid "Mail sending failed." msgstr "Der email-Versand ist fehlgeschlagen." -#: ../lib/modules/bindDLZ.inc:148 ../lib/modules/bindDLZ.inc:152 -#: ../lib/modules/bindDLZ.inc:326 ../lib/modules/bindDLZ.inc:590 -#: ../lib/modules/bindDLZ.inc:1155 ../lib/modules/bindDLZ.inc:1849 -#: ../lib/modules/inetLocalMailRecipient.inc:90 +#: ../templates/config/mainmanage.php:498 ../lib/modules/bindDLZ.inc:148 +#: ../lib/modules/bindDLZ.inc:152 ../lib/modules/bindDLZ.inc:326 +#: ../lib/modules/bindDLZ.inc:590 ../lib/modules/bindDLZ.inc:1155 +#: ../lib/modules/bindDLZ.inc:1849 ../lib/modules/inetLocalMailRecipient.inc:90 #: ../lib/modules/inetLocalMailRecipient.inc:98 #: ../lib/modules/inetLocalMailRecipient.inc:127 #: ../lib/modules/inetLocalMailRecipient.inc:136 #: ../lib/modules/inetLocalMailRecipient.inc:185 -#: ../lib/modules/inetLocalMailRecipient.inc:306 +#: ../lib/modules/inetLocalMailRecipient.inc:306 ../help/help.inc:182 msgid "Mail server" msgstr "Mailserver" @@ -8503,7 +8514,7 @@ msgstr "Mailserver (\"MX\"-Einträge)" msgid "Mail source" msgstr "Mailquelle" -#: ../lib/account.inc:1287 +#: ../lib/account.inc:1289 #, php-format msgid "Mail successfully sent to %s." msgstr "Mail wurde erfolgreich an %s gesendet." @@ -8570,11 +8581,11 @@ msgstr "Mails an diesen Namen werden an die Empfänger weitergeleitet." msgid "Main" msgstr "Allgemein" -#: ../templates/selfService/adminMain.php:584 ../help/help.inc:286 +#: ../templates/selfService/adminMain.php:584 ../help/help.inc:296 msgid "Main page caption" msgstr "Überschrift der Hauptseite" -#: ../templates/selfService/adminMain.php:589 ../help/help.inc:330 +#: ../templates/selfService/adminMain.php:589 ../help/help.inc:340 msgid "Main page footer" msgstr "Fußzeile der Hauptseite" @@ -8628,10 +8639,10 @@ msgstr "Verwaltet von" msgid "Managed suffixes" msgstr "Verwaltete Suffixe" -#: ../lib/types/user.inc:108 ../lib/modules/windowsLDSUser.inc:279 -#: ../lib/modules/windowsLDSUser.inc:581 ../lib/modules/windowsLDSUser.inc:706 -#: ../lib/modules/windowsLDSUser.inc:934 ../lib/modules/windowsLDSUser.inc:1837 -#: ../lib/modules/windowsLDSUser.inc:2164 ../lib/modules/ipHost.inc:77 +#: ../lib/types/user.inc:108 ../lib/modules/windowsLDSUser.inc:283 +#: ../lib/modules/windowsLDSUser.inc:585 ../lib/modules/windowsLDSUser.inc:713 +#: ../lib/modules/windowsLDSUser.inc:941 ../lib/modules/windowsLDSUser.inc:1855 +#: ../lib/modules/windowsLDSUser.inc:2204 ../lib/modules/ipHost.inc:77 #: ../lib/modules/ipHost.inc:103 ../lib/modules/ipHost.inc:114 #: ../lib/modules/ipHost.inc:164 ../lib/modules/ipHost.inc:300 #: ../lib/modules/windowsUser.inc:356 ../lib/modules/windowsUser.inc:764 @@ -8639,8 +8650,8 @@ msgstr "Verwaltete Suffixe" #: ../lib/modules/windowsUser.inc:2888 ../lib/modules/windowsUser.inc:3718 #: ../lib/modules/inetOrgPerson.inc:291 ../lib/modules/inetOrgPerson.inc:546 #: ../lib/modules/inetOrgPerson.inc:590 ../lib/modules/inetOrgPerson.inc:594 -#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1969 -#: ../lib/modules/inetOrgPerson.inc:4095 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1967 +#: ../lib/modules/inetOrgPerson.inc:4092 ../lib/modules/inetOrgPerson.inc:4130 msgid "Manager" msgstr "Vorgesetzter" @@ -8721,22 +8732,22 @@ msgstr "Max. Anzahl Dateideskriptoren" msgid "Maximum" msgstr "Maximum" -#: ../lib/modules/posixGroup.inc:571 ../lib/modules/posixGroup.inc:706 -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:572 ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number" msgstr "Maximale GID-Nummer" -#: ../lib/modules/posixGroup.inc:706 +#: ../lib/modules/posixGroup.inc:707 msgid "Maximum GID number is invalid or empty!" msgstr "Maximale GID-Nummer ist ungültig oder leer!" -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number must be greater than minimum GID number!" msgstr "Die maximale GID-Nummer muss größer sein als die minimale GID-Nummer!" #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:86 #: ../lib/modules/posixAccount.inc:87 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2208 ../lib/modules/posixAccount.inc:2279 +#: ../lib/modules/posixAccount.inc:2262 ../lib/modules/posixAccount.inc:2333 msgid "Maximum UID number" msgstr "Maximale UID-Nummer" @@ -8760,9 +8771,9 @@ msgstr "Maximale Fehlerzahl" msgid "Maximum file size" msgstr "Maximale Dateigröße" -#: ../lib/modules/windowsLDSUser.inc:2169 ../lib/modules/windowsUser.inc:3742 -#: ../lib/modules/inetOrgPerson.inc:2526 ../lib/modules/inetOrgPerson.inc:2550 -#: ../lib/modules/inetOrgPerson.inc:4149 +#: ../lib/modules/windowsLDSUser.inc:2209 ../lib/modules/windowsUser.inc:3742 +#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2548 +#: ../lib/modules/inetOrgPerson.inc:4146 msgid "Maximum file size (kB)" msgstr "Maximale Dateigröße (kB)" @@ -8772,9 +8783,9 @@ msgstr "" "Die maximale Dateigröße muss eine Zahl sein. Bitte geben Sie 0 für " "unbegrenzt ein." -#: ../lib/modules/windowsLDSUser.inc:2168 ../lib/modules/windowsUser.inc:3741 -#: ../lib/modules/inetOrgPerson.inc:2525 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:4148 +#: ../lib/modules/windowsLDSUser.inc:2208 ../lib/modules/windowsUser.inc:3741 +#: ../lib/modules/inetOrgPerson.inc:2523 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:4145 msgid "Maximum height (px)" msgstr "Maximale Höhe (px)" @@ -8787,7 +8798,7 @@ msgstr "Maximale Jobgröße" #: ../lib/modules/dhcp_settings.inc:155 ../lib/modules/dhcp_settings.inc:217 #: ../lib/modules/dhcp_settings.inc:233 ../lib/modules/dhcp_settings.inc:271 -#: ../lib/modules/dhcp_settings.inc:594 ../lib/modules/dhcp_settings.inc:710 +#: ../lib/modules/dhcp_settings.inc:586 ../lib/modules/dhcp_settings.inc:702 msgid "Maximum lease time" msgstr "Maximale Lease-Zeit" @@ -8795,7 +8806,7 @@ msgstr "Maximale Lease-Zeit" msgid "Maximum length" msgstr "Maximale Länge" -#: ../lib/lists.inc:1199 ../help/help.inc:101 +#: ../lib/lists.inc:1198 ../help/help.inc:101 msgid "Maximum list entries" msgstr "Maximale Listeneinträge" @@ -8820,9 +8831,9 @@ msgstr "" msgid "Maximum password age" msgstr "Maximales Passwortalter" -#: ../lib/modules/windowsLDSUser.inc:2167 ../lib/modules/windowsUser.inc:3740 -#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2544 -#: ../lib/modules/inetOrgPerson.inc:4147 +#: ../lib/modules/windowsLDSUser.inc:2207 ../lib/modules/windowsUser.inc:3740 +#: ../lib/modules/inetOrgPerson.inc:2522 ../lib/modules/inetOrgPerson.inc:2542 +#: ../lib/modules/inetOrgPerson.inc:4144 msgid "Maximum width (px)" msgstr "Maximale Breite (px)" @@ -8928,7 +8939,7 @@ msgstr "Nachrichtenspeicher" msgid "Messages" msgstr "Nachrichten" -#: ../lib/modules/windowsLDSUser.inc:353 ../lib/modules/windowsUser.inc:442 +#: ../lib/modules/windowsLDSUser.inc:357 ../lib/modules/windowsUser.inc:442 #: ../lib/modules/inetOrgPerson.inc:244 msgid "Miller" msgstr "Müller" @@ -8943,16 +8954,16 @@ msgstr "Minimale Passwortlänge" msgid "Minimum" msgstr "Minimum" -#: ../lib/modules/posixGroup.inc:568 ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:569 ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number" msgstr "Minimale GID-Nummer" -#: ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number is invalid or empty!" msgstr "Minimale GID-Nummer ist ungültig oder leer!" #: ../lib/modules/posixAccount.inc:83 ../lib/modules/posixAccount.inc:85 -#: ../lib/modules/posixAccount.inc:2205 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2259 ../lib/modules/posixAccount.inc:2330 msgid "Minimum UID number" msgstr "Minimale UID-Nummer" @@ -8965,15 +8976,15 @@ msgstr "Minimale UID-Nummer ist ungültig!" msgid "Minimum answer length" msgstr "Minimale Antwortlänge" -#: ../templates/config/mainmanage.php:389 +#: ../templates/config/mainmanage.php:429 msgid "Minimum character classes" msgstr "Minimale Anzahl von Zeichenklassen" -#: ../templates/config/mainmanage.php:385 +#: ../templates/config/mainmanage.php:425 msgid "Minimum lowercase characters" msgstr "Minimale Anzahl von Kleinbuchstaben" -#: ../templates/config/mainmanage.php:387 +#: ../templates/config/mainmanage.php:427 msgid "Minimum numeric characters" msgstr "Minimale Anzahl von Zahlen" @@ -8989,14 +9000,14 @@ msgstr "Minimale Anzahl von Zahlen" msgid "Minimum password age" msgstr "Minimales Passwortalter" -#: ../templates/config/mainmanage.php:383 ../lib/types/ppolicyType.inc:90 +#: ../templates/config/mainmanage.php:423 ../lib/types/ppolicyType.inc:90 #: ../lib/modules/ppolicy.inc:120 ../lib/modules/ppolicy.inc:151 #: ../lib/modules/ppolicy.inc:180 ../lib/modules/ppolicy.inc:246 #: ../lib/modules/ppolicy.inc:484 msgid "Minimum password length" msgstr "Minimale Passwortlänge" -#: ../templates/config/mainmanage.php:388 +#: ../templates/config/mainmanage.php:428 msgid "Minimum symbolic characters" msgstr "Minimale Anzahl von Sonderzeichen" @@ -9006,7 +9017,7 @@ msgstr "Minimale Anzahl von Sonderzeichen" msgid "Minimum time" msgstr "Minimale Zeit" -#: ../templates/config/mainmanage.php:386 +#: ../templates/config/mainmanage.php:426 msgid "Minimum uppercase characters" msgstr "Minimale Anzahl von Großbuchstaben" @@ -9018,10 +9029,10 @@ msgstr "Fehlende Attribute für" msgid "Missing modify command add, delete or replace" msgstr "Fehlende Änderungsanweisung add, delete oder replace" -#: ../lib/modules/windowsLDSUser.inc:299 ../lib/modules/windowsLDSUser.inc:486 -#: ../lib/modules/windowsLDSUser.inc:718 ../lib/modules/windowsLDSUser.inc:766 -#: ../lib/modules/windowsLDSUser.inc:884 ../lib/modules/windowsLDSUser.inc:1823 -#: ../lib/modules/windowsLDSUser.inc:2148 ../lib/modules/windowsUser.inc:376 +#: ../lib/modules/windowsLDSUser.inc:303 ../lib/modules/windowsLDSUser.inc:490 +#: ../lib/modules/windowsLDSUser.inc:725 ../lib/modules/windowsLDSUser.inc:773 +#: ../lib/modules/windowsLDSUser.inc:891 ../lib/modules/windowsLDSUser.inc:1841 +#: ../lib/modules/windowsLDSUser.inc:2187 ../lib/modules/windowsUser.inc:376 #: ../lib/modules/windowsUser.inc:643 ../lib/modules/windowsUser.inc:967 #: ../lib/modules/windowsUser.inc:1044 ../lib/modules/windowsUser.inc:1186 #: ../lib/modules/windowsUser.inc:2872 ../lib/modules/windowsUser.inc:3697 @@ -9032,12 +9043,12 @@ msgstr "Mobil" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:363 #: ../lib/modules/inetOrgPerson.inc:516 ../lib/modules/inetOrgPerson.inc:638 #: ../lib/modules/inetOrgPerson.inc:642 ../lib/modules/inetOrgPerson.inc:1417 -#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1979 -#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1977 +#: ../lib/modules/inetOrgPerson.inc:4083 ../lib/modules/inetOrgPerson.inc:4125 msgid "Mobile number" msgstr "Mobil" -#: ../lib/modules/inetOrgPerson.inc:2659 +#: ../lib/modules/inetOrgPerson.inc:2657 msgid "Mobile telephone number" msgstr "Handynummer" @@ -9122,8 +9133,8 @@ msgstr "Module" msgid "Monday" msgstr "Montag" -#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:711 ../lib/modules/systemQuotas.inc:99 +#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:774 ../lib/modules/systemQuotas.inc:99 #: ../lib/modules/systemQuotas.inc:124 ../lib/modules/systemQuotas.inc:370 msgid "Mountpoint" msgstr "Mountpunkt" @@ -9136,7 +9147,7 @@ msgstr "Mountpunkt enthält ungültige Zeichen." msgid "Mountpoint of device with enabled quotas." msgstr "Mountpunkt des Dateisystems mit aktivierten Quota." -#: ../lib/passwordExpirationJob.inc:486 +#: ../lib/passwordExpirationJob.inc:484 msgid "Move" msgstr "Verschieben" @@ -9176,10 +9187,10 @@ msgstr "Mehrere Werte werden per Komma getrennt." #: ../lib/modules/kolabGroup.inc:87 ../lib/modules/kolabGroup.inc:96 #: ../lib/modules/kolabGroup.inc:105 ../lib/modules/windowsLDSUser.inc:154 #: ../lib/modules/windowsLDSUser.inc:194 ../lib/modules/windowsLDSUser.inc:205 -#: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:260 -#: ../lib/modules/windowsLDSUser.inc:268 ../lib/modules/windowsLDSUser.inc:276 -#: ../lib/modules/windowsLDSUser.inc:296 ../lib/modules/windowsLDSUser.inc:308 -#: ../lib/modules/windowsLDSUser.inc:316 ../lib/modules/nisMailAliasUser.inc:81 +#: ../lib/modules/windowsLDSUser.inc:252 ../lib/modules/windowsLDSUser.inc:264 +#: ../lib/modules/windowsLDSUser.inc:272 ../lib/modules/windowsLDSUser.inc:280 +#: ../lib/modules/windowsLDSUser.inc:300 ../lib/modules/windowsLDSUser.inc:312 +#: ../lib/modules/windowsLDSUser.inc:320 ../lib/modules/nisMailAliasUser.inc:81 #: ../lib/modules/nisMailAliasUser.inc:89 ../lib/modules/puppetClient.inc:92 #: ../lib/modules/puppetClient.inc:104 ../lib/modules/puppetClient.inc:112 #: ../lib/modules/device.inc:77 ../lib/modules/dhcp_settings.inc:209 @@ -9233,7 +9244,7 @@ msgstr "Wartemusik" msgid "Music to play on hold." msgstr "Wartemusik die gespielt werden soll." -#: ../lib/modules/windowsLDSUser.inc:401 ../lib/modules/ipHost.inc:99 +#: ../lib/modules/windowsLDSUser.inc:405 ../lib/modules/ipHost.inc:99 #: ../lib/modules/windowsHost.inc:121 ../lib/modules/device.inc:105 #: ../lib/modules/windowsUser.inc:490 ../lib/modules/inetOrgPerson.inc:325 #: ../lib/modules/inetOrgPerson.inc:333 ../lib/modules/inetOrgPerson.inc:447 @@ -9244,7 +9255,7 @@ msgstr "MeineStadt" msgid "MySQL" msgstr "MySQL" -#: ../lib/modules/windowsLDSUser.inc:383 ../lib/modules/windowsUser.inc:472 +#: ../lib/modules/windowsLDSUser.inc:387 ../lib/modules/windowsUser.inc:472 #: ../lib/modules/inetOrgPerson.inc:309 msgid "Mystreetname 42" msgstr "Musterstraße 42" @@ -9349,8 +9360,8 @@ msgstr "NS-Eintrag" #: ../lib/modules/dynamicList.inc:122 ../lib/modules/dynamicList.inc:207 #: ../lib/modules/device.inc:64 ../lib/modules/device.inc:156 #: ../lib/modules/device.inc:334 ../lib/modules/device.inc:414 -#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:120 -#: ../lib/modules/range.inc:141 ../lib/modules/range.inc:547 +#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:119 +#: ../lib/modules/range.inc:140 ../lib/modules/range.inc:546 #: ../lib/modules/nisObject.inc:61 ../lib/modules/nisObject.inc:81 #: ../lib/modules/nisObject.inc:111 ../lib/modules/nisObject.inc:137 #: ../lib/modules/nisObject.inc:205 ../lib/modules/ppolicy.inc:80 @@ -9405,7 +9416,7 @@ msgstr "Name-Server" msgid "Name servers (\"NS\" records)" msgstr "Name-Server (\"NS\"-Einträge)" -#: ../help/help.inc:243 +#: ../help/help.inc:253 msgid "" "Name under which the profile will be saved. If a profile with the same name " "exists, it will be overwritten." @@ -9418,7 +9429,7 @@ msgid "Named object" msgstr "Namensobjekt" #: ../lib/modules/dhcp_settings.inc:191 ../lib/modules/dhcp_settings.inc:223 -#: ../lib/modules/dhcp_settings.inc:648 ../lib/modules/dhcp_settings.inc:720 +#: ../lib/modules/dhcp_settings.inc:640 ../lib/modules/dhcp_settings.inc:712 #: ../lib/modules/freeRadius.inc:91 ../lib/modules/freeRadius.inc:133 #: ../lib/modules/freeRadius.inc:212 ../lib/modules/freeRadius.inc:256 #: ../lib/modules/freeRadius.inc:303 ../lib/modules/freeRadius.inc:355 @@ -9428,13 +9439,13 @@ msgstr "Netzmaske" #: ../lib/modules/dhcp_settings.inc:167 ../lib/modules/dhcp_settings.inc:220 #: ../lib/modules/dhcp_settings.inc:237 ../lib/modules/dhcp_settings.inc:295 -#: ../lib/modules/dhcp_settings.inc:610 ../lib/modules/dhcp_settings.inc:714 +#: ../lib/modules/dhcp_settings.inc:602 ../lib/modules/dhcp_settings.inc:706 msgid "Netbios name servers" msgstr "Netbios-Name-Server" #: ../lib/modules/dhcp_settings.inc:171 ../lib/modules/dhcp_settings.inc:221 #: ../lib/modules/dhcp_settings.inc:239 ../lib/modules/dhcp_settings.inc:301 -#: ../lib/modules/dhcp_settings.inc:620 ../lib/modules/dhcp_settings.inc:715 +#: ../lib/modules/dhcp_settings.inc:612 ../lib/modules/dhcp_settings.inc:707 msgid "Netbios node type" msgstr "Netbios-Knotentyp" @@ -9454,7 +9465,7 @@ msgstr "Neues NIS-Objekt" msgid "New OU created successfully." msgstr "Neue OU erfolgreich erstellt." -#: ../lib/modules/windowsLDSUser.inc:407 ../lib/modules/windowsUser.inc:496 +#: ../lib/modules/windowsLDSUser.inc:411 ../lib/modules/windowsUser.inc:496 #: ../lib/modules/inetOrgPerson.inc:455 msgid "New York" msgstr "New York" @@ -9530,7 +9541,7 @@ msgstr "Neuer Host" msgid "New import" msgstr "Neuer Import" -#: ../templates/config/mainmanage.php:491 +#: ../templates/config/mainmanage.php:531 msgid "New master password" msgstr "Neues Hauptpasswort" @@ -9542,12 +9553,12 @@ msgstr "Neues Hauptpasswort wurde erfolgreich gesetzt." msgid "New object" msgstr "Neues Objekt" -#: ../templates/tools/ou_edit.php:205 ../help/help.inc:353 +#: ../templates/tools/ou_edit.php:205 ../help/help.inc:363 msgid "New organisational unit" msgstr "Neue Organisational Unit" #: ../templates/config/confmain.php:520 ../lib/modules/sambaSamAccount.inc:2351 -#: ../lib/modules/posixAccount.inc:3172 ../lib/modules/windowsUser.inc:3055 +#: ../lib/modules/posixAccount.inc:3226 ../lib/modules/windowsUser.inc:3055 #: ../lib/modules/passwordSelfReset.inc:1294 msgid "New password" msgstr "Neues Passwort" @@ -9560,7 +9571,7 @@ msgstr "Neues Passwort wurde erfolgreich gesetzt." msgid "New policy" msgstr "Neue Richtlinie" -#: ../lib/modules/range.inc:116 ../lib/modules/range.inc:621 +#: ../lib/modules/range.inc:115 ../lib/modules/range.inc:620 msgid "New pool" msgstr "Neuer Pool" @@ -9574,8 +9585,8 @@ msgstr "Neuer Drucker" msgid "New profile name" msgstr "Neuer Profilname" -#: ../lib/modules/range.inc:112 ../lib/modules/range.inc:139 -#: ../lib/modules/range.inc:536 ../lib/modules/range.inc:610 +#: ../lib/modules/range.inc:111 ../lib/modules/range.inc:138 +#: ../lib/modules/range.inc:535 ../lib/modules/range.inc:609 msgid "New range" msgstr "Neuer Adressbereich" @@ -9612,7 +9623,7 @@ msgstr "Neuer Textbereich" msgid "New user" msgstr "Neuer Benutzer" -#: ../lib/modules/inetOrgPerson.inc:1882 +#: ../lib/modules/inetOrgPerson.inc:1880 msgid "New user certificate" msgstr "Neues Benutzerzertifikat" @@ -9673,7 +9684,7 @@ msgstr "Nächste Benutzer-RID ist keine Zahl!" #: ../lib/modules/eduPerson.inc:100 ../lib/modules/eduPerson.inc:187 #: ../lib/modules/eduPerson.inc:225 ../lib/modules/eduPerson.inc:338 -#: ../lib/modules/eduPerson.inc:549 +#: ../lib/modules/eduPerson.inc:543 msgid "Nick names" msgstr "Spitznamen" @@ -9717,7 +9728,7 @@ msgstr "Es wurde kein RDN-Attribut gewählt." msgid "No Samba 3 domains found in LDAP! Please create one first." msgstr "Keine Samba 3 Domänen gefunden, bitte erstellen Sie eine." -#: ../lib/modules/posixAccount.inc:495 ../lib/modules/posixAccount.inc:1541 +#: ../lib/modules/posixAccount.inc:494 ../lib/modules/posixAccount.inc:1587 msgid "No Unix groups found in LDAP! Please create one first." msgstr "Keine Unix-Gruppen gefunden, bitte erstellen Sie eine." @@ -9775,7 +9786,7 @@ msgstr "Keine Geräte gefunden." msgid "No domains found!" msgstr "Keine Domänen gefunden!" -#: ../lib/modules/passwordSelfReset.inc:1818 +#: ../lib/modules/passwordSelfReset.inc:1817 msgid "No email address found." msgstr "Keine email-Adresse gefunden." @@ -9788,12 +9799,12 @@ msgstr "Keine Einträge gefunden!" msgid "No entry was selected to delete" msgstr "Kein Eintrag zum Löschen ausgewählt." -#: ../lib/modules/ldapPublicKey.inc:578 ../lib/modules/inetOrgPerson.inc:3760 -#: ../lib/modules/inetOrgPerson.inc:3797 ../lib/modules/customFields.inc:4599 +#: ../lib/modules/ldapPublicKey.inc:576 ../lib/modules/inetOrgPerson.inc:3757 +#: ../lib/modules/inetOrgPerson.inc:3794 ../lib/modules/customFields.inc:4599 msgid "No file received." msgstr "Keine Datei empfangen." -#: ../templates/config/mainmanage.php:204 ../lib/modules/windowsLDSUser.inc:785 +#: ../templates/config/mainmanage.php:215 ../lib/modules/windowsLDSUser.inc:792 #: ../lib/modules/windowsUser.inc:1078 ../lib/modules/ldapPublicKey.inc:129 #: ../lib/modules/inetOrgPerson.inc:104 ../lib/modules/customFields.inc:4535 msgid "No file selected." @@ -9803,7 +9814,7 @@ msgstr "Keine Datei gewählt." msgid "No forwarding" msgstr "Keine Weiterleitung" -#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:94 +#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixAccount.inc:94 msgid "No free ID-Number!" msgstr "Keine ID-Nummer mehr frei!" @@ -9850,7 +9861,7 @@ msgstr "" msgid "No local delivery" msgstr "Keine lokale Auslieferung" -#: ../templates/config/mainmanage.php:411 +#: ../templates/config/mainmanage.php:451 msgid "No logging" msgstr "Kein Logging" @@ -9862,7 +9873,7 @@ msgstr "Kein Logo" msgid "No new attributes available for this entry" msgstr "Keine neuen Attribute für diesen Eintrag verfügbar" -#: ../templates/config/conftypes.php:284 ../help/help.inc:190 +#: ../templates/config/conftypes.php:284 ../help/help.inc:194 msgid "No new entries" msgstr "Keine neuen Einträge" @@ -9957,11 +9968,7 @@ msgstr "Keine Benutzer gefunden!" msgid "No views found!" msgstr "Keine Ansichten gefunden!" -#: ../templates/config/mainmanage.php:460 -msgid "Non-standard (\\n)" -msgstr "Nicht-Standard (\\n)" - -#: ../templates/config/confmain.php:465 +#: ../templates/config/mainmanage.php:325 ../templates/config/confmain.php:465 #: ../templates/selfService/adminMain.php:488 ../lib/modules/qmailUser.inc:58 msgid "None" msgstr "Keiner" @@ -10000,17 +10007,17 @@ msgstr "Notizen" msgid "Nothing to export" msgstr "Nichts zu exportieren" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Notice" msgstr "Hinweis" #: ../lib/passwordExpirationJob.inc:90 ../lib/passwordExpirationJob.inc:144 -#: ../help/help.inc:398 +#: ../help/help.inc:408 msgid "Notification period" msgstr "Benachrichtigungszeitraum" #: ../lib/modules/qmailUser.inc:1161 ../lib/modules/windowsUser.inc:4088 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/freeRadius.inc:884 msgid "Notify users about account expiration" msgstr "Informiere Benutzer über Kontoablauf" @@ -10077,7 +10084,7 @@ msgstr "Anzahl Fragen" msgid "Number of rows in text area." msgstr "Anzahl Zeilen in der Textbox." -#: ../templates/config/mainmanage.php:392 ../help/help.inc:170 +#: ../templates/config/mainmanage.php:432 ../help/help.inc:168 msgid "Number of rules that must match" msgstr "Anzahl Regeln, die erfüllt sein müssen" @@ -10115,7 +10122,7 @@ msgstr "OU ist ungültig!" msgid "OU is not empty or invalid!" msgstr "OU ist nicht leer oder ungültig!" -#: ../help/help.inc:353 ../help/help.inc:355 +#: ../help/help.inc:363 ../help/help.inc:365 msgid "OU-Editor" msgstr "OU-Editor" @@ -10150,9 +10157,9 @@ msgstr "Veraltet" msgid "Off" msgstr "Aus" -#: ../lib/modules/windowsLDSUser.inc:157 ../lib/modules/windowsLDSUser.inc:411 -#: ../lib/modules/windowsLDSUser.inc:657 ../lib/modules/windowsLDSUser.inc:874 -#: ../lib/modules/windowsLDSUser.inc:1812 ../lib/modules/windowsUser.inc:175 +#: ../lib/modules/windowsLDSUser.inc:157 ../lib/modules/windowsLDSUser.inc:415 +#: ../lib/modules/windowsLDSUser.inc:661 ../lib/modules/windowsLDSUser.inc:881 +#: ../lib/modules/windowsLDSUser.inc:1830 ../lib/modules/windowsUser.inc:175 #: ../lib/modules/windowsUser.inc:500 ../lib/modules/windowsUser.inc:786 #: ../lib/modules/windowsUser.inc:882 ../lib/modules/windowsUser.inc:978 #: ../lib/modules/windowsUser.inc:1175 ../lib/modules/windowsUser.inc:2861 @@ -10160,17 +10167,17 @@ msgstr "Aus" #: ../lib/modules/inetOrgPerson.inc:469 ../lib/modules/inetOrgPerson.inc:504 #: ../lib/modules/inetOrgPerson.inc:737 ../lib/modules/inetOrgPerson.inc:741 #: ../lib/modules/inetOrgPerson.inc:1378 ../lib/modules/inetOrgPerson.inc:1381 -#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2048 -#: ../lib/modules/inetOrgPerson.inc:2815 ../lib/modules/inetOrgPerson.inc:4082 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1987 ../lib/modules/inetOrgPerson.inc:2046 +#: ../lib/modules/inetOrgPerson.inc:2813 ../lib/modules/inetOrgPerson.inc:4079 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Office name" msgstr "Büroname" #: ../templates/misc/ajax.php:287 ../templates/misc/ajax.php:417 -#: ../templates/misc/ajax.php:447 ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 +#: ../templates/misc/ajax.php:447 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 #: ../templates/tests/lamdaemonTest.php:103 ../templates/tools/ou_edit.php:214 #: ../templates/tools/ou_edit.php:226 ../templates/tools/webauthn.php:78 #: ../templates/tools/webauthn.php:116 ../templates/config/profmanage.php:230 @@ -10179,7 +10186,7 @@ msgstr "Büroname" #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:280 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:503 ../templates/config/jobList.php:155 +#: ../templates/config/mainmanage.php:543 ../templates/config/jobList.php:155 #: ../templates/config/conflogin.php:126 ../templates/config/mainlogin.php:145 #: ../templates/selfService/profManage.php:196 #: ../templates/selfService/profManage.php:213 @@ -10191,7 +10198,7 @@ msgstr "Büroname" #: ../templates/profedit/profilemain.php:235 #: ../templates/profedit/profilemain.php:242 ../lib/types/automountType.inc:213 #: ../lib/types/user.inc:357 ../lib/types/bind.inc:157 ../lib/html.inc:610 -#: ../lib/2factor.inc:571 ../lib/modules/selfRegistration.inc:462 +#: ../lib/2factor.inc:569 ../lib/modules/selfRegistration.inc:462 #: ../lib/modules/zarafaContact.inc:471 ../lib/modules/zarafaGroup.inc:486 #: ../lib/modules/device.inc:292 ../lib/modules/kopanoGroup.inc:438 #: ../lib/modules/sambaSamAccount.inc:1437 @@ -10208,12 +10215,12 @@ msgstr "Büroname" #: ../lib/modules/passwordSelfReset.inc:1327 #: ../lib/modules/windowsGroup.inc:705 ../lib/modules/groupOfNames.inc:421 #: ../lib/modules/groupOfNames.inc:570 ../lib/modules/nisMailAlias.inc:388 -#: ../lib/lists.inc:806 ../lib/lists.inc:891 ../lib/modules.inc:1007 +#: ../lib/lists.inc:805 ../lib/lists.inc:890 ../lib/modules.inc:1007 #: ../lib/modules.inc:1311 msgid "Ok" msgstr "Ok" -#: ../lib/modules/posixAccount.inc:3168 +#: ../lib/modules/posixAccount.inc:3222 msgid "Old password" msgstr "Altes Passwort" @@ -10241,8 +10248,8 @@ msgstr "Bei Trennung oder abgelaufenem Zeitlimit" msgid "One (one level beneath base)" msgstr "Eine Ebene (eine Ebene unter Basis)" -#: ../lib/modules/range.inc:138 ../lib/modules/fixed_ip.inc:132 -msgid "One or more errors occured. The invalid fields are marked." +#: ../lib/modules/range.inc:137 ../lib/modules/fixed_ip.inc:132 +msgid "One or more errors occurred. The invalid fields are marked." msgstr "" "Mindestens ein Fehler ist aufgetreten. Alle ungültigen Felder sind markiert." @@ -10262,12 +10269,12 @@ msgstr "Befehlsstatistiken" msgid "Operation successful. DN %s has been created." msgstr "Operation erfolgreich. DN %s wurde erzeugt." -#: ../templates/tools/multiEdit.php:141 ../help/help.inc:363 +#: ../templates/tools/multiEdit.php:141 ../help/help.inc:373 msgid "Operations" msgstr "Operationen" #: ../templates/config/confmain.php:510 -#: ../templates/selfService/adminMain.php:531 ../help/help.inc:314 +#: ../templates/selfService/adminMain.php:531 ../help/help.inc:324 msgid "Optional" msgstr "Optional" @@ -10282,9 +10289,9 @@ msgstr "Hier können Sie eine optionale Beschreibung für den PC angeben." #: ../lib/types/sudo.inc:86 ../lib/modules/mitKerberos.inc:405 #: ../lib/modules/zarafaDynamicGroup.inc:251 -#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:528 +#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:529 #: ../lib/modules/zarafaGroup.inc:259 ../lib/modules/kopanoGroup.inc:238 -#: ../lib/modules/posixAccount.inc:2299 ../lib/modules/zarafaUser.inc:601 +#: ../lib/modules/posixAccount.inc:2353 ../lib/modules/zarafaUser.inc:601 #: ../lib/modules/kopanoContact.inc:240 ../lib/modules/kolabUser.inc:331 #: ../lib/modules/kopanoDynamicGroup.inc:214 ../lib/modules/sudoRole.inc:93 #: ../lib/modules/sudoRole.inc:122 ../lib/modules/sudoRole.inc:188 @@ -10336,14 +10343,14 @@ msgstr "Sortieren nach" msgid "Ordering" msgstr "Sortierung" -#: ../lib/types/user.inc:109 ../lib/modules/windowsLDSUser.inc:271 -#: ../lib/modules/windowsLDSUser.inc:275 ../lib/modules/windowsLDSUser.inc:573 -#: ../lib/modules/windowsLDSUser.inc:604 ../lib/modules/windowsLDSUser.inc:703 -#: ../lib/modules/windowsLDSUser.inc:931 ../lib/modules/windowsLDSUser.inc:1836 -#: ../lib/modules/windowsLDSUser.inc:2163 ../lib/modules/eduPerson.inc:125 +#: ../lib/types/user.inc:109 ../lib/modules/windowsLDSUser.inc:275 +#: ../lib/modules/windowsLDSUser.inc:279 ../lib/modules/windowsLDSUser.inc:577 +#: ../lib/modules/windowsLDSUser.inc:608 ../lib/modules/windowsLDSUser.inc:710 +#: ../lib/modules/windowsLDSUser.inc:938 ../lib/modules/windowsLDSUser.inc:1854 +#: ../lib/modules/windowsLDSUser.inc:2203 ../lib/modules/eduPerson.inc:125 #: ../lib/modules/eduPerson.inc:199 ../lib/modules/eduPerson.inc:226 #: ../lib/modules/eduPerson.inc:244 ../lib/modules/eduPerson.inc:342 -#: ../lib/modules/eduPerson.inc:552 ../lib/modules/windowsUser.inc:348 +#: ../lib/modules/eduPerson.inc:546 ../lib/modules/windowsUser.inc:348 #: ../lib/modules/windowsUser.inc:352 ../lib/modules/windowsUser.inc:756 #: ../lib/modules/windowsUser.inc:809 ../lib/modules/windowsUser.inc:952 #: ../lib/modules/windowsUser.inc:1233 ../lib/modules/windowsUser.inc:2887 @@ -10351,18 +10358,18 @@ msgstr "Sortierung" #: ../lib/modules/inetOrgPerson.inc:437 ../lib/modules/inetOrgPerson.inc:549 #: ../lib/modules/inetOrgPerson.inc:770 ../lib/modules/inetOrgPerson.inc:774 #: ../lib/modules/inetOrgPerson.inc:1523 ../lib/modules/inetOrgPerson.inc:1526 -#: ../lib/modules/inetOrgPerson.inc:1994 ../lib/modules/inetOrgPerson.inc:2072 -#: ../lib/modules/inetOrgPerson.inc:2946 ../lib/modules/inetOrgPerson.inc:4097 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:2070 +#: ../lib/modules/inetOrgPerson.inc:2944 ../lib/modules/inetOrgPerson.inc:4094 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisation" msgstr "Organisation" #: ../templates/tools/ou_edit.php:219 ../lib/types/user.inc:110 -#: ../lib/modules/windowsLDSUser.inc:263 ../lib/modules/windowsLDSUser.inc:267 -#: ../lib/modules/windowsLDSUser.inc:565 ../lib/modules/windowsLDSUser.inc:601 -#: ../lib/modules/windowsLDSUser.inc:700 ../lib/modules/windowsLDSUser.inc:928 -#: ../lib/modules/windowsLDSUser.inc:1835 -#: ../lib/modules/windowsLDSUser.inc:2162 ../lib/modules/windowsUser.inc:340 +#: ../lib/modules/windowsLDSUser.inc:267 ../lib/modules/windowsLDSUser.inc:271 +#: ../lib/modules/windowsLDSUser.inc:569 ../lib/modules/windowsLDSUser.inc:605 +#: ../lib/modules/windowsLDSUser.inc:707 ../lib/modules/windowsLDSUser.inc:935 +#: ../lib/modules/windowsLDSUser.inc:1853 +#: ../lib/modules/windowsLDSUser.inc:2202 ../lib/modules/windowsUser.inc:340 #: ../lib/modules/windowsUser.inc:344 ../lib/modules/windowsUser.inc:748 #: ../lib/modules/windowsUser.inc:806 ../lib/modules/windowsUser.inc:949 #: ../lib/modules/windowsUser.inc:1230 ../lib/modules/windowsUser.inc:2886 @@ -10370,15 +10377,15 @@ msgstr "Organisation" #: ../lib/modules/inetOrgPerson.inc:429 ../lib/modules/inetOrgPerson.inc:552 #: ../lib/modules/inetOrgPerson.inc:762 ../lib/modules/inetOrgPerson.inc:766 #: ../lib/modules/inetOrgPerson.inc:1514 ../lib/modules/inetOrgPerson.inc:1517 -#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2069 -#: ../lib/modules/inetOrgPerson.inc:2984 ../lib/modules/inetOrgPerson.inc:4096 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2067 +#: ../lib/modules/inetOrgPerson.inc:2982 ../lib/modules/inetOrgPerson.inc:4093 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisational unit" msgstr "Organisatorische Einheit" #: ../lib/modules/eduPerson.inc:133 ../lib/modules/eduPerson.inc:137 #: ../lib/modules/eduPerson.inc:211 ../lib/modules/eduPerson.inc:227 -#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:554 +#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:548 msgid "Organisational units" msgstr "Organisatorische Einheiten" @@ -10391,11 +10398,11 @@ msgstr "Die organisatorischen Einheiten enthalten einen fehlerhaften Eintrag." msgid "Other" msgstr "Andere" -#: ../lib/modules/windowsLDSUser.inc:303 ../lib/modules/windowsLDSUser.inc:307 -#: ../lib/modules/windowsLDSUser.inc:494 ../lib/modules/windowsLDSUser.inc:721 -#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:887 -#: ../lib/modules/windowsLDSUser.inc:1824 -#: ../lib/modules/windowsLDSUser.inc:2149 ../lib/modules/windowsUser.inc:380 +#: ../lib/modules/windowsLDSUser.inc:307 ../lib/modules/windowsLDSUser.inc:311 +#: ../lib/modules/windowsLDSUser.inc:498 ../lib/modules/windowsLDSUser.inc:728 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:894 +#: ../lib/modules/windowsLDSUser.inc:1842 +#: ../lib/modules/windowsLDSUser.inc:2188 ../lib/modules/windowsUser.inc:380 #: ../lib/modules/windowsUser.inc:384 ../lib/modules/windowsUser.inc:651 #: ../lib/modules/windowsUser.inc:970 ../lib/modules/windowsUser.inc:1046 #: ../lib/modules/windowsUser.inc:1189 ../lib/modules/windowsUser.inc:2873 @@ -10403,11 +10410,11 @@ msgstr "Andere" msgid "Other mobiles" msgstr "Weitere Mobiltelefonnummern" -#: ../lib/modules/windowsLDSUser.inc:291 ../lib/modules/windowsLDSUser.inc:295 -#: ../lib/modules/windowsLDSUser.inc:478 ../lib/modules/windowsLDSUser.inc:715 -#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:893 -#: ../lib/modules/windowsLDSUser.inc:1822 -#: ../lib/modules/windowsLDSUser.inc:2151 ../lib/modules/windowsUser.inc:368 +#: ../lib/modules/windowsLDSUser.inc:295 ../lib/modules/windowsLDSUser.inc:299 +#: ../lib/modules/windowsLDSUser.inc:482 ../lib/modules/windowsLDSUser.inc:722 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:900 +#: ../lib/modules/windowsLDSUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:2190 ../lib/modules/windowsUser.inc:368 #: ../lib/modules/windowsUser.inc:372 ../lib/modules/windowsUser.inc:635 #: ../lib/modules/windowsUser.inc:964 ../lib/modules/windowsUser.inc:1042 #: ../lib/modules/windowsUser.inc:1195 ../lib/modules/windowsUser.inc:2871 @@ -10416,9 +10423,9 @@ msgid "Other pagers" msgstr "Weitere Pager" #: ../lib/modules/windowsLDSUser.inc:149 ../lib/modules/windowsLDSUser.inc:153 -#: ../lib/modules/windowsLDSUser.inc:429 ../lib/modules/windowsLDSUser.inc:656 -#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:882 -#: ../lib/modules/windowsLDSUser.inc:1811 ../lib/modules/windowsUser.inc:167 +#: ../lib/modules/windowsLDSUser.inc:433 ../lib/modules/windowsLDSUser.inc:660 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:889 +#: ../lib/modules/windowsLDSUser.inc:1829 ../lib/modules/windowsUser.inc:167 #: ../lib/modules/windowsUser.inc:171 ../lib/modules/windowsUser.inc:524 #: ../lib/modules/windowsUser.inc:881 ../lib/modules/windowsUser.inc:1038 #: ../lib/modules/windowsUser.inc:1184 ../lib/modules/windowsUser.inc:2860 @@ -10426,8 +10433,8 @@ msgid "Other telephone numbers" msgstr "Weitere Telefonnummern" #: ../lib/modules/windowsLDSUser.inc:189 ../lib/modules/windowsLDSUser.inc:193 -#: ../lib/modules/windowsLDSUser.inc:441 ../lib/modules/windowsLDSUser.inc:664 -#: ../lib/modules/windowsLDSUser.inc:899 ../lib/modules/windowsLDSUser.inc:1826 +#: ../lib/modules/windowsLDSUser.inc:445 ../lib/modules/windowsLDSUser.inc:668 +#: ../lib/modules/windowsLDSUser.inc:906 ../lib/modules/windowsLDSUser.inc:1844 #: ../lib/modules/windowsUser.inc:207 ../lib/modules/windowsUser.inc:211 #: ../lib/modules/windowsUser.inc:536 ../lib/modules/windowsUser.inc:889 #: ../lib/modules/windowsUser.inc:1201 ../lib/modules/windowsUser.inc:2875 @@ -10439,7 +10446,7 @@ msgstr "Weitere Webseiten" msgid "Output may contain HTML" msgstr "Ausgaben dürfen HTML beinhalten" -#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:568 +#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:556 #, php-format msgid "Output of command \"%s\" with return code %s" msgstr "Ausgabe des Kommandos \"%s\" mit Returncode %s" @@ -10467,7 +10474,7 @@ msgstr "Overlays" msgid "Override default quota settings." msgstr "Standardmäßige Quotaeinstellungen überschreiben." -#: ../templates/upload/masscreate.php:372 ../help/help.inc:240 +#: ../templates/upload/masscreate.php:372 ../help/help.inc:250 msgid "Overwrite" msgstr "Überschreiben" @@ -10495,8 +10502,8 @@ msgstr "Besitzer" msgid "P-Node (0x02)" msgstr "P-Knoten (0x02)" -#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:421 -#: ../lib/modules/fixed_ip.inc:760 +#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:419 +#: ../lib/modules/fixed_ip.inc:758 msgid "PC name" msgstr "PC-Name" @@ -10509,8 +10516,8 @@ msgstr "PC01" msgid "PDF editor" msgstr "PDF-Editor" -#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:778 -#: ../help/help.inc:260 +#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:777 +#: ../help/help.inc:270 msgid "PDF structure" msgstr "PDF-Struktur" @@ -10530,11 +10537,11 @@ msgstr "PDF-Strukturen" msgid "PDUs sent" msgstr "PDUs gesendet" -#: ../templates/config/mainmanage.php:451 ../help/help.inc:166 +#: ../templates/config/mainmanage.php:491 ../help/help.inc:164 msgid "PHP error reporting" msgstr "PHP Fehlerberichtseinstellungen" -#: ../templates/config/mainmanage.php:447 +#: ../templates/config/mainmanage.php:487 msgid "PHP system setting" msgstr "PHP Systemeinstellung" @@ -10549,8 +10556,8 @@ msgstr "PIN+Token" msgid "POP3" msgstr "POP3" -#: ../templates/lists/changePassword.php:412 -#: ../templates/lists/changePassword.php:449 ../lib/types/user.inc:465 +#: ../templates/lists/changePassword.php:416 +#: ../templates/lists/changePassword.php:453 ../lib/types/user.inc:465 #: ../lib/types/user.inc:504 ../lib/modules/ppolicyUser.inc:510 msgid "PPolicy" msgstr "PPolicy" @@ -10583,7 +10590,7 @@ msgstr "" msgid "Page count" msgstr "Seitenzahl" -#: ../templates/selfService/adminMain.php:594 ../help/help.inc:292 +#: ../templates/selfService/adminMain.php:594 ../help/help.inc:302 msgid "Page header" msgstr "Seitenkopf" @@ -10591,14 +10598,14 @@ msgstr "Seitenkopf" msgid "Page layout" msgstr "Seitenlayout" -#: ../templates/config/confmain.php:233 ../help/help.inc:198 +#: ../templates/config/confmain.php:233 ../help/help.inc:202 msgid "Paged results" msgstr "Seitenweise Ergebnisse" -#: ../lib/modules/windowsLDSUser.inc:287 ../lib/modules/windowsLDSUser.inc:470 -#: ../lib/modules/windowsLDSUser.inc:712 ../lib/modules/windowsLDSUser.inc:762 -#: ../lib/modules/windowsLDSUser.inc:890 ../lib/modules/windowsLDSUser.inc:1821 -#: ../lib/modules/windowsLDSUser.inc:2150 ../lib/modules/windowsUser.inc:364 +#: ../lib/modules/windowsLDSUser.inc:291 ../lib/modules/windowsLDSUser.inc:474 +#: ../lib/modules/windowsLDSUser.inc:719 ../lib/modules/windowsLDSUser.inc:769 +#: ../lib/modules/windowsLDSUser.inc:897 ../lib/modules/windowsLDSUser.inc:1839 +#: ../lib/modules/windowsLDSUser.inc:2189 ../lib/modules/windowsUser.inc:364 #: ../lib/modules/windowsUser.inc:627 ../lib/modules/windowsUser.inc:961 #: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1192 #: ../lib/modules/windowsUser.inc:2870 ../lib/modules/windowsUser.inc:3699 @@ -10606,8 +10613,8 @@ msgstr "Seitenweise Ergebnisse" #: ../lib/modules/inetOrgPerson.inc:379 ../lib/modules/inetOrgPerson.inc:522 #: ../lib/modules/inetOrgPerson.inc:654 ../lib/modules/inetOrgPerson.inc:658 #: ../lib/modules/inetOrgPerson.inc:1433 ../lib/modules/inetOrgPerson.inc:1436 -#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2685 -#: ../lib/modules/inetOrgPerson.inc:4088 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2683 +#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/asteriskVoicemail.inc:110 #: ../lib/modules/asteriskVoicemail.inc:140 #: ../lib/modules/asteriskVoicemail.inc:183 @@ -10653,9 +10660,9 @@ msgstr "Teilweise gesperrt" msgid "Passthrough" msgstr "Durchlauf" -#: ../templates/lists/changePassword.php:356 ../templates/login.php:359 -#: ../templates/config/conflogin.php:121 -#: ../templates/selfService/selfServiceLogin.php:283 +#: ../templates/lists/changePassword.php:360 ../templates/login.php:359 +#: ../templates/config/mainmanage.php:502 ../templates/config/conflogin.php:121 +#: ../templates/selfService/selfServiceLogin.php:284 #: ../templates/selfService/adminLogin.php:117 ../lib/selfService.inc:497 #: ../lib/modules/mitKerberos.inc:155 ../lib/modules/mitKerberos.inc:241 #: ../lib/modules/mitKerberos.inc:256 ../lib/modules/mitKerberos.inc:834 @@ -10663,28 +10670,28 @@ msgstr "Durchlauf" #: ../lib/modules/selfRegistration.inc:580 #: ../lib/modules/selfRegistration.inc:583 #: ../lib/modules/selfRegistration.inc:586 -#: ../lib/modules/windowsLDSUser.inc:207 ../lib/modules/windowsLDSUser.inc:339 -#: ../lib/modules/windowsLDSUser.inc:667 ../lib/modules/windowsLDSUser.inc:776 -#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/windowsLDSUser.inc:1845 -#: ../lib/modules/windowsLDSUser.inc:1848 +#: ../lib/modules/windowsLDSUser.inc:207 ../lib/modules/windowsLDSUser.inc:343 +#: ../lib/modules/windowsLDSUser.inc:671 ../lib/modules/windowsLDSUser.inc:783 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/windowsLDSUser.inc:1863 +#: ../lib/modules/windowsLDSUser.inc:1866 #: ../lib/modules/asteriskAccount.inc:114 #: ../lib/modules/asteriskAccount.inc:323 ../lib/modules/posixGroup.inc:219 -#: ../lib/modules/posixGroup.inc:700 ../lib/modules/sambaSamAccount.inc:105 +#: ../lib/modules/posixGroup.inc:701 ../lib/modules/sambaSamAccount.inc:105 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:252 #: ../lib/modules/sambaSamAccount.inc:433 ../lib/modules/posixAccount.inc:99 #: ../lib/modules/posixAccount.inc:100 ../lib/modules/posixAccount.inc:174 #: ../lib/modules/posixAccount.inc:307 ../lib/modules/posixAccount.inc:427 -#: ../lib/modules/posixAccount.inc:1684 ../lib/modules/posixAccount.inc:2134 -#: ../lib/modules/posixAccount.inc:2137 ../lib/modules/posixAccount.inc:2224 -#: ../lib/modules/posixAccount.inc:2409 ../lib/modules/windowsUser.inc:245 +#: ../lib/modules/posixAccount.inc:1739 ../lib/modules/posixAccount.inc:2188 +#: ../lib/modules/posixAccount.inc:2191 ../lib/modules/posixAccount.inc:2277 +#: ../lib/modules/posixAccount.inc:2463 ../lib/modules/windowsUser.inc:245 #: ../lib/modules/windowsUser.inc:428 ../lib/modules/windowsUser.inc:898 #: ../lib/modules/windowsUser.inc:987 ../lib/modules/windowsUser.inc:1062 #: ../lib/modules/windowsUser.inc:1063 ../lib/modules/windowsUser.inc:2922 #: ../lib/modules/windowsUser.inc:2925 ../lib/modules/inetOrgPerson.inc:786 -#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1949 -#: ../lib/modules/inetOrgPerson.inc:2000 ../lib/modules/inetOrgPerson.inc:2003 -#: ../lib/modules/inetOrgPerson.inc:2211 ../lib/modules/inetOrgPerson.inc:4136 +#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1947 +#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2001 +#: ../lib/modules/inetOrgPerson.inc:2209 ../lib/modules/inetOrgPerson.inc:4133 #: ../lib/modules/asteriskVoicemail.inc:98 #: ../lib/modules/asteriskVoicemail.inc:164 #: ../lib/modules/customFields.inc:3020 ../lib/modules/heimdalKerberos.inc:123 @@ -10692,7 +10699,7 @@ msgstr "Durchlauf" #: ../lib/modules/heimdalKerberos.inc:222 #: ../lib/modules/heimdalKerberos.inc:718 #: ../lib/modules/heimdalKerberos.inc:721 ../lib/modules.inc:1114 -#: ../help/help.inc:258 +#: ../help/help.inc:186 ../help/help.inc:268 msgid "Password" msgstr "Passwort" @@ -10703,13 +10710,13 @@ msgstr "Passwort" msgid "Password change at next login" msgstr "Passwortänderung beim nächsten Login" -#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1223 +#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1219 #: ../lib/modules/heimdalKerberos.inc:117 #: ../lib/modules/heimdalKerberos.inc:1056 msgid "Password change command" msgstr "Befehl für Passwortänderung" -#: ../templates/lists/changePassword.php:295 +#: ../templates/lists/changePassword.php:299 msgid "Password change options" msgstr "Passwortänderungsoptionen" @@ -10734,7 +10741,7 @@ msgstr "Passwortänderungsservice" msgid "Password change with old password" msgstr "Passwortänderung mit altem Passwort" -#: ../lib/modules/posixAccount.inc:3358 +#: ../lib/modules/posixAccount.inc:3412 msgid "Password changed." msgstr "Passwort geändert." @@ -10748,7 +10755,7 @@ msgid "Password check module" msgstr "Passwortprüfmodul" #: ../lib/modules/mitKerberos.inc:288 ../lib/modules/selfRegistration.inc:583 -#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/posixGroup.inc:700 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/posixGroup.inc:701 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:107 ../lib/modules/posixAccount.inc:100 #: ../lib/modules/posixAccount.inc:101 ../lib/modules/windowsUser.inc:1063 @@ -10784,7 +10791,7 @@ msgstr "Passwortablauf muss eine natürliche Zahl oder -1 sein." msgid "Password expired" msgstr "Passwort abgelaufen" -#: ../templates/selfService/adminMain.php:571 ../help/help.inc:296 +#: ../templates/selfService/adminMain.php:571 ../help/help.inc:306 msgid "Password field label" msgstr "Passwortfeldbezeichner" @@ -10792,10 +10799,10 @@ msgstr "Passwortfeldbezeichner" msgid "Password for voicemail mailbox." msgstr "Passwort für den Anrufbeantworter." -#: ../lib/modules/posixGroup.inc:442 ../lib/modules/posixGroup.inc:535 +#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixGroup.inc:536 #: ../lib/modules/posixAccount.inc:185 ../lib/modules/posixAccount.inc:340 -#: ../lib/modules/posixAccount.inc:2301 ../lib/modules/inetOrgPerson.inc:757 -#: ../lib/modules/inetOrgPerson.inc:4066 ../lib/modules/customFields.inc:149 +#: ../lib/modules/posixAccount.inc:2355 ../lib/modules/inetOrgPerson.inc:757 +#: ../lib/modules/inetOrgPerson.inc:4063 ../lib/modules/customFields.inc:149 #: ../lib/modules/customFields.inc:3036 msgid "Password hash type" msgstr "Passwort-Hash" @@ -10837,11 +10844,11 @@ msgstr "Maximales Passwortalter muss größer als minimales Passwortalter sein." msgid "Password minimum age must be are natural number." msgstr "Minimales Passwortalter muss eine natürliche Zahl sein." -#: ../templates/config/mainmanage.php:398 ../help/help.inc:174 +#: ../templates/config/mainmanage.php:438 ../help/help.inc:172 msgid "Password must not contain part of user/first/last name" msgstr "Passwort darf keinen Teil von Benutzer-/Vor-/Nachname enthalten" -#: ../templates/config/mainmanage.php:396 ../help/help.inc:172 +#: ../templates/config/mainmanage.php:436 ../help/help.inc:170 msgid "Password must not contain user name" msgstr "Passwort darf Benutzername nicht enthalten" @@ -10857,7 +10864,7 @@ msgstr "Passwortrichtlinien" msgid "Password policies (ppolicy)" msgstr "Passwortrichtlinien (ppolicy)" -#: ../templates/config/mainmanage.php:380 ../lib/types/user.inc:319 +#: ../templates/config/mainmanage.php:420 ../lib/types/user.inc:319 #: ../lib/types/user.inc:1103 ../lib/modules/ppolicyUser.inc:44 #: ../lib/modules/ppolicyUser.inc:55 ../lib/modules/ppolicyUser.inc:71 #: ../lib/modules/ppolicyUser.inc:87 ../lib/modules/ppolicyUser.inc:127 @@ -10891,11 +10898,11 @@ msgstr "Einstellungen der Passwortrücksetzungsseite" msgid "Password self reset" msgstr "Passwortrücksetzung" -#: ../lib/modules/passwordSelfReset.inc:1879 +#: ../lib/modules/passwordSelfReset.inc:1877 msgid "Password successfully reset." msgstr "Passwort erfolgreich geändert." -#: ../help/help.inc:233 +#: ../help/help.inc:237 msgid "Password to unlock SSH key file." msgstr "Passwort zum Entsperren des SSH-Schlüssels." @@ -10910,7 +10917,7 @@ msgstr "Passwortwarnung" msgid "Password warning must be are natural number." msgstr "Passwortwarnung muss eine natürliche Zahl sein." -#: ../templates/config/confmain.php:756 +#: ../templates/config/confmain.php:758 #: ../templates/3rdParty/pla/htdocs/password_checker.php:61 #: ../lib/modules/passwordSelfReset.inc:1425 ../lib/modules.inc:1211 msgid "Passwords are different!" @@ -10946,7 +10953,7 @@ msgstr "" msgid "Path separator" msgstr "Pfadtrennzeichen" -#: ../help/help.inc:231 +#: ../help/help.inc:235 msgid "" "Path to SSH key file to connect to lamdaemon server. If empty then password " "authentication with the person's password who is logged into LAM will be " @@ -10960,7 +10967,7 @@ msgstr "" msgid "Path to external script" msgstr "Pfad zum externen Script" -#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:369 +#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:365 msgid "Path to key for DNS updates" msgstr "Pfad zum Schlüssel für DNS-Änderungen" @@ -11025,17 +11032,17 @@ msgstr "Persönlich" msgid "Personal data" msgstr "Persönliche Daten" -#: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2153 -#: ../lib/modules/windowsLDSUser.inc:2166 ../lib/modules/windowsUser.inc:3707 +#: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2193 +#: ../lib/modules/windowsLDSUser.inc:2206 ../lib/modules/windowsUser.inc:3707 #: ../lib/modules/windowsUser.inc:3739 ../lib/modules/inetOrgPerson.inc:161 -#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2523 -#: ../lib/modules/inetOrgPerson.inc:2841 ../lib/modules/inetOrgPerson.inc:4102 -#: ../lib/modules/inetOrgPerson.inc:4136 ../lib/modules/inetOrgPerson.inc:4146 +#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2521 +#: ../lib/modules/inetOrgPerson.inc:2839 ../lib/modules/inetOrgPerson.inc:4099 +#: ../lib/modules/inetOrgPerson.inc:4133 ../lib/modules/inetOrgPerson.inc:4143 msgid "Photo" msgstr "Foto" -#: ../lib/modules/windowsLDSUser.inc:1275 ../lib/modules/windowsUser.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:1707 +#: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2021 +#: ../lib/modules/inetOrgPerson.inc:1705 msgid "Photo file" msgstr "Fotodatei" @@ -11082,7 +11089,7 @@ msgstr "" msgid "Please add at least one extension owner." msgstr "Sie müssen mindestens einen Besitzer hinzufügen." -#: ../help/help.inc:211 +#: ../help/help.inc:215 msgid "Please add this line to your webserver's crontab." msgstr "Bitte fügen Sie folgende Zeile zur crontab Ihres Webservers hinzu." @@ -11090,14 +11097,6 @@ msgstr "Bitte fügen Sie folgende Zeile zur crontab Ihres Webservers hinzu." msgid "Please authenticate with your security device." msgstr "Bitte authentifizieren Sie sich mit Ihrem Gerät." -#: ../help/help.inc:165 -msgid "" -"Please change this setting only if you experience problems in receiving " -"emails from LAM. This defines the line ending of emails." -msgstr "" -"Bitte ändern Sie diese Option nur wenn Sie Probleme beim email-Versand aus " -"LAM heraus haben. Diese Einstellung legt die Zeilenenden von emails fest." - #: ../lib/modules/qmailGroup.inc:296 msgid "Please check if this email should be sent." msgstr "Bitte prüfen Sie ob diese email gesendet werden soll." @@ -11127,7 +11126,7 @@ msgstr "Zum (Ent)Sperren bitte klicken." msgid "Please create a profile by clicking on the link below." msgstr "Bitte erstellen Sie ein Profil indem Sie auf den untigen Link klicken." -#: ../lib/lists.inc:1263 +#: ../lib/lists.inc:1262 msgid "" "Please do not edit multiple accounts in parallel in multiple browser tabs." msgstr "" @@ -11162,7 +11161,7 @@ msgstr "" msgid "Please enter a caller ID." msgstr "Bitte geben Sie eine Anrufer-ID ein." -#: ../help/help.inc:374 +#: ../help/help.inc:384 msgid "" "Please enter a comma separated list of attributes to export. Using \"*\" " "will export all attributes." @@ -11294,7 +11293,7 @@ msgstr "Bitte geben Sie eine Zahl für die Größenbeschränkung ein." #: ../templates/lib/141_jquery-validationEngine-lang.php:53 #: ../templates/lib/141_jquery-validationEngine-lang.php:57 -#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:527 +#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:525 #: ../lib/modules/mitKerberos.inc:289 ../lib/modules/zarafaUser.inc:431 #: ../lib/modules/zarafaUser.inc:432 ../lib/modules/zarafaUser.inc:433 #: ../lib/modules/zarafaUser.inc:434 ../lib/modules/zarafaUser.inc:435 @@ -11303,8 +11302,8 @@ msgstr "Bitte geben Sie eine Zahl für die Größenbeschränkung ein." #: ../lib/modules/bindDLZXfr.inc:94 ../lib/modules/courierMailAccount.inc:212 #: ../lib/modules/bindDLZ.inc:561 ../lib/modules/windowsUser.inc:1069 #: ../lib/modules/kolabUser.inc:221 ../lib/modules/kolabUser.inc:222 -#: ../lib/modules/inetOrgPerson.inc:2544 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:2550 ../lib/modules/sudoRole.inc:284 +#: ../lib/modules/inetOrgPerson.inc:2542 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:2548 ../lib/modules/sudoRole.inc:284 #: ../lib/modules/sudoRole.inc:285 ../lib/modules/kopanoUser.inc:431 #: ../lib/modules/kopanoUser.inc:432 ../lib/modules/kopanoUser.inc:433 #: ../lib/modules/kopanoUser.inc:434 ../lib/modules/kopanoUser.inc:435 @@ -11345,13 +11344,13 @@ msgstr "Bitte geben Sie eine Zahl für die minimale Passwortlänge ein." msgid "Please enter a numeric value for the password history length." msgstr "Bitte geben Sie eine Zahl für die Länge der Passworthistorie ein." -#: ../help/help.inc:183 +#: ../help/help.inc:181 msgid "Please enter a part of the user's DN to search for registered devices." msgstr "" "Bitte geben Sie einen Teil der Benutzer-DN an um nach registrierten Geräten " "zu suchen." -#: ../lib/modules/range.inc:141 +#: ../lib/modules/range.inc:140 msgid "Please enter a pool name." msgstr "Bitte geben Sie einen Poolnamen ein." @@ -11434,17 +11433,17 @@ msgstr "Bitte geben Sie einen gültigen Kontostatus ein." msgid "Please enter a valid admin email address." msgstr "Bitte geben Sie eine gültige Admin-EMail-Adresse ein." -#: ../templates/config/confmain.php:649 +#: ../templates/config/confmain.php:651 msgid "Please enter a valid bind user." msgstr "Bitte geben Sie einen gültigen Bind-Benutzer ein." -#: ../lib/modules/windowsLDSUser.inc:782 ../lib/modules/windowsLDSUser.inc:783 +#: ../lib/modules/windowsLDSUser.inc:789 ../lib/modules/windowsLDSUser.inc:790 #: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1076 #: ../lib/modules/inetOrgPerson.inc:107 ../lib/modules/inetOrgPerson.inc:108 msgid "Please enter a valid business category!" msgstr "Bitte geben Sie eine gültige Abteilung ein!" -#: ../lib/modules/windowsLDSUser.inc:746 ../lib/modules/windowsLDSUser.inc:747 +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:754 #: ../lib/modules/posixAccount.inc:119 ../lib/modules/posixAccount.inc:120 #: ../lib/modules/windowsUser.inc:1022 ../lib/modules/windowsUser.inc:1023 #: ../lib/modules/inetOrgPerson.inc:98 ../lib/modules/inetOrgPerson.inc:99 @@ -11491,7 +11490,7 @@ msgstr "Bitte geben Sie einen gültigen Standardbenutzer ein." msgid "Please enter a valid delivery mode." msgstr "Bitte geben Sie einen gültigen Liefermodus ein." -#: ../lib/modules/windowsLDSUser.inc:750 ../lib/modules/windowsLDSUser.inc:751 +#: ../lib/modules/windowsLDSUser.inc:757 ../lib/modules/windowsLDSUser.inc:758 #: ../lib/modules/sambaSamAccount.inc:110 #: ../lib/modules/sambaSamAccount.inc:111 ../lib/modules/windowsUser.inc:1028 #: ../lib/modules/windowsUser.inc:1029 @@ -11502,12 +11501,13 @@ msgstr "Bitte geben Sie einen gültigen Anzeigenamen ein!" msgid "Please enter a valid drive letter." msgstr "Bitte geben Sie einen gültigen Laufwerksbuchstaben ein." -#: ../lib/passwordExpirationJob.inc:122 ../lib/passwordExpirationJob.inc:128 -#: ../lib/passwordExpirationJob.inc:134 ../lib/passwordExpirationJob.inc:140 -#: ../lib/modules/kolabGroup.inc:155 ../lib/modules/kolabGroup.inc:156 -#: ../lib/modules/selfRegistration.inc:125 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 ../lib/passwordExpirationJob.inc:122 +#: ../lib/passwordExpirationJob.inc:128 ../lib/passwordExpirationJob.inc:134 +#: ../lib/passwordExpirationJob.inc:140 ../lib/modules/kolabGroup.inc:155 +#: ../lib/modules/kolabGroup.inc:156 ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:500 -#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:773 +#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:780 #: ../lib/modules/zarafaDynamicGroup.inc:184 #: ../lib/modules/zarafaDynamicGroup.inc:185 ../lib/modules/qmailUser.inc:402 #: ../lib/modules/qmailUser.inc:403 ../lib/modules/qmailUser.inc:404 @@ -11552,13 +11552,13 @@ msgstr "Bitte geben Sie einen gültigen EMail-Alias ein." msgid "Please enter a valid employee number." msgstr "Bitte geben Sie eine gültige Personalnummer ein." -#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:781 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:788 #: ../lib/modules/windowsUser.inc:1073 ../lib/modules/windowsUser.inc:1074 #: ../lib/modules/inetOrgPerson.inc:96 ../lib/modules/inetOrgPerson.inc:97 msgid "Please enter a valid employee type!" msgstr "Bitte geben Sie einen gültigen Angestelltentyp ein!" -#: ../lib/modules/windowsLDSUser.inc:758 ../lib/modules/windowsLDSUser.inc:759 +#: ../lib/modules/windowsLDSUser.inc:765 ../lib/modules/windowsLDSUser.inc:766 #: ../lib/modules/windowsUser.inc:1036 ../lib/modules/windowsUser.inc:1037 #: ../lib/modules/inetOrgPerson.inc:78 ../lib/modules/inetOrgPerson.inc:79 msgid "Please enter a valid fax number!" @@ -11610,7 +11610,7 @@ msgstr "Bitte geben Sie einen gültigen Gruppentyp ein." msgid "Please enter a valid job suffix." msgstr "Bitte geben Sie einen gültigen Jobsuffix an." -#: ../lib/modules/windowsLDSUser.inc:778 ../lib/modules/windowsLDSUser.inc:779 +#: ../lib/modules/windowsLDSUser.inc:785 ../lib/modules/windowsLDSUser.inc:786 #: ../lib/modules/windowsUser.inc:1071 ../lib/modules/windowsUser.inc:1072 #: ../lib/modules/inetOrgPerson.inc:94 ../lib/modules/inetOrgPerson.inc:95 msgid "Please enter a valid job title!" @@ -11667,7 +11667,7 @@ msgid "Please enter a valid number (e.g. \"1.5\")." msgstr "Bitte geben Sie eine gültige Zahl (z.B. \"1.5\") ein." #: ../lib/modules/pykotaPrinter.inc:212 ../lib/modules/pykotaPrinter.inc:213 -#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:717 +#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:718 #: ../lib/modules/customFields.inc:2316 ../lib/modules/customFields.inc:2325 #: ../lib/modules/customFields.inc:3888 ../lib/modules/customFields.inc:3892 msgid "Please enter a valid number." @@ -11700,7 +11700,7 @@ msgstr "Bitte geben Sie eine gültige Portnummer ein." msgid "Please enter a valid postal address!" msgstr "Bitte geben Sie eine gültige Anschrift ein!" -#: ../lib/modules/windowsLDSUser.inc:770 ../lib/modules/windowsLDSUser.inc:771 +#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/windowsLDSUser.inc:778 #: ../lib/modules/windowsUser.inc:1048 ../lib/modules/windowsUser.inc:1049 #: ../lib/modules/inetOrgPerson.inc:92 ../lib/modules/inetOrgPerson.inc:93 msgid "Please enter a valid postal code!" @@ -11729,7 +11729,7 @@ msgstr "Bitte geben Sie eine gültige Empfängerregel ein." msgid "Please enter a valid registered address." msgstr "Bitte geben Sie eine gültige Meldeadresse ein." -#: ../templates/config/mainmanage.php:177 +#: ../templates/config/mainmanage.php:188 msgid "Please enter a valid remote server in format \"server:port\"." msgstr "Bitte geben Sie einen gültigen Server im Format \"server:port\" ein." @@ -11754,12 +11754,12 @@ msgstr "" msgid "Please enter a valid street name!" msgstr "Bitte geben Sie einen gültigen Straßennamen ein!" -#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:757 -#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:761 -#: ../lib/modules/windowsLDSUser.inc:762 ../lib/modules/windowsLDSUser.inc:763 -#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:765 -#: ../lib/modules/windowsLDSUser.inc:766 ../lib/modules/windowsLDSUser.inc:767 -#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:769 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:764 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:768 +#: ../lib/modules/windowsLDSUser.inc:769 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:772 +#: ../lib/modules/windowsLDSUser.inc:773 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:776 #: ../lib/modules/windowsUser.inc:1034 ../lib/modules/windowsUser.inc:1035 #: ../lib/modules/windowsUser.inc:1038 ../lib/modules/windowsUser.inc:1039 #: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1041 @@ -11777,8 +11777,8 @@ msgstr "Bitte geben Sie eine gültige Telefonnummer ein!" msgid "Please enter a valid user name or email address." msgstr "Bitte geben Sie einen gültigen Benutzernamen oder EMail-Adresse ein." -#: ../lib/modules/posixGroup.inc:851 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixGroup.inc:852 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 #, php-format msgid "Please enter a value between %s and %s!" msgstr "Bitte geben Sie einen Wert zwischen %s und %s ein!" @@ -11799,8 +11799,8 @@ msgstr "Bitte geben Sie einen Wert zum Hinzufügen an." msgid "Please enter a value to modify." msgstr "Bitte geben Sie einen Wert zum Editieren ein." -#: ../help/help.inc:372 -msgid "Please enter an LDAP filter to specifiy the exported entries." +#: ../help/help.inc:382 +msgid "Please enter an LDAP filter to specify the exported entries." msgstr "" "Bitte geben Sie einen LDAP-Filter zur Einschränkung der zu exportierenden " "Einträge an." @@ -11831,7 +11831,7 @@ msgstr "Bitte geben Sie einen Benutzernamen auf dieser Seite ein: %s" msgid "Please enter at least %s values." msgstr "Bitte geben Sie mindestens %s Werte ein." -#: ../lib/modules/range.inc:142 +#: ../lib/modules/range.inc:141 #, php-format msgid "Please enter at least one range for pool \"%s\"." msgstr "Bitte geben Sie mindestens einen Bereich für den Pool \"%s\" an." @@ -11884,11 +11884,11 @@ msgstr "" "Bitte geben Sie DN und Passwort für den administrativen " "Selbstregistrierungsbenutzer ein." -#: ../help/help.inc:207 +#: ../help/help.inc:211 msgid "Please enter the DN and password to use for all jobs." msgstr "Bitte geben Sie die DN und Passwort für die Jobs ein." -#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixAccount.inc:395 +#: ../lib/modules/posixGroup.inc:469 ../lib/modules/posixAccount.inc:395 msgid "" "Please enter the DN of the LDAP entry with object class \"msSFU30DomainInfo" "\"." @@ -11896,7 +11896,7 @@ msgstr "" "Bitte geben Sie die DN des LDAP-Eintrages mit der Objektklasse " "\"msSFU30DomainInfo\" ein." -#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixAccount.inc:391 +#: ../lib/modules/posixGroup.inc:465 ../lib/modules/posixAccount.inc:391 msgid "" "Please enter the DN of the LDAP entry with object class \"sambaUnixIdPool\"." msgstr "" @@ -11960,7 +11960,7 @@ msgid "" msgstr "" "Bitte geben Sie den LDAP-Suffix ein unter dem die Samba Domänen liegen." -#: ../help/help.inc:335 +#: ../help/help.inc:345 msgid "" "Please enter the WebAuthn domain. This is the public domain of the webserver " "(e.g. \"example.com\"). Do not include protocol or port." @@ -12022,7 +12022,7 @@ msgstr "" "Bitte geben Sie die Basis-URL des Webservers (z.B. https://www.example.com) " "an. Dies wird für die Generierung von Links in Emails verwendet." -#: ../lib/modules/windowsLDSUser.inc:284 ../lib/modules/windowsUser.inc:361 +#: ../lib/modules/windowsLDSUser.inc:288 ../lib/modules/windowsUser.inc:361 msgid "Please enter the company name." msgstr "Bitte geben Sie den Firmennamen an." @@ -12086,11 +12086,15 @@ msgstr "" "Bitte geben Sie die Liste der zu startenden Skripte an. Jede Zeile hat " "folgendes Format: [Aktion] [Skript und Argumente]" -#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixAccount.inc:399 +#: ../lib/modules/posixGroup.inc:490 ../lib/modules/posixAccount.inc:399 msgid "Please enter the magic number you configured on server side." msgstr "" "Bitte geben Sie die magische Zahl an, die auf Serverseite konfiguriert ist." +#: ../templates/config/mainmanage.php:263 +msgid "Please enter the mail server with host name and port." +msgstr "Bitte geben Sie den Mailserver mit Hostname und Portnummer an." + #: ../lib/modules/nisObject.inc:66 msgid "" "Please enter the mapping entry (e.g. \"-fstype=nfs,rw server:/projects\")." @@ -12143,7 +12147,7 @@ msgstr "" "Bitte geben Sie den neuen Namen des Profils an. Profilnamen dürfen " "Buchstaben, Zahlen und -/_ enthalten." -#: ../help/help.inc:399 +#: ../help/help.inc:409 msgid "" "Please enter the number of days before password expiration to send out the " "email." @@ -12178,7 +12182,7 @@ msgstr "" msgid "Please enter the password which you want to set for this account." msgstr "Bitte geben Sie das Passwort für diesen Account ein." -#: ../help/help.inc:259 +#: ../help/help.inc:269 msgid "" "Please enter the password which you want to set for this account. You may " "also generate a random password (12 characters) which will be displayed on " @@ -12248,9 +12252,9 @@ msgstr "" "Validierung dieses Feldes ein. Eine Syntaxbeschreibung finden Sie hier." -#: ../templates/lists/changePassword.php:537 +#: ../templates/lists/changePassword.php:541 #: ../lib/modules/selfRegistration.inc:580 -#: ../lib/modules/windowsLDSUser.inc:776 ../lib/modules/sambaSamAccount.inc:105 +#: ../lib/modules/windowsLDSUser.inc:783 ../lib/modules/sambaSamAccount.inc:105 #: ../lib/modules/posixAccount.inc:99 ../lib/modules/windowsUser.inc:1062 #: ../lib/modules/customFields.inc:3120 msgid "Please enter the same password in both password fields." @@ -12260,13 +12264,23 @@ msgstr "Bitte geben Sie das selbe Passwort in beide Felder ein." msgid "Please enter the security question for the password self reset." msgstr "Bitte geben Sie die Sicherheitsfrage für die Passwortrücksetzung ein." -#: ../help/help.inc:319 +#: ../help/help.inc:183 +msgid "" +"Please enter the server name and port of your SMTP server (e.g. " +"localhost:25). If this setting is left empty then LAM will try to use a " +"locally installed mail server. The server must support TLS." +msgstr "" +"Bitte geben Sie den Servernamen und Port Ihres SMTP-Servers (z.B. " +"localhost:25) an. Wenn diese Einstellung leer ist dann versucht LAM einen " +"lokal installierten Mailserver zu benutzen. Der Server muss TLS unterstützen." + +#: ../help/help.inc:329 msgid "Please enter the site and secret key you got from Google reCAPTCHA." msgstr "" "Bitte geben Sie den Seitenschlüssel und den geheimen Schlüssel ein, den Sie " "von Google reCAPTCHA erhalten haben." -#: ../help/help.inc:181 +#: ../help/help.inc:179 msgid "Please enter the syslog remote server in format \"server:port\"." msgstr "Bitte geben Sie den syslog Server im Format \"server:port\" ein." @@ -12274,7 +12288,7 @@ msgstr "Bitte geben Sie den syslog Server im Format \"server:port\" ein." msgid "Please enter the time limit in minutes. 0 means unlimited." msgstr "Bitte geben Sie das Zeitlimit in Minuten ein. 0 heißt unbegrenzt." -#: ../help/help.inc:217 +#: ../help/help.inc:221 msgid "Please enter the user name and password to connect to the database." msgstr "" "Bitte geben Sie die Benutzer und Passwort für die Verbindung zur Datenbank " @@ -12304,11 +12318,11 @@ msgstr "" "Bitte geben Sie die Puppet Variablen für diesen Knoten (z.B. " "config_exim=true) ein." -#: ../help/help.inc:325 +#: ../help/help.inc:335 msgid "Please enter your client id for the verification API." msgstr "Bitte geben Sie die Client-ID für die Verifzierungs-API an." -#: ../help/help.inc:235 +#: ../help/help.inc:239 msgid "Please enter your licence key." msgstr "Bitte geben Sie Ihren Lizenzschlüssel ein." @@ -12328,11 +12342,11 @@ msgstr "" msgid "Please enter your public SSH key." msgstr "Bitte geben Sie Ihren SSH-Schlüssel ein." -#: ../help/help.inc:327 +#: ../help/help.inc:337 msgid "Please enter your secret key for the verification API." msgstr "Bitte geben Sie den geheimen Schlüssel für die Verifzierungs-API an." -#: ../lib/modules/range.inc:483 ../lib/modules/fixed_ip.inc:407 +#: ../lib/modules/range.inc:482 ../lib/modules/fixed_ip.inc:405 msgid "Please fill out the DHCP settings first." msgstr "Bitte füllen Sie zuerst die DHCP-Einstellungen aus." @@ -12351,7 +12365,7 @@ msgstr "Bitte installieren und aktivieren Sie die PDO-Erweiterung für PHP." #: ../templates/upload/masscreate.php:275 msgid "" -"Please provide a CSV formated file with your account data. The cells in the " +"Please provide a CSV formatted file with your account data. The cells in the " "first row must be filled with the column identifiers. The following rows " "represent one account for each row." msgstr "" @@ -12359,7 +12373,7 @@ msgstr "" "Zellen der ersten Zeile müssen mit den Spaltenbezeichnern gefüllt werden. " "Alle nachfolgenden Zeilen repräsentieren jeweils einen Account." -#: ../lib/config.inc:2920 +#: ../lib/config.inc:2973 msgid "Please provide a file in DER or PEM format." msgstr "Bitte geben Sie eine Datei im DER oder PEM-Format an." @@ -12371,7 +12385,7 @@ msgstr "Bitte geben Sie eine Datei zum Hochladen an." msgid "Please register a security device." msgstr "Bitte registrieren Sie ein Gerät zur Absicherung." -#: ../lib/modules/windowsLDSUser.inc:224 ../lib/modules/windowsLDSUser.inc:324 +#: ../lib/modules/windowsLDSUser.inc:228 ../lib/modules/windowsLDSUser.inc:328 #: ../lib/modules/windowsUser.inc:301 ../lib/modules/windowsUser.inc:401 #: ../lib/modules/inetOrgPerson.inc:694 msgid "" @@ -12380,11 +12394,16 @@ msgstr "" "Bitte wählen Sie ein Foto zum Hochladen. Es muss im JPG-Format (.jpg/.jpeg) " "vorliegen." +#: ../help/help.inc:241 +msgid "Please select how to be warned before your licence expires." +msgstr "" +"Bitte wählen Sie wie Sie vor dem Ablauf der Lizenz gewarnt werden wollen." + #: ../lib/modules/customFields.inc:106 msgid "Please select the field type (e.g. text field)." msgstr "Bitte wählen Sie den Feldtyp (z.B. Textfeld)." -#: ../help/help.inc:273 +#: ../help/help.inc:283 msgid "" "Please select the font for the PDF file. Dejavu will work on all systems but " "does not support e.g. Chinese and Japanese. The other fonts require that an " @@ -12395,11 +12414,11 @@ msgstr "" "anderen Schriftarten erfordern, dass die entsprechenden Schriften auf dem " "Zielsystem installiert sind." -#: ../help/help.inc:360 +#: ../help/help.inc:370 msgid "Please select the suffix where changes should be done." msgstr "Bitte wählen Sie den Suffix wo Änderungen stattfinden sollen." -#: ../help/help.inc:201 +#: ../help/help.inc:205 msgid "" "Please select the template for the new server profile. You can either select " "an existing server profile or use one of the built-in templates." @@ -12407,7 +12426,7 @@ msgstr "" "Bitte wählen Sie die Vorlage für das neue Serverprofil. Sie können entweder " "ein bestehendes Profil oder eine der Standardvorlagen verwenden." -#: ../help/help.inc:209 +#: ../help/help.inc:213 msgid "Please select the type of database to use for job data." msgstr "Bitte wählen Sie den Datenbanktyp für die Jobdaten." @@ -12417,7 +12436,7 @@ msgstr "Bitte geben Sie Ihre lokale Zeitzone ein." #: ../help/help.inc:157 msgid "" -"Please select your prefered log level. Messages with a lower level will not " +"Please select your preferred log level. Messages with a lower level will not " "be logged." msgstr "" "Bitte wählen Sie den gewünschten Log-Level. Meldungen mit niedrigerem Level " @@ -12444,7 +12463,7 @@ msgstr "" "Bitte konfigurieren Sie zuerst die Haupteinstellungsdatei (config/config." "cfg)!" -#: ../lib/modules/dhcp_settings.inc:573 ../lib/modules/ddns.inc:362 +#: ../lib/modules/dhcp_settings.inc:566 ../lib/modules/ddns.inc:358 msgid "" "Please set your LDAP suffix to an LDAP entry with object class \"dhcpService" "\" or \"dhcpServer\"." @@ -12464,7 +12483,7 @@ msgstr "Bitte geben Sie mindestens eine Operation ein." msgid "Please specify how your users need to identify themselves." msgstr "Bitte geben Sie an wie Ihre Benutzer sich ausweisen sollen." -#: ../help/help.inc:177 +#: ../help/help.inc:175 msgid "" "Please specify the URL (e.g. \"https://api.pwnedpasswords.com/range/" "{SHA1PREFIX}\") of your external password check." @@ -12484,7 +12503,7 @@ msgstr "" "Bitte geben Sie die möglichen Werte des Feldes ein. Sie können jedem Wert " "eine Beschreibung zuordnen, die dem Benutzer statt des Wertes angezeigt wird." -#: ../help/help.inc:364 +#: ../help/help.inc:374 msgid "" "Please specify which attributes should be changed. The modify operation will " "also add an value if the attribute does not yet exist. To delete all values " @@ -12495,7 +12514,7 @@ msgstr "" "nicht existiert. Um alle Werte eines Attributes zu löschen, lassen Sie das " "Wertefeld leer." -#: ../lib/modules/windowsLDSUser.inc:786 ../lib/modules/windowsUser.inc:1079 +#: ../lib/modules/windowsLDSUser.inc:793 ../lib/modules/windowsUser.inc:1079 msgid "Please upload a .jpg/.jpeg file." msgstr "Bitte laden Sie eine .jpg/.jpeg-Datei hoch." @@ -12512,7 +12531,7 @@ msgstr "Anzahl Richtlinien: %s" msgid "Policy list has invalid format!" msgstr "Regelliste hat ungültiges Format!" -#: ../lib/modules/range.inc:544 +#: ../lib/modules/range.inc:543 msgid "Pools" msgstr "Pools" @@ -12555,9 +12574,9 @@ msgstr "" "Mögliche Platzhalter sind: \"*\" = ein beliebiges Zeichen, \"^\" = " "Zeilenanfang, \"$\" = Zeilenende" -#: ../lib/modules/windowsLDSUser.inc:165 ../lib/modules/windowsLDSUser.inc:387 -#: ../lib/modules/windowsLDSUser.inc:659 ../lib/modules/windowsLDSUser.inc:870 -#: ../lib/modules/windowsLDSUser.inc:1814 ../lib/modules/windowsUser.inc:183 +#: ../lib/modules/windowsLDSUser.inc:165 ../lib/modules/windowsLDSUser.inc:391 +#: ../lib/modules/windowsLDSUser.inc:663 ../lib/modules/windowsLDSUser.inc:877 +#: ../lib/modules/windowsLDSUser.inc:1832 ../lib/modules/windowsUser.inc:183 #: ../lib/modules/windowsUser.inc:476 ../lib/modules/windowsUser.inc:782 #: ../lib/modules/windowsUser.inc:884 ../lib/modules/windowsUser.inc:985 #: ../lib/modules/windowsUser.inc:1171 ../lib/modules/windowsUser.inc:2863 @@ -12565,18 +12584,18 @@ msgstr "" #: ../lib/modules/inetOrgPerson.inc:339 ../lib/modules/inetOrgPerson.inc:486 #: ../lib/modules/inetOrgPerson.inc:606 ../lib/modules/inetOrgPerson.inc:610 #: ../lib/modules/inetOrgPerson.inc:1268 ../lib/modules/inetOrgPerson.inc:1271 -#: ../lib/modules/inetOrgPerson.inc:1971 ../lib/modules/inetOrgPerson.inc:2030 -#: ../lib/modules/inetOrgPerson.inc:2750 ../lib/modules/inetOrgPerson.inc:4076 -#: ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1969 ../lib/modules/inetOrgPerson.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:2748 ../lib/modules/inetOrgPerson.inc:4073 +#: ../lib/modules/inetOrgPerson.inc:4120 msgid "Post office box" msgstr "Postfach" #: ../lib/modules/inetOrgPerson.inc:88 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:323 ../lib/modules/inetOrgPerson.inc:498 #: ../lib/modules/inetOrgPerson.inc:622 ../lib/modules/inetOrgPerson.inc:1312 -#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2042 -#: ../lib/modules/inetOrgPerson.inc:2711 ../lib/modules/inetOrgPerson.inc:4080 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1972 ../lib/modules/inetOrgPerson.inc:2040 +#: ../lib/modules/inetOrgPerson.inc:2709 ../lib/modules/inetOrgPerson.inc:4077 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Postal address" msgstr "Anschrift" @@ -12584,9 +12603,9 @@ msgstr "Anschrift" msgid "Postal address, city" msgstr "Bitte geben Sie hier die Anschrift ein." -#: ../lib/modules/windowsLDSUser.inc:161 ../lib/modules/windowsLDSUser.inc:393 -#: ../lib/modules/windowsLDSUser.inc:658 ../lib/modules/windowsLDSUser.inc:770 -#: ../lib/modules/windowsLDSUser.inc:871 ../lib/modules/windowsLDSUser.inc:1813 +#: ../lib/modules/windowsLDSUser.inc:161 ../lib/modules/windowsLDSUser.inc:397 +#: ../lib/modules/windowsLDSUser.inc:662 ../lib/modules/windowsLDSUser.inc:777 +#: ../lib/modules/windowsLDSUser.inc:878 ../lib/modules/windowsLDSUser.inc:1831 #: ../lib/modules/windowsUser.inc:179 ../lib/modules/windowsUser.inc:482 #: ../lib/modules/windowsUser.inc:783 ../lib/modules/windowsUser.inc:883 #: ../lib/modules/windowsUser.inc:986 ../lib/modules/windowsUser.inc:1048 @@ -12595,9 +12614,9 @@ msgstr "Bitte geben Sie hier die Anschrift ein." #: ../lib/modules/inetOrgPerson.inc:161 ../lib/modules/inetOrgPerson.inc:315 #: ../lib/modules/inetOrgPerson.inc:489 ../lib/modules/inetOrgPerson.inc:614 #: ../lib/modules/inetOrgPerson.inc:618 ../lib/modules/inetOrgPerson.inc:1277 -#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1972 -#: ../lib/modules/inetOrgPerson.inc:2033 ../lib/modules/inetOrgPerson.inc:2737 -#: ../lib/modules/inetOrgPerson.inc:4077 ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1970 +#: ../lib/modules/inetOrgPerson.inc:2031 ../lib/modules/inetOrgPerson.inc:2735 +#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4120 msgid "Postal code" msgstr "Postleitzahl" @@ -12628,7 +12647,7 @@ msgstr "Präferenz" msgid "Prefix for mailboxes" msgstr "Präfix für Postfächer" -#: ../lib/modules/windowsLDSUser.inc:511 ../lib/modules/windowsUser.inc:694 +#: ../lib/modules/windowsLDSUser.inc:515 ../lib/modules/windowsUser.inc:694 #: ../lib/modules/inetOrgPerson.inc:269 msgid "President" msgstr "Präsident" @@ -12653,15 +12672,15 @@ msgstr "Preis je Seite" #: ../lib/modules/eduPerson.inc:87 ../lib/modules/eduPerson.inc:167 #: ../lib/modules/eduPerson.inc:228 ../lib/modules/eduPerson.inc:282 -#: ../lib/modules/eduPerson.inc:546 +#: ../lib/modules/eduPerson.inc:540 msgid "Primary affiliation" msgstr "Primäre Zugehörigkeit" #: ../lib/modules/posixAccount.inc:224 ../lib/modules/posixAccount.inc:286 #: ../lib/modules/posixAccount.inc:303 ../lib/modules/posixAccount.inc:349 #: ../lib/modules/posixAccount.inc:423 ../lib/modules/posixAccount.inc:461 -#: ../lib/modules/posixAccount.inc:1634 ../lib/modules/posixAccount.inc:1975 -#: ../lib/modules/posixAccount.inc:2015 ../lib/modules/posixAccount.inc:2111 +#: ../lib/modules/posixAccount.inc:1680 ../lib/modules/posixAccount.inc:2030 +#: ../lib/modules/posixAccount.inc:2070 ../lib/modules/posixAccount.inc:2165 msgid "Primary group" msgstr "Primäre Gruppe" @@ -12677,13 +12696,13 @@ msgstr "Primärer Master-DNS-Server" #: ../lib/modules/eduPerson.inc:129 ../lib/modules/eduPerson.inc:205 #: ../lib/modules/eduPerson.inc:231 ../lib/modules/eduPerson.inc:246 -#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:553 +#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:547 msgid "Primary organisational unit" msgstr "Primäre organisatorische Einheit" #: ../lib/modules/eduPerson.inc:113 ../lib/modules/eduPerson.inc:160 #: ../lib/modules/eduPerson.inc:229 ../lib/modules/eduPerson.inc:276 -#: ../lib/modules/eduPerson.inc:548 +#: ../lib/modules/eduPerson.inc:542 msgid "Principal name" msgstr "Benutzername" @@ -12800,7 +12819,7 @@ msgstr "Profilverwaltung" #: ../templates/selfService/profManage.php:221 #: ../templates/selfService/adminLogin.php:111 #: ../templates/profedit/profilepage.php:190 -#: ../templates/profedit/profilemain.php:357 ../help/help.inc:242 +#: ../templates/profedit/profilemain.php:357 ../help/help.inc:252 msgid "Profile name" msgstr "Profilname" @@ -12861,7 +12880,7 @@ msgstr "Programm, das für alle eingehenden Nachrichten ausgeführt wird." msgid "Progress" msgstr "Fortschritt" -#: ../help/help.inc:321 +#: ../help/help.inc:331 msgid "Protect the self service login with a captcha." msgstr "Damit schützen Sie den SelfService mit einem Captcha." @@ -12879,11 +12898,11 @@ msgstr "Dienst" msgid "Proxy URL" msgstr "Proxy-URL" -#: ../lib/types/user.inc:111 ../lib/modules/windowsLDSUser.inc:311 -#: ../lib/modules/windowsLDSUser.inc:315 ../lib/modules/windowsLDSUser.inc:454 -#: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:879 -#: ../lib/modules/windowsLDSUser.inc:1825 -#: ../lib/modules/windowsLDSUser.inc:2146 ../lib/modules/windowsUser.inc:388 +#: ../lib/types/user.inc:111 ../lib/modules/windowsLDSUser.inc:315 +#: ../lib/modules/windowsLDSUser.inc:319 ../lib/modules/windowsLDSUser.inc:458 +#: ../lib/modules/windowsLDSUser.inc:674 ../lib/modules/windowsLDSUser.inc:886 +#: ../lib/modules/windowsLDSUser.inc:1843 +#: ../lib/modules/windowsLDSUser.inc:2185 ../lib/modules/windowsUser.inc:388 #: ../lib/modules/windowsUser.inc:392 ../lib/modules/windowsUser.inc:611 #: ../lib/modules/windowsUser.inc:907 ../lib/modules/windowsUser.inc:1181 #: ../lib/modules/windowsUser.inc:2874 ../lib/modules/windowsUser.inc:3100 @@ -13003,7 +13022,7 @@ msgstr "Frage" msgid "Quota" msgstr "Quota" -#: ../lib/modules/quota.inc:781 +#: ../lib/modules/quota.inc:844 #, php-format msgid "Quota for %s on %s" msgstr "Quota für %s auf %s" @@ -13071,7 +13090,7 @@ msgstr "Quotawarnlimit" #: ../templates/profedit/profilepage.php:216 ../lib/modules/dynamicList.inc:58 #: ../lib/modules/dynamicList.inc:245 ../lib/modules/selfRegistration.inc:97 #: ../lib/modules/selfRegistration.inc:200 ../lib/modules.inc:1075 -#: ../help/help.inc:238 ../help/help.inc:252 +#: ../help/help.inc:248 ../help/help.inc:262 msgid "RDN identifier" msgstr "RDN-Bezeichner" @@ -13115,18 +13134,18 @@ msgstr "Radiobuttons" msgid "Radius profile for this user." msgstr "Radius-Profil des Benutzers." -#: ../lib/modules/range.inc:100 ../lib/modules/range.inc:508 -#: ../lib/modules/range.inc:568 +#: ../lib/modules/range.inc:99 ../lib/modules/range.inc:507 +#: ../lib/modules/range.inc:567 msgid "Range from" msgstr "Bereich von" -#: ../lib/modules/range.inc:104 ../lib/modules/range.inc:521 -#: ../lib/modules/range.inc:570 +#: ../lib/modules/range.inc:103 ../lib/modules/range.inc:520 +#: ../lib/modules/range.inc:569 msgid "Range to" msgstr "Bereich bis" -#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:82 -#: ../lib/modules/range.inc:130 ../lib/modules/range.inc:764 +#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:81 +#: ../lib/modules/range.inc:129 ../lib/modules/range.inc:763 msgid "Ranges" msgstr "Bereiche" @@ -13136,11 +13155,11 @@ msgstr "Lesen" #: ../templates/config/confmain.php:217 ../templates/config/conftypes.php:268 #: ../lib/modules/customFields.inc:109 ../lib/modules/customFields.inc:1978 -#: ../help/help.inc:196 +#: ../help/help.inc:200 msgid "Read-only" msgstr "Nur lesen" -#: ../lib/modules/inetOrgPerson.inc:4119 +#: ../lib/modules/inetOrgPerson.inc:4116 msgid "Read-only fields" msgstr "\"Nur lesen\"-Felder" @@ -13230,14 +13249,14 @@ msgstr "Kopiert alle Kindeinträge rekursiv." #: ../templates/config/profmanage.php:207 #: ../templates/config/profmanage.php:262 -#: ../templates/config/mainmanage.php:494 ../templates/config/confmain.php:522 +#: ../templates/config/mainmanage.php:534 ../templates/config/confmain.php:522 #: ../lib/modules/selfRegistration.inc:417 -#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3175 +#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3229 #: ../lib/modules/windowsUser.inc:3059 msgid "Reenter password" msgstr "Passwort nochmal eingeben" -#: ../templates/config/confmain.php:236 ../help/help.inc:204 +#: ../templates/config/confmain.php:236 ../help/help.inc:208 msgid "Referential integrity overlay" msgstr "Overlay für referentielle Integrität" @@ -13250,7 +13269,7 @@ msgstr "Referrals" #: ../templates/3rdParty/pla/lib/TemplateRender.php:984 #: ../templates/3rdParty/pla/lib/TemplateRender.php:985 #: ../templates/3rdParty/pla/lib/HTMLTree.php:237 -#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:888 +#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:887 msgid "Refresh" msgstr "Aktualisieren" @@ -13284,9 +13303,9 @@ msgstr "Neuen Schlüssel registrieren" #: ../lib/modules/inetOrgPerson.inc:90 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:331 ../lib/modules/inetOrgPerson.inc:501 #: ../lib/modules/inetOrgPerson.inc:626 ../lib/modules/inetOrgPerson.inc:1349 -#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2045 -#: ../lib/modules/inetOrgPerson.inc:2724 ../lib/modules/inetOrgPerson.inc:4081 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2043 +#: ../lib/modules/inetOrgPerson.inc:2722 ../lib/modules/inetOrgPerson.inc:4078 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Registered address" msgstr "Meldeadresse" @@ -13342,20 +13361,20 @@ msgstr "Lade neu" msgid "Remember user name" msgstr "Benutzer merken" -#: ../templates/config/mainmanage.php:414 +#: ../templates/config/mainmanage.php:454 msgid "Remote" msgstr "Remote" -#: ../templates/config/mainmanage.php:445 ../help/help.inc:180 +#: ../templates/config/mainmanage.php:485 ../help/help.inc:178 msgid "Remote server" msgstr "Remoteserver" #: ../templates/pdfedit/pdfpage.php:270 ../templates/pdfedit/pdfpage.php:345 #: ../lib/modules/locking389ds.inc:182 ../lib/modules/mitKerberos.inc:714 -#: ../lib/modules/windowsLDSUser.inc:1405 ../lib/modules/qmailUser.inc:721 +#: ../lib/modules/windowsLDSUser.inc:1423 ../lib/modules/qmailUser.inc:721 #: ../lib/modules/windowsHost.inc:201 ../lib/modules/sambaSamAccount.inc:1496 #: ../lib/modules/windowsUser.inc:1735 ../lib/modules/windowsUser.inc:2151 -#: ../lib/modules/kolabUser.inc:723 ../lib/modules/shadowAccount.inc:506 +#: ../lib/modules/kolabUser.inc:722 ../lib/modules/shadowAccount.inc:506 #: ../lib/modules/shadowAccount.inc:572 ../lib/modules/freeRadius.inc:565 #: ../lib/modules/windowsLDSGroup.inc:184 #: ../lib/modules/heimdalKerberos.inc:613 ../lib/modules/windowsGroup.inc:358 @@ -13416,7 +13435,7 @@ msgstr "Samba 3-Erweiterung entfernen" msgid "Remove Shadow account extension" msgstr "Shadow-Erweiterung entfernen" -#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1698 +#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1753 msgid "Remove Unix extension" msgstr "Unix-Erweiterung entfernen" @@ -13454,7 +13473,7 @@ msgstr "Host-Erweiterung entfernen" msgid "Remove mail routing extension" msgstr "Mail-Routing-Erweiterung entfernen" -#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1692 +#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1747 #: ../lib/modules/inetOrgPerson.inc:1585 msgid "Remove password" msgstr "Passwort entfernen" @@ -13471,7 +13490,7 @@ msgstr "Qmail-Erweiterung entfernen" #: ../lib/modules/zarafaContact.inc:450 ../lib/modules/zarafaGroup.inc:464 #: ../lib/modules/device.inc:273 ../lib/modules/kopanoGroup.inc:415 #: ../lib/modules/zarafaUser.inc:953 ../lib/modules/kopanoContact.inc:401 -#: ../lib/modules/inetOrgPerson.inc:1796 ../lib/modules/kopanoUser.inc:875 +#: ../lib/modules/inetOrgPerson.inc:1794 ../lib/modules/kopanoUser.inc:875 #: ../lib/modules/windowsLDSGroup.inc:462 ../lib/modules/qmailGroup.inc:670 #: ../lib/modules/organizationalRole.inc:371 #: ../lib/modules/windowsGroup.inc:685 ../lib/modules/groupOfNames.inc:400 @@ -13488,7 +13507,7 @@ msgstr "Diesen Accounttyp entfernen" msgid "Remove user from alias entry." msgstr "Benutzer aus Aliaseintrag entfernen." -#: ../lib/modules/posixGroup.inc:1007 ../lib/modules/posixGroup.inc:1050 +#: ../lib/modules/posixGroup.inc:1008 ../lib/modules/posixGroup.inc:1051 msgid "Removed users" msgstr "Entfernte Benutzer" @@ -13553,7 +13572,7 @@ msgstr "Laufzeitverlängerung" msgid "Renewable lifetime must be a number." msgstr "Laufzeitverlängerung muss eine Zahl sein." -#: ../templates/lists/changePassword.php:359 +#: ../templates/lists/changePassword.php:363 #: ../lib/modules/passwordSelfReset.inc:1302 ../lib/modules.inc:1119 msgid "Repeat password" msgstr "Passwort wiederholen" @@ -13563,12 +13582,12 @@ msgid "Replaced $user or $group in homedir." msgstr "$user und $group wurden im Heimatverzeichnis ersetzt." #: ../templates/config/confmain.php:360 ../lib/passwordExpirationJob.inc:84 -#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:347 -#: ../help/help.inc:384 +#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:357 +#: ../help/help.inc:394 msgid "Reply-to address" msgstr "Antwort-An Adresse" -#: ../templates/config/confmain.php:618 +#: ../templates/config/confmain.php:620 msgid "Reply-to address for password mails is invalid." msgstr "Antwort-An Adresse für Passwortmails ist ungültig." @@ -13681,8 +13700,8 @@ msgid "Reverse DNS entries (\"PTR\" records)" msgstr "Reverse-DNS-Einträge (\"PTR\"-Einträge)" #: ../lib/modules/ddns.inc:105 ../lib/modules/ddns.inc:113 -#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:395 -#: ../lib/modules/ddns.inc:423 +#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:391 +#: ../lib/modules/ddns.inc:419 msgid "Reverse zone name" msgstr "Namen der Reverse-Zone" @@ -13729,9 +13748,9 @@ msgstr "Raum" #: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:413 #: ../lib/modules/inetOrgPerson.inc:507 ../lib/modules/inetOrgPerson.inc:705 #: ../lib/modules/inetOrgPerson.inc:1386 ../lib/modules/inetOrgPerson.inc:1389 -#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2051 -#: ../lib/modules/inetOrgPerson.inc:2763 ../lib/modules/inetOrgPerson.inc:4083 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2049 +#: ../lib/modules/inetOrgPerson.inc:2761 ../lib/modules/inetOrgPerson.inc:4080 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Room number" msgstr "Raumnummer" @@ -13784,7 +13803,7 @@ msgstr "Ausführbenutzer" msgid "Run users" msgstr "Ausführbenutzer" -#: ../lib/modules/windowsLDSUser.inc:371 ../lib/modules/windowsUser.inc:460 +#: ../lib/modules/windowsLDSUser.inc:375 ../lib/modules/windowsUser.inc:460 msgid "S.M." msgstr "S.M." @@ -13800,6 +13819,14 @@ msgstr "SIP-URI für einen Echtzeitteilnehmer." msgid "SIP user agent identification." msgstr "SIP-Benutzeragentenidentifizierung." +#: ../help/help.inc:187 +msgid "SMTP password" +msgstr "SMTP-Passwort" + +#: ../help/help.inc:185 +msgid "SMTP user name" +msgstr "SMTP-Benutzername" + #: ../lib/modules/bindDLZ.inc:369 ../lib/modules/bindDLZ.inc:375 #: ../lib/modules/bindDLZ.inc:381 ../lib/modules/bindDLZ.inc:387 #: ../lib/modules/bindDLZ.inc:393 ../lib/modules/bindDLZ.inc:400 @@ -13840,12 +13867,12 @@ msgstr "SSH-Verbindung" msgid "SSH connection established." msgstr "SSH-Verbindung aufgebaut." -#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:718 -#: ../help/help.inc:230 +#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:720 +#: ../help/help.inc:234 msgid "SSH key file" msgstr "SSH Schlüsseldatei" -#: ../templates/config/confmain.php:287 ../help/help.inc:232 +#: ../templates/config/confmain.php:287 ../help/help.inc:236 msgid "SSH key password" msgstr "SSH-Schlüsselpasswort" @@ -13864,7 +13891,7 @@ msgstr "SSH-Schlüssel" msgid "SSL certificate" msgstr "SSL-Zertifikat" -#: ../templates/config/mainmanage.php:323 +#: ../templates/config/mainmanage.php:363 msgid "SSL certificates" msgstr "SSL-Zertifikate" @@ -13877,8 +13904,8 @@ msgstr "SSL-Zertifikate" msgid "SSL port" msgstr "SSL-Port" -#: ../templates/lists/changePassword.php:409 -#: ../templates/lists/changePassword.php:446 +#: ../templates/lists/changePassword.php:413 +#: ../templates/lists/changePassword.php:450 msgid "Samba" msgstr "Samba" @@ -13897,14 +13924,14 @@ msgstr "Samba 3 Domänen-SID ist ungültig!" msgid "Samba 3 domain entries" msgstr "Samba 3 Domäneneinträge" -#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2152 +#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2206 msgid "Samba ID pool" msgstr "Samba-ID-Pool" -#: ../lib/modules/posixGroup.inc:463 ../lib/modules/posixGroup.inc:574 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixAccount.inc:121 -#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2199 -#: ../lib/modules/posixAccount.inc:2270 +#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixGroup.inc:575 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:121 +#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2253 +#: ../lib/modules/posixAccount.inc:2324 msgid "Samba ID pool DN" msgstr "DN des Samba-ID-Pools" @@ -13973,7 +14000,7 @@ msgstr "Samstag" #: ../templates/profedit/profilepage.php:242 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1120 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1124 -#: ../lib/modules/inetOrgPerson.inc:3172 ../lib/modules/customFields.inc:4409 +#: ../lib/modules/inetOrgPerson.inc:3170 ../lib/modules/customFields.inc:4409 #: ../lib/modules.inc:1293 msgid "Save" msgstr "Speichern" @@ -14012,23 +14039,27 @@ msgstr "Schema-Test" #: ../lib/modules/eduPerson.inc:91 ../lib/modules/eduPerson.inc:95 #: ../lib/modules/eduPerson.inc:174 ../lib/modules/eduPerson.inc:232 -#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:547 +#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:541 msgid "Scoped affiliations" msgstr "Zugehörigkeitsbereiche" +#: ../templates/config/mainmanage.php:322 +msgid "Screen" +msgstr "Bildschirm" + #: ../help/help.inc:105 msgid "Script path" msgstr "Scriptpfad" -#: ../templates/config/confmain.php:669 +#: ../templates/config/confmain.php:671 msgid "Script path is invalid!" msgstr "Scriptpfad ist ungültig!" -#: ../templates/config/confmain.php:706 +#: ../templates/config/confmain.php:708 msgid "Script rights are invalid!" msgstr "Skriptrechte sind ungültig!" -#: ../templates/config/confmain.php:672 +#: ../templates/config/confmain.php:674 msgid "Script server is invalid!" msgstr "Scriptserver ist ungültig!" @@ -14037,7 +14068,7 @@ msgid "Script servers" msgstr "Scriptserver" #: ../templates/tools/serverInfo.php:272 ../templates/tools/serverInfo.php:348 -#: ../templates/config/mainmanage.php:479 +#: ../templates/config/mainmanage.php:519 #: ../templates/3rdParty/pla/lib/QueryRender.php:60 #: ../templates/3rdParty/pla/lib/QueryRender.php:165 #: ../templates/3rdParty/pla/lib/ds_ldap_pla.php:577 @@ -14052,8 +14083,8 @@ msgstr "Suchergebnisse" #: ../lib/modules/dhcp_settings.inc:203 ../lib/modules/dhcp_settings.inc:207 #: ../lib/modules/dhcp_settings.inc:226 ../lib/modules/dhcp_settings.inc:235 -#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:606 -#: ../lib/modules/dhcp_settings.inc:712 +#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:598 +#: ../lib/modules/dhcp_settings.inc:704 msgid "Search domains" msgstr "Suchdomänen" @@ -14061,7 +14092,7 @@ msgstr "Suchdomänen" #: ../templates/3rdParty/pla/lib/QueryRender.php:135 #: ../templates/3rdParty/pla/lib/export_functions.php:201 #: ../templates/3rdParty/pla/htdocs/export_form.php:81 ../lib/export.inc:256 -#: ../help/help.inc:371 +#: ../help/help.inc:381 msgid "Search filter" msgstr "Suchfilter" @@ -14081,11 +14112,11 @@ msgid "Search tree suffix for users" msgstr "Suche Benutzer im Suffix für Baumansicht" #: ../templates/config/confmain.php:504 -#: ../templates/selfService/adminMain.php:525 ../help/help.inc:326 +#: ../templates/selfService/adminMain.php:525 ../help/help.inc:336 msgid "Secret key" msgstr "Geheimer Schlüssel" -#: ../templates/selfService/adminMain.php:560 ../help/help.inc:320 +#: ../templates/selfService/adminMain.php:560 ../help/help.inc:330 msgid "Secure login" msgstr "Login schützen" @@ -14124,7 +14155,7 @@ msgstr "" msgid "Security questions" msgstr "Sicherheitsfragen" -#: ../templates/config/mainmanage.php:310 ../templates/config/confmain.php:421 +#: ../templates/config/mainmanage.php:350 ../templates/config/confmain.php:421 msgid "Security settings" msgstr "Sicherheitseinstellungen" @@ -14132,7 +14163,7 @@ msgstr "Sicherheitseinstellungen" msgid "See also" msgstr "Siehe auch" -#: ../lib/account.inc:1005 +#: ../lib/account.inc:1009 msgid "See the manual for instructions to solve this problem." msgstr "Bitte lesen Sie das Handbuch um dieses Problem zu lösen." @@ -14171,10 +14202,10 @@ msgstr "" msgid "Select user" msgstr "Benutzer wählen" -#: ../lib/modules/windowsLDSUser.inc:1241 ../lib/modules/posixAccount.inc:1781 -#: ../lib/modules/posixAccount.inc:1812 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1836 +#: ../lib/modules/posixAccount.inc:1867 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Selected groups" msgstr "Gewählte Gruppen" @@ -14187,7 +14218,7 @@ msgstr "Ausgewählte Module" msgid "Selected roles" msgstr "Ausgewählte Rollen" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Selected users" msgstr "Ausgewählte Benutzer" @@ -14227,10 +14258,10 @@ msgstr "Hinweismail senden" msgid "Send password via mail" msgstr "Passwort per mail senden" -#: ../templates/lists/changePassword.php:320 -#: ../templates/lists/changePassword.php:364 +#: ../templates/lists/changePassword.php:324 +#: ../templates/lists/changePassword.php:368 #: ../templates/config/confmain.php:345 ../lib/modules.inc:1144 -#: ../help/help.inc:264 +#: ../help/help.inc:274 msgid "Send via mail" msgstr "Per mail senden" @@ -14277,7 +14308,7 @@ msgstr "" "Sendet das alte Passwort zusammen mit dem neuen Passwort wenn der Benutzer " "das Passwort ändert." -#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:265 +#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:275 msgid "" "Sends the password to the user via mail. Please edit your LAM server profile " "to setup the mail settings." @@ -14285,7 +14316,7 @@ msgstr "" "Sendet dem Benutzer das Passwort via email. Bitte editieren Sie Ihr LAM " "Serverprofil um die Maileinstellungen zu ändern." -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/selfService2Factor.php:168 #: ../templates/login2Factor.php:154 ../lib/types/host.inc:102 #: ../lib/env.inc:157 ../lib/modules/device.inc:68 ../lib/modules/device.inc:91 @@ -14319,7 +14350,7 @@ msgstr "Server" msgid "Server address" msgstr "Serveradresse" -#: ../templates/config/confmain.php:564 +#: ../templates/config/confmain.php:563 #: ../templates/selfService/adminMain.php:246 msgid "Server address is invalid!" msgstr "Die Server-Adresse ist ungültig!" @@ -14363,7 +14394,7 @@ msgstr "" msgid "Services (\"SRV\" records)" msgstr "Dienste (\"SRV\"-Einträge)" -#: ../templates/config/mainmanage.php:312 ../help/help.inc:154 +#: ../templates/config/mainmanage.php:352 ../help/help.inc:154 msgid "Session timeout" msgstr "Zeitbeschränkung für Sitzung" @@ -14399,7 +14430,7 @@ msgstr "Auch für Windows setzen" msgid "Set password" msgstr "Passwort setzen" -#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2303 +#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2357 msgid "Set primary group as memberUid" msgstr "Setze primäre Gruppe als memberUid" @@ -14413,7 +14444,7 @@ msgstr "Profilpasswort setzen" msgid "Set random password" msgstr "Zufälliges Passwort setzen" -#: ../templates/lists/changePassword.php:350 +#: ../templates/lists/changePassword.php:354 msgid "Set specific password" msgstr "Eigenes Passwort setzen" @@ -14437,7 +14468,7 @@ msgstr "" msgid "Set to \"true\" to create the mailbox." msgstr "Setzen Sie den Wert auf \"true\" um das Postfach zu erstellen." -#: ../help/help.inc:241 +#: ../help/help.inc:251 msgid "Set to true to overwrite an existing LDAP entry." msgstr "" "Bei \"true\" wird ein bereits existierender LDAP-Eintrag überschrieben." @@ -14466,7 +14497,7 @@ msgstr "" msgid "Sets the delivery mode (e.g. disable mail forwarding)." msgstr "Damit setzen Sie den Liefermodus (z.B. keine Weiterleitung)." -#: ../lib/modules/posixGroup.inc:435 +#: ../lib/modules/posixGroup.inc:436 msgid "Sets the group password." msgstr "Setzt das Gruppenpasswort." @@ -14477,7 +14508,7 @@ msgstr "" "Setzt die Präferenz für den Mailserver. Kleinere Werte haben höhere " "Priorität." -#: ../help/help.inc:197 +#: ../help/help.inc:201 msgid "Sets this account type to read-only." msgstr "Diesen Accounttyp schreibschützen." @@ -14512,7 +14543,7 @@ msgstr "" #: ../lib/types/user.inc:366 ../lib/types/user.inc:369 #: ../lib/types/user.inc:1076 ../lib/types/user.inc:1079 #: ../lib/modules/shadowAccount.inc:90 ../lib/modules/shadowAccount.inc:875 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/shadowAccount.inc:1072 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/shadowAccount.inc:1071 msgid "Shadow" msgstr "Shadow" @@ -14608,16 +14639,16 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/update_confirm.php:55 #: ../templates/3rdParty/pla/htdocs/create_confirm.php:81 -#: ../lib/2factor.inc:565 +#: ../lib/2factor.inc:564 msgid "Skip" msgstr "Überspringen" -#: ../lib/modules/quota.inc:712 ../lib/modules/systemQuotas.inc:371 +#: ../lib/modules/quota.inc:775 ../lib/modules/systemQuotas.inc:371 msgid "Soft block" msgstr "Weiches Block-Limit" -#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:564 ../lib/modules/systemQuotas.inc:126 +#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:624 ../lib/modules/systemQuotas.inc:126 msgid "Soft block limit" msgstr "Weiches Block-Limit" @@ -14625,7 +14656,7 @@ msgstr "Weiches Block-Limit" msgid "Soft block limit." msgstr "Weiches Block-Limit" -#: ../lib/modules/quota.inc:714 ../lib/modules/systemQuotas.inc:373 +#: ../lib/modules/quota.inc:777 ../lib/modules/systemQuotas.inc:373 msgid "Soft inode" msgstr "Weiches Inode-Limit" @@ -14633,8 +14664,8 @@ msgstr "Weiches Inode-Limit" msgid "Soft inode (files) limit." msgstr "Weiches Inode-Limit (Dateien)." -#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:570 ../lib/modules/systemQuotas.inc:130 +#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:630 ../lib/modules/systemQuotas.inc:130 msgid "Soft inode limit" msgstr "Weiches Inode-Limit" @@ -14669,7 +14700,7 @@ msgstr "" msgid "Sorry this help number ({bold}%s{endbold}) is not available." msgstr "Diese Hilfenummer ist leider nicht verfügbar: {bold}%s{endbold}" -#: ../lib/lists.inc:420 +#: ../lib/lists.inc:419 msgid "Sort sequence" msgstr "Sortierreihenfolge" @@ -14715,7 +14746,7 @@ msgstr "" "Legt fest ob LAM Referrals automatisch folgen soll. Aktivieren Sie diese " "Funktion nur wenn Sie Referrals in Ihrem LDAP-Verzeichnis verwenden." -#: ../help/help.inc:350 +#: ../help/help.inc:360 msgid "" "Specifies if password mails may be sent to mail addresses other than the " "user's LDAP mail address." @@ -14723,11 +14754,11 @@ msgstr "" "Legt fest ob Passwortmails auch an EMail-Adressen gesendet werden dürfen die " "für diesen Benutzer nicht im LDAP-Verzeichnis stehen." -#: ../help/help.inc:346 +#: ../help/help.inc:356 msgid "Specifies if the mail should be sent as text or HTML." msgstr "Definiert, ob die email als Text oder HTML versendet wird." -#: ../help/help.inc:175 +#: ../help/help.inc:173 msgid "" "Specifies if the password must not contain 3 or more characters of the user/" "first/last name." @@ -14735,7 +14766,7 @@ msgstr "" "Legt fest ob das Passwort nicht mehr als 2 Zeichen des Benutzer-/Vor-/" "Nachnamens enthalten darf." -#: ../help/help.inc:173 +#: ../help/help.inc:171 msgid "Specifies if the password must not contain the user name." msgstr "Legt fest ob das Passwort den Benutzernamen nicht enthalten darf." @@ -14842,7 +14873,7 @@ msgid "" "password." msgstr "Bestimmt die minimale Passwortlänge." -#: ../help/help.inc:171 +#: ../help/help.inc:169 msgid "Specifies the number of above password rules that must be fulfilled." msgstr "" "Legt die Anzahl der obigen Passwortregeln fest, die erfüllt sein müssen." @@ -14963,9 +14994,9 @@ msgstr "Standard LDAP Suchfilter. Beispiel: (&(sn=Miller)(givenName=Steve))" msgid "Start time" msgstr "Startzeit" -#: ../lib/modules/windowsLDSUser.inc:173 ../lib/modules/windowsLDSUser.inc:405 -#: ../lib/modules/windowsLDSUser.inc:661 ../lib/modules/windowsLDSUser.inc:873 -#: ../lib/modules/windowsLDSUser.inc:1816 ../lib/modules/windowsUser.inc:191 +#: ../lib/modules/windowsLDSUser.inc:173 ../lib/modules/windowsLDSUser.inc:409 +#: ../lib/modules/windowsLDSUser.inc:665 ../lib/modules/windowsLDSUser.inc:880 +#: ../lib/modules/windowsLDSUser.inc:1834 ../lib/modules/windowsUser.inc:191 #: ../lib/modules/windowsUser.inc:494 ../lib/modules/windowsUser.inc:785 #: ../lib/modules/windowsUser.inc:886 ../lib/modules/windowsUser.inc:983 #: ../lib/modules/windowsUser.inc:1174 ../lib/modules/windowsUser.inc:2865 @@ -14973,9 +15004,9 @@ msgstr "Startzeit" #: ../lib/modules/inetOrgPerson.inc:453 ../lib/modules/inetOrgPerson.inc:495 #: ../lib/modules/inetOrgPerson.inc:725 ../lib/modules/inetOrgPerson.inc:729 #: ../lib/modules/inetOrgPerson.inc:1295 ../lib/modules/inetOrgPerson.inc:1298 -#: ../lib/modules/inetOrgPerson.inc:1988 ../lib/modules/inetOrgPerson.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:2789 ../lib/modules/inetOrgPerson.inc:4079 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2037 +#: ../lib/modules/inetOrgPerson.inc:2787 ../lib/modules/inetOrgPerson.inc:4076 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "State" msgstr "Bundesland" @@ -14999,21 +15030,21 @@ msgstr "Status" msgid "Step %s of %s" msgstr "Schritt %s von %s" -#: ../lib/modules/windowsLDSUser.inc:347 ../lib/modules/windowsUser.inc:436 +#: ../lib/modules/windowsLDSUser.inc:351 ../lib/modules/windowsUser.inc:436 #: ../lib/modules/inetOrgPerson.inc:238 msgid "Steve" msgstr "Hans" -#: ../lib/modules/windowsLDSUser.inc:359 ../lib/modules/windowsLDSUser.inc:365 -#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2427 +#: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:369 +#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2481 #: ../lib/modules/windowsUser.inc:448 ../lib/modules/windowsUser.inc:454 -#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2196 -#: ../lib/modules/inetOrgPerson.inc:2221 +#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2194 +#: ../lib/modules/inetOrgPerson.inc:2219 #: ../lib/modules/asteriskVoicemail.inc:173 msgid "Steve Miller" msgstr "Hans Müller" -#: ../lib/modules/posixAccount.inc:2435 +#: ../lib/modules/posixAccount.inc:2489 msgid "Steve Miller,Room 2.14,123-123-1234,123-123-1234" msgstr "Hans Müller,Raum 2.14,123-123-1234,123-123-1234" @@ -15030,8 +15061,8 @@ msgstr "" "empfohlen." #: ../lib/types/user.inc:115 ../lib/modules/windowsLDSUser.inc:177 -#: ../lib/modules/windowsLDSUser.inc:381 ../lib/modules/windowsLDSUser.inc:662 -#: ../lib/modules/windowsLDSUser.inc:869 ../lib/modules/windowsLDSUser.inc:1817 +#: ../lib/modules/windowsLDSUser.inc:385 ../lib/modules/windowsLDSUser.inc:666 +#: ../lib/modules/windowsLDSUser.inc:876 ../lib/modules/windowsLDSUser.inc:1835 #: ../lib/modules/windowsUser.inc:195 ../lib/modules/windowsUser.inc:470 #: ../lib/modules/windowsUser.inc:781 ../lib/modules/windowsUser.inc:887 #: ../lib/modules/windowsUser.inc:982 ../lib/modules/windowsUser.inc:1170 @@ -15040,9 +15071,9 @@ msgstr "" #: ../lib/modules/inetOrgPerson.inc:307 ../lib/modules/inetOrgPerson.inc:483 #: ../lib/modules/inetOrgPerson.inc:598 ../lib/modules/inetOrgPerson.inc:602 #: ../lib/modules/inetOrgPerson.inc:1259 ../lib/modules/inetOrgPerson.inc:1262 -#: ../lib/modules/inetOrgPerson.inc:1970 ../lib/modules/inetOrgPerson.inc:2027 -#: ../lib/modules/inetOrgPerson.inc:2698 ../lib/modules/inetOrgPerson.inc:4075 -#: ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1968 ../lib/modules/inetOrgPerson.inc:2025 +#: ../lib/modules/inetOrgPerson.inc:2696 ../lib/modules/inetOrgPerson.inc:4072 +#: ../lib/modules/inetOrgPerson.inc:4118 msgid "Street" msgstr "Straße" @@ -15068,8 +15099,8 @@ msgstr "Untergruppen" #: ../lib/modules/selfRegistration.inc:218 #: ../lib/modules/passwordSelfReset.inc:123 #: ../lib/modules/passwordSelfReset.inc:664 -#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:338 -#: ../help/help.inc:388 +#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:348 +#: ../help/help.inc:398 msgid "Subject" msgstr "Betreff" @@ -15082,14 +15113,14 @@ msgstr "Absenden" #: ../lib/types/dhcp.inc:97 ../lib/modules/dhcp_settings.inc:147 #: ../lib/modules/dhcp_settings.inc:214 ../lib/modules/dhcp_settings.inc:230 -#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:583 -#: ../lib/modules/dhcp_settings.inc:719 +#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:575 +#: ../lib/modules/dhcp_settings.inc:711 msgid "Subnet" msgstr "Subnetz" #: ../lib/modules/dhcp_settings.inc:187 ../lib/modules/dhcp_settings.inc:222 #: ../lib/modules/dhcp_settings.inc:242 ../lib/modules/dhcp_settings.inc:315 -#: ../lib/modules/dhcp_settings.inc:635 ../lib/modules/dhcp_settings.inc:716 +#: ../lib/modules/dhcp_settings.inc:627 ../lib/modules/dhcp_settings.inc:708 msgid "Subnet mask" msgstr "Subnetzmaske" @@ -15136,12 +15167,12 @@ msgstr "" msgid "Suffix" msgstr "Suffix" -#: ../lib/modules/posixGroup.inc:454 ../lib/modules/posixGroup.inc:583 +#: ../lib/modules/posixGroup.inc:455 ../lib/modules/posixGroup.inc:584 msgid "Suffix for GID/group name check" msgstr "Suffix für GID/Gruppennamenprüfung" -#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2214 -#: ../lib/modules/posixAccount.inc:2285 +#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2268 +#: ../lib/modules/posixAccount.inc:2339 msgid "Suffix for UID/user name check" msgstr "Suffix für UID/Benutzernamenprüfung" @@ -15204,11 +15235,11 @@ msgstr "Unix-Passwort mit Windows synchronisieren" msgid "Sync Unix to Windows" msgstr "Unix nach Windows synchronisieren" -#: ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:1921 msgid "Sync Unix to group of names" msgstr "Unix nach Namensgruppen synchronisieren" -#: ../lib/modules/posixAccount.inc:1880 +#: ../lib/modules/posixAccount.inc:1935 msgid "Sync Windows to Unix" msgstr "Windows nach Unix synchronisieren" @@ -15216,12 +15247,12 @@ msgstr "Windows nach Unix synchronisieren" msgid "Sync fields with page layout" msgstr "Felder mit Seitenlayout synchronisieren" -#: ../lib/modules/posixGroup.inc:331 ../lib/modules/posixGroup.inc:340 +#: ../lib/modules/posixGroup.inc:332 ../lib/modules/posixGroup.inc:341 #, php-format msgid "Sync from %s" msgstr "Aus %s synchronisieren" -#: ../lib/modules/posixAccount.inc:1870 +#: ../lib/modules/posixAccount.inc:1925 msgid "Sync group of names to Unix" msgstr "Namensgruppen nach Unix synchronisieren" @@ -15229,7 +15260,7 @@ msgstr "Namensgruppen nach Unix synchronisieren" msgid "Sync group of names to Windows" msgstr "Namensgruppen nach Windows synchronisieren" -#: ../lib/modules/posixAccount.inc:1861 ../lib/modules/posixAccount.inc:2229 +#: ../lib/modules/posixAccount.inc:1916 ../lib/modules/posixAccount.inc:2283 #: ../lib/modules/windowsUser.inc:1863 ../lib/modules/windowsUser.inc:3732 msgid "Sync groups" msgstr "Gruppen synchronisieren" @@ -15252,7 +15283,7 @@ msgstr "Syntax" msgid "System administrator" msgstr "Systemadministrator" -#: ../templates/config/mainmanage.php:412 +#: ../templates/config/mainmanage.php:452 msgid "System logging" msgstr "Systemeigenes Logging" @@ -15260,6 +15291,11 @@ msgstr "Systemeigenes Logging" msgid "TLS cannot be combined with ldaps://." msgstr "TLS kann nicht mit ldaps:// kombiniert werden." +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:342 ../help/help.inc:244 +msgid "TO address" +msgstr "TO-Adresse" + #: ../lib/modules/bindDLZ.inc:130 ../lib/modules/bindDLZ.inc:442 #: ../lib/modules/bindDLZ.inc:447 ../lib/modules/bindDLZ.inc:454 #: ../lib/modules/bindDLZ.inc:578 @@ -15271,8 +15307,8 @@ msgstr "TXT-Eintrag" msgid "TXT records" msgstr "TXT-Einträge" -#: ../lib/passwordExpirationJob.inc:498 ../lib/passwordExpirationJob.inc:532 -#: ../help/help.inc:418 +#: ../lib/passwordExpirationJob.inc:496 ../lib/passwordExpirationJob.inc:530 +#: ../help/help.inc:428 msgid "Target DN" msgstr "Ziel-DN" @@ -15298,11 +15334,11 @@ msgstr "Zielserverprofil" msgid "Technical name" msgstr "Technischer Name" -#: ../templates/lists/changePassword.php:287 ../lib/types/user.inc:116 +#: ../templates/lists/changePassword.php:291 ../lib/types/user.inc:116 #: ../lib/types/user.inc:220 ../lib/modules/windowsLDSUser.inc:181 -#: ../lib/modules/windowsLDSUser.inc:423 ../lib/modules/windowsLDSUser.inc:663 -#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:881 -#: ../lib/modules/windowsLDSUser.inc:1818 ../lib/modules/windowsUser.inc:199 +#: ../lib/modules/windowsLDSUser.inc:427 ../lib/modules/windowsLDSUser.inc:667 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:888 +#: ../lib/modules/windowsLDSUser.inc:1836 ../lib/modules/windowsUser.inc:199 #: ../lib/modules/windowsUser.inc:518 ../lib/modules/windowsUser.inc:888 #: ../lib/modules/windowsUser.inc:979 ../lib/modules/windowsUser.inc:1034 #: ../lib/modules/windowsUser.inc:1183 ../lib/modules/windowsUser.inc:2867 @@ -15310,24 +15346,24 @@ msgstr "Technischer Name" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:347 #: ../lib/modules/inetOrgPerson.inc:510 ../lib/modules/inetOrgPerson.inc:630 #: ../lib/modules/inetOrgPerson.inc:634 ../lib/modules/inetOrgPerson.inc:1401 -#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1977 -#: ../lib/modules/inetOrgPerson.inc:2054 ../lib/modules/inetOrgPerson.inc:2633 -#: ../lib/modules/inetOrgPerson.inc:4084 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1975 +#: ../lib/modules/inetOrgPerson.inc:2052 ../lib/modules/inetOrgPerson.inc:2631 +#: ../lib/modules/inetOrgPerson.inc:4081 ../lib/modules/inetOrgPerson.inc:4124 msgid "Telephone number" msgstr "Telefonnummer" -#: ../lib/modules/windowsLDSUser.inc:535 ../lib/modules/windowsUser.inc:718 +#: ../lib/modules/windowsLDSUser.inc:539 ../lib/modules/windowsUser.inc:718 #: ../lib/modules/inetOrgPerson.inc:285 msgid "Temp" msgstr "Aushilfskraft" -#: ../lib/modules/windowsLDSUser.inc:377 ../lib/modules/windowsUser.inc:466 +#: ../lib/modules/windowsLDSUser.inc:381 ../lib/modules/windowsUser.inc:466 #: ../lib/modules/pykotaUser.inc:737 ../lib/modules/inetOrgPerson.inc:261 msgid "Temp, contract till December" msgstr "Aushilfskraft, Vertrag bis Dezember" #: ../templates/config/profmanage.php:223 -#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:200 +#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:204 msgid "Template" msgstr "Vorlage" @@ -15357,8 +15393,8 @@ msgstr "Tests" #: ../lib/modules/passwordSelfReset.inc:127 #: ../lib/modules/passwordSelfReset.inc:137 #: ../lib/modules/passwordSelfReset.inc:666 -#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:340 -#: ../help/help.inc:392 +#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:350 +#: ../help/help.inc:402 msgid "Text" msgstr "Text" @@ -15416,7 +15452,7 @@ msgstr "" "Dies sind die DNs der Verzeichniseinträge, die die organisatorischen " "Einheiten der Person repräsentieren." -#: ../lib/modules/posixGroup.inc:451 +#: ../lib/modules/posixGroup.inc:452 msgid "" "The ID of this group was changed. You can update all user and host entries " "to the new group ID." @@ -15428,18 +15464,18 @@ msgstr "" msgid "The IMAP admin password is empty." msgstr "Das Passwort des IMAP-Admins ist leer." -#: ../templates/config/mainmanage.php:126 -#: ../templates/config/mainmanage.php:149 ../lib/modules/bindDLZ.inc:582 +#: ../templates/config/mainmanage.php:137 +#: ../templates/config/mainmanage.php:160 ../lib/modules/bindDLZ.inc:582 #: ../lib/modules/bindDLZ.inc:583 #, php-format msgid "The IP address %s is invalid!" msgstr "Die IP-Adresse %s ist ungültig!" -#: ../lib/modules/fixed_ip.inc:475 +#: ../lib/modules/fixed_ip.inc:473 msgid "The IP address does not match the subnet." msgstr "Die IP-Adressen passen nicht zum Subnetz." -#: ../lib/modules/fixed_ip.inc:478 +#: ../lib/modules/fixed_ip.inc:476 msgid "The IP address is already in use." msgstr "Diese IP-Adresse wird bereits verwendet." @@ -15447,10 +15483,10 @@ msgstr "Diese IP-Adresse wird bereits verwendet." #: ../lib/modules/asteriskAccount.inc:572 #: ../lib/modules/asteriskAccount.inc:573 ../lib/modules/ppolicyUser.inc:100 #: ../lib/modules/bindDLZXfr.inc:95 ../lib/modules/bindDLZXfr.inc:96 -#: ../lib/modules/range.inc:499 ../lib/modules/range.inc:516 -#: ../lib/modules/range.inc:576 ../lib/modules/range.inc:593 +#: ../lib/modules/range.inc:498 ../lib/modules/range.inc:515 +#: ../lib/modules/range.inc:575 ../lib/modules/range.inc:592 #: ../lib/modules/freeRadius.inc:317 ../lib/modules/freeRadius.inc:318 -#: ../lib/modules/fixed_ip.inc:470 +#: ../lib/modules/fixed_ip.inc:468 msgid "The IP address is invalid." msgstr "Diese IP-Adresse ist ungültig." @@ -15474,8 +15510,8 @@ msgstr "" "Die IP-Adresse der Netbios-Nameserver (z.B. \"123.123.123.123, " "123.123.123.124\")." -#: ../lib/modules/range.inc:503 ../lib/modules/range.inc:518 -#: ../lib/modules/range.inc:582 ../lib/modules/range.inc:596 +#: ../lib/modules/range.inc:502 ../lib/modules/range.inc:517 +#: ../lib/modules/range.inc:581 ../lib/modules/range.inc:595 msgid "The IP does not match the subnet." msgstr "Die IP-Adresse passt nicht zum Subnetz." @@ -15495,19 +15531,19 @@ msgstr "Die MAC-Adresse des PCs. Beispiel: 11:22:33:44:55:aa" msgid "The Netbios server is invalid." msgstr "Der Netbios-Server ist ungültig." -#: ../lib/modules/fixed_ip.inc:440 +#: ../lib/modules/fixed_ip.inc:438 msgid "The PC name may not be longer than 20 characters." msgstr "Der PC-Name darf maximal 20 Zeichen lang sein." -#: ../lib/modules/fixed_ip.inc:449 +#: ../lib/modules/fixed_ip.inc:447 msgid "The PC name may only contain A-Z, a-z and 0-9." msgstr "Der PC-Name darf nur A-Z, a-z und 0-9 enthalten." -#: ../lib/modules/fixed_ip.inc:443 +#: ../lib/modules/fixed_ip.inc:441 msgid "The PC name needs to be at least 2 characters long." msgstr "Der PC-Name muss mindestens zwei Zeichen lang sein." -#: ../help/help.inc:261 +#: ../help/help.inc:271 msgid "" "The PDF structure defines what information is exported as PDF file and how " "the pages are structured. You can manage the PDF structures in the PDF " @@ -15542,7 +15578,7 @@ msgstr "" "setzen Sie die minimalen UID-Nummern auf den selben Wert oder verwenden Sie " "unabhängige Bereiche." -#: ../templates/config/mainmanage.php:199 +#: ../templates/config/mainmanage.php:210 msgid "The URL for the external password check is invalid." msgstr "Die URL für die externe Passwortprüfung ist ungültig." @@ -15578,7 +15614,7 @@ msgstr "Der Accounttyp ist ungültig." msgid "The account will be locked after this date." msgstr "Der Account wird nach diesem Datum gesperrt." -#: ../help/help.inc:245 ../help/help.inc:253 +#: ../help/help.inc:255 ../help/help.inc:263 msgid "The account will be saved under this LDAP suffix." msgstr "Der Account wird unter diesem LDAP-Suffix gespeichert." @@ -15615,7 +15651,7 @@ msgstr "" "Das Attribut %s wird von Ihrem LDAP-Server nicht für die Objektklasse %s " "unterstützt." -#: ../help/help.inc:333 +#: ../help/help.inc:343 msgid "" "The attribute (e.g. \"uid\") that contains the user name for the 2-factor " "service." @@ -15637,7 +15673,7 @@ msgstr "Der Attributwert existiert nicht" msgid "The caller ID format is invalid." msgstr "Die Anrufer-ID ist ungültig." -#: ../templates/selfService/selfServiceLogin.php:116 +#: ../templates/selfService/selfServiceLogin.php:117 #: ../lib/modules/selfRegistration.inc:529 #: ../lib/modules/passwordSelfReset.inc:1139 msgid "The captcha was wrong." @@ -15651,7 +15687,8 @@ msgstr "Die Klassennamen enthalten ungültige Werte.." msgid "The class names may only contain ASCII characters." msgstr "Der Klassenname darf nur ASCII-Zeichen enthalten." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "The config file is not writable." msgstr "Die Konfigurationsdatei ist nicht schreibbar." @@ -15714,7 +15751,7 @@ msgstr "Der Domänenname des Subnetzes." msgid "The email address is invalid." msgstr "Die eMail-Adresse ist ungültig." -#: ../lib/modules/range.inc:105 +#: ../lib/modules/range.inc:104 msgid "The ending IP address of the range." msgstr "Die letzte IP-Adresse des Adressbereichs." @@ -15757,7 +15794,7 @@ msgstr "Der Name des Eintrags." msgid "The environment name may only contain ASCII characters." msgstr "Der Umgebungsname darf nur ASCII-Zeichen enthalten." -#: ../help/help.inc:395 +#: ../help/help.inc:405 msgid "" "The expiration date can be added with @@EXPIRE_DATE_DDMMYYYY@@ or " "@@EXPIRE_DATE_YYYYMMDD@@." @@ -15779,11 +15816,11 @@ msgstr "" msgid "The expiration time \"%s\" must be a number." msgstr "Die Ablaufzeit \"%s\" muss eine Zahl sein." -#: ../help/help.inc:419 +#: ../help/help.inc:429 msgid "The expired accounts will be moved to this DN." msgstr "Die abgelaufenen Konten werden zu dieser DN verschoben." -#: ../help/help.inc:370 +#: ../help/help.inc:380 msgid "The export will read entries of this DN." msgstr "Der Export umfasst Einträge dieser DN." @@ -15820,7 +15857,7 @@ msgstr "" "Die hochgeladene Datei ist zu groß. Bitte prüfen Sie den Parameter " "upload_max_size in der php.ini." -#: ../lib/modules/posixGroup.inc:473 +#: ../lib/modules/posixGroup.inc:474 msgid "" "The filter can be any regular expression, e.g. \".*\" = any characters, \"^" "\" = line start, \"$\" = line end." @@ -15876,7 +15913,7 @@ msgstr "Der komplette DN des neuen Eintrags" msgid "The full name is invalid." msgstr "Der Wert für den vollständigen Namen ist ungültig." -#: ../templates/login.php:527 +#: ../templates/login.php:537 msgid "The given user name matches multiple LDAP entries." msgstr "Der angegebene Benutzername passt auf mehrere LDAP-Einträge." @@ -15938,7 +15975,7 @@ msgstr "Der Hostname ist ungültig." msgid "The initials of the user's first names." msgstr "Die Initialen der Vornamen des Benutzers." -#: ../help/help.inc:368 +#: ../help/help.inc:378 msgid "The input data must be formatted in LDIF format." msgstr "Die Eingabe muss LDIF-formatiert sein." @@ -16013,7 +16050,7 @@ msgstr "" "Die angegebenen IPs wurden in DHCP gefunden. Dazu wurde die MAC-Adresse des " "Hosts verwendet." -#: ../templates/config/mainmanage.php:183 +#: ../templates/config/mainmanage.php:194 msgid "" "The log file is empty or contains invalid characters! Valid characters are: " "a-z, A-Z, 0-9, /, \\, ., :, _ and -." @@ -16052,11 +16089,11 @@ msgstr "" "Der Text für die Bestätigungsmails muss den Rücksetzlink @@resetLink@@ " "enthalten." -#: ../help/help.inc:393 +#: ../help/help.inc:403 msgid "The mail text of all mails." msgstr "Der Text aller emails." -#: ../help/help.inc:341 +#: ../help/help.inc:351 msgid "The mail text of all password mails." msgstr "Der Text für alle Passwortmails." @@ -16210,7 +16247,7 @@ msgstr "Die Objektklasse %s wird von Ihrem LDAP-Server nicht unterstützt." msgid "The office name of the user (e.g. YourCompany, Human Resources)." msgstr "Der Büroname des Benutzers (z.B. IhreFirma, Personalabteilung)." -#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1935 +#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1933 msgid "The operation was stopped because of the above errors." msgstr "Die Operation wurde aufgrund obiger Fehler gestoppt." @@ -16334,15 +16371,15 @@ msgstr "" "Dies ist das Passwort Ihres IMAP-Administrators. Der Benutzername für den " "Administrator wird im LAM-Serverprofil gespeichert." -#: ../templates/lists/changePassword.php:647 ../lib/modules.inc:1206 +#: ../templates/lists/changePassword.php:651 ../lib/modules.inc:1206 msgid "The password was set to:" msgstr "Das Passwort wurde auf folgenden Wert gesetzt:" -#: ../lib/modules/range.inc:125 +#: ../lib/modules/range.inc:124 msgid "The pool's failover peer." msgstr "Der Ausfallknoten für diesen Pool." -#: ../lib/modules/range.inc:121 +#: ../lib/modules/range.inc:120 msgid "The pool's name." msgstr "Der Name des Pools." @@ -16407,11 +16444,11 @@ msgstr "" msgid "The quota must be entered as a floating point number." msgstr "Der Speicherplatz muss als Dezimalzahl eingegeben werden." -#: ../lib/modules/range.inc:505 ../lib/modules/range.inc:585 +#: ../lib/modules/range.inc:504 ../lib/modules/range.inc:584 msgid "The range conflicts with another range." msgstr "Der Adressbereich steht im Konflikt mit einem anderen Adressbereich." -#: ../lib/modules/range.inc:501 ../lib/modules/range.inc:579 +#: ../lib/modules/range.inc:500 ../lib/modules/range.inc:578 msgid "The range end needs to be greater than the range start." msgstr "Das Ende des Adressbereichs muss größer als der Anfang sein." @@ -16479,7 +16516,7 @@ msgstr "Der Servername \"%s\" ist ungültig." msgid "The source and destination DN are the same." msgstr "Ziel- und Quell-DN sind identisch." -#: ../lib/modules/range.inc:101 +#: ../lib/modules/range.inc:100 msgid "The starting IP address of the range." msgstr "Die IP-Adresse mit der der Adressbereich anfängt." @@ -16501,11 +16538,11 @@ msgstr "Der Straßenname der Benutzeradresse." msgid "The structural object class of the entries." msgstr "Die strukturelle Objektklasse der Einträge." -#: ../help/help.inc:389 +#: ../help/help.inc:399 msgid "The subject of all mails." msgstr "Der Betreff der emails." -#: ../help/help.inc:339 +#: ../help/help.inc:349 msgid "The subject of all password mails." msgstr "Der Betreff aller Passwortmails." @@ -16655,24 +16692,24 @@ msgstr "Die email-Adresse des Benutzers." msgid "The user's fax number." msgstr "Die Faxnummer des Benutzers." -#: ../lib/modules/windowsLDSUser.inc:300 ../lib/modules/windowsUser.inc:377 +#: ../lib/modules/windowsLDSUser.inc:304 ../lib/modules/windowsUser.inc:377 #: ../lib/modules/inetOrgPerson.inc:639 ../lib/modules/inetOrgPerson.inc:643 msgid "The user's mobile number." msgstr "Die Handynummer des Benutzers." -#: ../lib/modules/windowsLDSUser.inc:272 ../lib/modules/windowsLDSUser.inc:276 +#: ../lib/modules/windowsLDSUser.inc:276 ../lib/modules/windowsLDSUser.inc:280 #: ../lib/modules/windowsUser.inc:349 ../lib/modules/windowsUser.inc:353 #: ../lib/modules/inetOrgPerson.inc:771 ../lib/modules/inetOrgPerson.inc:775 msgid "The user's organisation name." msgstr "Der Name der Organisation." -#: ../lib/modules/windowsLDSUser.inc:264 ../lib/modules/windowsLDSUser.inc:268 +#: ../lib/modules/windowsLDSUser.inc:268 ../lib/modules/windowsLDSUser.inc:272 #: ../lib/modules/windowsUser.inc:341 ../lib/modules/windowsUser.inc:345 #: ../lib/modules/inetOrgPerson.inc:763 ../lib/modules/inetOrgPerson.inc:767 msgid "The user's organisational unit." msgstr "Der Name der Organisationseinheit des Benutzers." -#: ../lib/modules/windowsLDSUser.inc:288 ../lib/modules/windowsUser.inc:365 +#: ../lib/modules/windowsLDSUser.inc:292 ../lib/modules/windowsUser.inc:365 #: ../lib/modules/inetOrgPerson.inc:655 ../lib/modules/inetOrgPerson.inc:659 msgid "The user's pager number." msgstr "Die Pagernummer des Benutzers." @@ -16686,7 +16723,7 @@ msgstr "Private Telefonnummer des Benutzers." msgid "The user's telephone number." msgstr "Telefonnummer des Benutzers." -#: ../lib/modules/windowsLDSUser.inc:236 ../lib/modules/windowsUser.inc:313 +#: ../lib/modules/windowsLDSUser.inc:240 ../lib/modules/windowsUser.inc:313 #: ../lib/modules/inetOrgPerson.inc:779 msgid "The user's unique employee number." msgstr "Die eindeutige Personalnummer des Benutzers." @@ -16727,7 +16764,7 @@ msgstr "Es wurden keine Attribute als RDN-Attribut markiert." msgid "The wildcard for the account creation link is @@creationLink@@." msgstr "Der Platzhalter für den Erstellungslink ist @@creationLink@@." -#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:344 +#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:354 msgid "The wildcard for the new password is @@newPassword@@." msgstr "Der Platzhalter für das neue Passwort ist @@newPassword@@." @@ -16740,7 +16777,7 @@ msgstr "Der Platzhalter für den Resetlink ist @@resetLink@@." msgid "There are %s members in group %s:" msgstr "Es sind %s Mitglieder in der Gruppe %s:" -#: ../lib/modules/posixGroup.inc:714 ../lib/modules/sambaGroupMapping.inc:576 +#: ../lib/modules/posixGroup.inc:715 ../lib/modules/sambaGroupMapping.inc:576 msgid "There are still users who have this group as their primary group." msgstr "Es gibt noch Benutzer, deren primäre Gruppe diese Gruppe ist." @@ -16756,7 +16793,7 @@ msgstr "Es gibt bereits einen anderen Benutzer mit dieser Anrufer-ID." msgid "There is already another user with this mailbox name." msgstr "Es gibt bereits einen anderen Benutzer mit diesem Postfach." -#: ../lib/upload.inc:219 +#: ../lib/upload.inc:218 msgid "There were errors while uploading:" msgstr "Beim Upload traten Fehler auf:" @@ -16765,7 +16802,7 @@ msgstr "Beim Upload traten Fehler auf:" msgid "There will be %s updates done with this mass update" msgstr "Es werden %s Änderungen mit dieser Massenänderung durchgeführt" -#: ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:440 msgid "" "These are the minimum and maximum numbers to use for group IDs when creating " "new group accounts. New group accounts will always get the highest number in " @@ -16849,7 +16886,7 @@ msgstr "" "Diese GID-Nummer ist ungültig! Bitte geben Sie eine Nummer ein oder einen " "Gruppennamen." -#: ../help/help.inc:293 +#: ../help/help.inc:303 msgid "" "This HTML code will be placed on top of all self service pages. E.g. you can " "use this to place your custom logo. Any HTML code is permitted." @@ -16862,12 +16899,12 @@ msgstr "" msgid "This MAC address is already in use." msgstr "Diese MAC-Adresse wird bereits verwendet." -#: ../lib/modules/fixed_ip.inc:452 +#: ../lib/modules/fixed_ip.inc:450 #, php-format msgid "This PC name already exists in %s. Use e.g. %s." msgstr "Der PC-Name existiert bereits in %s. Benutzen Sie z.B. %s." -#: ../lib/modules/fixed_ip.inc:446 +#: ../lib/modules/fixed_ip.inc:444 msgid "This PC name already exists." msgstr "Der PC-Name existiert bereits." @@ -16890,7 +16927,7 @@ msgstr "Dieses Attribut ist erforderlich" msgid "This attribute is required for the RDN." msgstr "Dieses Attribut ist für den RDN erforderlich." -#: ../lib/modules/windowsLDSUser.inc:232 ../lib/modules/windowsUser.inc:309 +#: ../lib/modules/windowsLDSUser.inc:236 ../lib/modules/windowsUser.inc:309 #: ../lib/modules/inetOrgPerson.inc:734 msgid "This can be used to specify if the user has a car license." msgstr "" @@ -16984,35 +17021,31 @@ msgstr "Dies ist der Ort des Benutzers." msgid "This document was automatically created by LDAP Account Manager" msgstr "Dieses Dokument wurde von LDAP Account Manager erstellt." -#: ../help/help.inc:407 +#: ../help/help.inc:417 msgid "This email address will be set as BCC address of all mails." msgstr "Diese EMailadresse wird als BCC Adresse für alle emails verwendet." -#: ../help/help.inc:403 +#: ../help/help.inc:413 msgid "This email address will be set as CC address of all mails." msgstr "Diese EMailadresse wird als CC Adresse für alle emails verwendet." -#: ../help/help.inc:385 +#: ../help/help.inc:245 +msgid "This email address will be set as TO address for the mails." +msgstr "Diese EMailadresse wird als TO-Adresse für alle emails verwendet." + +#: ../help/help.inc:395 msgid "This email address will be set as reply-to address of all mails." msgstr "" "Diese EMailadresse wird als Antwort-An Adresse für alle emails verwendet." -#: ../help/help.inc:348 +#: ../help/help.inc:358 msgid "" "This email address will be set as reply-to address of all password mails." msgstr "" "Diese EMailadresse wird als Antwort-An Adresse für alle Passwortmails " "verwendet." -#: ../help/help.inc:381 -msgid "" -"This email address will be set as sender address of all mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"Diese Adresse wird als Absenderadresse für die emails verwendet. Falls leer " -"dann wird die Systemeinstellung (php.ini) verwendet." - -#: ../help/help.inc:337 +#: ../help/help.inc:347 msgid "" "This email address will be set as sender address of all password mails. If " "empty the system default (php.ini) will be used." @@ -17021,13 +17054,10 @@ msgstr "" "verwendet. Falls leer dann wird die Systemeinstellung (php.ini) verwendet." #: ../lib/modules/selfRegistration.inc:90 -#: ../lib/modules/passwordSelfReset.inc:120 -msgid "" -"This email address will be set as sender address of the mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"Diese Adresse wird als Absenderadresse für die emails verwendet. Falls leer " -"dann wird die Systemeinstellung (php.ini) verwendet." +#: ../lib/modules/passwordSelfReset.inc:120 ../help/help.inc:243 +#: ../help/help.inc:391 +msgid "This email address will be set as sender address of the mails." +msgstr "Diese EMailadresse wird als Senderadresse für die EMails verwendet." #: ../lib/modules/passwordSelfReset.inc:100 msgid "This enables the password self reset function." @@ -17188,7 +17218,7 @@ msgid "This is a structural ObjectClass and cannot be removed." msgstr "" "Dies ist eine strukturelle Objektklasse und kann nicht entfernt werden." -#: ../help/help.inc:199 +#: ../help/help.inc:203 msgid "" "This is a workaround for Active Directory. Enable it if you get messages " "about size limit exceeded." @@ -17201,7 +17231,7 @@ msgstr "" msgid "This is an optional description for this entry." msgstr "Hier können Sie eine optionale Beschreibung für den Eintrag angeben." -#: ../help/help.inc:281 +#: ../help/help.inc:291 msgid "" "This is needed to find the LDAP DNs of your user accounts. E.g. if you use " "\"uid\" and your user inputs \"miller\" then LAM will search for an account " @@ -17211,9 +17241,9 @@ msgstr "" "Benutzer z.B. \"mueller\" angibt und Sie \"uid\" verwenden, dann wird nach " "einem Konto mit uid=mueller gesucht." -#: ../lib/passwordExpirationJob.inc:532 ../lib/modules/windowsLDSUser.inc:784 +#: ../lib/passwordExpirationJob.inc:530 ../lib/modules/windowsLDSUser.inc:791 #: ../lib/modules/zarafaDynamicGroup.inc:183 ../lib/modules/ipHost.inc:125 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixGroup.inc:716 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixGroup.inc:717 #: ../lib/modules/device.inc:128 ../lib/modules/eduPerson.inc:245 #: ../lib/modules/eduPerson.inc:247 ../lib/modules/zarafaAddressList.inc:155 #: ../lib/modules/posixAccount.inc:121 ../lib/modules/posixAccount.inc:122 @@ -17281,7 +17311,7 @@ msgstr "" msgid "This is the LDAP DN of the host's manager." msgstr "Das ist der LDAP-DN des Managers dieses Hosts." -#: ../lib/modules/windowsLDSUser.inc:280 ../lib/modules/windowsUser.inc:357 +#: ../lib/modules/windowsLDSUser.inc:284 ../lib/modules/windowsUser.inc:357 #: ../lib/modules/inetOrgPerson.inc:591 ../lib/modules/inetOrgPerson.inc:595 msgid "" "This is the LDAP DN of the user's manager. Use this property to represent " @@ -17350,7 +17380,7 @@ msgstr "" "Dies ist die Antwort auf die Sicherheitsfrage. Sie erlaubt Benutzern ihr " "Passwort zurückzusetzen." -#: ../help/help.inc:219 +#: ../help/help.inc:223 msgid "This is the database name on the server." msgstr "Dies ist der Datenbankname auf dem Server." @@ -17395,7 +17425,7 @@ msgstr "Das ist der Gruppenname, der in Windows angezeigt wird." msgid "This is the host's location (e.g. Munich, server room 3)." msgstr "Das ist der Standort des Servers (z.B. München, Serverraum 3)." -#: ../help/help.inc:239 ../help/help.inc:253 +#: ../help/help.inc:249 ../help/help.inc:263 msgid "" "This is the identifier for the relative DN value. It must be one of the " "given allowed LDAP attributes (e.g. user accounts usually use \"uid\" while " @@ -17588,7 +17618,7 @@ msgstr "Dies ist der Suffix für die LDAP-Baumansicht." msgid "" "This is the suffix of the LDAP tree from where to search for LDAP entries. " "Only entries in this subtree will be displayed in the account list. When " -"creating a new accont this will be the DN where it is saved." +"creating a new account this will be the DN where it is saved." msgstr "" "Das ist der Suffix im LDAP-Baum in dem nach LDAP-Einträgen gesucht wird. Nur " "Einträge in diesen Teilbäumen werden in den Listen angezeigt. Neue Accounts " @@ -17666,12 +17696,12 @@ msgid "This is used to mark this account as resource." msgstr "Damit wird der Account als Ressource markiert." #: ../lib/modules/qmailUser.inc:1100 ../lib/modules/windowsUser.inc:4188 -#: ../lib/modules/shadowAccount.inc:1081 ../lib/modules/freeRadius.inc:825 +#: ../lib/modules/shadowAccount.inc:1080 ../lib/modules/freeRadius.inc:825 msgid "This job deletes or moves user accounts when they expire." msgstr "Dieser Job löscht oder verschiebt Benutzerkonten wenn diese ablaufen." #: ../lib/modules/qmailUser.inc:1169 ../lib/modules/windowsUser.inc:4096 -#: ../lib/modules/shadowAccount.inc:986 ../lib/modules/freeRadius.inc:893 +#: ../lib/modules/shadowAccount.inc:985 ../lib/modules/freeRadius.inc:892 msgid "" "This job sends out emails to inform your users that their account will " "expire soon." @@ -17709,7 +17739,7 @@ msgstr "" "Diese Meldung wird angezeigt wenn der Wert nicht zum Validierungsausdruck " "passt." -#: ../help/help.inc:203 +#: ../help/help.inc:207 msgid "" "This name is shown on the login page as server name. Defaults to server " "address if empty." @@ -17794,15 +17824,15 @@ msgstr "" "Hier spezifizieren Sie, was passiert wenn die Client-Verbindung getrennt " "wird." -#: ../help/help.inc:329 +#: ../help/help.inc:339 msgid "This text is displayed as footer on the self service login page." msgstr "Dieser Text wird unten auf der SelfService-Loginseite angezeigt." -#: ../help/help.inc:331 +#: ../help/help.inc:341 msgid "This text is displayed as footer on the self service main page." msgstr "Dieser Text wird unten auf der SelfService-Hauptseite angezeigt." -#: ../help/help.inc:313 +#: ../help/help.inc:323 msgid "" "This text is displayed on top of the 2-factor page. You can also input HTML " "code here." @@ -17810,7 +17840,7 @@ msgstr "" "Dieser Text wird oben auf der 2-Faktor-Seite angezeigt. Sie können auch HTML-" "Code eingeben." -#: ../help/help.inc:285 +#: ../help/help.inc:295 msgid "" "This text is displayed on top of the self service login page. You can also " "input HTML code here." @@ -17818,7 +17848,7 @@ msgstr "" "Dieser Text wird oben auf der SelfService-Loginseite angezeigt. Sie können " "auch HTML-Code eingeben." -#: ../help/help.inc:287 +#: ../help/help.inc:297 msgid "" "This text is displayed on top of the self service main page. You can also " "input HTML code here." @@ -17826,7 +17856,7 @@ msgstr "" "Dieser Text wird oben auf der SelfService-Hauptseite angezeigt. Sie können " "auch HTML-Code eingeben." -#: ../help/help.inc:297 +#: ../help/help.inc:307 msgid "" "This text is placed as label for the password field on the login page. LAM " "will use \"Password\" if you do not enter any text." @@ -17834,7 +17864,7 @@ msgstr "" "Dieser Text wird als Beschreibung für das Passwortfeld auf der Loginseite " "angezeigt. LAM verwendet \"Passwort\" wenn Sie nichts eingeben." -#: ../help/help.inc:283 +#: ../help/help.inc:293 msgid "" "This text should shortly describe your selected LDAP search attribute (e.g. " "email or user name)." @@ -17860,7 +17890,7 @@ msgid "This tool allows you to customize the PDF pages." msgstr "Dieses Werkzeug erlaubt die Anpassung der PDF-Seiten." #: ../templates/lists/changePassword.php:75 -#: ../templates/lists/changePassword.php:243 +#: ../templates/lists/changePassword.php:247 msgid "This user is not supported or was not found." msgstr "Dieser Benutzer wird nicht unterstützt oder wurde nicht gefunden." @@ -17913,12 +17943,12 @@ msgstr "Dieser Wert darf nur \"true\" oder \"false\" sein." msgid "This value can only be \"true\", \"false\" or \"system\"." msgstr "Dieser Wert darf nur \"true\", \"false\" oder \"system\" sein." -#: ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 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:354 +#: ../help/help.inc:364 msgid "This will create a new organisational unit under the selected one." msgstr "Dies erzeugt eine neue Organisational Unit unterhalb der markierten." @@ -17928,7 +17958,7 @@ msgstr "" "Wenn Sie dieses Kästchen aktivieren, dann wird das Heimatverzeichnis des " "Benutzers auf dem angegebenen Server erstellt." -#: ../help/help.inc:356 +#: ../help/help.inc:366 msgid "" "This will delete the selected organisational unit. The OU has to be empty." msgstr "Dies löscht die markierte Organisational Unit. Die OU muss leer sein." @@ -17937,7 +17967,7 @@ msgstr "Dies löscht die markierte Organisational Unit. Die OU muss leer sein." msgid "This will delete the selected profile." msgstr "Dies löscht das markierte Profil." -#: ../help/help.inc:309 +#: ../help/help.inc:319 msgid "" "This will disable the check of the SSL certificates for the 2-factor " "authentication service. Not recommended for production usage." @@ -17947,7 +17977,7 @@ msgstr "" #: ../lib/modules/kolabGroup.inc:109 ../lib/modules/puppetClient.inc:116 #: ../lib/modules/qmailUser.inc:230 ../lib/modules/zarafaContact.inc:91 -#: ../lib/modules/posixGroup.inc:481 ../lib/modules/eduPerson.inc:150 +#: ../lib/modules/posixGroup.inc:482 ../lib/modules/eduPerson.inc:150 #: ../lib/modules/pykotaGroup.inc:124 ../lib/modules/sambaSamAccount.inc:405 #: ../lib/modules/posixAccount.inc:316 ../lib/modules/zarafaUser.inc:155 #: ../lib/modules/kopanoContact.inc:91 @@ -17961,7 +17991,7 @@ msgstr "" "Damit können Sie die Erweiterung automatisch beim Laden des Profils " "aktivieren." -#: ../lib/modules/posixGroup.inc:485 +#: ../lib/modules/posixGroup.inc:486 msgid "This will force syncing with group of names members of the same group." msgstr "" "Damit wird die Synchronisierung mit Namensgruppenmitgliedern der gleichen " @@ -17984,7 +18014,7 @@ msgstr "" msgid "This will reset the host's password to a default value." msgstr "Dies setzt das Maschinenpasswort auf den Standardwert zurück." -#: ../templates/lists/changePassword.php:309 +#: ../templates/lists/changePassword.php:313 msgid "" "This will set a random password and display it on the screen or send it to " "the user via mail." @@ -17992,7 +18022,7 @@ msgstr "" "Hiermit setzen Sie ein Zufallspasswort, das auf dem Bildschirm angezeigt " "wird oder senden es dem Benutzer per mail." -#: ../help/help.inc:317 +#: ../help/help.inc:327 msgid "" "This will set a random password and display it on the screen or send it to " "the user via mail. Please edit your LAM server profile to setup the mail " @@ -18045,7 +18075,8 @@ msgstr "Zeitlimit" msgid "Time of user's last login." msgstr "Dies ist der Zeitpunkt der letzten Anmeldung." -#: ../lib/modules/windowsHost.inc:92 ../lib/modules/windowsUser.inc:281 +#: ../lib/modules/windowsLDSUser.inc:224 ../lib/modules/windowsHost.inc:92 +#: ../lib/modules/windowsUser.inc:281 msgid "Time of user's last password change." msgstr "Letzte Passwortänderung des Benutzers." @@ -18142,7 +18173,7 @@ msgstr "Baumansicht" msgid "Tree view" msgstr "Baumansicht" -#: ../templates/config/confmain.php:662 +#: ../templates/config/confmain.php:664 msgid "TreeSuffix is invalid!" msgstr "BaumSuffix ist ungültig!" @@ -18172,8 +18203,8 @@ msgstr "Typ" msgid "UID" msgstr "Benutzer ID" -#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2180 -#: ../lib/modules/posixAccount.inc:2251 +#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2234 +#: ../lib/modules/posixAccount.inc:2305 msgid "UID generator" msgstr "UID-Generator" @@ -18206,7 +18237,7 @@ msgstr "" #: ../lib/modules/posixAccount.inc:218 ../lib/modules/posixAccount.inc:280 #: ../lib/modules/posixAccount.inc:301 ../lib/modules/posixAccount.inc:332 #: ../lib/modules/posixAccount.inc:336 ../lib/modules/posixAccount.inc:345 -#: ../lib/modules/posixAccount.inc:1619 ../lib/modules/posixAccount.inc:2116 +#: ../lib/modules/posixAccount.inc:1665 ../lib/modules/posixAccount.inc:2170 #: ../lib/modules/kopanoContact.inc:117 ../lib/modules/kopanoContact.inc:182 #: ../lib/modules/kopanoContact.inc:183 ../lib/modules/kopanoContact.inc:217 #: ../lib/modules/kopanoContact.inc:463 ../lib/modules/kopanoContact.inc:575 @@ -18260,11 +18291,11 @@ msgstr "" msgid "URL" msgstr "URL" -#: ../help/help.inc:305 +#: ../help/help.inc:315 msgid "URL of external 2-factor authentication service." msgstr "URL des externen 2-Faktor-Authentifizierungsdienstes." -#: ../help/help.inc:307 +#: ../help/help.inc:317 msgid "URLs of external 2-factor authentication service. Enter one per line." msgstr "" "URLs des externen 2-Faktor-Authentifizierungsdienstes. Geben Sie eine URL " @@ -18280,7 +18311,7 @@ msgid "Unable to change ACL on IMAP server for mailbox deletion." msgstr "" "Die ACLs für die Löschung des Postfaches konnten nicht geändert werden." -#: ../lib/modules/mitKerberos.inc:1182 ../lib/modules/mitKerberos.inc:1186 +#: ../lib/modules/mitKerberos.inc:1178 ../lib/modules/mitKerberos.inc:1182 #: ../lib/modules/heimdalKerberos.inc:1031 msgid "Unable to change Kerberos password." msgstr "Konnte Kerberos-Passwort nicht ändern." @@ -18317,13 +18348,13 @@ msgstr "Kann keine Verbindung zur Datenbank herstellen." msgid "Unable to connect to remote server!" msgstr "Kann keine Verbindung zum Server herstellen!" -#: ../lib/upload.inc:294 +#: ../lib/upload.inc:293 msgid "Unable to create ZIP file for PDF export." msgstr "Konnte ZIP-Datei für PDF-Export nicht erstellen." #: ../lib/modules/selfRegistration.inc:647 -#: ../lib/modules/selfRegistration.inc:839 -#: ../lib/modules/selfRegistration.inc:843 +#: ../lib/modules/selfRegistration.inc:838 +#: ../lib/modules/selfRegistration.inc:842 msgid "Unable to create account." msgstr "Kann neuen Benutzer nicht erstellen." @@ -18339,6 +18370,10 @@ msgstr "Kann neue OU nicht erstellen!" msgid "Unable to create new automount map." msgstr "Kann neue Automount-Map nicht erstellen." +#: ../lib/modules/posixAccount.inc:1231 +msgid "Unable to create new group." +msgstr "Kann neue Gruppe nicht erstellen." + #: ../templates/selfService/profManage.php:61 ../lib/config.inc:222 msgid "Unable to create new profile!" msgstr "Kann das Profil nicht erstellen!" @@ -18390,9 +18425,9 @@ msgstr "Kann das Profil nicht löschen!" msgid "Unable to find a printer with name \"%s\"." msgstr "Konnte keinen Drucker namens \"%s\" finden." -#: ../lib/modules/posixAccount.inc:2574 ../lib/modules/posixAccount.inc:2583 -#: ../lib/modules/posixAccount.inc:2885 ../lib/modules/nisNetGroupUser.inc:512 -#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:390 +#: ../lib/modules/posixAccount.inc:2628 ../lib/modules/posixAccount.inc:2637 +#: ../lib/modules/posixAccount.inc:2939 ../lib/modules/nisNetGroupUser.inc:512 +#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:391 msgid "Unable to find group in LDAP." msgstr "Kann Gruppe nicht im LDAP-Baum finden." @@ -18409,7 +18444,7 @@ msgstr "Konnte keine Sicherheitsfrage für diesen Account finden." msgid "Unable to find role in LDAP." msgstr "Kann Rolle nicht im LDAP-Baum finden." -#: ../templates/login.php:535 ../templates/login.php:543 +#: ../templates/login.php:545 ../templates/login.php:553 msgid "Unable to find the user name in LDAP." msgstr "Kann den Benutzernamen nicht in LDAP finden." @@ -18418,7 +18453,7 @@ msgstr "Kann den Benutzernamen nicht in LDAP finden." msgid "Unable to find user account." msgstr "Benutzer wurde nicht gefunden." -#: ../templates/config/mainmanage.php:234 +#: ../templates/config/mainmanage.php:245 msgid "Unable to import server certificate. Please use the upload function." msgstr "" "Konnte Serverzertifikat nicht importieren. Bitte nutzen Sie die Funktion zum " @@ -18446,7 +18481,7 @@ msgstr "Das Postfach wurde nicht gefunden." msgid "Unable to login to remote server!" msgstr "Kann keine Verbindung zum Server herstellen!" -#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsUser.inc:1080 +#: ../lib/modules/windowsLDSUser.inc:794 ../lib/modules/windowsUser.inc:1080 #: ../lib/modules/inetOrgPerson.inc:105 msgid "Unable to process this file." msgstr "Kann diese Datei nicht verarbeiten." @@ -18466,7 +18501,7 @@ msgstr "Kann die PDF-Struktur nicht lesen." msgid "Unable to read file." msgstr "Kann Datei nicht lesen." -#: ../lib/modules/selfRegistration.inc:832 +#: ../lib/modules/selfRegistration.inc:831 msgid "Unable to register your new account. Please try again." msgstr "" "Leider konnte Ihr neuer Benutzer nicht erstellt werden. Bitte versuchen Sie " @@ -18494,7 +18529,7 @@ msgstr "Konnte Schema nicht auslesen!" msgid "Unable to save profile!" msgstr "Kann das Profil nicht speichern!" -#: ../lib/account.inc:1254 ../lib/account.inc:1293 +#: ../lib/account.inc:1258 ../lib/account.inc:1295 msgid "Unable to send mail!" msgstr "Kann die mail nicht versenden!" @@ -18503,19 +18538,23 @@ msgstr "Kann die mail nicht versenden!" msgid "Unable to set deletion date on %s." msgstr "Konnte Löschdatum für \"%s\" nicht setzen." -#: ../lib/modules/posixAccount.inc:880 ../lib/modules/posixAccount.inc:2972 -#: ../lib/modules/posixAccount.inc:3355 ../lib/modules/inetOrgPerson.inc:966 -#: ../lib/modules/inetOrgPerson.inc:2488 +#: ../lib/modules/posixAccount.inc:879 ../lib/modules/posixAccount.inc:3026 +#: ../lib/modules/posixAccount.inc:3409 ../lib/modules/inetOrgPerson.inc:966 +#: ../lib/modules/inetOrgPerson.inc:2486 msgid "Unable to set password" msgstr "Konnte Passwort nicht setzen." -#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:109 +#: ../lib/modules/quota.inc:354 +msgid "Unable to set quota." +msgstr "Konnte Quota nicht setzen." + +#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:110 msgid "Unable to start 2-factor authentication because no tokens were found." msgstr "" "Konnte 2-Faktor-Authentifizierung nicht starten weil keine Token gefunden " "wurden." -#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:106 +#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:107 msgid "Unable to start 2-factor authentication." msgstr "Konnte 2-Faktor-Authentifizierung nicht starten." @@ -18535,7 +18574,7 @@ msgstr "" "Leider konnte Ihre Passwortrücksetzung nicht verifiziert werden. Bitte " "versuchen Sie es erneut." -#: ../lib/modules/selfRegistration.inc:869 +#: ../lib/modules/selfRegistration.inc:868 msgid "Unable to verify your user creation request. Please try again." msgstr "" "Leider konnte Ihre Benutzerregistrierung nicht verifiziert werden. Bitte " @@ -18549,10 +18588,10 @@ msgstr "Unbind" msgid "Universal" msgstr "Universell" -#: ../templates/lists/changePassword.php:406 -#: ../templates/lists/changePassword.php:443 ../lib/types/user.inc:303 +#: ../templates/lists/changePassword.php:410 +#: ../templates/lists/changePassword.php:447 ../lib/types/user.inc:303 #: ../lib/types/user.inc:457 ../lib/types/user.inc:496 -#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:379 +#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:380 #: ../lib/modules/posixAccount.inc:159 msgid "Unix" msgstr "Unix" @@ -18561,13 +18600,13 @@ msgstr "Unix" msgid "Unix account" msgstr "Unix-Account" -#: ../lib/modules/posixAccount.inc:1773 ../lib/modules/posixAccount.inc:2228 +#: ../lib/modules/posixAccount.inc:1828 ../lib/modules/posixAccount.inc:2282 msgid "Unix groups" msgstr "Unix-Gruppen" #: ../lib/modules/dhcp_settings.inc:199 ../lib/modules/dhcp_settings.inc:225 -#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:631 -#: ../lib/modules/dhcp_settings.inc:717 +#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:623 +#: ../lib/modules/dhcp_settings.inc:709 msgid "Unknown clients" msgstr "Unbekannte Clients" @@ -18590,18 +18629,18 @@ msgstr "Unbekannter Änderungstyp" msgid "Unlock" msgstr "Entsperren" -#: ../templates/lists/changePassword.php:205 -#: ../templates/lists/changePassword.php:403 -#: ../templates/lists/changePassword.php:427 -#: ../templates/lists/changePassword.php:429 ../lib/modules/ppolicyUser.inc:150 +#: ../templates/lists/changePassword.php:209 +#: ../templates/lists/changePassword.php:407 +#: ../templates/lists/changePassword.php:431 +#: ../templates/lists/changePassword.php:433 ../lib/modules/ppolicyUser.inc:150 msgid "Unlock account" msgstr "Account entsperren" -#: ../templates/lists/changePassword.php:265 +#: ../templates/lists/changePassword.php:269 msgid "Unlock account?" msgstr "Account entsperren?" -#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1690 +#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1745 #: ../lib/modules/inetOrgPerson.inc:1582 msgid "Unlock password" msgstr "Passwort reaktivieren" @@ -18620,7 +18659,7 @@ msgstr "Ungelöste Abhängigkeit:" msgid "Up" msgstr "Hoch" -#: ../templates/lists/changePassword.php:220 +#: ../templates/lists/changePassword.php:224 msgid "Update Samba password timestamp" msgstr "Samba-Passwortzeitstempel anpassen" @@ -18647,14 +18686,14 @@ msgstr "Werte ändern" msgid "Updating object" msgstr "Ändere Eintrag" -#: ../templates/config/mainmanage.php:345 ../templates/pdfedit/pdfmain.php:293 -#: ../lib/modules/windowsLDSUser.inc:1278 ../lib/modules/windowsUser.inc:2024 -#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1710 -#: ../lib/modules/inetOrgPerson.inc:1884 +#: ../templates/config/mainmanage.php:385 ../templates/pdfedit/pdfmain.php:293 +#: ../lib/modules/windowsLDSUser.inc:1296 ../lib/modules/windowsUser.inc:2024 +#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1708 +#: ../lib/modules/inetOrgPerson.inc:1882 msgid "Upload" msgstr "Hochladen" -#: ../templates/config/mainmanage.php:347 +#: ../templates/config/mainmanage.php:387 msgid "Upload CA certificate in DER/PEM format." msgstr "CA-Zertifikat im DER/PEM-Format hochladen." @@ -18677,12 +18716,12 @@ msgstr "Datei hochladen" msgid "Upload file and create accounts" msgstr "Datei hochladen und Accounts erstellen" -#: ../lib/upload.inc:218 ../lib/lists.inc:1257 +#: ../lib/upload.inc:217 ../lib/lists.inc:1256 msgid "Upload has finished" msgstr "Upload wurde beendet" -#: ../lib/modules/windowsLDSUser.inc:1274 ../lib/modules/windowsUser.inc:2020 -#: ../lib/modules/inetOrgPerson.inc:1706 +#: ../lib/modules/windowsLDSUser.inc:1292 ../lib/modules/windowsUser.inc:2020 +#: ../lib/modules/inetOrgPerson.inc:1704 msgid "Upload image" msgstr "Bild hochladen" @@ -18691,7 +18730,7 @@ msgstr "Bild hochladen" msgid "Upload was stopped after errors in %s module!" msgstr "Upload wurde nach Fehlern im Modul %s gestoppt!" -#: ../lib/modules/windowsLDSUser.inc:320 ../lib/modules/windowsUser.inc:397 +#: ../lib/modules/windowsLDSUser.inc:324 ../lib/modules/windowsUser.inc:397 #: ../lib/modules/inetOrgPerson.inc:795 msgid "Uploaded images will be cropped to these maximum values." msgstr "Die hochgeladenen Bilder werden auf die Maximalwerte zugeschnitten." @@ -18726,7 +18765,7 @@ msgstr "Unix-Passwort verwenden" msgid "Use captcha" msgstr "Captcha verwenden" -#: ../templates/selfService/adminMain.php:443 ../help/help.inc:300 +#: ../templates/selfService/adminMain.php:443 ../help/help.inc:310 msgid "Use for all operations" msgstr "Für alle Operationen verwenden" @@ -18738,7 +18777,7 @@ msgstr "Für alle Operationen verwenden" msgid "Use no password" msgstr "Kein Passwort setzen" -#: ../lib/modules/windowsLDSUser.inc:312 ../lib/modules/windowsLDSUser.inc:316 +#: ../lib/modules/windowsLDSUser.inc:316 ../lib/modules/windowsLDSUser.inc:320 #: ../lib/modules/windowsUser.inc:389 ../lib/modules/windowsUser.inc:393 msgid "" "Use this to enter additional email addresses in format \"smtp:user@domain.com" @@ -18747,7 +18786,7 @@ msgstr "" "Hier können Sie weitere Emailadressen im Format \"smtp:benutzer@domain.de\" " "angeben." -#: ../help/help.inc:362 +#: ../help/help.inc:372 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of entries to modify." @@ -18755,7 +18794,7 @@ msgstr "" "Mit dem zusätzlichen LDAP-Filter (z.B. \"(cn!=admin)\") können Sie die " "Anzahl zu editierender Einträge reduzieren." -#: ../help/help.inc:185 +#: ../help/help.inc:189 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of visible elements for this account type." @@ -18763,7 +18802,7 @@ msgstr "" "Mit dem zusätzlichen LDAP-Filter (z.B. \"(cn!=admin)\") können Sie die " "Anzahl sichtbarer Einträge für diesen Accounttyp reduzieren." -#: ../help/help.inc:299 +#: ../help/help.inc:309 msgid "" "Use this to enter an additional LDAP filter (e.g. " "\"(objectClass=passwordSelfReset)\") to reduce the number of accounts who " @@ -18785,7 +18824,7 @@ msgid "Use this to hide this entry from the address book." msgstr "" "Benutzen Sie diese Einstellung um Einträge im Adressbuch zu verstecken." -#: ../help/help.inc:311 +#: ../help/help.inc:321 msgid "" "Use this to overwrite the default label for the 2-factor input field. " "Default is \"PIN+Token\"." @@ -18819,7 +18858,7 @@ msgstr "" msgid "Used balance for the billing code." msgstr "Verbrauchter Betrag für den Rechnungscode." -#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:524 msgid "Used blocks" msgstr "Benutzte Blöcke" @@ -18845,7 +18884,7 @@ msgstr "" msgid "Used for registration context." msgstr "Wird für den Registrierungskontext verwendet." -#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:525 msgid "Used inodes" msgstr "benutzte Inodes" @@ -18879,7 +18918,7 @@ msgstr "" msgid "User" msgstr "Benutzer" -#: ../templates/config/mainmanage.php:476 ../help/help.inc:182 +#: ../templates/config/mainmanage.php:516 ../help/help.inc:180 msgid "User DN" msgstr "Benutzer DN" @@ -18902,8 +18941,8 @@ msgid "User can change password" msgstr "Benutzer kann Passwort ändern" #: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:790 -#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2908 -#: ../lib/modules/inetOrgPerson.inc:4101 +#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2906 +#: ../lib/modules/inetOrgPerson.inc:4098 msgid "User certificates" msgstr "Benutzerzertifikate" @@ -18945,22 +18984,22 @@ msgstr "Vom Benutzer änderbar" msgid "User must change password" msgstr "Benutzer muss Passwort ändern" -#: ../templates/lists/changePassword.php:273 ../templates/login.php:313 -#: ../templates/config/confmain.php:285 ../lib/types/alias.inc:94 -#: ../lib/types/user.inc:118 ../lib/types/user.inc:120 -#: ../lib/selfService.inc:489 ../lib/modules/mitKerberos.inc:115 -#: ../lib/modules/mitKerberos.inc:210 ../lib/modules/mitKerberos.inc:248 -#: ../lib/modules/mitKerberos.inc:334 ../lib/modules/mitKerberos.inc:805 -#: ../lib/modules/selfRegistration.inc:392 +#: ../templates/lists/changePassword.php:277 ../templates/login.php:313 +#: ../templates/config/mainmanage.php:500 ../templates/config/confmain.php:285 +#: ../lib/types/alias.inc:94 ../lib/types/user.inc:118 +#: ../lib/types/user.inc:120 ../lib/selfService.inc:489 +#: ../lib/modules/mitKerberos.inc:115 ../lib/modules/mitKerberos.inc:210 +#: ../lib/modules/mitKerberos.inc:248 ../lib/modules/mitKerberos.inc:334 +#: ../lib/modules/mitKerberos.inc:805 ../lib/modules/selfRegistration.inc:392 #: ../lib/modules/selfRegistration.inc:486 #: ../lib/modules/selfRegistration.inc:493 -#: ../lib/modules/windowsLDSUser.inc:117 ../lib/modules/windowsLDSUser.inc:331 -#: ../lib/modules/windowsLDSUser.inc:648 ../lib/modules/windowsLDSUser.inc:742 -#: ../lib/modules/windowsLDSUser.inc:853 ../lib/modules/windowsLDSUser.inc:1803 +#: ../lib/modules/windowsLDSUser.inc:117 ../lib/modules/windowsLDSUser.inc:335 +#: ../lib/modules/windowsLDSUser.inc:652 ../lib/modules/windowsLDSUser.inc:749 +#: ../lib/modules/windowsLDSUser.inc:860 ../lib/modules/windowsLDSUser.inc:1821 #: ../lib/modules/account.inc:94 ../lib/modules/account.inc:129 #: ../lib/modules/account.inc:131 ../lib/modules/account.inc:132 -#: ../lib/modules/account.inc:214 ../lib/modules/account.inc:233 -#: ../lib/modules/account.inc:245 ../lib/modules/account.inc:258 +#: ../lib/modules/account.inc:211 ../lib/modules/account.inc:230 +#: ../lib/modules/account.inc:242 ../lib/modules/account.inc:255 #: ../lib/modules/uidObject.inc:44 ../lib/modules/uidObject.inc:66 #: ../lib/modules/uidObject.inc:75 ../lib/modules/uidObject.inc:84 #: ../lib/modules/uidObject.inc:95 ../lib/modules/uidObject.inc:150 @@ -18969,8 +19008,8 @@ msgstr "Benutzer muss Passwort ändern" #: ../lib/modules/nisNetGroupHost.inc:260 ../lib/modules/posixAccount.inc:103 #: ../lib/modules/posixAccount.inc:104 ../lib/modules/posixAccount.inc:107 #: ../lib/modules/posixAccount.inc:210 ../lib/modules/posixAccount.inc:298 -#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1604 -#: ../lib/modules/posixAccount.inc:2098 ../lib/modules/windowsUser.inc:131 +#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1650 +#: ../lib/modules/posixAccount.inc:2152 ../lib/modules/windowsUser.inc:131 #: ../lib/modules/windowsUser.inc:420 ../lib/modules/windowsUser.inc:872 #: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1151 #: ../lib/modules/windowsUser.inc:2850 ../lib/modules/pykotaUser.inc:115 @@ -18980,17 +19019,18 @@ msgstr "Benutzer muss Passwort ändern" #: ../lib/modules/nisnetgroup.inc:154 ../lib/modules/nisnetgroup.inc:483 #: ../lib/modules/inetOrgPerson.inc:100 ../lib/modules/inetOrgPerson.inc:166 #: ../lib/modules/inetOrgPerson.inc:689 ../lib/modules/inetOrgPerson.inc:1196 -#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1946 -#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2202 -#: ../lib/modules/inetOrgPerson.inc:3012 ../lib/modules/inetOrgPerson.inc:4110 -#: ../lib/modules/inetOrgPerson.inc:4139 +#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1944 +#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2200 +#: ../lib/modules/inetOrgPerson.inc:3010 ../lib/modules/inetOrgPerson.inc:4107 +#: ../lib/modules/inetOrgPerson.inc:4136 #: ../lib/modules/passwordSelfReset.inc:627 #: ../lib/modules/passwordSelfReset.inc:1022 #: ../lib/modules/passwordSelfReset.inc:1253 #: ../lib/modules/heimdalKerberos.inc:93 ../lib/modules/heimdalKerberos.inc:179 #: ../lib/modules/heimdalKerberos.inc:217 #: ../lib/modules/heimdalKerberos.inc:285 -#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:228 +#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:184 +#: ../help/help.inc:232 msgid "User name" msgstr "Benutzername" @@ -19002,7 +19042,7 @@ msgid "User name (pre W2K)" msgstr "Benutzername (vor W2K)" #: ../lib/modules/selfRegistration.inc:493 -#: ../lib/modules/windowsLDSUser.inc:744 ../lib/modules/windowsLDSUser.inc:745 +#: ../lib/modules/windowsLDSUser.inc:751 ../lib/modules/windowsLDSUser.inc:752 #: ../lib/modules/posixAccount.inc:111 ../lib/modules/windowsUser.inc:1020 #: ../lib/modules/windowsUser.inc:1021 ../lib/modules/pykotaUser.inc:276 #: ../lib/modules/pykotaUser.inc:277 ../lib/modules/pykotaUser.inc:280 @@ -19016,13 +19056,13 @@ msgstr "Benutzername und Email-Adresse" #: ../templates/config/confmain.php:494 #: ../templates/selfService/adminMain.php:515 ../lib/modules/imapAccess.inc:107 -#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:332 +#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:342 msgid "User name attribute" msgstr "Attribut für Benutzernamen" #: ../lib/modules/mitKerberos.inc:280 ../lib/modules/mitKerberos.inc:281 #: ../lib/modules/selfRegistration.inc:486 -#: ../lib/modules/windowsLDSUser.inc:742 ../lib/modules/windowsLDSUser.inc:743 +#: ../lib/modules/windowsLDSUser.inc:749 ../lib/modules/windowsLDSUser.inc:750 #: ../lib/modules/account.inc:129 ../lib/modules/account.inc:130 #: ../lib/modules/account.inc:132 ../lib/modules/zarafaContact.inc:178 #: ../lib/modules/zarafaContact.inc:179 ../lib/modules/uidObject.inc:84 @@ -19053,7 +19093,7 @@ msgstr "" msgid "User name for NIS." msgstr "Benutzername für NIS." -#: ../help/help.inc:229 +#: ../help/help.inc:233 msgid "" "User name for SSH connection to lamdaemon server. If empty the user name of " "the person who is logged into LAM will be used." @@ -19094,7 +19134,7 @@ msgstr "" msgid "User name or email address" msgstr "Benutzername oder Email-Adresse" -#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2215 +#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2269 msgid "User name suggestion" msgstr "Vorschlag für Benutzername" @@ -19122,7 +19162,7 @@ msgstr "Benutzerserver" #: ../lib/types/user.inc:55 ../lib/modules/posixAccount.inc:83 #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:87 -#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/zarafaUser.inc:1803 +#: ../lib/modules/posixAccount.inc:2223 ../lib/modules/zarafaUser.inc:1803 #: ../lib/modules/sudoRole.inc:73 ../lib/modules/sudoRole.inc:97 #: ../lib/modules/sudoRole.inc:158 ../lib/modules/sudoRole.inc:215 #: ../lib/modules/sudoRole.inc:227 ../lib/modules/sudoRole.inc:300 @@ -19136,7 +19176,7 @@ msgstr "Benutzer" msgid "Users or groups that may directly send email as this user." msgstr "Benutzer oder Gruppen die EMails als dieser Benutzer senden dürfen." -#: ../lib/modules/posixGroup.inc:427 +#: ../lib/modules/posixGroup.inc:428 msgid "" "Users who are member of the current group. Users who have set their primary " "group to this group will not be shown." @@ -19144,7 +19184,7 @@ msgstr "" "Hier können Sie Benutzer zu dieser Gruppe hinzufügen und entfernen. " "Benutzer, deren primäre Gruppe diese Gruppe ist, werden nicht angezeigt." -#: ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:432 msgid "" "Users who will become member of the current group. User names are separated " "by semicolons." @@ -19177,7 +19217,7 @@ msgstr "" msgid "VCARD 2.1 Export" msgstr "VCARD 2.1 Export" -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 msgid "Valid to" msgstr "Gültig bis" @@ -19288,95 +19328,95 @@ msgstr "Anrufbeantworterpostfach für diesen Account." msgid "Want more features? Get LAM Pro!" msgstr "Sie möchten mehr Funktionen? Bestellen Sie LAM Pro!" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/page.php:70 msgid "Warning" msgstr "Warnung" -#: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1452 -#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:841 +#: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1470 +#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:840 #: ../lib/modules/organizationalRoleUser.inc:197 #: ../lib/modules/organizationalRoleUser.inc:214 #: ../lib/modules/windowsUser.inc:2315 ../lib/modules/windowsLDSGroup.inc:713 -#: ../lib/modules/groupOfNamesUser.inc:224 -#: ../lib/modules/groupOfNamesUser.inc:269 ../lib/modules/windowsGroup.inc:1025 -#: ../lib/modules.inc:2033 +#: ../lib/modules/groupOfNamesUser.inc:225 +#: ../lib/modules/groupOfNamesUser.inc:270 ../lib/modules/windowsGroup.inc:1025 +#: ../lib/modules.inc:2031 #, php-format msgid "Was unable to add attributes to DN: %s." msgstr "Konnte keine Attribute zum DN hinzufügen: %s." -#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:659 -#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2473 +#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:658 +#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2471 #: ../lib/import.inc:461 ../lib/import.inc:618 ../lib/import.inc:680 -#: ../lib/import.inc:743 ../lib/modules.inc:1995 +#: ../lib/import.inc:743 ../lib/modules.inc:1993 #, php-format msgid "Was unable to create DN: %s." msgstr "Konnte DN nicht erstellen: %s." -#: ../lib/account.inc:972 ../lib/account.inc:980 -#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:726 +#: ../lib/account.inc:976 ../lib/account.inc:984 +#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:725 #, php-format msgid "Was unable to delete DN: %s." msgstr "Konnte DN nicht löschen: %s." -#: ../templates/lists/changePassword.php:787 -#: ../templates/lists/changePassword.php:884 -#: ../templates/lists/changePassword.php:934 ../templates/delete.php:266 +#: ../templates/lists/changePassword.php:791 +#: ../templates/lists/changePassword.php:888 +#: ../templates/lists/changePassword.php:938 ../templates/delete.php:266 #, php-format msgid "Was unable to modify attributes from DN: %s." msgstr "Konnte die Attribute von DN %s nicht ändern." -#: ../lib/modules/posixAccount.inc:825 ../lib/modules/windowsUser.inc:2341 -#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:703 +#: ../lib/modules/posixAccount.inc:824 ../lib/modules/windowsUser.inc:2341 +#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:702 #: ../lib/modules/nisNetGroupUser.inc:355 #: ../lib/modules/nisNetGroupUser.inc:372 #: ../lib/modules/nisNetGroupUser.inc:407 #: ../lib/modules/nisNetGroupUser.inc:419 #: ../lib/modules/nisNetGroupUser.inc:566 -#: ../lib/modules/groupOfNamesUser.inc:254 ../lib/modules/customFields.inc:4826 -#: ../lib/modules.inc:2015 +#: ../lib/modules/groupOfNamesUser.inc:255 ../lib/modules/customFields.inc:4826 +#: ../lib/modules.inc:2013 #, php-format msgid "Was unable to modify attributes of DN: %s." msgstr "Konnte die Attribute von DN %s nicht ändern." -#: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1465 -#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:858 +#: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1483 +#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:857 #: ../lib/modules/organizationalRoleUser.inc:202 #: ../lib/modules/organizationalRoleUser.inc:225 #: ../lib/modules/windowsUser.inc:2328 ../lib/modules/windowsLDSGroup.inc:726 -#: ../lib/modules/groupOfNamesUser.inc:219 -#: ../lib/modules/groupOfNamesUser.inc:283 ../lib/modules/windowsGroup.inc:1038 -#: ../lib/modules.inc:2046 +#: ../lib/modules/groupOfNamesUser.inc:220 +#: ../lib/modules/groupOfNamesUser.inc:284 ../lib/modules/windowsGroup.inc:1038 +#: ../lib/modules.inc:2044 #, php-format msgid "Was unable to remove attributes from DN: %s." msgstr "Konnte die Attribute nicht löschen: %s." -#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1975 +#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1973 #, php-format msgid "Was unable to rename DN: %s." msgstr "Konnte DN nicht umbenennen: %s." -#: ../lib/modules/windowsLDSUser.inc:197 ../lib/modules/windowsLDSUser.inc:435 -#: ../lib/modules/windowsLDSUser.inc:665 ../lib/modules/windowsLDSUser.inc:898 -#: ../lib/modules/windowsLDSUser.inc:1827 ../lib/modules/windowsUser.inc:215 +#: ../lib/modules/windowsLDSUser.inc:197 ../lib/modules/windowsLDSUser.inc:439 +#: ../lib/modules/windowsLDSUser.inc:669 ../lib/modules/windowsLDSUser.inc:905 +#: ../lib/modules/windowsLDSUser.inc:1845 ../lib/modules/windowsUser.inc:215 #: ../lib/modules/windowsUser.inc:530 ../lib/modules/windowsUser.inc:890 #: ../lib/modules/windowsUser.inc:981 ../lib/modules/windowsUser.inc:1200 #: ../lib/modules/windowsUser.inc:2876 ../lib/modules/windowsUser.inc:3072 #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:405 #: ../lib/modules/inetOrgPerson.inc:528 ../lib/modules/inetOrgPerson.inc:673 #: ../lib/modules/inetOrgPerson.inc:677 ../lib/modules/inetOrgPerson.inc:1449 -#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1996 -#: ../lib/modules/inetOrgPerson.inc:2063 ../lib/modules/inetOrgPerson.inc:2620 -#: ../lib/modules/inetOrgPerson.inc:4100 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1994 +#: ../lib/modules/inetOrgPerson.inc:2061 ../lib/modules/inetOrgPerson.inc:2618 +#: ../lib/modules/inetOrgPerson.inc:4097 ../lib/modules/inetOrgPerson.inc:4127 msgid "Web site" msgstr "Homepage" -#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:475 +#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:515 #: ../lib/tools/webauthn.inc:46 ../lib/modules/webauthn.inc:69 msgid "Webauthn devices" msgstr "Webauthn-Geräte" -#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:572 +#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:570 #: ../lib/modules/webauthn.inc:137 msgid "Webauthn failed" msgstr "Webauthn fehlgeschlagen" @@ -19427,8 +19467,8 @@ msgstr "" "Wenn Sie ldaps:// oder TLS verwenden, stellen Sie sicher, dass Sie genau die " "selbe IP/Domäne wie in Ihrem Zertifikat verwenden!" -#: ../templates/lists/changePassword.php:421 -#: ../templates/lists/changePassword.php:455 ../lib/types/user.inc:327 +#: ../templates/lists/changePassword.php:425 +#: ../templates/lists/changePassword.php:459 ../lib/types/user.inc:327 #: ../lib/types/user.inc:376 ../lib/types/user.inc:473 #: ../lib/types/user.inc:516 ../lib/types/user.inc:1111 #: ../lib/types/user.inc:1113 ../lib/modules/windowsHost.inc:63 @@ -19438,14 +19478,14 @@ msgstr "" msgid "Windows" msgstr "Windows" -#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2153 +#: ../lib/modules/posixGroup.inc:551 ../lib/modules/posixAccount.inc:2207 msgid "Windows domain info" msgstr "Windows-Domäneninfo" -#: ../lib/modules/posixGroup.inc:467 ../lib/modules/posixGroup.inc:577 -#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:122 -#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2202 -#: ../lib/modules/posixAccount.inc:2273 +#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixGroup.inc:578 +#: ../lib/modules/posixGroup.inc:717 ../lib/modules/posixAccount.inc:122 +#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2256 +#: ../lib/modules/posixAccount.inc:2327 msgid "Windows domain info DN" msgstr "Windows-Domäneninfo DN" @@ -19495,7 +19535,7 @@ msgstr "Primäre Windows-Gruppen-SID" msgid "Windows-Domain name of group." msgstr "Windows-Domänenname der Gruppe." -#: ../lib/modules/windowsLDSUser.inc:902 ../lib/modules/windowsUser.inc:1204 +#: ../lib/modules/windowsLDSUser.inc:909 ../lib/modules/windowsUser.inc:1204 #: ../lib/modules/inetOrgPerson.inc:1460 msgid "Work details" msgstr "Arbeitsdaten" @@ -19531,9 +19571,9 @@ msgstr "Schreiben" msgid "Write access" msgstr "Schreibzugriff" -#: ../templates/login.php:523 ../templates/login.php:588 -#: ../templates/selfService/selfServiceLogin.php:155 -#: ../templates/selfService/selfServiceLogin.php:191 +#: ../templates/login.php:533 ../templates/login.php:598 +#: ../templates/selfService/selfServiceLogin.php:156 +#: ../templates/selfService/selfServiceLogin.php:192 msgid "Wrong password/user name combination. Please try again." msgstr "Falsche Benutzername/Passwort-Kombination. Bitte erneut eingeben." @@ -19556,8 +19596,8 @@ msgstr "Ja" msgid "You are not yet allowed to change your password." msgstr "Sie dürfen das Passwort noch nicht ändern." -#: ../templates/lists/changePassword.php:543 -#: ../templates/lists/changePassword.php:553 +#: ../templates/lists/changePassword.php:547 +#: ../templates/lists/changePassword.php:557 #: ../lib/modules/sambaSamAccount.inc:2484 #: ../lib/modules/sambaSamAccount.inc:2578 ../lib/modules/ppolicyUser.inc:338 #: ../lib/modules/ppolicyUser.inc:418 @@ -19566,7 +19606,7 @@ msgstr "" "Sie versuchen ein altes Passwort wiederzuverwenden. Bitte wählen Sie ein " "anderes Passwort." -#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:709 +#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:710 #: ../lib/modules/posixAccount.inc:103 ../lib/modules/posixAccount.inc:105 msgid "" "You are using capital letters. This can cause problems because Windows is " @@ -19575,11 +19615,11 @@ msgstr "" "Sie verwenden Großbuchstaben, das kann Probleme verursachen, da Windows " "Groß-/Kleinschreibung nicht unterscheidet." -#: ../help/help.inc:415 +#: ../help/help.inc:425 msgid "You can delete or move expired accounts." msgstr "Sie können abgelaufene Konten löschen oder verschieben." -#: ../lib/lists.inc:1259 +#: ../lib/lists.inc:1258 #, php-format msgid "" "You can download your PDF files {link=%s}{color=#d2131a}here{endcolor}" @@ -19588,7 +19628,7 @@ msgstr "" "Sie können Ihre PDF-Dateien {link=%s}{color=#d2131a}hier{endcolor}{endlink} " "herunterladen." -#: ../help/help.inc:303 +#: ../help/help.inc:313 msgid "You can enable 2-factor authentication here (e.g. via mobile device)." msgstr "Damit aktivieren Sie die 2-Faktor-Authentifizierung (z.B. per Handy)." @@ -19613,7 +19653,7 @@ msgstr "" "Sie können festlegen, ob LAM vollen Schreibzugriff, nur Passwortänderungen " "oder nur Lesezugriff erlaubt." -#: ../help/help.inc:186 +#: ../help/help.inc:190 msgid "" "You can use the wildcard @@LOGIN_DN@@ which will be substituted with the DN " "of the user who is currently logged in to LAM." @@ -19634,8 +19674,8 @@ msgid "You can use this to temporarily deactivate the Zarafa extension." msgstr "Sie können hiermit die Zarafa-Erweiterung temporär deaktivieren." #: ../lib/modules/passwordSelfReset.inc:129 -#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:343 -#: ../help/help.inc:394 +#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:353 +#: ../help/help.inc:404 msgid "" "You can use wildcards for LDAP attributes in the form @@attribute@@ (e.g. " "@@uid@@ for the user name)." @@ -19675,7 +19715,7 @@ msgstr "Sie können im Nur-Lesen-Modus keine Änderungen vornehmen." msgid "You cannot rename an entry which has child entries." msgstr "Sie können keinen Eintrag mit Unterelementen umbenennen." -#: ../templates/config/confmain.php:569 +#: ../templates/config/confmain.php:568 msgid "" "You cannot use SSL and TLS encryption at the same time. Please use either " "\"ldaps://\" or TLS." @@ -19722,9 +19762,9 @@ msgstr "Bitte setzen Sie einen Wert für das erforderliche Attribut: %s" msgid "You made no changes" msgstr "Es wurde nichts geändert." -#: ../templates/config/mainmanage.php:213 -#: ../templates/config/mainmanage.php:219 -#: ../templates/config/mainmanage.php:231 +#: ../templates/config/mainmanage.php:224 +#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:242 msgid "You might need to restart your webserver for changes to take effect." msgstr "" "Sie müssen den Webserver ggf. neu starten damit die Änderungen wirksam " @@ -19785,7 +19825,8 @@ msgid "" "PHP." msgstr "Sie müssen Dateiuploads in der php.ini (file_uploads=ON) aktivieren." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "" "Your changes cannot be saved until you make the file writable for the " @@ -19794,7 +19835,7 @@ msgstr "" "Ihre Änderungen können erst gespeichert werden wenn Sie die Datei für den " "Webserver schreibbar machen." -#: ../templates/login.php:456 ../templates/selfService/selfServiceLogin.php:380 +#: ../templates/login.php:459 ../templates/selfService/selfServiceLogin.php:384 #, php-format msgid "" "Your licence expires on %s. You need to purchase a new licence to be able to " @@ -19803,7 +19844,7 @@ msgstr "" "Ihre Lizenz läuft am %s ab. Für die weitere Nutzung nach diesem Datum ist " "eine neue Lizenz erforderlich." -#: ../lib/modules/selfRegistration.inc:863 +#: ../lib/modules/selfRegistration.inc:862 msgid "" "Your new account was created but post processing failed. Please contact your " "local administrator." @@ -19811,7 +19852,7 @@ msgstr "" "Ihr neues Konto wurde erstellt aber die Nachbearbeitung schlug fehl. Bitte " "kontaktieren Sie Ihren lokalen Administrator." -#: ../lib/modules/selfRegistration.inc:860 +#: ../lib/modules/selfRegistration.inc:859 msgid "" "Your new account was successfully created. Please return to login to change " "your user data." @@ -19819,7 +19860,7 @@ msgstr "" "Ihr neuer Benutzer wurde erfolgreich angelegt. Bitte gehen Sie zum Login " "zurück um Ihre persönlichen Daten zu ändern." -#: ../lib/account.inc:1505 ../lib/modules/windowsUser.inc:3218 +#: ../lib/account.inc:1488 ../lib/modules/windowsUser.inc:3218 msgid "" "Your password does not meet the password strength qualifications. Please " "retry with another one." @@ -19841,7 +19882,7 @@ msgstr "" "Ihre Sitzung ist abgelaufen, klicken Sie hier, um zur Anmeldeseite " "zurückzukehren." -#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:102 +#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:103 msgid "Your session expired, please log in again." msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an." @@ -19850,7 +19891,7 @@ msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an." msgid "Your settings were successfully saved." msgstr "Ihre Einstellungen wurden erfolgreich gespeichert." -#: ../lib/modules/windowsLDSUser.inc:413 ../lib/modules/windowsLDSUser.inc:575 +#: ../lib/modules/windowsLDSUser.inc:417 ../lib/modules/windowsLDSUser.inc:579 #: ../lib/modules/windowsUser.inc:502 ../lib/modules/windowsUser.inc:758 #: ../lib/modules/inetOrgPerson.inc:439 ../lib/modules/inetOrgPerson.inc:471 msgid "YourCompany" @@ -19912,7 +19953,7 @@ msgstr "Zarafa speichert die Archive des Benutzers auf diesen Servern." #: ../lib/types/bind.inc:81 ../lib/modules/ddns.inc:101 #: ../lib/modules/ddns.inc:112 ../lib/modules/ddns.inc:127 -#: ../lib/modules/ddns.inc:392 ../lib/modules/ddns.inc:422 +#: ../lib/modules/ddns.inc:388 ../lib/modules/ddns.inc:418 msgid "Zone name" msgstr "Zonenname" @@ -19945,8 +19986,8 @@ msgstr "Wert hinzufügen" msgid "adminstrators" msgstr "administratoren" -#: ../templates/config/mainmanage.php:391 -#: ../templates/config/mainmanage.php:449 ../templates/schema/schema.php:187 +#: ../templates/config/mainmanage.php:431 +#: ../templates/config/mainmanage.php:489 ../templates/schema/schema.php:187 #: ../templates/schema/schema.php:283 msgid "all" msgstr "Alle" @@ -19986,7 +20027,7 @@ msgstr "Bestätigen" msgid "dc=yourcompany,dc=com" msgstr "dc=ihreFirma,dc=com" -#: ../templates/config/mainmanage.php:448 ../lib/modules/ppolicyUser.inc:126 +#: ../templates/config/mainmanage.php:488 ../lib/modules/ppolicyUser.inc:126 msgid "default" msgstr "Standard" @@ -20089,11 +20130,11 @@ msgstr "gruppe@firma.de" msgid "hint" msgstr "Hinweis" -#: ../lib/modules/quota.inc:214 ../lib/modules/quota.inc:220 +#: ../lib/modules/quota.inc:218 ../lib/modules/quota.inc:224 msgid "hours" msgstr "Stunden" -#: ../lib/modules/windowsLDSUser.inc:437 ../lib/modules/windowsLDSUser.inc:443 +#: ../lib/modules/windowsLDSUser.inc:441 ../lib/modules/windowsLDSUser.inc:447 #: ../lib/modules/windowsUser.inc:532 ../lib/modules/windowsUser.inc:538 #: ../lib/modules/inetOrgPerson.inc:407 msgid "http://www.company.com" @@ -20175,7 +20216,7 @@ msgstr "neu" #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 -#: ../lib/modules/windowsLDSUser.inc:1496 ../lib/modules/kopanoServer.inc:311 +#: ../lib/modules/windowsLDSUser.inc:1514 ../lib/modules/kopanoServer.inc:311 #: ../lib/modules/zarafaDynamicGroup.inc:417 #: ../lib/modules/zarafaDynamicGroup.inc:420 #: ../lib/modules/zarafaContact.inc:638 ../lib/modules/zarafaGroup.inc:653 @@ -20212,7 +20253,7 @@ msgstr "neu" #: ../lib/modules/generalInformation.inc:101 #: ../lib/modules/kopanoAddressList.inc:296 #: ../lib/modules/kopanoAddressList.inc:299 ../lib/modules/zarafaServer.inc:331 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:772 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 msgid "no" msgstr "nein" @@ -20259,7 +20300,7 @@ msgstr "ou=accounts,dc=ihreFirma,dc=de" msgid "pc01$" msgstr "pc01$" -#: ../lib/modules/posixAccount.inc:2443 +#: ../lib/modules/posixAccount.inc:2497 msgid "pc01,Room 2.34" msgstr "pc01,Raum 2.34" @@ -20322,10 +20363,10 @@ msgstr "Suche" msgid "seconds" msgstr "Sekunden" -#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:341 -#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:412 -#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2411 -#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2213 +#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:345 +#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:413 +#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2465 +#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2211 #: ../lib/modules/asteriskVoicemail.inc:166 #: ../lib/modules/heimdalKerberos.inc:212 msgid "secret" @@ -20335,11 +20376,11 @@ msgstr "geheim" msgid "select the rdn attribute" msgstr "RDN-Attribut wählen" -#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/windowsLDSUser.inc:333 +#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/windowsLDSUser.inc:337 #: ../lib/modules/uidObject.inc:68 ../lib/modules/posixAccount.inc:212 #: ../lib/modules/windowsUser.inc:422 ../lib/modules/windowsUser.inc:669 #: ../lib/modules/windowsUser.inc:678 ../lib/modules/pykotaUser.inc:195 -#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2204 +#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2202 #: ../lib/modules/heimdalKerberos.inc:181 ../lib/modules/nisMailAlias.inc:109 msgid "smiller" msgstr "hmueller" @@ -20352,7 +20393,7 @@ msgstr "hmueller@anderedomain.de" msgid "smiller@yourdomain.org" msgstr "hmueller@ihredomain.de" -#: ../lib/modules/windowsLDSUser.inc:456 ../lib/modules/windowsUser.inc:613 +#: ../lib/modules/windowsLDSUser.inc:460 ../lib/modules/windowsUser.inc:613 msgid "smtp:user@example.com" msgstr "smtp:benutzer@domain.de" @@ -20380,18 +20421,18 @@ msgstr "test-start" msgid "true" msgstr "wahr" -#: ../lib/modules/windowsLDSUser.inc:583 ../lib/modules/ipHost.inc:105 +#: ../lib/modules/windowsLDSUser.inc:587 ../lib/modules/ipHost.inc:105 #: ../lib/modules/windowsUser.inc:766 ../lib/modules/inetOrgPerson.inc:293 #: ../lib/modules/aliasEntry.inc:71 ../lib/modules/qmailGroup.inc:246 #: ../lib/modules/qmailGroup.inc:254 ../lib/modules/qmailGroup.inc:262 msgid "uid=smiller,ou=People,dc=company,dc=com" msgstr "uid=hmueller,ou=People,dc=ihreFirma,dc=de" -#: ../templates/config/mainmanage.php:327 +#: ../templates/config/mainmanage.php:367 msgid "use custom CA certificates" msgstr "eigene CA-Zertifikate verwenden" -#: ../templates/config/mainmanage.php:324 +#: ../templates/config/mainmanage.php:364 msgid "use system certificates" msgstr "Systemzertifikate verwenden" @@ -20399,7 +20440,7 @@ msgstr "Systemzertifikate verwenden" msgid "user01,user02,user03" msgstr "benutzer01,benutzer02,benutzer03" -#: ../lib/modules/windowsLDSUser.inc:419 ../lib/modules/qmailUser.inc:239 +#: ../lib/modules/windowsLDSUser.inc:423 ../lib/modules/qmailUser.inc:239 #: ../lib/modules/qmailUser.inc:245 ../lib/modules/qmailUser.inc:791 #: ../lib/modules/eduPerson.inc:162 ../lib/modules/windowsUser.inc:508 #: ../lib/modules/windowsUser.inc:514 ../lib/modules/pykotaUser.inc:729 @@ -20425,7 +20466,7 @@ msgstr "mit" #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:234 #: ../templates/schema/schema.php:316 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 -#: ../lib/modules/windowsLDSUser.inc:519 ../lib/modules/windowsLDSUser.inc:1496 +#: ../lib/modules/windowsLDSUser.inc:523 ../lib/modules/windowsLDSUser.inc:1514 #: ../lib/modules/kopanoServer.inc:313 #: ../lib/modules/zarafaDynamicGroup.inc:415 #: ../lib/modules/zarafaDynamicGroup.inc:422 @@ -20458,7 +20499,7 @@ msgstr "mit" #: ../lib/modules/generalInformation.inc:103 #: ../lib/modules/kopanoAddressList.inc:294 #: ../lib/modules/kopanoAddressList.inc:301 ../lib/modules/zarafaServer.inc:333 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:768 msgid "yes" msgstr "ja" @@ -20472,6 +20513,47 @@ msgstr "ja - aufsteigend sortiert" msgid "yes - ordered descending" msgstr "ja - absteigend sortiert" +#~ msgid "License" +#~ msgstr "Lizenz" + +#~ msgid "This email address will be set as sender address of all mails." +#~ msgstr "" +#~ "Diese EMailadresse wird als Senderadresse für alle EMails verwendet." + +#~ msgid "Additional options" +#~ msgstr "Zusätzliche Optionen" + +#~ msgid "Default (\\r\\n)" +#~ msgstr "Standard (\\r\\n)" + +#~ msgid "Email format" +#~ msgstr "Emailformat" + +#~ msgid "Non-standard (\\n)" +#~ msgstr "Nicht-Standard (\\n)" + +#~ msgid "" +#~ "Please change this setting only if you experience problems in receiving " +#~ "emails from LAM. This defines the line ending of emails." +#~ msgstr "" +#~ "Bitte ändern Sie diese Option nur wenn Sie Probleme beim email-Versand " +#~ "aus LAM heraus haben. Diese Einstellung legt die Zeilenenden von emails " +#~ "fest." + +#~ msgid "" +#~ "This email address will be set as sender address of all mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "Diese Adresse wird als Absenderadresse für die emails verwendet. Falls " +#~ "leer dann wird die Systemeinstellung (php.ini) verwendet." + +#~ msgid "" +#~ "This email address will be set as sender address of the mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "Diese Adresse wird als Absenderadresse für die emails verwendet. Falls " +#~ "leer dann wird die Systemeinstellung (php.ini) verwendet." + #~ msgid "Please enter your YubiKey ids." #~ msgstr "Bitte geben Sie Ihre YubiKey IDs ein." diff --git a/lam/locale/en_US/LC_MESSAGES/messages.mo b/lam/locale/en_US/LC_MESSAGES/messages.mo index 9a3b0b4e6288d01519aa201404288f58b76c9629..cef0d67d7d3b82ca3b38ebb35cf79ff512c349a8 100644 GIT binary patch delta 74562 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 PKa{7-{og%*_p|>m$rD6g delta 74147 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 diff --git a/lam/locale/en_US/LC_MESSAGES/messages.po b/lam/locale/en_US/LC_MESSAGES/messages.po index 57a50553..70c60bc6 100644 --- a/lam/locale/en_US/LC_MESSAGES/messages.po +++ b/lam/locale/en_US/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: LAM\n" "Report-Msgid-Bugs-To: post@rolandgruber.de \n" -"PO-Revision-Date: 2020-02-18 20:57+0100\n" +"PO-Revision-Date: 2020-04-21 21:17+0100\n" "Last-Translator: Roland Gruber \n" "Language-Team: German \n" "Language: de\n" @@ -81,32 +81,32 @@ msgstr "smiller" msgid "123-123-1234" msgstr "123-123-1234" -#: ../lib/modules/windowsLDSUser.inc:488 ../lib/modules/windowsLDSUser.inc:496 +#: ../lib/modules/windowsLDSUser.inc:492 ../lib/modules/windowsLDSUser.inc:500 #: ../lib/modules/windowsUser.inc:645 ../lib/modules/windowsUser.inc:653 #: ../lib/modules/inetOrgPerson.inc:365 msgid "123-123-1235" msgstr "123-123-1235" -#: ../lib/modules/windowsLDSUser.inc:464 ../lib/modules/windowsLDSUser.inc:472 -#: ../lib/modules/windowsLDSUser.inc:480 ../lib/modules/windowsUser.inc:621 +#: ../lib/modules/windowsLDSUser.inc:468 ../lib/modules/windowsLDSUser.inc:476 +#: ../lib/modules/windowsLDSUser.inc:484 ../lib/modules/windowsUser.inc:621 #: ../lib/modules/windowsUser.inc:629 ../lib/modules/windowsUser.inc:637 #: ../lib/modules/inetOrgPerson.inc:373 ../lib/modules/inetOrgPerson.inc:381 msgid "123-123-1236" msgstr "123-123-1236" -#: ../lib/modules/windowsLDSUser.inc:425 ../lib/modules/windowsLDSUser.inc:431 +#: ../lib/modules/windowsLDSUser.inc:429 ../lib/modules/windowsLDSUser.inc:435 #: ../lib/modules/windowsUser.inc:520 ../lib/modules/windowsUser.inc:526 #: ../lib/modules/inetOrgPerson.inc:357 msgid "123-124-1234" msgstr "123-124-1234" -#: ../lib/modules/windowsLDSUser.inc:389 ../lib/modules/windowsUser.inc:478 +#: ../lib/modules/windowsLDSUser.inc:393 ../lib/modules/windowsUser.inc:478 #: ../lib/modules/inetOrgPerson.inc:341 msgid "12345" msgstr "12345" #: ../templates/config/confmain.php:463 -#: ../templates/selfService/adminMain.php:485 ../help/help.inc:302 +#: ../templates/selfService/adminMain.php:485 ../help/help.inc:312 msgid "2-factor authentication" msgstr "2-factor authentication" @@ -183,8 +183,8 @@ msgstr "A SOA record allows no other records except NS/MX/A records." msgid "A SOA record requires that the host name is set to \"@\"." msgstr "A SOA record requires that the host name is set to \"@\"." -#: ../lib/modules/selfRegistration.inc:772 -#: ../lib/modules/passwordSelfReset.inc:1862 +#: ../lib/modules/selfRegistration.inc:771 +#: ../lib/modules/passwordSelfReset.inc:1860 msgid "" "A confirmation mail was sent. Please click on the link in the mail to " "proceed." @@ -268,7 +268,7 @@ msgstr "AMA flags" msgid "Abandon" msgstr "Abandon" -#: ../templates/lists/changePassword.php:752 +#: ../templates/lists/changePassword.php:756 msgid "Aborted password change." msgstr "Aborted password change." @@ -276,7 +276,7 @@ msgstr "Aborted password change." msgid "Access level" msgstr "Access level" -#: ../lib/modules/windowsLDSUser.inc:946 ../lib/modules/account.inc:61 +#: ../lib/modules/windowsLDSUser.inc:954 ../lib/modules/account.inc:61 #: ../lib/modules/windowsUser.inc:1248 msgid "Account" msgstr "Account" @@ -290,18 +290,18 @@ msgstr "Account" #: ../lib/modules/pykotaPrinter.inc:219 ../lib/modules/mitKerberos.inc:281 #: ../lib/modules/mitKerberos.inc:282 ../lib/modules/mitKerberos.inc:283 #: ../lib/modules/mitKerberos.inc:285 ../lib/modules/mitKerberos.inc:287 -#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/windowsLDSUser.inc:743 -#: ../lib/modules/windowsLDSUser.inc:745 ../lib/modules/windowsLDSUser.inc:747 -#: ../lib/modules/windowsLDSUser.inc:749 ../lib/modules/windowsLDSUser.inc:751 -#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:755 -#: ../lib/modules/windowsLDSUser.inc:757 ../lib/modules/windowsLDSUser.inc:759 -#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:763 -#: ../lib/modules/windowsLDSUser.inc:765 ../lib/modules/windowsLDSUser.inc:767 -#: ../lib/modules/windowsLDSUser.inc:769 ../lib/modules/windowsLDSUser.inc:771 -#: ../lib/modules/windowsLDSUser.inc:773 ../lib/modules/windowsLDSUser.inc:775 -#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:781 -#: ../lib/modules/windowsLDSUser.inc:783 ../lib/modules/windowsLDSUser.inc:784 -#: ../lib/modules/windowsLDSUser.inc:1642 ../lib/modules/kopanoServer.inc:150 +#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/windowsLDSUser.inc:750 +#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/windowsLDSUser.inc:754 +#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:758 +#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:762 +#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:766 +#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:776 ../lib/modules/windowsLDSUser.inc:778 +#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:782 +#: ../lib/modules/windowsLDSUser.inc:786 ../lib/modules/windowsLDSUser.inc:788 +#: ../lib/modules/windowsLDSUser.inc:790 ../lib/modules/windowsLDSUser.inc:791 +#: ../lib/modules/windowsLDSUser.inc:1660 ../lib/modules/kopanoServer.inc:150 #: ../lib/modules/kopanoServer.inc:152 ../lib/modules/kopanoServer.inc:154 #: ../lib/modules/kopanoServer.inc:155 ../lib/modules/autoDelete.inc:103 #: ../lib/modules/zarafaDynamicGroup.inc:181 @@ -332,8 +332,8 @@ msgstr "Account" #: ../lib/modules/zarafaContact.inc:179 ../lib/modules/zarafaContact.inc:180 #: ../lib/modules/zarafaContact.inc:181 ../lib/modules/zarafaContact.inc:184 #: ../lib/modules/zarafaContact.inc:185 ../lib/modules/windowsHost.inc:145 -#: ../lib/modules/posixGroup.inc:708 ../lib/modules/posixGroup.inc:712 -#: ../lib/modules/posixGroup.inc:713 ../lib/modules/zarafaGroup.inc:190 +#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 ../lib/modules/zarafaGroup.inc:190 #: ../lib/modules/zarafaGroup.inc:192 ../lib/modules/zarafaGroup.inc:193 #: ../lib/modules/zarafaGroup.inc:194 ../lib/modules/zarafaGroup.inc:195 #: ../lib/modules/zarafaGroup.inc:197 ../lib/modules/device.inc:127 @@ -572,7 +572,7 @@ msgstr "Account creation via file upload" msgid "Account deactivated" msgstr "Account deactivated" -#: ../templates/lists/changePassword.php:272 +#: ../templates/lists/changePassword.php:276 msgid "Account details" msgstr "Account details" @@ -632,7 +632,7 @@ msgstr "Account is deactivated" msgid "Account is locked" msgstr "Account is locked" -#: ../templates/lists/changePassword.php:418 ../lib/modules/locking389ds.inc:57 +#: ../templates/lists/changePassword.php:422 ../lib/modules/locking389ds.inc:57 msgid "Account locking" msgstr "Account locking" @@ -680,13 +680,13 @@ msgstr "" msgid "Account was created successfully." msgstr "Account was created successfully." -#: ../templates/lists/changePassword.php:782 -#: ../templates/lists/changePassword.php:893 -#: ../templates/lists/changePassword.php:943 ../lib/modules.inc:1399 +#: ../templates/lists/changePassword.php:786 +#: ../templates/lists/changePassword.php:897 +#: ../templates/lists/changePassword.php:947 ../lib/modules.inc:1399 msgid "Account was modified successfully." msgstr "Account was modified successfully." -#: ../lib/passwordExpirationJob.inc:488 ../help/help.inc:414 +#: ../lib/passwordExpirationJob.inc:486 ../help/help.inc:424 msgid "Action" msgstr "Action" @@ -698,11 +698,11 @@ msgstr "Action type" msgid "Actions" msgstr "Actions" -#: ../templates/lists/changePassword.php:415 ../lib/types/user.inc:508 +#: ../templates/lists/changePassword.php:419 ../lib/types/user.inc:508 msgid "Activate" msgstr "Activate" -#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:366 +#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:362 msgid "Activate DynDNS" msgstr "Activate DynDNS" @@ -711,7 +711,7 @@ msgstr "Activate DynDNS" msgid "Activate TLS" msgstr "Activate TLS" -#: ../help/help.inc:205 +#: ../help/help.inc:209 msgid "" "Activate this checkbox if you have any server side extension for referential " "integrity in place. LAM will then skip cleanup tasks like deletion of group " @@ -745,7 +745,7 @@ msgstr "" msgid "Activate this checkbox to set the client's printer as default printer." msgstr "Activate this checkbox to set the client's printer as default printer." -#: ../help/help.inc:376 +#: ../help/help.inc:386 msgid "" "Activate this option to export internal attributes that are not visible by " "default." @@ -792,7 +792,7 @@ msgstr "Activating this checkbox will remove the user's home directory." #: ../lib/modules/kopanoAddressList.inc:141 #: ../lib/modules/kopanoAddressList.inc:185 #: ../lib/modules/kopanoAddressList.inc:298 ../lib/modules/fixed_ip.inc:119 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:763 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:761 msgid "Active" msgstr "Active" @@ -824,18 +824,18 @@ msgstr "Active account types" #: ../lib/modules/bindDLZ.inc:995 ../lib/modules/bindDLZ.inc:1083 #: ../lib/modules/bindDLZ.inc:1197 ../lib/modules/bindDLZ.inc:1327 #: ../lib/modules/bindDLZ.inc:1493 ../lib/modules/bindDLZ.inc:1602 -#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:687 -#: ../lib/modules/kolabUser.inc:735 ../lib/modules/sambaGroupMapping.inc:372 +#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:686 +#: ../lib/modules/kolabUser.inc:734 ../lib/modules/sambaGroupMapping.inc:372 #: ../lib/modules/sambaGroupMapping.inc:465 ../lib/modules/pykotaUser.inc:373 #: ../lib/modules/ldapPublicKey.inc:355 ../lib/modules/ldapPublicKey.inc:364 #: ../lib/modules/nisNetGroupUser.inc:219 ../lib/modules/yubiKeyUser.inc:322 #: ../lib/modules/yubiKeyUser.inc:323 ../lib/modules/nisnetgroup.inc:301 -#: ../lib/modules/inetOrgPerson.inc:1768 ../lib/modules/kopanoUser.inc:843 +#: ../lib/modules/inetOrgPerson.inc:1766 ../lib/modules/kopanoUser.inc:843 #: ../lib/modules/kopanoUser.inc:1416 ../lib/modules/kopanoUser.inc:1447 #: ../lib/modules/windowsLDSGroup.inc:423 ../lib/modules/customFields.inc:1243 #: ../lib/modules/customFields.inc:2569 ../lib/modules/customFields.inc:2587 #: ../lib/modules/qmailGroup.inc:642 ../lib/modules/organizationalRole.inc:304 -#: ../lib/modules/fixed_ip.inc:608 ../lib/modules/windowsGroup.inc:656 +#: ../lib/modules/fixed_ip.inc:606 ../lib/modules/windowsGroup.inc:656 #: ../lib/modules/groupOfNames.inc:354 ../lib/modules/groupOfNames.inc:503 msgid "Add" msgstr "Add" @@ -909,7 +909,7 @@ msgstr "Add Samba 3 extension" msgid "Add Shadow account extension" msgstr "Add Shadow account extension" -#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1704 +#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1759 msgid "Add Unix extension" msgstr "Add Unix extension" @@ -928,7 +928,7 @@ msgstr "Add Zarafa contact extension" msgid "Add Zarafa extension" msgstr "Add Zarafa extension" -#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4118 +#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4115 msgid "Add addressbook (ou=addressbook)" msgstr "Add addressbook (ou=addressbook)" @@ -949,7 +949,7 @@ msgstr "Add an additional value to attribute" msgid "Add another rule" msgstr "Add another rule" -#: ../lib/modules/inetOrgPerson.inc:1802 ../lib/modules/windowsLDSGroup.inc:476 +#: ../lib/modules/inetOrgPerson.inc:1800 ../lib/modules/windowsLDSGroup.inc:476 #: ../lib/modules/qmailGroup.inc:683 ../lib/modules/organizationalRole.inc:309 #: ../lib/modules/groupOfNames.inc:406 ../lib/modules/groupOfNames.inc:555 msgid "Add entries" @@ -966,7 +966,7 @@ msgstr "Add entries" msgid "Add entries of this type:" msgstr "Add entries of this type:" -#: ../lib/modules/fixed_ip.inc:520 +#: ../lib/modules/fixed_ip.inc:518 msgid "Add existing host" msgstr "Add existing host" @@ -974,7 +974,7 @@ msgstr "Add existing host" msgid "Add extension" msgstr "Add extension" -#: ../lib/modules/ddns.inc:367 +#: ../lib/modules/ddns.inc:363 msgid "Add fix IP addresses to DNS" msgstr "Add fix IP addresses to DNS" @@ -982,7 +982,7 @@ msgstr "Add fix IP addresses to DNS" msgid "Add host extension" msgstr "Add host extension" -#: ../templates/selfService/adminMain.php:707 ../help/help.inc:290 +#: ../templates/selfService/adminMain.php:707 ../help/help.inc:300 msgid "Add input field" msgstr "Add input field" @@ -1028,7 +1028,7 @@ msgstr "Add new binary attribute" msgid "Add new field" msgstr "Add new field" -#: ../templates/selfService/adminMain.php:695 ../help/help.inc:288 +#: ../templates/selfService/adminMain.php:695 ../help/help.inc:298 msgid "Add new group" msgstr "Add new group" @@ -1049,8 +1049,8 @@ msgstr "Add object class and attributes" msgid "Add password self reset extension" msgstr "Add password self reset extension" -#: ../lib/modules/windowsLDSUser.inc:223 ../lib/modules/windowsLDSUser.inc:323 -#: ../lib/modules/windowsLDSUser.inc:976 ../lib/modules/windowsUser.inc:300 +#: ../lib/modules/windowsLDSUser.inc:227 ../lib/modules/windowsLDSUser.inc:327 +#: ../lib/modules/windowsLDSUser.inc:994 ../lib/modules/windowsUser.inc:300 #: ../lib/modules/windowsUser.inc:400 ../lib/modules/windowsUser.inc:1350 #: ../lib/modules/inetOrgPerson.inc:693 ../lib/modules/inetOrgPerson.inc:1609 msgid "Add photo" @@ -1079,7 +1079,7 @@ msgstr "Add to existing alias" msgid "Add value" msgstr "Add value" -#: ../lib/modules/posixGroup.inc:1002 ../lib/modules/posixGroup.inc:1045 +#: ../lib/modules/posixGroup.inc:1003 ../lib/modules/posixGroup.inc:1046 msgid "Added users" msgstr "Added users" @@ -1087,17 +1087,17 @@ msgstr "Added users" msgid "Adding" msgstr "Adding" -#: ../lib/modules/range.inc:139 -msgid "Adding the range failed because errors occured." -msgstr "Adding the range failed because errors occured." +#: ../lib/modules/range.inc:138 +msgid "Adding the range failed because errors occurred." +msgstr "Adding the range failed because errors occurred." -#: ../templates/selfService/adminMain.php:601 ../help/help.inc:294 +#: ../templates/selfService/adminMain.php:601 ../help/help.inc:304 msgid "Additional CSS links" msgstr "Additional CSS links" #: ../templates/config/conftypes.php:245 -#: ../templates/selfService/adminMain.php:447 ../help/help.inc:184 -#: ../help/help.inc:298 +#: ../templates/selfService/adminMain.php:447 ../help/help.inc:188 +#: ../help/help.inc:308 msgid "Additional LDAP filter" msgstr "Additional LDAP filter" @@ -1112,8 +1112,8 @@ msgstr "Additional email addresses for this entry." #: ../lib/modules/posixAccount.inc:231 ../lib/modules/posixAccount.inc:304 #: ../lib/modules/posixAccount.inc:353 ../lib/modules/posixAccount.inc:439 -#: ../lib/modules/posixAccount.inc:1641 ../lib/modules/posixAccount.inc:1977 -#: ../lib/modules/posixAccount.inc:2113 +#: ../lib/modules/posixAccount.inc:1696 ../lib/modules/posixAccount.inc:2032 +#: ../lib/modules/posixAccount.inc:2167 msgid "Additional groups" msgstr "Additional groups" @@ -1121,15 +1121,11 @@ msgstr "Additional groups" msgid "Additional notes to describe this entry." msgstr "Additional notes to describe this entry." -#: ../templates/config/mainmanage.php:457 -msgid "Additional options" -msgstr "Additional options" - -#: ../lib/upload.inc:257 +#: ../lib/upload.inc:256 msgid "Additional tasks for module:" msgstr "Additional tasks for module:" -#: ../lib/modules/windowsLDSUser.inc:868 ../lib/modules/windowsUser.inc:1169 +#: ../lib/modules/windowsLDSUser.inc:875 ../lib/modules/windowsUser.inc:1169 #: ../lib/modules/inetOrgPerson.inc:1253 msgid "Address" msgstr "Address" @@ -1144,7 +1140,7 @@ msgstr "Address list count: %s" msgid "Address of IMAP server (e.g. mail.example.org)." msgstr "Address of IMAP server (e.g. mail.example.org)." -#: ../help/help.inc:289 +#: ../help/help.inc:299 msgid "" "Adds a new group element to the list of self service options. Use this to " "structure the input fields." @@ -1152,11 +1148,11 @@ msgstr "" "Adds a new group element to the list of self service options. Use this to " "structure the input fields." -#: ../lib/modules/range.inc:117 +#: ../lib/modules/range.inc:116 msgid "Adds a new range pool." msgstr "Adds a new range pool." -#: ../help/help.inc:291 +#: ../help/help.inc:301 msgid "Adds a new self service option to the selected group element." msgstr "Adds a new self service option to the selected group element." @@ -1164,7 +1160,7 @@ msgstr "Adds a new self service option to the selected group element." msgid "Adds an \"ou=addressbook\" subentry to each user." msgstr "Adds an \"ou=addressbook\" subentry to each user." -#: ../lib/modules/range.inc:113 +#: ../lib/modules/range.inc:112 msgid "Adds input fields for a new IP range." msgstr "Adds input fields for a new IP range." @@ -1205,8 +1201,8 @@ msgstr "Admin email" msgid "Admin password" msgstr "Admin password" -#: ../lib/modules/windowsLDSUser.inc:543 ../lib/modules/windowsLDSUser.inc:551 -#: ../lib/modules/windowsLDSUser.inc:567 ../lib/modules/windowsUser.inc:726 +#: ../lib/modules/windowsLDSUser.inc:547 ../lib/modules/windowsLDSUser.inc:555 +#: ../lib/modules/windowsLDSUser.inc:571 ../lib/modules/windowsUser.inc:726 #: ../lib/modules/windowsUser.inc:734 ../lib/modules/windowsUser.inc:750 #: ../lib/modules/inetOrgPerson.inc:301 ../lib/modules/inetOrgPerson.inc:423 #: ../lib/modules/inetOrgPerson.inc:431 @@ -1219,14 +1215,14 @@ msgstr "Administration" msgid "Administrators group" msgstr "Administrators group" -#: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2170 -#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4150 +#: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2210 +#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4147 msgid "Advanced options" msgstr "Advanced options" #: ../lib/modules/eduPerson.inc:104 ../lib/modules/eduPerson.inc:108 #: ../lib/modules/eduPerson.inc:180 ../lib/modules/eduPerson.inc:224 -#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:550 +#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:544 msgid "Affiliations" msgstr "Affiliations" @@ -1330,7 +1326,7 @@ msgstr "Aliases for email" msgid "Aliases for user name" msgstr "Aliases for user name" -#: ../lib/lists.inc:798 +#: ../lib/lists.inc:797 #, php-format msgid "All accounts (%s)" msgstr "All accounts (%s)" @@ -1340,7 +1336,7 @@ msgstr "All accounts (%s)" msgid "All changes were successful." msgstr "All changes were successful." -#: ../lib/lists.inc:797 +#: ../lib/lists.inc:796 #, php-format msgid "All selected accounts (%s)" msgstr "All selected accounts (%s)" @@ -1349,7 +1345,7 @@ msgstr "All selected accounts (%s)" msgid "Allow" msgstr "Allow" -#: ../templates/config/confmain.php:376 ../help/help.inc:349 +#: ../templates/config/confmain.php:376 ../help/help.inc:359 msgid "Allow alternate address" msgstr "Allow alternate address" @@ -1378,7 +1374,7 @@ msgstr "Allow multiple values" msgid "Allow password change" msgstr "Allow password change" -#: ../templates/config/confmain.php:329 ../help/help.inc:220 +#: ../templates/config/confmain.php:329 ../help/help.inc:224 msgid "Allow setting specific passwords" msgstr "Allow setting specific passwords" @@ -1389,7 +1385,7 @@ msgstr "Allow setting specific passwords" msgid "Allow terminal server login" msgstr "Allow terminal server login" -#: ../templates/config/confmain.php:335 ../help/help.inc:222 +#: ../templates/config/confmain.php:335 ../help/help.inc:226 msgid "Allow to display password on screen" msgstr "Allow to display password on screen" @@ -1410,12 +1406,12 @@ msgstr "Allow user input for this field." msgid "Allowed codec" msgstr "Allowed codec" -#: ../templates/config/mainmanage.php:313 ../lib/types/user.inc:104 +#: ../templates/config/mainmanage.php:353 ../lib/types/user.inc:104 #: ../help/help.inc:160 msgid "Allowed hosts" msgstr "Allowed hosts" -#: ../templates/config/mainmanage.php:315 +#: ../templates/config/mainmanage.php:355 msgid "Allowed hosts (self service)" msgstr "Allowed hosts (self service)" @@ -1459,7 +1455,7 @@ msgstr "Allowed senders" msgid "Allowed workstations" msgstr "Allowed workstations" -#: ../help/help.inc:223 +#: ../help/help.inc:227 msgid "Allows to display a randomly generated password on screen." msgstr "Allows to display a randomly generated password on screen." @@ -1471,12 +1467,12 @@ msgstr "Allows to enter multiple values for this attribute." msgid "Allows to select multiple values from the list." msgstr "Allows to select multiple values from the list." -#: ../help/help.inc:221 +#: ../help/help.inc:225 msgid "Allows to set a specific password via input field." msgstr "Allows to set a specific password via input field." -#: ../templates/lists/changePassword.php:334 -#: ../templates/lists/changePassword.php:370 ../lib/modules/qmailUser.inc:169 +#: ../templates/lists/changePassword.php:338 +#: ../templates/lists/changePassword.php:374 ../lib/modules/qmailUser.inc:169 #: ../lib/modules/qmailUser.inc:237 ../lib/modules/qmailUser.inc:357 #: ../lib/modules/qmailUser.inc:404 ../lib/modules/qmailUser.inc:451 #: ../lib/modules/qmailUser.inc:931 ../lib/modules/qmailGroup.inc:96 @@ -1486,7 +1482,7 @@ msgstr "Allows to set a specific password via input field." msgid "Alternate address" msgstr "Alternate address" -#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:270 +#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:280 msgid "Alternate recipient" msgstr "Alternate recipient" @@ -1536,18 +1532,18 @@ msgstr "" msgid "Answer" msgstr "Answer" -#: ../lib/modules/windowsLDSUser.inc:304 ../lib/modules/windowsLDSUser.inc:308 +#: ../lib/modules/windowsLDSUser.inc:308 ../lib/modules/windowsLDSUser.inc:312 #: ../lib/modules/windowsUser.inc:381 ../lib/modules/windowsUser.inc:385 msgid "Any secondary mobile numbers." msgstr "Any secondary mobile numbers." -#: ../lib/modules/windowsLDSUser.inc:292 ../lib/modules/windowsLDSUser.inc:296 +#: ../lib/modules/windowsLDSUser.inc:296 ../lib/modules/windowsLDSUser.inc:300 #: ../lib/modules/windowsUser.inc:369 ../lib/modules/windowsUser.inc:373 msgid "Any secondary pager numbers." msgstr "Any secondary pager numbers." #: ../lib/modules/kolabUser.inc:279 ../lib/modules/kolabUser.inc:604 -#: ../lib/modules/kolabUser.inc:710 ../lib/modules/kolabUser.inc:713 +#: ../lib/modules/kolabUser.inc:709 ../lib/modules/kolabUser.inc:712 msgid "Anyone" msgstr "Anyone" @@ -1604,7 +1600,7 @@ msgstr "Ask" #: ../lib/modules/eduPerson.inc:141 ../lib/modules/eduPerson.inc:145 #: ../lib/modules/eduPerson.inc:217 ../lib/modules/eduPerson.inc:233 -#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:555 +#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:549 msgid "Assurance profiles" msgstr "Assurance profiles" @@ -1690,7 +1686,7 @@ msgstr "Attribute types" #: ../templates/tools/importexport.php:279 #: ../lib/modules/selfRegistration.inc:77 -#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:373 +#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:383 msgid "Attributes" msgstr "Attributes" @@ -1749,12 +1745,12 @@ msgstr "Automatic scripts" #: ../lib/modules/puppetClient.inc:115 ../lib/modules/puppetClient.inc:172 #: ../lib/modules/qmailUser.inc:98 ../lib/modules/qmailUser.inc:229 #: ../lib/modules/zarafaContact.inc:90 ../lib/modules/zarafaContact.inc:651 -#: ../lib/modules/posixGroup.inc:393 ../lib/modules/posixGroup.inc:480 +#: ../lib/modules/posixGroup.inc:394 ../lib/modules/posixGroup.inc:481 #: ../lib/modules/eduPerson.inc:149 ../lib/modules/eduPerson.inc:154 #: ../lib/modules/pykotaGroup.inc:123 ../lib/modules/pykotaGroup.inc:134 #: ../lib/modules/sambaSamAccount.inc:165 #: ../lib/modules/sambaSamAccount.inc:404 ../lib/modules/posixAccount.inc:315 -#: ../lib/modules/posixAccount.inc:2018 ../lib/modules/zarafaUser.inc:154 +#: ../lib/modules/posixAccount.inc:2073 ../lib/modules/zarafaUser.inc:154 #: ../lib/modules/zarafaUser.inc:1345 ../lib/modules/kopanoContact.inc:90 #: ../lib/modules/kopanoContact.inc:603 #: ../lib/modules/courierMailAccount.inc:132 @@ -1824,10 +1820,10 @@ msgstr "Available account types" msgid "Available actions" msgstr "Available actions" -#: ../lib/modules/windowsLDSUser.inc:1241 ../lib/modules/posixAccount.inc:1783 -#: ../lib/modules/posixAccount.inc:1814 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1838 +#: ../lib/modules/posixAccount.inc:1869 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Available groups" msgstr "Available groups" @@ -1844,7 +1840,7 @@ msgstr "Available modules" msgid "Available roles" msgstr "Available roles" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Available users" msgstr "Available users" @@ -1857,25 +1853,25 @@ msgid "B-Node (0x01)" msgstr "B-Node (0x01)" #: ../lib/passwordExpirationJob.inc:86 ../lib/passwordExpirationJob.inc:140 -#: ../help/help.inc:406 +#: ../help/help.inc:416 msgid "BCC address" msgstr "BCC address" #: ../templates/config/jobList.php:174 #: ../templates/upload/massBuildAccounts.php:292 -#: ../lib/modules/windowsLDSUser.inc:1244 -#: ../lib/modules/windowsLDSUser.inc:1279 ../lib/modules/zarafaContact.inc:474 -#: ../lib/modules/posixGroup.inc:349 ../lib/modules/zarafaGroup.inc:489 +#: ../lib/modules/windowsLDSUser.inc:1262 +#: ../lib/modules/windowsLDSUser.inc:1297 ../lib/modules/zarafaContact.inc:474 +#: ../lib/modules/posixGroup.inc:350 ../lib/modules/zarafaGroup.inc:489 #: ../lib/modules/device.inc:295 ../lib/modules/kopanoGroup.inc:440 #: ../lib/modules/sambaSamAccount.inc:1372 -#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1888 -#: ../lib/modules/posixAccount.inc:1956 ../lib/modules/zarafaUser.inc:978 +#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1943 +#: ../lib/modules/posixAccount.inc:2011 ../lib/modules/zarafaUser.inc:978 #: ../lib/modules/zarafaUser.inc:1027 ../lib/modules/kopanoContact.inc:424 #: ../lib/modules/windowsUser.inc:1881 ../lib/modules/windowsUser.inc:2025 #: ../lib/modules/windowsUser.inc:2214 ../lib/modules/sambaGroupMapping.inc:485 #: ../lib/modules/pykotaUser.inc:581 ../lib/modules/pykotaUser.inc:624 -#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1711 -#: ../lib/modules/inetOrgPerson.inc:1803 ../lib/modules/inetOrgPerson.inc:1888 +#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1709 +#: ../lib/modules/inetOrgPerson.inc:1801 ../lib/modules/inetOrgPerson.inc:1886 #: ../lib/modules/kopanoUser.inc:899 ../lib/modules/kopanoUser.inc:947 #: ../lib/modules/windowsLDSGroup.inc:298 #: ../lib/modules/windowsLDSGroup.inc:484 @@ -1900,7 +1896,7 @@ msgstr "Back to DNS list" msgid "Back to NIS object list" msgstr "Back to NIS object list" -#: ../lib/baseType.inc:56 +#: ../lib/baseType.inc:55 msgid "Back to account list" msgstr "Back to account list" @@ -1996,11 +1992,11 @@ msgstr "Back up" msgid "Backends" msgstr "Backends" -#: ../help/help.inc:323 +#: ../help/help.inc:333 msgid "Background color for self service pages." msgstr "Background color for self service pages." -#: ../templates/lists/changePassword.php:283 +#: ../templates/lists/changePassword.php:287 #: ../lib/modules/passwordSelfReset.inc:91 #: ../lib/modules/passwordSelfReset.inc:241 #: ../lib/modules/passwordSelfReset.inc:259 @@ -2090,23 +2086,23 @@ msgstr "Base (base dn only)" #: ../templates/3rdParty/pla/lib/QueryRender.php:106 #: ../templates/3rdParty/pla/lib/QueryRender.php:479 #: ../templates/3rdParty/pla/htdocs/export_form.php:59 ../lib/export.inc:127 -#: ../lib/export.inc:254 ../help/help.inc:369 +#: ../lib/export.inc:254 ../help/help.inc:379 msgid "Base DN" msgstr "Base DN" #: ../templates/config/confmain.php:496 #: ../templates/selfService/adminMain.php:480 #: ../templates/selfService/adminMain.php:517 ../help/help.inc:136 -#: ../help/help.inc:304 +#: ../help/help.inc:314 msgid "Base URL" msgstr "Base URL" #: ../templates/config/confmain.php:499 -#: ../templates/selfService/adminMain.php:520 ../help/help.inc:306 +#: ../templates/selfService/adminMain.php:520 ../help/help.inc:316 msgid "Base URLs" msgstr "Base URLs" -#: ../templates/selfService/adminMain.php:599 ../help/help.inc:322 +#: ../templates/selfService/adminMain.php:599 ../help/help.inc:332 msgid "Base color" msgstr "Base color" @@ -2184,7 +2180,7 @@ msgstr "Bind password" msgid "Bind user" msgstr "Bind user" -#: ../help/help.inc:134 ../help/help.inc:206 +#: ../help/help.inc:134 ../help/help.inc:210 msgid "Bind user and password" msgstr "Bind user and password" @@ -2223,8 +2219,8 @@ msgstr "" msgid "Block soft quota must be smaller than block hard quota." msgstr "Block soft quota must be smaller than block hard quota." -#: ../templates/lists/changePassword.php:326 -#: ../templates/config/confmain.php:346 +#: ../templates/lists/changePassword.php:330 +#: ../templates/config/mainmanage.php:324 ../templates/config/confmain.php:346 msgid "Both" msgstr "Both" @@ -2255,11 +2251,11 @@ msgstr "Bulk edit the following DNs" msgid "Bulk update the following DNs" msgstr "Bulk update the following DNs" -#: ../lib/modules/windowsLDSUser.inc:243 ../lib/modules/windowsLDSUser.inc:247 -#: ../lib/modules/windowsLDSUser.inc:541 ../lib/modules/windowsLDSUser.inc:613 -#: ../lib/modules/windowsLDSUser.inc:691 ../lib/modules/windowsLDSUser.inc:782 -#: ../lib/modules/windowsLDSUser.inc:916 ../lib/modules/windowsLDSUser.inc:1832 -#: ../lib/modules/windowsLDSUser.inc:2158 ../lib/modules/windowsUser.inc:320 +#: ../lib/modules/windowsLDSUser.inc:247 ../lib/modules/windowsLDSUser.inc:251 +#: ../lib/modules/windowsLDSUser.inc:545 ../lib/modules/windowsLDSUser.inc:617 +#: ../lib/modules/windowsLDSUser.inc:698 ../lib/modules/windowsLDSUser.inc:789 +#: ../lib/modules/windowsLDSUser.inc:923 ../lib/modules/windowsLDSUser.inc:1850 +#: ../lib/modules/windowsLDSUser.inc:2198 ../lib/modules/windowsUser.inc:320 #: ../lib/modules/windowsUser.inc:324 ../lib/modules/windowsUser.inc:724 #: ../lib/modules/windowsUser.inc:818 ../lib/modules/windowsUser.inc:940 #: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1218 @@ -2268,19 +2264,19 @@ msgstr "Bulk update the following DNs" #: ../lib/modules/inetOrgPerson.inc:299 ../lib/modules/inetOrgPerson.inc:540 #: ../lib/modules/inetOrgPerson.inc:709 ../lib/modules/inetOrgPerson.inc:713 #: ../lib/modules/inetOrgPerson.inc:1497 ../lib/modules/inetOrgPerson.inc:1500 -#: ../lib/modules/inetOrgPerson.inc:1985 ../lib/modules/inetOrgPerson.inc:2081 -#: ../lib/modules/inetOrgPerson.inc:2828 ../lib/modules/inetOrgPerson.inc:4093 -#: ../lib/modules/inetOrgPerson.inc:4132 +#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2079 +#: ../lib/modules/inetOrgPerson.inc:2826 ../lib/modules/inetOrgPerson.inc:4090 +#: ../lib/modules/inetOrgPerson.inc:4129 msgid "Business category" msgstr "Business category" -#: ../lib/modules/windowsLDSUser.inc:244 ../lib/modules/windowsLDSUser.inc:248 +#: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:252 #: ../lib/modules/windowsUser.inc:321 ../lib/modules/windowsUser.inc:325 #: ../lib/modules/inetOrgPerson.inc:710 ../lib/modules/inetOrgPerson.inc:714 -msgid "Business category (e.g. Administration, IT-Services, Manangement, ...)" -msgstr "Business category (e.g. Administration, IT-Services, Manangement, ...)" +msgid "Business category (e.g. Administration, IT-Services, Management, ...)" +msgstr "Business category (e.g. Administration, IT-Services, Management, ...)" -#: ../help/help.inc:187 +#: ../help/help.inc:191 msgid "" "By default LAM will show all accounts that match the selected account " "modules." @@ -2288,7 +2284,7 @@ msgstr "" "By default LAM will show all accounts that match the selected account " "modules." -#: ../help/help.inc:301 +#: ../help/help.inc:311 msgid "" "By default all modifications are done as the user that authenticated in self " "service. If active then LAM will use the connection user for all LDAP " @@ -2321,7 +2317,7 @@ msgid "Bytes sent" msgstr "Bytes sent" #: ../lib/passwordExpirationJob.inc:85 ../lib/passwordExpirationJob.inc:134 -#: ../help/help.inc:402 +#: ../help/help.inc:412 msgid "CC address" msgstr "CC address" @@ -2383,10 +2379,10 @@ msgstr "Can be left empty." msgid "Can call forward" msgstr "Can call forward" -#: ../templates/misc/ajax.php:288 ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 ../templates/tools/ou_edit.php:137 +#: ../templates/misc/ajax.php:288 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 ../templates/tools/ou_edit.php:137 #: ../templates/tools/importexport.php:209 #: ../templates/tools/importexport.php:367 ../templates/tools/webauthn.php:117 #: ../templates/config/profmanage.php:230 @@ -2394,7 +2390,7 @@ msgstr "Can call forward" #: ../templates/config/profmanage.php:252 #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:505 +#: ../templates/config/mainmanage.php:545 #: ../templates/config/confmodules.php:153 ../templates/config/jobList.php:185 #: ../templates/config/jobs.php:273 ../templates/config/jobs.php:316 #: ../templates/config/confmain.php:539 @@ -2420,7 +2416,7 @@ msgstr "Can call forward" #: ../lib/types/automountType.inc:213 ../lib/types/user.inc:357 #: ../lib/types/bind.inc:157 ../lib/html.inc:610 #: ../lib/modules/locking389ds.inc:185 ../lib/modules/pykotaPrinter.inc:422 -#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/windowsLDSUser.inc:1407 +#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/windowsLDSUser.inc:1425 #: ../lib/modules/nisMailAliasUser.inc:389 ../lib/modules/autoDelete.inc:211 #: ../lib/modules/qmailUser.inc:724 ../lib/modules/zarafaContact.inc:423 #: ../lib/modules/windowsHost.inc:270 ../lib/modules/zarafaGroup.inc:437 @@ -2431,30 +2427,30 @@ msgstr "Can call forward" #: ../lib/modules/kopanoContact.inc:375 ../lib/modules/windowsUser.inc:1738 #: ../lib/modules/windowsUser.inc:2153 ../lib/modules/sambaGroupMapping.inc:466 #: ../lib/modules/shadowAccount.inc:509 ../lib/modules/shadowAccount.inc:575 -#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1769 +#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1767 #: ../lib/modules/freeRadius.inc:568 ../lib/modules/kopanoUser.inc:844 #: ../lib/modules/windowsLDSGroup.inc:357 #: ../lib/modules/windowsLDSGroup.inc:424 ../lib/modules/webauthn.inc:175 #: ../lib/modules/customFields.inc:1244 ../lib/modules/aliasEntry.inc:157 #: ../lib/modules/aliasEntry.inc:180 ../lib/modules/qmailGroup.inc:643 -#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:609 +#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:607 #: ../lib/modules/heimdalKerberos.inc:615 ../lib/modules/windowsGroup.inc:591 #: ../lib/modules/windowsGroup.inc:657 ../lib/modules/groupOfNames.inc:355 #: ../lib/modules/groupOfNames.inc:504 ../lib/modules/nisMailAlias.inc:389 -#: ../lib/lists.inc:808 ../lib/lists.inc:891 ../lib/modules.inc:1312 +#: ../lib/lists.inc:807 ../lib/lists.inc:890 ../lib/modules.inc:1312 msgid "Cancel" msgstr "Cancel" -#: ../templates/login.php:513 ../templates/login.php:583 +#: ../templates/login.php:523 ../templates/login.php:593 #: ../templates/config/jobs.php:429 -#: ../templates/selfService/selfServiceLogin.php:196 -#: ../templates/selfService/selfServiceLogin.php:202 +#: ../templates/selfService/selfServiceLogin.php:197 +#: ../templates/selfService/selfServiceLogin.php:203 #: ../templates/selfService/selfServiceMain.php:171 -#: ../lib/modules/selfRegistration.inc:839 +#: ../lib/modules/selfRegistration.inc:838 msgid "Cannot connect to specified LDAP server. Please try again." msgstr "Cannot connect to specified LDAP server. Please try again." -#: ../templates/login.php:281 ../lib/config.inc:2784 +#: ../templates/login.php:281 ../lib/config.inc:2837 msgid "Cannot open config file!" msgstr "Cannot open config file!" @@ -2466,7 +2462,7 @@ msgstr "Cannot read quota." msgid "Cannot update quota." msgstr "Cannot update quota." -#: ../lib/config.inc:2796 ../lib/config.inc:2804 +#: ../lib/config.inc:2849 ../lib/config.inc:2857 msgid "" "Cannot write certificate file. Please check the permissions of config/" "serverCerts.pem." @@ -2484,8 +2480,8 @@ msgstr "" msgid "Capacity" msgstr "Capacity" -#: ../templates/selfService/selfServiceLogin.php:116 -#: ../templates/selfService/selfServiceLogin.php:303 +#: ../templates/selfService/selfServiceLogin.php:117 +#: ../templates/selfService/selfServiceLogin.php:304 #: ../templates/selfService/adminMain.php:544 #: ../templates/selfService/adminMain.php:549 #: ../lib/modules/selfRegistration.inc:126 @@ -2500,7 +2496,7 @@ msgid "Captcha" msgstr "Captcha" #: ../templates/config/confmain.php:512 -#: ../templates/selfService/adminMain.php:533 ../help/help.inc:312 +#: ../templates/selfService/adminMain.php:533 ../help/help.inc:322 msgid "Caption" msgstr "Caption" @@ -2508,26 +2504,26 @@ msgstr "Caption" msgid "Captions and labels" msgstr "Captions and labels" -#: ../lib/modules/windowsLDSUser.inc:231 ../lib/modules/windowsLDSUser.inc:517 -#: ../lib/modules/windowsLDSUser.inc:682 ../lib/modules/windowsLDSUser.inc:907 -#: ../lib/modules/windowsLDSUser.inc:1829 -#: ../lib/modules/windowsLDSUser.inc:2155 ../lib/modules/windowsUser.inc:308 +#: ../lib/modules/windowsLDSUser.inc:235 ../lib/modules/windowsLDSUser.inc:521 +#: ../lib/modules/windowsLDSUser.inc:689 ../lib/modules/windowsLDSUser.inc:914 +#: ../lib/modules/windowsLDSUser.inc:1847 +#: ../lib/modules/windowsLDSUser.inc:2195 ../lib/modules/windowsUser.inc:308 #: ../lib/modules/windowsUser.inc:700 ../lib/modules/windowsUser.inc:931 #: ../lib/modules/windowsUser.inc:1209 ../lib/modules/windowsUser.inc:2880 #: ../lib/modules/windowsUser.inc:3709 ../lib/modules/inetOrgPerson.inc:162 #: ../lib/modules/inetOrgPerson.inc:461 ../lib/modules/inetOrgPerson.inc:534 #: ../lib/modules/inetOrgPerson.inc:733 ../lib/modules/inetOrgPerson.inc:1473 -#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1987 -#: ../lib/modules/inetOrgPerson.inc:2802 ../lib/modules/inetOrgPerson.inc:4091 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1985 +#: ../lib/modules/inetOrgPerson.inc:2800 ../lib/modules/inetOrgPerson.inc:4088 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Car license" msgstr "Car license" #: ../templates/selfService/adminMain.php:617 #: ../lib/modules/locking389ds.inc:84 ../lib/modules/locking389ds.inc:179 #: ../lib/modules/mitKerberos.inc:369 ../lib/modules/mitKerberos.inc:381 -#: ../lib/modules/mitKerberos.inc:711 ../lib/modules/windowsLDSUser.inc:939 -#: ../lib/modules/windowsLDSUser.inc:1403 ../lib/modules/autoDelete.inc:129 +#: ../lib/modules/mitKerberos.inc:711 ../lib/modules/windowsLDSUser.inc:946 +#: ../lib/modules/windowsLDSUser.inc:1421 ../lib/modules/autoDelete.inc:129 #: ../lib/modules/autoDelete.inc:210 ../lib/modules/qmailUser.inc:516 #: ../lib/modules/qmailUser.inc:718 ../lib/modules/zarafaContact.inc:243 #: ../lib/modules/windowsHost.inc:198 ../lib/modules/windowsHost.inc:269 @@ -2554,36 +2550,36 @@ msgstr "Car license" msgid "Change" msgstr "Change" -#: ../templates/lists/changePassword.php:223 +#: ../templates/lists/changePassword.php:227 msgid "Change Asterisk password" msgstr "Change Asterisk password" -#: ../templates/lists/changePassword.php:226 +#: ../templates/lists/changePassword.php:230 msgid "Change Asterisk voicemail password" msgstr "Change Asterisk voicemail password" -#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:450 +#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:451 msgid "Change GID number of users and hosts" msgstr "Change GID number of users and hosts" -#: ../templates/lists/changePassword.php:229 -#: ../templates/lists/changePassword.php:232 +#: ../templates/lists/changePassword.php:233 +#: ../templates/lists/changePassword.php:236 msgid "Change Kerberos password" msgstr "Change Kerberos password" -#: ../templates/lists/changePassword.php:216 +#: ../templates/lists/changePassword.php:220 msgid "Change Samba LM password" msgstr "Change Samba LM password" -#: ../templates/lists/changePassword.php:214 +#: ../templates/lists/changePassword.php:218 msgid "Change Samba NT password" msgstr "Change Samba NT password" -#: ../templates/lists/changePassword.php:208 +#: ../templates/lists/changePassword.php:212 msgid "Change Unix password" msgstr "Change Unix password" -#: ../templates/lists/changePassword.php:235 +#: ../templates/lists/changePassword.php:239 msgid "Change Windows password" msgstr "Change Windows password" @@ -2600,26 +2596,26 @@ msgstr "Change default profile" msgid "Change field label." msgstr "Change field label." -#: ../lib/lists.inc:891 +#: ../lib/lists.inc:890 msgid "Change list settings" msgstr "Change list settings" -#: ../templates/config/mainmanage.php:490 ../help/help.inc:148 +#: ../templates/config/mainmanage.php:530 ../help/help.inc:148 msgid "Change master password" msgstr "Change master password" -#: ../templates/lists/changePassword.php:211 -#: ../templates/lists/changePassword.php:256 -#: ../templates/lists/changePassword.php:337 -#: ../templates/lists/changePassword.php:339 -#: ../templates/lists/changePassword.php:374 -#: ../templates/lists/changePassword.php:376 ../lib/types/user.inc:810 +#: ../templates/lists/changePassword.php:215 +#: ../templates/lists/changePassword.php:260 +#: ../templates/lists/changePassword.php:341 +#: ../templates/lists/changePassword.php:343 +#: ../templates/lists/changePassword.php:378 +#: ../templates/lists/changePassword.php:380 ../lib/types/user.inc:810 #: ../help/help.inc:109 msgid "Change password" msgstr "Change password" -#: ../templates/lists/changePassword.php:263 -#: ../templates/lists/changePassword.php:264 +#: ../templates/lists/changePassword.php:267 +#: ../templates/lists/changePassword.php:268 msgid "Change password now?" msgstr "Change password now?" @@ -2627,11 +2623,11 @@ msgstr "Change password now?" msgid "Change passwords" msgstr "Change passwords" -#: ../lib/lists.inc:892 +#: ../lib/lists.inc:891 msgid "Change settings" msgstr "Change settings" -#: ../lib/modules/posixAccount.inc:1190 +#: ../lib/modules/posixAccount.inc:1189 msgid "Changed value because only ASCII characters are allowed." msgstr "Changed value because only ASCII characters are allowed." @@ -2641,7 +2637,7 @@ msgstr "Changed value because only ASCII characters are allowed." msgid "Charlie" msgstr "Charlie" -#: ../lib/modules/posixAccount.inc:1671 +#: ../lib/modules/posixAccount.inc:1726 msgid "Check home directories" msgstr "Check home directories" @@ -2713,11 +2709,11 @@ msgid "Classes" msgstr "Classes" #: ../lib/modules/qmailUser.inc:1091 ../lib/modules/windowsUser.inc:4179 -#: ../lib/modules/shadowAccount.inc:1072 ../lib/modules/freeRadius.inc:816 +#: ../lib/modules/shadowAccount.inc:1071 ../lib/modules/freeRadius.inc:816 msgid "Cleanup expired user accounts" msgstr "Cleanup expired user accounts" -#: ../lib/lists.inc:462 +#: ../lib/lists.inc:461 msgid "Clear filter" msgstr "Clear filter" @@ -2742,7 +2738,7 @@ msgid "Click to popup a dialog to select an entry (DN) graphically" msgstr "Click to popup a dialog to select an entry (DN) graphically" #: ../templates/config/confmain.php:502 -#: ../templates/selfService/adminMain.php:523 ../help/help.inc:324 +#: ../templates/selfService/adminMain.php:523 ../help/help.inc:334 msgid "Client id" msgstr "Client id" @@ -2814,19 +2810,19 @@ msgstr "Commit" msgid "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." msgstr "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." -#: ../templates/config/mainmanage.php:361 ../lib/types/host.inc:96 +#: ../templates/config/mainmanage.php:401 ../lib/types/host.inc:96 #: ../lib/types/user.inc:95 ../lib/types/customType.inc:71 -#: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:357 -#: ../lib/modules/windowsLDSUser.inc:588 ../lib/modules/windowsLDSUser.inc:649 -#: ../lib/modules/windowsLDSUser.inc:746 ../lib/modules/windowsLDSUser.inc:863 -#: ../lib/modules/windowsLDSUser.inc:1804 ../lib/modules/pykotaGroup.inc:107 +#: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:361 +#: ../lib/modules/windowsLDSUser.inc:592 ../lib/modules/windowsLDSUser.inc:653 +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:870 +#: ../lib/modules/windowsLDSUser.inc:1822 ../lib/modules/pykotaGroup.inc:107 #: ../lib/modules/pykotaGroup.inc:385 ../lib/modules/pykotaGroup.inc:475 #: ../lib/modules/pykotaGroup.inc:487 ../lib/modules/posixAccount.inc:119 #: ../lib/modules/posixAccount.inc:175 ../lib/modules/posixAccount.inc:443 -#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1613 -#: ../lib/modules/posixAccount.inc:1996 ../lib/modules/posixAccount.inc:2085 -#: ../lib/modules/posixAccount.inc:2115 ../lib/modules/posixAccount.inc:2425 -#: ../lib/modules/posixAccount.inc:3194 ../lib/modules/windowsUser.inc:127 +#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1659 +#: ../lib/modules/posixAccount.inc:2051 ../lib/modules/posixAccount.inc:2139 +#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/posixAccount.inc:2479 +#: ../lib/modules/posixAccount.inc:3248 ../lib/modules/windowsUser.inc:127 #: ../lib/modules/windowsUser.inc:446 ../lib/modules/windowsUser.inc:779 #: ../lib/modules/windowsUser.inc:873 ../lib/modules/windowsUser.inc:1022 #: ../lib/modules/windowsUser.inc:1164 ../lib/modules/windowsUser.inc:2851 @@ -2834,14 +2830,14 @@ msgstr "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." #: ../lib/modules/pykotaUser.inc:245 ../lib/modules/pykotaUser.inc:357 #: ../lib/modules/pykotaUser.inc:886 ../lib/modules/inetOrgPerson.inc:98 #: ../lib/modules/inetOrgPerson.inc:681 ../lib/modules/inetOrgPerson.inc:1228 -#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1948 -#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2018 -#: ../lib/modules/inetOrgPerson.inc:2194 ../lib/modules/inetOrgPerson.inc:4140 +#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1946 +#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2016 +#: ../lib/modules/inetOrgPerson.inc:2192 ../lib/modules/inetOrgPerson.inc:4137 #: ../lib/modules/asteriskExtension.inc:119 msgid "Common name" msgstr "Common name" -#: ../lib/modules/windowsLDSUser.inc:748 ../lib/modules/windowsLDSUser.inc:749 +#: ../lib/modules/windowsLDSUser.inc:755 ../lib/modules/windowsLDSUser.inc:756 #: ../lib/modules/windowsUser.inc:1024 ../lib/modules/windowsUser.inc:1025 msgid "Common name already exists." msgstr "Common name already exists." @@ -2850,11 +2846,11 @@ msgstr "Common name already exists." msgid "Common name of the Asterisk extension." msgstr "Common name of the Asterisk extension." -#: ../lib/types/user.inc:96 ../lib/modules/windowsLDSUser.inc:283 -#: ../lib/modules/windowsLDSUser.inc:502 ../lib/modules/windowsLDSUser.inc:592 -#: ../lib/modules/windowsLDSUser.inc:709 ../lib/modules/windowsLDSUser.inc:919 -#: ../lib/modules/windowsLDSUser.inc:1820 -#: ../lib/modules/windowsLDSUser.inc:2159 ../lib/modules/windowsUser.inc:360 +#: ../lib/types/user.inc:96 ../lib/modules/windowsLDSUser.inc:287 +#: ../lib/modules/windowsLDSUser.inc:506 ../lib/modules/windowsLDSUser.inc:596 +#: ../lib/modules/windowsLDSUser.inc:716 ../lib/modules/windowsLDSUser.inc:926 +#: ../lib/modules/windowsLDSUser.inc:1838 +#: ../lib/modules/windowsLDSUser.inc:2199 ../lib/modules/windowsUser.inc:360 #: ../lib/modules/windowsUser.inc:659 ../lib/modules/windowsUser.inc:797 #: ../lib/modules/windowsUser.inc:958 ../lib/modules/windowsUser.inc:1221 #: ../lib/modules/windowsUser.inc:2869 ../lib/modules/windowsUser.inc:3713 @@ -2919,6 +2915,7 @@ msgstr "Configuration type" msgid "Confirm sender" msgstr "Confirm sender" +#: ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:215 msgid "Confirmation mail settings" msgstr "Confirmation mail settings" @@ -2980,7 +2977,7 @@ msgstr "Constant" msgid "Contact address for this zone (e.g. \"root.example.com.\")." msgstr "Contact address for this zone (e.g. \"root.example.com.\")." -#: ../lib/modules/windowsLDSUser.inc:876 ../lib/modules/windowsUser.inc:1177 +#: ../lib/modules/windowsLDSUser.inc:883 ../lib/modules/windowsUser.inc:1177 #: ../lib/modules/inetOrgPerson.inc:1396 msgid "Contact data" msgstr "Contact data" @@ -3089,16 +3086,16 @@ msgstr "Courier" #: ../templates/3rdParty/pla/lib/TemplateRender.php:1077 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1081 #: ../templates/initsuff.php:201 ../lib/modules/nisMailAliasUser.inc:364 -#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1937 +#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1992 msgid "Create" msgstr "Create" -#: ../lib/lists.inc:571 ../lib/lists.inc:776 ../lib/modules.inc:1430 -#: ../help/help.inc:256 +#: ../lib/lists.inc:570 ../lib/lists.inc:775 ../lib/modules.inc:1430 +#: ../help/help.inc:266 msgid "Create PDF file" msgstr "Create PDF file" -#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:220 +#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:219 msgid "Create PDF files" msgstr "Create PDF files" @@ -3128,7 +3125,7 @@ msgstr "Create another DNS entry" msgid "Create another NIS object" msgstr "Create another NIS object" -#: ../lib/baseType.inc:55 +#: ../lib/baseType.inc:54 msgid "Create another account" msgstr "Create another account" @@ -3203,12 +3200,16 @@ msgstr "Create another user" msgid "Create another view" msgstr "Create another view" -#: ../lib/lists.inc:787 +#: ../lib/lists.inc:786 msgid "Create for" msgstr "Create for" -#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1656 -#: ../lib/modules/posixAccount.inc:2004 +#: ../lib/modules/posixAccount.inc:1692 ../lib/modules/posixAccount.inc:2281 +msgid "Create group with same name" +msgstr "Create group with same name" + +#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1711 +#: ../lib/modules/posixAccount.inc:2059 msgid "Create home directory" msgstr "Create home directory" @@ -3248,6 +3249,10 @@ msgstr "Created by" msgid "Created new automount map." msgstr "Created new automount map." +#: ../lib/modules/posixAccount.inc:1226 +msgid "Created new group." +msgstr "Created new group." + #: ../templates/config/profmanage.php:77 #: ../templates/selfService/profManage.php:56 msgid "Created new profile." @@ -3266,8 +3271,8 @@ msgstr "" "object classes and attributes." #: ../lib/tools/fileUpload.inc:54 -msgid "Creates accounts by uploading a CSV formated file." -msgstr "Creates accounts by uploading a CSV formated file." +msgid "Creates accounts by uploading a CSV formatted file." +msgstr "Creates accounts by uploading a CSV formatted file." #: ../templates/3rdParty/pla/htdocs/create.php:77 #, php-format @@ -3278,12 +3283,12 @@ msgstr "Creation successful. DN %s has been created." msgid "Creation time" msgstr "Creation time" -#: ../templates/config/jobs.php:224 ../help/help.inc:210 +#: ../templates/config/jobs.php:224 ../help/help.inc:214 msgid "Cron configuration" msgstr "Cron configuration" -#: ../lib/modules/windowsLDSUser.inc:1282 ../lib/modules/windowsUser.inc:2028 -#: ../lib/modules/inetOrgPerson.inc:1714 +#: ../lib/modules/windowsLDSUser.inc:1300 ../lib/modules/windowsUser.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:1712 msgid "Crop image" msgstr "Crop image" @@ -3317,7 +3322,7 @@ msgid "Custom icon" msgstr "Custom icon" #: ../templates/config/conftypes.php:238 ../lib/modules/customFields.inc:181 -#: ../help/help.inc:194 +#: ../help/help.inc:198 msgid "Custom label" msgstr "Custom label" @@ -3344,11 +3349,10 @@ msgstr "Cut" msgid "DDNS" msgstr "DDNS" -#: ../lib/modules/ddns.inc:375 -msgid "" -"DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." +#: ../lib/modules/ddns.inc:371 +msgid "DDNS is not activated. You can activate it in the DHCP settings (DDNS)." msgstr "" -"DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." +"DDNS is not activated. You can activate it in the DHCP settings (DDNS)." #: ../lib/types/dhcp.inc:57 msgid "DHCP" @@ -3376,7 +3380,7 @@ msgstr "DHCP settings" #: ../templates/3rdParty/pla/htdocs/delete_form.php:35 #: ../templates/3rdParty/pla/htdocs/delete_form.php:112 #: ../templates/3rdParty/pla/htdocs/mass_delete.php:57 ../lib/modules.inc:443 -#: ../lib/modules.inc:2105 +#: ../lib/modules.inc:2103 msgid "DN" msgstr "DN" @@ -3390,8 +3394,8 @@ msgstr "DN does not exist" msgid "DN settings" msgstr "DN settings" -#: ../templates/upload/masscreate.php:334 ../help/help.inc:244 -#: ../help/help.inc:252 +#: ../templates/upload/masscreate.php:334 ../help/help.inc:254 +#: ../help/help.inc:262 msgid "DN suffix" msgstr "DN suffix" @@ -3411,8 +3415,8 @@ msgid "DNAME records" msgstr "DNAME records" #: ../lib/modules/dhcp_settings.inc:218 ../lib/modules/dhcp_settings.inc:234 -#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:598 -#: ../lib/modules/dhcp_settings.inc:711 +#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:590 +#: ../lib/modules/dhcp_settings.inc:703 msgid "DNS" msgstr "DNS" @@ -3470,11 +3474,11 @@ msgstr "Database connection ok." msgid "Database count: %s" msgstr "Database count: %s" -#: ../templates/config/jobs.php:198 ../help/help.inc:212 +#: ../templates/config/jobs.php:198 ../help/help.inc:216 msgid "Database host" msgstr "Database host" -#: ../templates/config/jobs.php:203 ../help/help.inc:218 +#: ../templates/config/jobs.php:203 ../help/help.inc:222 msgid "Database name" msgstr "Database name" @@ -3482,11 +3486,11 @@ msgstr "Database name" msgid "Database password" msgstr "Database password" -#: ../templates/config/jobs.php:201 ../help/help.inc:214 +#: ../templates/config/jobs.php:201 ../help/help.inc:218 msgid "Database port" msgstr "Database port" -#: ../templates/config/jobs.php:158 ../help/help.inc:208 +#: ../templates/config/jobs.php:158 ../help/help.inc:212 msgid "Database type" msgstr "Database type" @@ -3494,7 +3498,7 @@ msgstr "Database type" msgid "Database user" msgstr "Database user" -#: ../help/help.inc:216 +#: ../help/help.inc:220 msgid "Database user and password" msgstr "Database user and password" @@ -3526,7 +3530,7 @@ msgstr "" msgid "Days to delete" msgstr "Days to delete" -#: ../templates/lists/changePassword.php:452 ../lib/types/user.inc:469 +#: ../templates/lists/changePassword.php:456 ../lib/types/user.inc:469 msgid "Deactivate" msgstr "Deactivate" @@ -3534,7 +3538,7 @@ msgstr "Deactivate" msgid "Deactivated" msgstr "Deactivated" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Debug" msgstr "Debug" @@ -3545,13 +3549,9 @@ msgstr "Debug" msgid "Default" msgstr "Default" -#: ../templates/config/mainmanage.php:459 -msgid "Default (\\r\\n)" -msgstr "Default (\\r\\n)" - #: ../lib/modules/dhcp_settings.inc:163 ../lib/modules/dhcp_settings.inc:219 #: ../lib/modules/dhcp_settings.inc:236 ../lib/modules/dhcp_settings.inc:289 -#: ../lib/modules/dhcp_settings.inc:608 ../lib/modules/dhcp_settings.inc:713 +#: ../lib/modules/dhcp_settings.inc:600 ../lib/modules/dhcp_settings.inc:705 msgid "Default gateway" msgstr "Default gateway" @@ -3560,11 +3560,11 @@ msgstr "Default gateway" msgid "Default language" msgstr "Default language" -#: ../help/help.inc:225 +#: ../help/help.inc:229 msgid "Default method to output a random password." msgstr "Default method to output a random password." -#: ../templates/config/confmain.php:348 ../help/help.inc:224 +#: ../templates/config/confmain.php:348 ../help/help.inc:228 msgid "Default password output" msgstr "Default password output" @@ -3587,7 +3587,7 @@ msgstr "Default user" msgid "Default value" msgstr "Default value" -#: ../help/help.inc:167 +#: ../help/help.inc:165 msgid "" "Defines if the PHP error reporting setting from php.ini is used or the " "setting preferred by LAM (\"E_ALL & ~E_NOTICE\"). If you do not develop LAM " @@ -3611,12 +3611,12 @@ msgstr "" "Defines the mailbox to check for message waiting indication (MWI) for this " "peer." -#: ../lib/passwordExpirationJob.inc:480 ../lib/passwordExpirationJob.inc:527 -#: ../help/help.inc:410 +#: ../lib/passwordExpirationJob.inc:478 ../lib/passwordExpirationJob.inc:525 +#: ../help/help.inc:420 msgid "Delay" msgstr "Delay" -#: ../help/help.inc:411 +#: ../help/help.inc:421 msgid "Delay this action by a number of days after account expiry." msgstr "Delay this action by a number of days after account expiry." @@ -3624,7 +3624,7 @@ msgstr "Delay this action by a number of days after account expiry." #: ../lib/modules/kolabUser.inc:119 ../lib/modules/kolabUser.inc:123 #: ../lib/modules/kolabUser.inc:179 ../lib/modules/kolabUser.inc:201 #: ../lib/modules/kolabUser.inc:308 ../lib/modules/kolabUser.inc:617 -#: ../lib/modules/kolabUser.inc:689 ../lib/modules/kolabSharedFolder.inc:116 +#: ../lib/modules/kolabUser.inc:688 ../lib/modules/kolabSharedFolder.inc:116 #: ../lib/modules/kolabSharedFolder.inc:120 #: ../lib/modules/kolabSharedFolder.inc:190 #: ../lib/modules/kolabSharedFolder.inc:201 @@ -3645,7 +3645,7 @@ msgstr "" #: ../templates/tools/serverInfo.php:355 ../templates/tools/multiEdit.php:150 #: ../templates/tools/ou_edit.php:135 ../templates/tools/webauthn.php:107 #: ../templates/config/profmanage.php:250 -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/profManage.php:226 #: ../templates/pdfedit/pdfmain.php:247 ../templates/pdfedit/pdfmain.php:248 #: ../templates/pdfedit/pdfmain.php:288 ../templates/delete.php:151 @@ -3653,18 +3653,18 @@ msgstr "" #: ../templates/profedit/profilemain.php:228 #: ../templates/3rdParty/pla/htdocs/delete_form.php:33 #: ../templates/3rdParty/pla/htdocs/delete_form.php:124 -#: ../lib/passwordExpirationJob.inc:485 ../lib/modules/pykotaPrinter.inc:277 +#: ../lib/passwordExpirationJob.inc:483 ../lib/modules/pykotaPrinter.inc:277 #: ../lib/modules/nisNetGroupHost.inc:109 -#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1929 +#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1984 #: ../lib/modules/zarafaUser.inc:1468 ../lib/modules/zarafaUser.inc:1519 #: ../lib/modules/bindDLZ.inc:1322 ../lib/modules/bindDLZ.inc:1713 -#: ../lib/modules/kolabUser.inc:676 ../lib/modules/sambaGroupMapping.inc:386 +#: ../lib/modules/kolabUser.inc:675 ../lib/modules/sambaGroupMapping.inc:386 #: ../lib/modules/ldapPublicKey.inc:350 ../lib/modules/nisNetGroupUser.inc:193 #: ../lib/modules/yubiKeyUser.inc:315 ../lib/modules/nisnetgroup.inc:261 -#: ../lib/modules/inetOrgPerson.inc:3055 ../lib/modules/inetOrgPerson.inc:3176 +#: ../lib/modules/inetOrgPerson.inc:3053 ../lib/modules/inetOrgPerson.inc:3174 #: ../lib/modules/kopanoUser.inc:1388 ../lib/modules/kopanoUser.inc:1439 #: ../lib/modules/webauthn.inc:160 ../lib/modules/customFields.inc:2563 -#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:565 +#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:564 #: ../lib/modules.inc:1319 msgid "Delete" msgstr "Delete" @@ -3688,7 +3688,7 @@ msgstr "Delete after copy (move):" msgid "Delete all %s objects" msgstr "Delete all %s objects" -#: ../templates/config/mainmanage.php:339 +#: ../templates/config/mainmanage.php:379 msgid "Delete all CA certificates" msgstr "Delete all CA certificates" @@ -3696,7 +3696,7 @@ msgstr "Delete all CA certificates" msgid "Delete group" msgstr "Delete group" -#: ../lib/modules/posixAccount.inc:1736 +#: ../lib/modules/posixAccount.inc:1791 msgid "Delete home directory" msgstr "Delete home directory" @@ -3704,22 +3704,22 @@ msgstr "Delete home directory" msgid "Delete mailbox" msgstr "Delete mailbox" -#: ../lib/modules/posixGroup.inc:335 ../lib/modules/posixGroup.inc:344 -#: ../lib/modules/posixAccount.inc:1862 ../lib/modules/windowsUser.inc:1864 +#: ../lib/modules/posixGroup.inc:336 ../lib/modules/posixGroup.inc:345 +#: ../lib/modules/posixAccount.inc:1917 ../lib/modules/windowsUser.inc:1864 msgid "Delete non-matching entries" msgstr "Delete non-matching entries" -#: ../templates/tools/ou_edit.php:218 ../help/help.inc:355 +#: ../templates/tools/ou_edit.php:218 ../help/help.inc:365 msgid "Delete organisational unit" msgstr "Delete organizational unit" #: ../templates/3rdParty/pla/lib/functions.php:1923 -#: ../lib/modules/windowsLDSUser.inc:979 ../lib/modules/windowsUser.inc:1353 +#: ../lib/modules/windowsLDSUser.inc:997 ../lib/modules/windowsUser.inc:1353 #: ../lib/modules/inetOrgPerson.inc:1612 msgid "Delete photo" msgstr "Delete photo" -#: ../lib/modules/range.inc:550 +#: ../lib/modules/range.inc:549 msgid "Delete pool" msgstr "Delete pool" @@ -3730,8 +3730,8 @@ msgstr "Delete pool" msgid "Delete profile" msgstr "Delete profile" -#: ../lib/modules/range.inc:108 ../lib/modules/range.inc:140 -#: ../lib/modules/range.inc:526 ../lib/modules/range.inc:601 +#: ../lib/modules/range.inc:107 ../lib/modules/range.inc:139 +#: ../lib/modules/range.inc:525 ../lib/modules/range.inc:600 msgid "Delete range" msgstr "Delete range" @@ -3832,7 +3832,7 @@ msgstr "Delete selected views" msgid "Delete successful: %s" msgstr "Delete successful: %s" -#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1741 +#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1796 msgid "Delete sudo rights" msgstr "Delete sudo rights" @@ -3868,7 +3868,7 @@ msgstr "Deleted PDF structure." msgid "Deleted profile." msgstr "Deleted profile." -#: ../lib/modules/range.inc:109 +#: ../lib/modules/range.inc:108 msgid "Deletes an IP range." msgstr "Deletes an IP range." @@ -3897,11 +3897,11 @@ msgstr "Deletion date" #: ../lib/modules/autoDelete.inc:65 ../lib/modules/autoDelete.inc:77 #: ../lib/modules/autoDelete.inc:84 ../lib/modules/autoDelete.inc:117 #: ../lib/modules/autoDelete.inc:152 ../lib/modules/autoDelete.inc:385 -#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:106 +#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:105 msgid "Deletion time" msgstr "Deletion time" -#: ../lib/lists.inc:1254 +#: ../lib/lists.inc:1253 msgid "Deletion was successful." msgstr "Deletion was successful." @@ -3931,11 +3931,11 @@ msgstr "Deny" msgid "Deny printing" msgstr "Deny printing" -#: ../lib/types/user.inc:97 ../lib/modules/windowsLDSUser.inc:251 -#: ../lib/modules/windowsLDSUser.inc:549 ../lib/modules/windowsLDSUser.inc:595 -#: ../lib/modules/windowsLDSUser.inc:694 ../lib/modules/windowsLDSUser.inc:922 -#: ../lib/modules/windowsLDSUser.inc:1833 -#: ../lib/modules/windowsLDSUser.inc:2160 ../lib/modules/windowsUser.inc:328 +#: ../lib/types/user.inc:97 ../lib/modules/windowsLDSUser.inc:255 +#: ../lib/modules/windowsLDSUser.inc:553 ../lib/modules/windowsLDSUser.inc:599 +#: ../lib/modules/windowsLDSUser.inc:701 ../lib/modules/windowsLDSUser.inc:929 +#: ../lib/modules/windowsLDSUser.inc:1851 +#: ../lib/modules/windowsLDSUser.inc:2200 ../lib/modules/windowsUser.inc:328 #: ../lib/modules/windowsUser.inc:732 ../lib/modules/windowsUser.inc:800 #: ../lib/modules/windowsUser.inc:943 ../lib/modules/windowsUser.inc:990 #: ../lib/modules/windowsUser.inc:1224 ../lib/modules/windowsUser.inc:2884 @@ -3943,17 +3943,17 @@ msgstr "Deny printing" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:421 #: ../lib/modules/inetOrgPerson.inc:543 ../lib/modules/inetOrgPerson.inc:745 #: ../lib/modules/inetOrgPerson.inc:749 ../lib/modules/inetOrgPerson.inc:1505 -#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1997 -#: ../lib/modules/inetOrgPerson.inc:2066 ../lib/modules/inetOrgPerson.inc:2856 -#: ../lib/modules/inetOrgPerson.inc:4094 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1995 +#: ../lib/modules/inetOrgPerson.inc:2064 ../lib/modules/inetOrgPerson.inc:2854 +#: ../lib/modules/inetOrgPerson.inc:4091 ../lib/modules/inetOrgPerson.inc:4130 msgid "Department" msgstr "Department" -#: ../lib/modules/windowsLDSUser.inc:255 ../lib/modules/windowsLDSUser.inc:259 -#: ../lib/modules/windowsLDSUser.inc:557 ../lib/modules/windowsLDSUser.inc:598 -#: ../lib/modules/windowsLDSUser.inc:697 ../lib/modules/windowsLDSUser.inc:925 -#: ../lib/modules/windowsLDSUser.inc:1834 -#: ../lib/modules/windowsLDSUser.inc:2161 ../lib/modules/windowsUser.inc:332 +#: ../lib/modules/windowsLDSUser.inc:259 ../lib/modules/windowsLDSUser.inc:263 +#: ../lib/modules/windowsLDSUser.inc:561 ../lib/modules/windowsLDSUser.inc:602 +#: ../lib/modules/windowsLDSUser.inc:704 ../lib/modules/windowsLDSUser.inc:932 +#: ../lib/modules/windowsLDSUser.inc:1852 +#: ../lib/modules/windowsLDSUser.inc:2201 ../lib/modules/windowsUser.inc:332 #: ../lib/modules/windowsUser.inc:336 ../lib/modules/windowsUser.inc:740 #: ../lib/modules/windowsUser.inc:803 ../lib/modules/windowsUser.inc:946 #: ../lib/modules/windowsUser.inc:991 ../lib/modules/windowsUser.inc:1227 @@ -3995,21 +3995,21 @@ msgstr "" #: ../lib/modules/pykotaPrinter.inc:98 ../lib/modules/pykotaPrinter.inc:152 #: ../lib/modules/pykotaPrinter.inc:193 ../lib/modules/pykotaPrinter.inc:246 #: ../lib/modules/pykotaPrinter.inc:572 ../lib/modules/windowsLDSUser.inc:125 -#: ../lib/modules/windowsLDSUser.inc:375 ../lib/modules/windowsLDSUser.inc:650 -#: ../lib/modules/windowsLDSUser.inc:866 ../lib/modules/windowsLDSUser.inc:1805 +#: ../lib/modules/windowsLDSUser.inc:379 ../lib/modules/windowsLDSUser.inc:654 +#: ../lib/modules/windowsLDSUser.inc:873 ../lib/modules/windowsLDSUser.inc:1823 #: ../lib/modules/account.inc:78 ../lib/modules/account.inc:88 #: ../lib/modules/account.inc:98 ../lib/modules/account.inc:106 -#: ../lib/modules/account.inc:222 ../lib/modules/account.inc:244 +#: ../lib/modules/account.inc:219 ../lib/modules/account.inc:241 #: ../lib/modules/windowsHost.inc:79 ../lib/modules/windowsHost.inc:114 #: ../lib/modules/windowsHost.inc:133 ../lib/modules/windowsHost.inc:156 #: ../lib/modules/windowsHost.inc:329 ../lib/modules/posixGroup.inc:215 -#: ../lib/modules/posixGroup.inc:422 ../lib/modules/posixGroup.inc:650 -#: ../lib/modules/posixGroup.inc:668 ../lib/modules/device.inc:84 +#: ../lib/modules/posixGroup.inc:423 ../lib/modules/posixGroup.inc:651 +#: ../lib/modules/posixGroup.inc:669 ../lib/modules/device.inc:84 #: ../lib/modules/device.inc:109 ../lib/modules/device.inc:117 #: ../lib/modules/device.inc:159 ../lib/modules/device.inc:428 #: ../lib/modules/dhcp_settings.inc:195 ../lib/modules/dhcp_settings.inc:224 -#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:645 -#: ../lib/modules/dhcp_settings.inc:718 ../lib/modules/courierMailAlias.inc:92 +#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:637 +#: ../lib/modules/dhcp_settings.inc:710 ../lib/modules/courierMailAlias.inc:92 #: ../lib/modules/courierMailAlias.inc:101 #: ../lib/modules/courierMailAlias.inc:126 #: ../lib/modules/courierMailAlias.inc:155 @@ -4044,9 +4044,9 @@ msgstr "" #: ../lib/modules/nisnetgroup.inc:571 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:259 ../lib/modules/inetOrgPerson.inc:480 #: ../lib/modules/inetOrgPerson.inc:566 ../lib/modules/inetOrgPerson.inc:1241 -#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1965 -#: ../lib/modules/inetOrgPerson.inc:2024 ../lib/modules/inetOrgPerson.inc:2998 -#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1963 +#: ../lib/modules/inetOrgPerson.inc:2022 ../lib/modules/inetOrgPerson.inc:2996 +#: ../lib/modules/inetOrgPerson.inc:4071 ../lib/modules/inetOrgPerson.inc:4118 #: ../lib/modules/sudoRole.inc:69 ../lib/modules/sudoRole.inc:152 #: ../lib/modules/sudoRole.inc:214 ../lib/modules/sudoRole.inc:298 #: ../lib/modules/sudoRole.inc:453 ../lib/modules/windowsLDSGroup.inc:88 @@ -4065,7 +4065,7 @@ msgstr "" #: ../lib/modules/organizationalRole.inc:170 #: ../lib/modules/organizationalRole.inc:481 #: ../lib/modules/organizationalRole.inc:735 ../lib/modules/fixed_ip.inc:115 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:764 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:762 #: ../lib/modules/pykotaBillingCode.inc:80 #: ../lib/modules/pykotaBillingCode.inc:108 #: ../lib/modules/pykotaBillingCode.inc:115 @@ -4076,7 +4076,7 @@ msgstr "" #: ../lib/modules/groupOfNames.inc:92 ../lib/modules/groupOfNames.inc:138 #: ../lib/modules/groupOfNames.inc:174 ../lib/modules/groupOfNames.inc:211 #: ../lib/modules/groupOfNames.inc:734 ../lib/modules/groupOfNames.inc:1047 -#: ../lib/baseType.inc:107 +#: ../lib/baseType.inc:106 msgid "Description" msgstr "Description" @@ -4111,15 +4111,15 @@ msgid "Disable POP3 access" msgstr "Disable POP3 access" #: ../templates/config/confmain.php:511 -#: ../templates/selfService/adminMain.php:532 ../help/help.inc:308 +#: ../templates/selfService/adminMain.php:532 ../help/help.inc:318 msgid "Disable certificate check" msgstr "Disable certificate check" -#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:368 +#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:364 msgid "Disable client updates" msgstr "Disable client updates" -#: ../lib/modules/posixGroup.inc:476 ../lib/modules/posixGroup.inc:584 +#: ../lib/modules/posixGroup.inc:477 ../lib/modules/posixGroup.inc:585 msgid "Disable membership management" msgstr "Disable membership management" @@ -4147,7 +4147,7 @@ msgstr "Disabled" msgid "Disables the client to update DNS entries." msgstr "Disables the client to update DNS entries." -#: ../lib/modules/posixGroup.inc:477 +#: ../lib/modules/posixGroup.inc:478 msgid "Disables the group membership management." msgstr "Disables the group membership management." @@ -4170,7 +4170,7 @@ msgstr "Disallow TGT-based tickets" msgid "Disallow all tickets" msgstr "Disallow all tickets" -#: ../templates/config/conftypes.php:290 ../help/help.inc:192 +#: ../templates/config/conftypes.php:290 ../help/help.inc:196 msgid "Disallow delete" msgstr "Disallow delete" @@ -4249,9 +4249,9 @@ msgstr "Display multiple groups as accordion" #: ../templates/config/confmain.php:227 ../lib/types/group.inc:111 #: ../lib/types/user.inc:98 ../lib/modules/windowsLDSUser.inc:129 -#: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:589 -#: ../lib/modules/windowsLDSUser.inc:651 ../lib/modules/windowsLDSUser.inc:750 -#: ../lib/modules/windowsLDSUser.inc:864 ../lib/modules/windowsLDSUser.inc:1806 +#: ../lib/modules/windowsLDSUser.inc:367 ../lib/modules/windowsLDSUser.inc:593 +#: ../lib/modules/windowsLDSUser.inc:655 ../lib/modules/windowsLDSUser.inc:757 +#: ../lib/modules/windowsLDSUser.inc:871 ../lib/modules/windowsLDSUser.inc:1824 #: ../lib/modules/sambaSamAccount.inc:111 #: ../lib/modules/sambaSamAccount.inc:210 #: ../lib/modules/sambaSamAccount.inc:260 @@ -4267,14 +4267,14 @@ msgstr "Display multiple groups as accordion" #: ../lib/modules/sambaGroupMapping.inc:336 #: ../lib/modules/sambaGroupMapping.inc:513 #: ../lib/modules/inetOrgPerson.inc:166 ../lib/modules/inetOrgPerson.inc:685 -#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1953 -#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2219 -#: ../lib/modules/inetOrgPerson.inc:3025 ../lib/modules/inetOrgPerson.inc:4106 -#: ../help/help.inc:202 +#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1951 +#: ../lib/modules/inetOrgPerson.inc:1996 ../lib/modules/inetOrgPerson.inc:2217 +#: ../lib/modules/inetOrgPerson.inc:3023 ../lib/modules/inetOrgPerson.inc:4103 +#: ../help/help.inc:206 msgid "Display name" msgstr "Display name" -#: ../templates/lists/changePassword.php:316 +#: ../templates/lists/changePassword.php:320 #: ../templates/config/confmain.php:344 msgid "Display on screen" msgstr "Display on screen" @@ -4299,7 +4299,7 @@ msgstr "Displayed attributes" msgid "Distribution" msgstr "Distribution" -#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2305 +#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2359 msgid "Do not add object class" msgstr "Do not add object class" @@ -4328,7 +4328,7 @@ msgstr "Do you really want to post to this mailinglist?" msgid "Do you really want to remove the following accounts?" msgstr "Do you really want to remove the following accounts?" -#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:484 +#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:524 #: ../lib/modules/webauthn.inc:133 msgid "Do you really want to remove this device?" msgstr "Do you really want to remove this device?" @@ -4343,7 +4343,7 @@ msgstr "Do you want to make these changes?" #: ../templates/config/confmain.php:506 #: ../templates/selfService/adminMain.php:527 -#: ../lib/modules/windowsLDSUser.inc:121 ../lib/modules/windowsLDSUser.inc:1863 +#: ../lib/modules/windowsLDSUser.inc:121 ../lib/modules/windowsLDSUser.inc:1883 #: ../lib/modules/sambaSamAccount.inc:212 #: ../lib/modules/sambaSamAccount.inc:338 #: ../lib/modules/sambaSamAccount.inc:420 @@ -4355,7 +4355,7 @@ msgstr "Do you want to make these changes?" #: ../lib/modules/windowsUser.inc:2942 ../lib/modules/sambaGroupMapping.inc:158 #: ../lib/modules/sambaGroupMapping.inc:367 #: ../lib/modules/sambaGroupMapping.inc:547 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:334 +#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:344 msgid "Domain" msgstr "Domain" @@ -4424,8 +4424,8 @@ msgstr "Domain local" #: ../lib/types/smbDomain.inc:95 ../lib/modules/dhcp_settings.inc:143 #: ../lib/modules/dhcp_settings.inc:215 ../lib/modules/dhcp_settings.inc:231 -#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:588 -#: ../lib/modules/dhcp_settings.inc:708 ../lib/modules/nisNetGroupHost.inc:102 +#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:580 +#: ../lib/modules/dhcp_settings.inc:700 ../lib/modules/nisNetGroupHost.inc:102 #: ../lib/modules/nisNetGroupHost.inc:217 #: ../lib/modules/nisNetGroupHost.inc:261 ../lib/modules/nisNetGroupUser.inc:98 #: ../lib/modules/nisNetGroupUser.inc:186 @@ -4463,7 +4463,7 @@ msgstr "Domain suffix" msgid "Domain users" msgstr "Domain users" -#: ../lib/modules/windowsLDSUser.inc:215 ../lib/modules/windowsLDSUser.inc:2141 +#: ../lib/modules/windowsLDSUser.inc:215 ../lib/modules/windowsLDSUser.inc:2180 #: ../lib/modules/windowsUser.inc:261 ../lib/modules/windowsUser.inc:3690 msgid "Domains" msgstr "Domains" @@ -4473,8 +4473,8 @@ msgstr "Domains" msgid "Don't stop on errors" msgstr "Don't stop on errors" -#: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:1725 +#: ../lib/modules/windowsLDSUser.inc:1311 ../lib/modules/windowsUser.inc:2039 +#: ../lib/modules/inetOrgPerson.inc:1723 msgid "Done" msgstr "Done" @@ -4483,7 +4483,7 @@ msgstr "Done" msgid "Down" msgstr "Down" -#: ../templates/config/mainmanage.php:336 +#: ../templates/config/mainmanage.php:376 msgid "Download CA certificates" msgstr "Download CA certificates" @@ -4529,7 +4529,7 @@ msgstr "" #: ../lib/modules/sambaSamAccount.inc:1286 #: ../lib/modules/windowsLDSGroup.inc:192 #: ../lib/modules/windowsLDSGroup.inc:221 ../lib/modules/windowsGroup.inc:378 -#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:559 +#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:558 msgid "Edit" msgstr "Edit" @@ -4537,11 +4537,11 @@ msgstr "Edit" msgid "Edit again" msgstr "Edit again" -#: ../templates/config/mainmanage.php:262 ../templates/config/index.php:79 +#: ../templates/config/mainmanage.php:278 ../templates/config/index.php:79 msgid "Edit general settings" msgstr "Edit general settings" -#: ../lib/modules/windowsLDSUser.inc:985 ../lib/modules/posixAccount.inc:1643 +#: ../lib/modules/windowsLDSUser.inc:1003 ../lib/modules/posixAccount.inc:1698 #: ../lib/modules/windowsUser.inc:1359 msgid "Edit groups" msgstr "Edit groups" @@ -4566,6 +4566,7 @@ msgstr "Edit subgroups" msgid "Edit workstations" msgstr "Edit workstations" +#: ../templates/config/mainmanage.php:323 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1688 #: ../lib/types/kopanoDynamicGroupType.inc:81 #: ../lib/types/zarafaDynamicGroupType.inc:95 ../lib/types/user.inc:107 @@ -4579,24 +4580,24 @@ msgid "Email" msgstr "Email" #: ../lib/modules/selfRegistration.inc:520 -#: ../lib/modules/windowsLDSUser.inc:774 ../lib/modules/windowsLDSUser.inc:775 +#: ../lib/modules/windowsLDSUser.inc:781 ../lib/modules/windowsLDSUser.inc:782 #: ../lib/modules/windowsUser.inc:1052 ../lib/modules/windowsUser.inc:1053 #: ../lib/modules/inetOrgPerson.inc:83 ../lib/modules/inetOrgPerson.inc:84 #, php-format msgid "Email \"%s\" already in use." msgstr "Email \"%s\" already in use." -#: ../templates/lists/changePassword.php:279 ../lib/modules/kolabGroup.inc:82 +#: ../templates/lists/changePassword.php:283 ../lib/modules/kolabGroup.inc:82 #: ../lib/modules/kolabGroup.inc:86 ../lib/modules/kolabGroup.inc:155 #: ../lib/modules/kolabGroup.inc:157 ../lib/modules/kolabGroup.inc:175 #: ../lib/modules/kolabGroup.inc:287 ../lib/modules/kolabGroup.inc:348 #: ../lib/modules/kolabGroup.inc:359 ../lib/modules/selfRegistration.inc:401 #: ../lib/modules/selfRegistration.inc:500 #: ../lib/modules/selfRegistration.inc:519 -#: ../lib/modules/windowsLDSUser.inc:145 ../lib/modules/windowsLDSUser.inc:417 -#: ../lib/modules/windowsLDSUser.inc:590 ../lib/modules/windowsLDSUser.inc:655 -#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:774 -#: ../lib/modules/windowsLDSUser.inc:877 ../lib/modules/windowsLDSUser.inc:1810 +#: ../lib/modules/windowsLDSUser.inc:145 ../lib/modules/windowsLDSUser.inc:421 +#: ../lib/modules/windowsLDSUser.inc:594 ../lib/modules/windowsLDSUser.inc:659 +#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:781 +#: ../lib/modules/windowsLDSUser.inc:884 ../lib/modules/windowsLDSUser.inc:1828 #: ../lib/modules/zarafaDynamicGroup.inc:66 #: ../lib/modules/zarafaDynamicGroup.inc:67 #: ../lib/modules/zarafaDynamicGroup.inc:123 @@ -4633,9 +4634,9 @@ msgstr "Email \"%s\" already in use." #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:387 #: ../lib/modules/inetOrgPerson.inc:525 ../lib/modules/inetOrgPerson.inc:662 #: ../lib/modules/inetOrgPerson.inc:666 ../lib/modules/inetOrgPerson.inc:1441 -#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1981 -#: ../lib/modules/inetOrgPerson.inc:2060 ../lib/modules/inetOrgPerson.inc:2607 -#: ../lib/modules/inetOrgPerson.inc:4089 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1979 +#: ../lib/modules/inetOrgPerson.inc:2058 ../lib/modules/inetOrgPerson.inc:2605 +#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/kolabSharedFolder.inc:94 #: ../lib/modules/kolabSharedFolder.inc:151 #: ../lib/modules/kolabSharedFolder.inc:202 @@ -4764,51 +4765,47 @@ msgstr "Email alias list has invalid format!" msgid "Email aliases" msgstr "Email aliases" -#: ../templates/config/mainmanage.php:462 ../help/help.inc:164 -msgid "Email format" -msgstr "Email format" - -#: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:235 -#: ../lib/modules/windowsLDSUser.inc:525 ../lib/modules/windowsLDSUser.inc:685 -#: ../lib/modules/windowsLDSUser.inc:910 ../lib/modules/windowsLDSUser.inc:1830 -#: ../lib/modules/windowsLDSUser.inc:2156 ../lib/modules/windowsUser.inc:312 +#: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:239 +#: ../lib/modules/windowsLDSUser.inc:529 ../lib/modules/windowsLDSUser.inc:692 +#: ../lib/modules/windowsLDSUser.inc:917 ../lib/modules/windowsLDSUser.inc:1848 +#: ../lib/modules/windowsLDSUser.inc:2196 ../lib/modules/windowsUser.inc:312 #: ../lib/modules/windowsUser.inc:708 ../lib/modules/windowsUser.inc:934 #: ../lib/modules/windowsUser.inc:1212 ../lib/modules/windowsUser.inc:2881 #: ../lib/modules/windowsUser.inc:3710 ../lib/modules/inetOrgPerson.inc:275 #: ../lib/modules/inetOrgPerson.inc:555 ../lib/modules/inetOrgPerson.inc:778 #: ../lib/modules/inetOrgPerson.inc:1481 ../lib/modules/inetOrgPerson.inc:1484 -#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:4098 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1990 ../lib/modules/inetOrgPerson.inc:4095 +#: ../lib/modules/inetOrgPerson.inc:4132 #: ../lib/modules/passwordSelfReset.inc:631 #: ../lib/modules/passwordSelfReset.inc:1042 #: ../lib/modules/passwordSelfReset.inc:1261 msgid "Employee number" msgstr "Employee number" -#: ../lib/modules/windowsLDSUser.inc:239 ../lib/modules/windowsLDSUser.inc:533 -#: ../lib/modules/windowsLDSUser.inc:610 ../lib/modules/windowsLDSUser.inc:688 -#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:913 -#: ../lib/modules/windowsLDSUser.inc:1831 -#: ../lib/modules/windowsLDSUser.inc:2157 ../lib/modules/windowsUser.inc:316 +#: ../lib/modules/windowsLDSUser.inc:243 ../lib/modules/windowsLDSUser.inc:537 +#: ../lib/modules/windowsLDSUser.inc:614 ../lib/modules/windowsLDSUser.inc:695 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:920 +#: ../lib/modules/windowsLDSUser.inc:1849 +#: ../lib/modules/windowsLDSUser.inc:2197 ../lib/modules/windowsUser.inc:316 #: ../lib/modules/windowsUser.inc:716 ../lib/modules/windowsUser.inc:815 #: ../lib/modules/windowsUser.inc:937 ../lib/modules/windowsUser.inc:1073 #: ../lib/modules/windowsUser.inc:1215 ../lib/modules/windowsUser.inc:2882 #: ../lib/modules/windowsUser.inc:3711 ../lib/modules/inetOrgPerson.inc:96 #: ../lib/modules/inetOrgPerson.inc:283 ../lib/modules/inetOrgPerson.inc:537 #: ../lib/modules/inetOrgPerson.inc:586 ../lib/modules/inetOrgPerson.inc:1489 -#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1990 -#: ../lib/modules/inetOrgPerson.inc:2078 ../lib/modules/inetOrgPerson.inc:4092 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1988 +#: ../lib/modules/inetOrgPerson.inc:2076 ../lib/modules/inetOrgPerson.inc:4089 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Employee type" msgstr "Employee type" -#: ../lib/modules/windowsLDSUser.inc:240 ../lib/modules/windowsUser.inc:317 +#: ../lib/modules/windowsLDSUser.inc:244 ../lib/modules/windowsUser.inc:317 #: ../lib/modules/inetOrgPerson.inc:587 msgid "Employee type: Contractor, Employee, Intern, Temp, External, ..." msgstr "Employee type: Contractor, Employee, Intern, Temp, External, ..." -#: ../templates/lists/changePassword.php:525 -#: ../templates/lists/changePassword.php:532 ../templates/login.php:489 +#: ../templates/lists/changePassword.php:529 +#: ../templates/lists/changePassword.php:536 ../templates/login.php:499 msgid "Empty password submitted. Please try again." msgstr "Empty password submitted. Please try again." @@ -4862,7 +4859,7 @@ msgstr "" msgid "Encountered an error while performing search." msgstr "Encountered an error while performing search." -#: ../templates/config/mainmanage.php:318 ../help/help.inc:168 +#: ../templates/config/mainmanage.php:358 ../help/help.inc:166 msgid "Encrypt session" msgstr "Encrypt session" @@ -4878,7 +4875,7 @@ msgstr "" "Encryption protocol for connecting to IMAP server. LAM requires an encrypted " "connection." -#: ../help/help.inc:169 +#: ../help/help.inc:167 msgid "" "Encrypts sensitive data like passwords in your session. This requires the " "PHP OpenSSL extension." @@ -4902,7 +4899,7 @@ msgstr "Enforce classes" msgid "Enforce language" msgstr "Enforce language" -#: ../help/help.inc:227 +#: ../help/help.inc:231 msgid "Enforce password change on next login by default." msgstr "Enforce password change on next login by default." @@ -4918,11 +4915,11 @@ msgstr "" "Enter the base DN of your groups here. This is only required if you want to " "display memberships on the self service page." -#: ../help/help.inc:213 +#: ../help/help.inc:217 msgid "Enter the host name of your database server." msgstr "Enter the host name of your database server." -#: ../help/help.inc:215 +#: ../help/help.inc:219 msgid "" "Enter the port number of your database server. The default port will be used " "if empty." @@ -4936,7 +4933,7 @@ msgstr "Enter the values you would like to add:" #: ../lib/modules/eduPerson.inc:117 ../lib/modules/eduPerson.inc:121 #: ../lib/modules/eduPerson.inc:193 ../lib/modules/eduPerson.inc:230 -#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:551 +#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:545 msgid "Entitlements" msgstr "Entitlements" @@ -4980,7 +4977,7 @@ msgstr "Entry created" #: ../templates/3rdParty/pla/htdocs/mass_edit.php:27 #: ../templates/3rdParty/pla/htdocs/rdelete.php:24 #: ../templates/3rdParty/pla/htdocs/rdelete.php:56 -#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:955 +#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:959 msgid "Entry does not exist" msgstr "Entry does not exist" @@ -5004,7 +5001,7 @@ msgstr "Equipment" #: ../lib/3rdParty/yubico/Yubico.php:175 ../lib/3rdParty/yubico/Yubico.php:220 #: ../lib/3rdParty/yubico/Yubico.php:229 ../lib/3rdParty/yubico/Yubico.php:240 #: ../lib/3rdParty/yubico/Yubico.php:243 ../lib/3rdParty/yubico/Yubico.php:248 -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/Template.php:399 #: ../templates/3rdParty/pla/lib/Template.php:442 #: ../templates/3rdParty/pla/lib/Template.php:486 @@ -5020,7 +5017,7 @@ msgstr "Error" msgid "Error number" msgstr "Error number" -#: ../lib/modules/mitKerberos.inc:1199 ../lib/modules/heimdalKerberos.inc:1045 +#: ../lib/modules/mitKerberos.inc:1195 ../lib/modules/heimdalKerberos.inc:1045 msgid "Error while changing Kerberos password." msgstr "Error while changing Kerberos password." @@ -5029,7 +5026,7 @@ msgstr "Error while changing Kerberos password." msgid "Error while deleting DN: %s" msgstr "Error while deleting DN: %s" -#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:251 +#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:252 #: ../lib/env.inc:245 msgid "Evaluation Licence" msgstr "Evaluation License" @@ -5059,7 +5056,7 @@ msgstr "Example value" msgid "Examples" msgstr "Examples" -#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2232 +#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2286 #: ../lib/modules/windowsUser.inc:404 ../lib/modules/windowsUser.inc:3736 msgid "Exclude from group sync" msgstr "Exclude from group sync" @@ -5102,6 +5099,10 @@ msgstr "Expiration timestamp" msgid "Expiration timestamp (\"regseconds\" option)." msgstr "Expiration timestamp (\"regseconds\" option)." +#: ../templates/config/mainmanage.php:327 ../help/help.inc:240 +msgid "Expiration warning" +msgstr "Expiration warning" + #: ../lib/types/ppolicyType.inc:89 ../lib/modules/ppolicy.inc:116 #: ../lib/modules/ppolicy.inc:152 ../lib/modules/ppolicy.inc:179 #: ../lib/modules/ppolicy.inc:211 ../lib/modules/ppolicy.inc:483 @@ -5130,7 +5131,7 @@ msgid "Export" msgstr "Export" #: ../templates/pdfedit/pdfmain.php:264 ../templates/pdfedit/pdfmain.php:265 -#: ../help/help.inc:268 +#: ../help/help.inc:278 msgid "Export PDF structure" msgstr "Export PDF structure" @@ -5140,7 +5141,7 @@ msgid "Export format" msgstr "Export format" #: ../templates/profedit/profilemain.php:240 -#: ../templates/profedit/profilemain.php:241 ../help/help.inc:248 +#: ../templates/profedit/profilemain.php:241 ../help/help.inc:258 msgid "Export profile" msgstr "Export profile" @@ -5186,7 +5187,7 @@ msgstr "Extension owners" msgid "Extension with this name already exists." msgstr "Extension with this name already exists." -#: ../templates/config/mainmanage.php:401 ../help/help.inc:176 +#: ../templates/config/mainmanage.php:441 ../help/help.inc:174 msgid "External password check" msgstr "External password check" @@ -5211,7 +5212,7 @@ msgstr "Failed to copy" msgid "Failed to create entry!" msgstr "Failed to create entry!" -#: ../lib/modules/range.inc:124 ../lib/modules/range.inc:561 +#: ../lib/modules/range.inc:123 ../lib/modules/range.inc:560 msgid "Failover peer" msgstr "Failover peer" @@ -5221,10 +5222,10 @@ msgstr "Failover peer" msgid "Failure count interval" msgstr "Failure count interval" -#: ../lib/modules/windowsLDSUser.inc:185 ../lib/modules/windowsLDSUser.inc:462 -#: ../lib/modules/windowsLDSUser.inc:673 ../lib/modules/windowsLDSUser.inc:758 -#: ../lib/modules/windowsLDSUser.inc:896 ../lib/modules/windowsLDSUser.inc:1819 -#: ../lib/modules/windowsLDSUser.inc:2147 ../lib/modules/windowsUser.inc:203 +#: ../lib/modules/windowsLDSUser.inc:185 ../lib/modules/windowsLDSUser.inc:466 +#: ../lib/modules/windowsLDSUser.inc:677 ../lib/modules/windowsLDSUser.inc:765 +#: ../lib/modules/windowsLDSUser.inc:903 ../lib/modules/windowsLDSUser.inc:1837 +#: ../lib/modules/windowsLDSUser.inc:2186 ../lib/modules/windowsUser.inc:203 #: ../lib/modules/windowsUser.inc:619 ../lib/modules/windowsUser.inc:910 #: ../lib/modules/windowsUser.inc:980 ../lib/modules/windowsUser.inc:1036 #: ../lib/modules/windowsUser.inc:1198 ../lib/modules/windowsUser.inc:2868 @@ -5233,9 +5234,9 @@ msgstr "Failure count interval" #: ../lib/modules/inetOrgPerson.inc:371 ../lib/modules/inetOrgPerson.inc:519 #: ../lib/modules/inetOrgPerson.inc:646 ../lib/modules/inetOrgPerson.inc:650 #: ../lib/modules/inetOrgPerson.inc:1425 ../lib/modules/inetOrgPerson.inc:1428 -#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2057 -#: ../lib/modules/inetOrgPerson.inc:2672 ../lib/modules/inetOrgPerson.inc:4087 -#: ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1981 ../lib/modules/inetOrgPerson.inc:2055 +#: ../lib/modules/inetOrgPerson.inc:2670 ../lib/modules/inetOrgPerson.inc:4084 +#: ../lib/modules/inetOrgPerson.inc:4125 msgid "Fax number" msgstr "Fax number" @@ -5254,8 +5255,8 @@ msgstr "Field" #: ../templates/tools/importexport.php:152 #: ../templates/tools/importexport.php:169 -#: ../templates/config/mainmanage.php:413 -#: ../templates/config/mainmanage.php:444 +#: ../templates/config/mainmanage.php:453 +#: ../templates/config/mainmanage.php:484 #: ../templates/3rdParty/pla/lib/functions.php:526 #: ../templates/3rdParty/pla/tools/unserialize.php:14 #: ../templates/3rdParty/pla/htdocs/import.php:48 @@ -5270,7 +5271,7 @@ msgstr "File does not exist." msgid "File extension" msgstr "File extension" -#: ../lib/modules/windowsLDSUser.inc:788 ../lib/modules/windowsUser.inc:1081 +#: ../lib/modules/windowsLDSUser.inc:795 ../lib/modules/windowsUser.inc:1081 #: ../lib/modules/inetOrgPerson.inc:106 #, php-format msgid "File is too large. Maximum allowed size is %s kB." @@ -5303,7 +5304,7 @@ msgstr "File path" #: ../templates/upload/masscreate.php:272 ../lib/tools/fileUpload.inc:45 #: ../lib/modules/ldapPublicKey.inc:93 ../lib/modules/customFields.inc:4238 -#: ../lib/lists.inc:875 +#: ../lib/lists.inc:874 msgid "File upload" msgstr "File upload" @@ -5318,7 +5319,7 @@ msgstr "File upload" #: ../lib/modules/zarafaDynamicGroup.inc:170 #: ../lib/modules/zarafaDynamicGroup.inc:223 #: ../lib/modules/zarafaDynamicGroup.inc:413 -#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:471 +#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:472 #: ../lib/modules/nisNetGroupHost.inc:119 #: ../lib/modules/zarafaAddressList.inc:78 #: ../lib/modules/zarafaAddressList.inc:133 @@ -5351,8 +5352,8 @@ msgstr "File upload" #: ../lib/modules/groupOfNames.inc:316 ../lib/modules/groupOfNames.inc:391 #: ../lib/modules/groupOfNames.inc:465 ../lib/modules/groupOfNames.inc:541 #: ../lib/modules/nisMailAlias.inc:92 ../lib/modules/nisMailAlias.inc:374 -#: ../lib/lists.inc:456 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 -#: ../help/help.inc:178 +#: ../lib/lists.inc:455 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 +#: ../help/help.inc:176 msgid "Filter" msgstr "Filter" @@ -5370,21 +5371,21 @@ msgstr "Finished all operations." #: ../lib/types/user.inc:102 ../lib/modules/selfRegistration.inc:82 #: ../lib/modules/selfRegistration.inc:205 -#: ../lib/modules/windowsLDSUser.inc:133 ../lib/modules/windowsLDSUser.inc:345 -#: ../lib/modules/windowsLDSUser.inc:652 ../lib/modules/windowsLDSUser.inc:752 -#: ../lib/modules/windowsLDSUser.inc:861 ../lib/modules/windowsLDSUser.inc:1807 +#: ../lib/modules/windowsLDSUser.inc:133 ../lib/modules/windowsLDSUser.inc:349 +#: ../lib/modules/windowsLDSUser.inc:656 ../lib/modules/windowsLDSUser.inc:759 +#: ../lib/modules/windowsLDSUser.inc:868 ../lib/modules/windowsLDSUser.inc:1825 #: ../lib/modules/windowsUser.inc:151 ../lib/modules/windowsUser.inc:434 #: ../lib/modules/windowsUser.inc:876 ../lib/modules/windowsUser.inc:1030 #: ../lib/modules/windowsUser.inc:1162 ../lib/modules/windowsUser.inc:2855 #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:236 ../lib/modules/inetOrgPerson.inc:476 #: ../lib/modules/inetOrgPerson.inc:578 ../lib/modules/inetOrgPerson.inc:1204 -#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1967 -#: ../lib/modules/inetOrgPerson.inc:2581 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1965 +#: ../lib/modules/inetOrgPerson.inc:2579 ../lib/modules/inetOrgPerson.inc:4119 msgid "First name" msgstr "First name" -#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/windowsLDSUser.inc:753 +#: ../lib/modules/windowsLDSUser.inc:759 ../lib/modules/windowsLDSUser.inc:760 #: ../lib/modules/windowsUser.inc:1030 ../lib/modules/windowsUser.inc:1031 #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:69 msgid "First name contains invalid characters!" @@ -5403,7 +5404,7 @@ msgstr "Fix IP addresses" msgid "Fixed list" msgstr "Fixed list" -#: ../lib/modules/posixGroup.inc:548 ../lib/modules/posixAccount.inc:2151 +#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2205 msgid "Fixed range" msgstr "Fixed range" @@ -5416,8 +5417,8 @@ msgstr "Folding marks" msgid "Follow referrals" msgstr "Follow referrals" -#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:780 -#: ../help/help.inc:272 +#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:779 +#: ../help/help.inc:282 msgid "Font" msgstr "Font" @@ -5433,19 +5434,19 @@ msgstr "" "For the upload please specify the entries in the format \"(HOST,USER," "DOMAIN)\". Multiple entries are separated by semicolon." -#: ../templates/lists/changePassword.php:238 ../lib/modules/locking389ds.inc:87 +#: ../templates/lists/changePassword.php:242 ../lib/modules/locking389ds.inc:87 #: ../lib/modules/mitKerberos.inc:182 ../lib/modules/mitKerberos.inc:414 #: ../lib/modules/shadowAccount.inc:376 ../lib/modules/heimdalKerberos.inc:126 #: ../lib/modules/heimdalKerberos.inc:340 ../lib/modules.inc:1132 -#: ../help/help.inc:262 +#: ../help/help.inc:272 msgid "Force password change" msgstr "Force password change" -#: ../templates/config/confmain.php:341 ../help/help.inc:226 +#: ../templates/config/confmain.php:341 ../help/help.inc:230 msgid "Force password change by default" msgstr "Force password change by default" -#: ../lib/modules/posixGroup.inc:484 ../lib/modules/posixGroup.inc:531 +#: ../lib/modules/posixGroup.inc:485 ../lib/modules/posixGroup.inc:532 msgid "Force sync with group of names" msgstr "Force sync with group of names" @@ -5453,7 +5454,7 @@ msgstr "Force sync with group of names" msgid "Forgot password?" msgstr "Forgot password?" -#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:342 +#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:352 msgid "Format" msgstr "Format" @@ -5472,7 +5473,7 @@ msgid "Free printing" msgstr "Free printing" #: ../lib/modules/freeRadius.inc:76 ../lib/modules/freeRadius.inc:816 -#: ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/freeRadius.inc:884 msgid "FreeRadius" msgstr "FreeRadius" @@ -5480,17 +5481,19 @@ msgstr "FreeRadius" msgid "Friday" msgstr "Friday" -#: ../templates/config/confmain.php:357 ../lib/passwordExpirationJob.inc:83 -#: ../lib/passwordExpirationJob.inc:122 ../lib/modules/selfRegistration.inc:89 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:339 ../templates/config/confmain.php:357 +#: ../lib/passwordExpirationJob.inc:83 ../lib/passwordExpirationJob.inc:122 +#: ../lib/modules/selfRegistration.inc:89 #: ../lib/modules/selfRegistration.inc:217 #: ../lib/modules/passwordSelfReset.inc:119 #: ../lib/modules/passwordSelfReset.inc:663 -#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:336 -#: ../help/help.inc:380 +#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:242 +#: ../help/help.inc:346 ../help/help.inc:390 msgid "From address" msgstr "From address" -#: ../templates/config/confmain.php:615 +#: ../templates/config/confmain.php:614 ../templates/config/confmain.php:617 msgid "From address for password mails is invalid." msgstr "From address for password mails is invalid." @@ -5529,7 +5532,7 @@ msgstr "From user setting for this account." msgid "Full contact" msgstr "Full contact" -#: ../templates/lists/changePassword.php:276 +#: ../templates/lists/changePassword.php:280 #: ../lib/modules/asteriskVoicemail.inc:102 #: ../lib/modules/asteriskVoicemail.inc:138 #: ../lib/modules/asteriskVoicemail.inc:171 @@ -5547,12 +5550,12 @@ msgstr "Full name for Asterisk voicemail mailbox." msgid "Function" msgstr "Function" -#: ../lib/modules/windowsLDSUser.inc:395 ../lib/modules/windowsUser.inc:484 +#: ../lib/modules/windowsLDSUser.inc:399 ../lib/modules/windowsUser.inc:484 #: ../lib/modules/inetOrgPerson.inc:317 msgid "GB-12345" msgstr "GB-12345" -#: ../lib/modules/posixGroup.inc:458 ../lib/modules/posixGroup.inc:553 +#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixGroup.inc:554 msgid "GID generator" msgstr "GID generator" @@ -5561,17 +5564,17 @@ msgstr "GID generator" #: ../lib/modules/qmailUser.inc:298 ../lib/modules/qmailUser.inc:375 #: ../lib/modules/qmailUser.inc:461 ../lib/modules/qmailUser.inc:934 #: ../lib/modules/qmailUser.inc:1059 ../lib/modules/posixGroup.inc:211 -#: ../lib/modules/posixGroup.inc:398 ../lib/modules/posixGroup.inc:404 -#: ../lib/modules/posixGroup.inc:418 ../lib/modules/posixGroup.inc:438 -#: ../lib/modules/posixGroup.inc:667 ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:399 ../lib/modules/posixGroup.inc:405 +#: ../lib/modules/posixGroup.inc:419 ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:668 ../lib/modules/posixGroup.inc:702 #: ../lib/modules/posixAccount.inc:115 ../lib/modules/posixAccount.inc:302 -#: ../lib/modules/posixAccount.inc:2117 +#: ../lib/modules/posixAccount.inc:2171 #: ../lib/modules/sambaGroupMapping.inc:110 #: ../lib/modules/sambaGroupMapping.inc:511 msgid "GID number" msgstr "GID number" -#: ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:702 msgid "" "GID number has changed. Please select checkbox to change GID number of users " "and hosts." @@ -5588,7 +5591,7 @@ msgstr "" "GID number has changed. To keep file ownership you have to run the following " "command as root: 'find / -gid %s -uid %s -exec chgrp %s {} \\;'" -#: ../lib/modules/posixGroup.inc:708 +#: ../lib/modules/posixGroup.inc:709 msgid "GID number has to be a numeric value!" msgstr "GID number has to be a numeric value!" @@ -5597,14 +5600,14 @@ msgid "GID number is already in use." msgstr "GID number is already in use." #: ../lib/modules/posixAccount.inc:419 ../lib/modules/posixAccount.inc:457 -#: ../lib/modules/posixAccount.inc:1628 ../lib/modules/posixAccount.inc:2088 -#: ../lib/modules/posixAccount.inc:2120 ../lib/modules/posixAccount.inc:2223 -#: ../lib/modules/posixAccount.inc:2292 ../lib/modules/posixAccount.inc:2433 -#: ../lib/modules/posixAccount.inc:2441 +#: ../lib/modules/posixAccount.inc:1674 ../lib/modules/posixAccount.inc:2142 +#: ../lib/modules/posixAccount.inc:2174 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2346 ../lib/modules/posixAccount.inc:2487 +#: ../lib/modules/posixAccount.inc:2495 msgid "Gecos" msgstr "Gecos" -#: ../lib/modules/windowsLDSUser.inc:837 ../lib/modules/windowsUser.inc:1135 +#: ../lib/modules/windowsLDSUser.inc:844 ../lib/modules/windowsUser.inc:1135 msgid "General" msgstr "General" @@ -5612,7 +5615,7 @@ msgstr "General" msgid "General information" msgstr "General information" -#: ../templates/config/mainmanage.php:286 +#: ../templates/config/mainmanage.php:302 #: ../templates/selfService/adminMain.php:408 #: ../templates/profedit/profilepage.php:189 ../lib/configPages.inc:87 msgid "General settings" @@ -5622,7 +5625,7 @@ msgstr "General settings" msgid "Generate new serial number." msgstr "Generate new serial number." -#: ../templates/lists/changePassword.php:307 ../help/help.inc:316 +#: ../templates/lists/changePassword.php:311 ../help/help.inc:326 msgid "Generate random password" msgstr "Generate random password" @@ -5651,7 +5654,7 @@ msgstr "Go back" msgid "Go to" msgstr "Go to" -#: ../templates/selfService/adminMain.php:547 ../help/help.inc:318 +#: ../templates/selfService/adminMain.php:547 ../help/help.inc:328 msgid "Google reCAPTCHA" msgstr "Google reCAPTCHA" @@ -5661,7 +5664,7 @@ msgstr "Google reCAPTCHA" msgid "Grace authentication limit" msgstr "Grace authentication limit" -#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:524 msgid "Grace block period" msgstr "Grace block period" @@ -5679,7 +5682,7 @@ msgstr "" "Grace inode (files) period. Most filesystems use a fixed maximum value of 7 " "days." -#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:525 msgid "Grace inode period" msgstr "Grace inode period" @@ -5721,7 +5724,7 @@ msgstr "Group description" msgid "Group description." msgstr "Group description." -#: ../lib/modules/posixGroup.inc:423 +#: ../lib/modules/posixGroup.inc:424 msgid "Group description. If left empty group name will be used." msgstr "Group description. If left empty group name will be used." @@ -5735,15 +5738,15 @@ msgstr "Group member DNs" #: ../lib/modules/pykotaPrinter.inc:122 ../lib/modules/pykotaPrinter.inc:185 #: ../lib/modules/pykotaPrinter.inc:198 ../lib/modules/pykotaPrinter.inc:262 #: ../lib/modules/pykotaPrinter.inc:594 ../lib/modules/posixGroup.inc:85 -#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:304 -#: ../lib/modules/posixGroup.inc:426 ../lib/modules/posixGroup.inc:430 -#: ../lib/modules/posixGroup.inc:653 ../lib/modules/posixGroup.inc:665 -#: ../lib/modules/posixGroup.inc:678 ../lib/modules/windowsLDSGroup.inc:190 +#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:305 +#: ../lib/modules/posixGroup.inc:427 ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:654 ../lib/modules/posixGroup.inc:666 +#: ../lib/modules/posixGroup.inc:679 ../lib/modules/windowsLDSGroup.inc:190 #: ../lib/modules/windowsGroup.inc:376 msgid "Group members" msgstr "Group members" -#: ../lib/modules/posixGroup.inc:654 +#: ../lib/modules/posixGroup.inc:655 msgid "Group members (incl. primary members)" msgstr "Group members (incl. primary members)" @@ -5756,10 +5759,10 @@ msgstr "Group members (incl. primary members)" #: ../lib/modules/zarafaDynamicGroup.inc:180 #: ../lib/modules/zarafaDynamicGroup.inc:204 #: ../lib/modules/zarafaDynamicGroup.inc:410 ../lib/modules/posixGroup.inc:66 -#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:446 -#: ../lib/modules/posixGroup.inc:649 ../lib/modules/posixGroup.inc:666 -#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:710 -#: ../lib/modules/posixGroup.inc:711 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:650 ../lib/modules/posixGroup.inc:667 +#: ../lib/modules/posixGroup.inc:710 ../lib/modules/posixGroup.inc:711 +#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:170 ../lib/modules/pykotaGroup.inc:190 #: ../lib/modules/kopanoDynamicGroup.inc:62 #: ../lib/modules/kopanoDynamicGroup.inc:119 @@ -5799,8 +5802,8 @@ msgid "Group name already in use." msgstr "Group name already in use." #: ../lib/modules/zarafaDynamicGroup.inc:180 -#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:711 -#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:712 +#: ../lib/modules/posixGroup.inc:713 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:169 ../lib/modules/pykotaGroup.inc:172 #: ../lib/modules/pykotaGroup.inc:173 ../lib/modules/kopanoDynamicGroup.inc:184 #: ../lib/modules/kopanoDynamicGroup.inc:185 ../lib/modules/nisnetgroup.inc:153 @@ -5818,7 +5821,7 @@ msgstr "" msgid "Group name for NIS." msgstr "Group name for NIS." -#: ../lib/modules/posixGroup.inc:710 +#: ../lib/modules/posixGroup.inc:711 msgid "Group name in use. Selected next free group name." msgstr "Group name in use. Selected next free group name." @@ -5831,7 +5834,7 @@ msgstr "" "Group name of the group which should be created. Valid characters are: a-z, " "A-Z, 0-9 and .-_ ." -#: ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:448 msgid "" "Group name of the group which should be created. Valid characters are: a-z, " "A-Z, 0-9 and .-_ . If group name is already used group name will be expanded " @@ -5868,7 +5871,7 @@ msgstr "Group of names accounts" msgid "Group of unique names" msgstr "Group of unique names" -#: ../lib/modules/posixGroup.inc:410 ../lib/modules/posixGroup.inc:434 +#: ../lib/modules/posixGroup.inc:411 ../lib/modules/posixGroup.inc:435 msgid "Group password" msgstr "Group password" @@ -5885,19 +5888,19 @@ msgid "Group type" msgstr "Group type" #: ../lib/types/group.inc:69 ../lib/modules/windowsLDSUser.inc:201 -#: ../lib/modules/windowsLDSUser.inc:204 ../lib/modules/windowsLDSUser.inc:447 -#: ../lib/modules/windowsLDSUser.inc:666 ../lib/modules/windowsLDSUser.inc:984 -#: ../lib/modules/windowsLDSUser.inc:1221 -#: ../lib/modules/windowsLDSUser.inc:1842 -#: ../lib/modules/windowsLDSUser.inc:1870 ../lib/modules/posixGroup.inc:505 +#: ../lib/modules/windowsLDSUser.inc:204 ../lib/modules/windowsLDSUser.inc:451 +#: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:1002 +#: ../lib/modules/windowsLDSUser.inc:1239 +#: ../lib/modules/windowsLDSUser.inc:1860 +#: ../lib/modules/windowsLDSUser.inc:1890 ../lib/modules/posixGroup.inc:506 #: ../lib/modules/zarafaGroup.inc:737 ../lib/modules/kopanoGroup.inc:698 -#: ../lib/modules/posixAccount.inc:3227 ../lib/modules/windowsUser.inc:239 +#: ../lib/modules/posixAccount.inc:3281 ../lib/modules/windowsUser.inc:239 #: ../lib/modules/windowsUser.inc:242 ../lib/modules/windowsUser.inc:604 #: ../lib/modules/windowsUser.inc:897 ../lib/modules/windowsUser.inc:1358 #: ../lib/modules/windowsUser.inc:1820 ../lib/modules/windowsUser.inc:2919 #: ../lib/modules/windowsUser.inc:2949 ../lib/modules/windowsLDSGroup.inc:271 #: ../lib/modules/generalInformation.inc:111 -#: ../lib/modules/groupOfNamesUser.inc:537 ../lib/modules/windowsGroup.inc:505 +#: ../lib/modules/groupOfNamesUser.inc:538 ../lib/modules/windowsGroup.inc:505 msgid "Groups" msgstr "Groups" @@ -5906,15 +5909,15 @@ msgid "Groups (read-only)" msgstr "Groups (read-only)" #: ../lib/types/gon.inc:54 ../lib/modules/posixAccount.inc:261 -#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1811 -#: ../lib/modules/posixAccount.inc:1988 ../lib/modules/posixAccount.inc:2131 -#: ../lib/modules/posixAccount.inc:2227 ../lib/modules/groupOfNamesUser.inc:54 +#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:2043 ../lib/modules/posixAccount.inc:2185 +#: ../lib/modules/posixAccount.inc:2280 ../lib/modules/groupOfNamesUser.inc:54 #: ../lib/modules/groupOfNamesUser.inc:56 #: ../lib/modules/groupOfNamesUser.inc:60 #: ../lib/modules/groupOfNamesUser.inc:64 #: ../lib/modules/groupOfNamesUser.inc:75 -#: ../lib/modules/groupOfNamesUser.inc:329 -#: ../lib/modules/groupOfNamesUser.inc:367 +#: ../lib/modules/groupOfNamesUser.inc:330 +#: ../lib/modules/groupOfNamesUser.inc:368 msgid "Groups of names" msgstr "Groups of names" @@ -5925,7 +5928,7 @@ msgstr "H-Node (0x08)" #: ../templates/config/confmain.php:370 ../lib/passwordExpirationJob.inc:88 #: ../lib/modules/selfRegistration.inc:221 #: ../lib/modules/passwordSelfReset.inc:665 -#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:345 +#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:355 msgid "HTML format" msgstr "HTML format" @@ -5943,17 +5946,17 @@ msgstr "HTTP authentication" msgid "HTTP port" msgstr "HTTP port" -#: ../lib/modules/quota.inc:713 ../lib/modules/systemQuotas.inc:372 +#: ../lib/modules/quota.inc:776 ../lib/modules/systemQuotas.inc:372 msgid "Hard block" msgstr "Hard block" #: ../lib/modules/quota.inc:123 ../lib/modules/quota.inc:124 -#: ../lib/modules/quota.inc:467 ../lib/modules/quota.inc:567 +#: ../lib/modules/quota.inc:524 ../lib/modules/quota.inc:627 #: ../lib/modules/systemQuotas.inc:128 msgid "Hard block limit" msgstr "Hard block limit" -#: ../lib/modules/quota.inc:715 ../lib/modules/systemQuotas.inc:374 +#: ../lib/modules/quota.inc:778 ../lib/modules/systemQuotas.inc:374 msgid "Hard inode" msgstr "Hard inode" @@ -5961,8 +5964,8 @@ msgstr "Hard inode" msgid "Hard inode (files) limit" msgstr "Hard inode (files) limit" -#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:573 ../lib/modules/systemQuotas.inc:132 +#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:633 ../lib/modules/systemQuotas.inc:132 msgid "Hard inode limit" msgstr "Hard inode limit" @@ -6024,7 +6027,7 @@ msgid "Here you can enter a description for this role." msgstr "Here you can enter a description for this role." #: ../lib/modules/pykotaPrinter.inc:128 ../lib/modules/zarafaContact.inc:95 -#: ../lib/modules/posixGroup.inc:472 ../lib/modules/zarafaUser.inc:159 +#: ../lib/modules/posixGroup.inc:473 ../lib/modules/zarafaUser.inc:159 #: ../lib/modules/kopanoContact.inc:95 ../lib/modules/sambaGroupMapping.inc:171 #: ../lib/modules/nisnetgroup.inc:107 ../lib/modules/kopanoUser.inc:159 #: ../lib/modules/windowsLDSGroup.inc:109 @@ -6068,7 +6071,7 @@ msgstr "Here you can enter a serial number for this device." msgid "Here you can enter additional web sites for the user." msgstr "Here you can enter additional web sites for the user." -#: ../help/help.inc:271 +#: ../help/help.inc:281 msgid "" "Here you can enter an alternative mail address for the password. To use the " "user's primary email address please leave the field blank." @@ -6090,12 +6093,12 @@ msgstr "" "will allow you to add/remove the group's attributes including their object " "classes." -#: ../lib/modules/windowsLDSUser.inc:256 ../lib/modules/windowsLDSUser.inc:260 +#: ../lib/modules/windowsLDSUser.inc:260 ../lib/modules/windowsLDSUser.inc:264 #: ../lib/modules/windowsUser.inc:333 ../lib/modules/windowsUser.inc:337 msgid "Here you can enter the user's department number." msgstr "Here you can enter the user's department number." -#: ../lib/modules/windowsLDSUser.inc:252 ../lib/modules/windowsUser.inc:329 +#: ../lib/modules/windowsLDSUser.inc:256 ../lib/modules/windowsUser.inc:329 #: ../lib/modules/inetOrgPerson.inc:746 ../lib/modules/inetOrgPerson.inc:750 msgid "Here you can enter the user's department." msgstr "Here you can enter the user's department." @@ -6108,7 +6111,7 @@ msgstr "Here you can explicitly enable and disable Kopano features." msgid "Here you can explicitly enable and disable Zarafa features." msgstr "Here you can explicitly enable and disable Zarafa features." -#: ../help/help.inc:269 +#: ../help/help.inc:279 msgid "" "Here you can export PDF structures to other server profiles (overwrite " "existing). You may also export a structure to the global templates. In this " @@ -6120,7 +6123,7 @@ msgstr "" "case it will always be copied to all server profiles that do not yet have a " "structure with this name." -#: ../help/help.inc:249 +#: ../help/help.inc:259 msgid "" "Here you can export account profiles to other server profiles (overwrite " "existing). You may also export a profile to the global templates. In this " @@ -6132,7 +6135,7 @@ msgstr "" "case it will always be copied to all server profiles that do not yet have a " "profile with this name." -#: ../help/help.inc:267 +#: ../help/help.inc:277 msgid "" "Here you can import PDF structures from other server profiles (overwrite " "existing)." @@ -6140,7 +6143,7 @@ msgstr "" "Here you can import PDF structures from other server profiles (overwrite " "existing)." -#: ../help/help.inc:247 +#: ../help/help.inc:257 msgid "" "Here you can import account profiles from other server profiles (overwrite " "existing)." @@ -6148,7 +6151,7 @@ msgstr "" "Here you can import account profiles from other server profiles (overwrite " "existing)." -#: ../lib/lists.inc:458 ../help/help.inc:179 +#: ../lib/lists.inc:457 ../help/help.inc:177 msgid "" "Here you can input simple filter expressions (e.g. 'value' or 'v*'). The " "filter is case-insensitive." @@ -6156,7 +6159,7 @@ msgstr "" "Here you can input simple filter expressions (e.g. 'value' or 'v*'). The " "filter is case-insensitive." -#: ../help/help.inc:255 +#: ../help/help.inc:265 msgid "" "Here you can load an account profile to set default settings for your " "account. The \"default\" profile is automatically loaded for new accounts." @@ -6172,11 +6175,11 @@ msgstr "Here you can manage your account profiles." msgid "Here you can manage your webauthn devices." msgstr "Here you can manage your webauthn devices." -#: ../help/help.inc:195 +#: ../help/help.inc:199 msgid "Here you can overwrite the display name for this account type." msgstr "Here you can overwrite the display name for this account type." -#: ../help/help.inc:257 +#: ../help/help.inc:267 msgid "" "Here you can select a PDF structure and export the account to a PDF file." msgstr "" @@ -6220,7 +6223,7 @@ msgstr "" msgid "Here you can set the URL to a custom icon (32x32px) for this module." msgstr "Here you can set the URL to a custom icon (32x32px) for this module." -#: ../help/help.inc:295 +#: ../help/help.inc:305 msgid "" "Here you can specify additional CSS links to change the layout of the self " "service pages. This is useful to adapt them to your corporate design. Please " @@ -6272,7 +6275,7 @@ msgid "" msgstr "" "Here you can specify the minimum number of characters for a user password." -#: ../templates/lists/changePassword.php:352 +#: ../templates/lists/changePassword.php:356 msgid "Here you can specify the new password yourself." msgstr "Here you can specify the new password yourself." @@ -6326,11 +6329,11 @@ msgstr "Here you can upload a new file." #: ../lib/modules/kopanoAddressList.inc:111 #: ../lib/modules/kopanoAddressList.inc:142 #: ../lib/modules/kopanoAddressList.inc:179 -#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:188 +#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:192 msgid "Hidden" msgstr "Hidden" -#: ../help/help.inc:189 +#: ../help/help.inc:193 msgid "" "Hidden account types will not show up in LAM. This is useful if you want to " "display e.g. only groups but still need to manage their members." @@ -6338,7 +6341,7 @@ msgstr "" "Hidden account types will not show up in LAM. This is useful if you want to " "display e.g. only groups but still need to manage their members." -#: ../lib/modules/windowsLDSUser.inc:211 ../lib/modules/windowsLDSUser.inc:2143 +#: ../lib/modules/windowsLDSUser.inc:211 ../lib/modules/windowsLDSUser.inc:2182 #: ../lib/modules/kopanoServer.inc:87 ../lib/modules/kopanoServer.inc:373 #: ../lib/modules/nisMailAliasUser.inc:104 #: ../lib/modules/nisMailAliasUser.inc:558 @@ -6348,10 +6351,10 @@ msgstr "" #: ../lib/modules/zarafaGroup.inc:761 ../lib/modules/kopanoGroup.inc:114 #: ../lib/modules/kopanoGroup.inc:722 ../lib/modules/sambaSamAccount.inc:401 #: ../lib/modules/sambaSamAccount.inc:1946 ../lib/modules/posixAccount.inc:324 -#: ../lib/modules/posixAccount.inc:2218 ../lib/modules/posixAccount.inc:2287 +#: ../lib/modules/posixAccount.inc:2272 ../lib/modules/posixAccount.inc:2341 #: ../lib/modules/zarafaUser.inc:150 ../lib/modules/zarafaUser.inc:1816 #: ../lib/modules/windowsUser.inc:257 ../lib/modules/windowsUser.inc:3692 -#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4071 +#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4068 #: ../lib/modules/freeRadius.inc:127 ../lib/modules/freeRadius.inc:298 #: ../lib/modules/kopanoUser.inc:150 ../lib/modules/kopanoUser.inc:1746 #: ../lib/modules/windowsLDSGroup.inc:80 ../lib/modules/zarafaServer.inc:88 @@ -6431,8 +6434,8 @@ msgstr "Hold the CTRL-key to (de)select multiple roles." #: ../lib/modules/posixAccount.inc:237 ../lib/modules/posixAccount.inc:305 #: ../lib/modules/posixAccount.inc:357 ../lib/modules/posixAccount.inc:361 #: ../lib/modules/posixAccount.inc:365 ../lib/modules/posixAccount.inc:369 -#: ../lib/modules/posixAccount.inc:1649 ../lib/modules/posixAccount.inc:1902 -#: ../lib/modules/posixAccount.inc:1999 ../lib/modules/posixAccount.inc:2118 +#: ../lib/modules/posixAccount.inc:1704 ../lib/modules/posixAccount.inc:1957 +#: ../lib/modules/posixAccount.inc:2054 ../lib/modules/posixAccount.inc:2172 #: ../lib/modules/courierMailAccount.inc:136 #: ../lib/modules/courierMailAccount.inc:244 #: ../lib/modules/courierMailAccount.inc:423 @@ -6492,8 +6495,8 @@ msgstr "Home server for the user." #: ../lib/modules/inetOrgPerson.inc:355 ../lib/modules/inetOrgPerson.inc:513 #: ../lib/modules/inetOrgPerson.inc:697 ../lib/modules/inetOrgPerson.inc:701 #: ../lib/modules/inetOrgPerson.inc:1409 ../lib/modules/inetOrgPerson.inc:1412 -#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2646 -#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2644 +#: ../lib/modules/inetOrgPerson.inc:4082 ../lib/modules/inetOrgPerson.inc:4124 msgid "Home telephone number" msgstr "Home telephone number" @@ -6510,7 +6513,7 @@ msgstr "Homedirectory contains invalid characters." #: ../lib/modules/asteriskAccount.inc:316 #: ../lib/modules/asteriskAccount.inc:589 #: ../lib/modules/asteriskAccount.inc:984 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:604 +#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:602 #: ../lib/modules/hostObject.inc:144 msgid "Host" msgstr "Host" @@ -6539,14 +6542,14 @@ msgid "Host list" msgstr "Host list" #: ../lib/types/host.inc:95 ../lib/types/bind.inc:80 -#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:216 +#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:213 #: ../lib/modules/windowsHost.inc:75 ../lib/modules/windowsHost.inc:107 #: ../lib/modules/windowsHost.inc:132 ../lib/modules/windowsHost.inc:144 #: ../lib/modules/windowsHost.inc:155 ../lib/modules/windowsHost.inc:328 #: ../lib/modules/posixAccount.inc:105 ../lib/modules/posixAccount.inc:106 #: ../lib/modules/posixAccount.inc:108 ../lib/modules/posixAccount.inc:272 #: ../lib/modules/posixAccount.inc:295 ../lib/modules/posixAccount.inc:453 -#: ../lib/modules/posixAccount.inc:1606 ../lib/modules/posixAccount.inc:2100 +#: ../lib/modules/posixAccount.inc:1652 ../lib/modules/posixAccount.inc:2154 #: ../lib/modules/bindDLZ.inc:93 ../lib/modules/bindDLZ.inc:156 #: ../lib/modules/bindDLZ.inc:160 ../lib/modules/bindDLZ.inc:264 #: ../lib/modules/bindDLZ.inc:351 ../lib/modules/bindDLZ.inc:492 @@ -6598,7 +6601,7 @@ msgstr "" #: ../lib/types/host.inc:55 ../lib/modules/posixAccount.inc:85 #: ../lib/modules/posixAccount.inc:86 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2240 ../lib/modules/sudoRole.inc:77 +#: ../lib/modules/posixAccount.inc:2294 ../lib/modules/sudoRole.inc:77 #: ../lib/modules/sudoRole.inc:102 ../lib/modules/sudoRole.inc:164 #: ../lib/modules/sudoRole.inc:216 ../lib/modules/sudoRole.inc:228 #: ../lib/modules/sudoRole.inc:302 ../lib/modules/sudoRole.inc:455 @@ -6611,16 +6614,16 @@ msgstr "Hosts" msgid "I am out of office." msgstr "I am out of office." -#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:705 #: ../lib/modules/posixAccount.inc:96 ../lib/modules/kopanoContact.inc:183 msgid "ID is already in use" msgstr "ID is already in use" -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixGroup.inc:703 -#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixGroup.inc:851 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/posixGroup.inc:705 ../lib/modules/posixGroup.inc:852 #: ../lib/modules/posixAccount.inc:94 ../lib/modules/posixAccount.inc:95 -#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 msgid "ID-Number" msgstr "ID-Number" @@ -6655,13 +6658,13 @@ msgstr "IMAP password input" #: ../lib/modules/freeRadius.inc:204 ../lib/modules/freeRadius.inc:253 #: ../lib/modules/freeRadius.inc:302 ../lib/modules/freeRadius.inc:351 #: ../lib/modules/freeRadius.inc:689 ../lib/modules/fixed_ip.inc:111 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:761 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:759 msgid "IP address" msgstr "IP address" #: ../lib/modules/ddns.inc:97 ../lib/modules/ddns.inc:111 -#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:379 -#: ../lib/modules/ddns.inc:421 +#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:375 +#: ../lib/modules/ddns.inc:417 msgid "IP address of the DNS server" msgstr "IP address of the DNS server" @@ -6764,7 +6767,7 @@ msgstr "If checked password does not expire." msgid "If checked password does not expire. (Setting X-Flag)" msgstr "If checked password does not expire. (Setting X-Flag)" -#: ../help/help.inc:315 +#: ../help/help.inc:325 msgid "" "If checked then also users who did not setup a second factor are able to " "login." @@ -6790,7 +6793,7 @@ msgstr "" "want to use this setting to unlock user accounts which were locked because " "of failed login attempts." -#: ../help/help.inc:191 +#: ../help/help.inc:195 msgid "" "If checked then the user will not be able to create new entries of this " "account type." @@ -6798,7 +6801,7 @@ msgstr "" "If checked then the user will not be able to create new entries of this " "account type." -#: ../help/help.inc:193 +#: ../help/help.inc:197 msgid "" "If checked then the user will not be able to delete entries of this account " "type." @@ -6806,22 +6809,22 @@ msgstr "" "If checked then the user will not be able to delete entries of this account " "type." -#: ../lib/modules/posixGroup.inc:419 +#: ../lib/modules/posixGroup.inc:420 msgid "" -"If empty GID number will be generated automaticly depending on your " +"If empty GID number will be generated automatically depending on your " "configuration settings." msgstr "" -"If empty GID number will be generated automaticly depending on your " +"If empty GID number will be generated automatically depending on your " "configuration settings." #: ../lib/modules/qmailUser.inc:202 -msgid "If empty GID number will be generated automaticly." -msgstr "If empty GID number will be generated automaticly." +msgid "If empty GID number will be generated automatically." +msgstr "If empty GID number will be generated automatically." #: ../lib/modules/qmailUser.inc:198 ../lib/modules/zarafaContact.inc:118 #: ../lib/modules/posixAccount.inc:346 ../lib/modules/kopanoContact.inc:118 -msgid "If empty UID number will be generated automaticly." -msgstr "If empty UID number will be generated automaticly." +msgid "If empty UID number will be generated automatically." +msgstr "If empty UID number will be generated automatically." #: ../lib/modules/selfRegistration.inc:110 #: ../lib/modules/passwordSelfReset.inc:176 @@ -6896,10 +6899,10 @@ msgstr "If set to \"true\" password does not expire. (Setting X-Flag)" #: ../lib/modules/qmailGroup.inc:162 msgid "" -"If set to true then all incomming mails needs to come from a member of the " +"If set to true then all incoming mails needs to come from a member of the " "list." msgstr "" -"If set to true then all incomming mails needs to come from a member of the " +"If set to true then all incoming mails needs to come from a member of the " "list." #: ../lib/modules/customFields.inc:138 @@ -6947,10 +6950,10 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:194 msgid "" -"If this is set to true then an incomming mail needs to be approved by the " +"If this is set to true then an incoming mail needs to be approved by the " "sender." msgstr "" -"If this is set to true then an incomming mail needs to be approved by the " +"If this is set to true then an incoming mail needs to be approved by the " "sender." #: ../lib/modules/qmailGroup.inc:109 ../lib/modules/qmailGroup.inc:113 @@ -7026,7 +7029,7 @@ msgstr "If you set this option then the user cannot request service tickets." #: ../lib/modules/mitKerberos.inc:183 ../lib/modules/sambaSamAccount.inc:297 #: ../lib/modules/windowsUser.inc:237 ../lib/modules/heimdalKerberos.inc:127 -#: ../help/help.inc:263 +#: ../help/help.inc:273 msgid "" "If you set this option then the user has to change his password at the next " "login." @@ -7088,7 +7091,7 @@ msgstr "" "If your server runs on another port then add a comma and the port number " "after the server." -#: ../lib/modules/windowsLDSUser.inc:319 ../lib/modules/windowsUser.inc:396 +#: ../lib/modules/windowsLDSUser.inc:323 ../lib/modules/windowsUser.inc:396 #: ../lib/modules/inetOrgPerson.inc:794 msgid "Image cropping" msgstr "Image cropping" @@ -7107,16 +7110,16 @@ msgid "Import" msgstr "Import" #: ../templates/pdfedit/pdfmain.php:256 ../templates/pdfedit/pdfmain.php:257 -#: ../help/help.inc:266 +#: ../help/help.inc:276 msgid "Import PDF structures" msgstr "Import PDF structures" -#: ../templates/config/mainmanage.php:353 +#: ../templates/config/mainmanage.php:393 msgid "Import from server" msgstr "Import from server" #: ../templates/profedit/profilemain.php:233 -#: ../templates/profedit/profilemain.php:234 ../help/help.inc:246 +#: ../templates/profedit/profilemain.php:234 ../help/help.inc:256 msgid "Import profiles" msgstr "Import profiles" @@ -7125,7 +7128,7 @@ msgstr "Import profiles" msgid "Import successful" msgstr "Import successful" -#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:241 msgid "Imported certificate from server." msgstr "Imported certificate from server." @@ -7133,7 +7136,7 @@ msgstr "Imported certificate from server." msgid "Imports and exports LDAP data." msgstr "Imports and exports LDAP data." -#: ../templates/config/mainmanage.php:355 +#: ../templates/config/mainmanage.php:395 msgid "Imports the certificate directly from your LDAP server." msgstr "Imports the certificate directly from your LDAP server." @@ -7151,7 +7154,7 @@ msgstr "" "Inactive hosts will not be able to get an address from the DHCP server." #: ../templates/tools/importexport.php:280 -#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:375 +#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:385 msgid "Include system attributes" msgstr "Include system attributes" @@ -7185,17 +7188,17 @@ msgstr "Initial payment" msgid "Initial program" msgstr "Initial program" -#: ../lib/modules/windowsLDSUser.inc:137 ../lib/modules/windowsLDSUser.inc:369 -#: ../lib/modules/windowsLDSUser.inc:653 ../lib/modules/windowsLDSUser.inc:865 -#: ../lib/modules/windowsLDSUser.inc:1808 ../lib/modules/windowsUser.inc:155 +#: ../lib/modules/windowsLDSUser.inc:137 ../lib/modules/windowsLDSUser.inc:373 +#: ../lib/modules/windowsLDSUser.inc:657 ../lib/modules/windowsLDSUser.inc:872 +#: ../lib/modules/windowsLDSUser.inc:1826 ../lib/modules/windowsUser.inc:155 #: ../lib/modules/windowsUser.inc:458 ../lib/modules/windowsUser.inc:877 #: ../lib/modules/windowsUser.inc:1166 ../lib/modules/windowsUser.inc:2856 #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:251 #: ../lib/modules/inetOrgPerson.inc:558 ../lib/modules/inetOrgPerson.inc:782 #: ../lib/modules/inetOrgPerson.inc:1219 ../lib/modules/inetOrgPerson.inc:1222 -#: ../lib/modules/inetOrgPerson.inc:1995 ../lib/modules/inetOrgPerson.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:2869 ../lib/modules/inetOrgPerson.inc:4099 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2019 +#: ../lib/modules/inetOrgPerson.inc:2867 ../lib/modules/inetOrgPerson.inc:4096 +#: ../lib/modules/inetOrgPerson.inc:4132 msgid "Initials" msgstr "Initials" @@ -7271,7 +7274,7 @@ msgstr "Inserted user or group name in profile path." msgid "Insufficient rights for this operation." msgstr "Insufficient rights for this operation." -#: ../lib/modules/fixed_ip.inc:459 +#: ../lib/modules/fixed_ip.inc:457 msgid "Invalid MAC address." msgstr "Invalid MAC address." @@ -7283,7 +7286,7 @@ msgstr "Invalid RDN attribute!" msgid "Invalid RDN value" msgstr "Invalid RDN value" -#: ../lib/modules/posixAccount.inc:1723 ../lib/modules/yubiKeyUser.inc:147 +#: ../lib/modules/posixAccount.inc:1778 ../lib/modules/yubiKeyUser.inc:147 msgid "" "Invalid configuration detected. Please edit your server profile (module " "settings) and fill all required fields." @@ -7298,7 +7301,7 @@ msgstr "" msgid "Invalid data" msgstr "Invalid data" -#: ../lib/modules/fixed_ip.inc:464 +#: ../lib/modules/fixed_ip.inc:462 msgid "Invalid description." msgstr "Invalid description." @@ -7319,15 +7322,15 @@ msgid "Invalid option" msgstr "Invalid option" #: ../lib/modules/imapAccess.inc:161 -msgid "Invalid password for IMAP admin or other problem occured." -msgstr "Invalid password for IMAP admin or other problem occured." +msgid "Invalid password for IMAP admin or other problem occurred." +msgstr "Invalid password for IMAP admin or other problem occurred." -#: ../lib/modules/ldapPublicKey.inc:651 ../lib/modules/yubiKeyUser.inc:530 -#: ../lib/modules/inetOrgPerson.inc:3884 ../lib/modules/customFields.inc:1577 +#: ../lib/modules/ldapPublicKey.inc:649 ../lib/modules/yubiKeyUser.inc:530 +#: ../lib/modules/inetOrgPerson.inc:3881 ../lib/modules/customFields.inc:1577 msgid "Invalid request" msgstr "Invalid request" -#: ../templates/config/mainmanage.php:237 +#: ../templates/config/mainmanage.php:248 msgid "Invalid server name. Please enter \"server\" or \"server:port\"." msgstr "Invalid server name. Please enter \"server\" or \"server:port\"." @@ -7340,7 +7343,7 @@ msgstr "Invalid value in field \"%s\"." #: ../lib/modules/kolabUser.inc:104 ../lib/modules/kolabUser.inc:111 #: ../lib/modules/kolabUser.inc:161 ../lib/modules/kolabUser.inc:198 #: ../lib/modules/kolabUser.inc:263 ../lib/modules/kolabUser.inc:602 -#: ../lib/modules/kolabUser.inc:737 +#: ../lib/modules/kolabUser.inc:736 msgid "Invitation policy" msgstr "Invitation policy" @@ -7348,11 +7351,11 @@ msgstr "Invitation policy" msgid "Invitation policy list" msgstr "Invitation policy list" -#: ../lib/modules/range.inc:140 +#: ../lib/modules/range.inc:139 msgid "It is not possible to delete all ranges." msgstr "It is not possible to delete all ranges." -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixAccount.inc:95 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:95 msgid "" "It is possible that this ID-number is reused. This can cause several " "problems because files with old permissions might still exist. To avoid this " @@ -7377,11 +7380,11 @@ msgstr "Job history" msgid "Job suffix" msgstr "Job suffix" -#: ../lib/types/user.inc:117 ../lib/modules/windowsLDSUser.inc:227 -#: ../lib/modules/windowsLDSUser.inc:509 ../lib/modules/windowsLDSUser.inc:607 -#: ../lib/modules/windowsLDSUser.inc:679 ../lib/modules/windowsLDSUser.inc:778 -#: ../lib/modules/windowsLDSUser.inc:904 ../lib/modules/windowsLDSUser.inc:1828 -#: ../lib/modules/windowsLDSUser.inc:2154 ../lib/modules/windowsUser.inc:304 +#: ../lib/types/user.inc:117 ../lib/modules/windowsLDSUser.inc:231 +#: ../lib/modules/windowsLDSUser.inc:513 ../lib/modules/windowsLDSUser.inc:611 +#: ../lib/modules/windowsLDSUser.inc:686 ../lib/modules/windowsLDSUser.inc:785 +#: ../lib/modules/windowsLDSUser.inc:911 ../lib/modules/windowsLDSUser.inc:1846 +#: ../lib/modules/windowsLDSUser.inc:2194 ../lib/modules/windowsUser.inc:304 #: ../lib/modules/windowsUser.inc:692 ../lib/modules/windowsUser.inc:812 #: ../lib/modules/windowsUser.inc:928 ../lib/modules/windowsUser.inc:1071 #: ../lib/modules/windowsUser.inc:1206 ../lib/modules/windowsUser.inc:2879 @@ -7389,13 +7392,13 @@ msgstr "Job suffix" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:267 #: ../lib/modules/inetOrgPerson.inc:531 ../lib/modules/inetOrgPerson.inc:570 #: ../lib/modules/inetOrgPerson.inc:574 ../lib/modules/inetOrgPerson.inc:1465 -#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1966 -#: ../lib/modules/inetOrgPerson.inc:2075 ../lib/modules/inetOrgPerson.inc:2882 -#: ../lib/modules/inetOrgPerson.inc:4090 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1964 +#: ../lib/modules/inetOrgPerson.inc:2073 ../lib/modules/inetOrgPerson.inc:2880 +#: ../lib/modules/inetOrgPerson.inc:4087 ../lib/modules/inetOrgPerson.inc:4127 msgid "Job title" msgstr "Job title" -#: ../lib/modules/windowsLDSUser.inc:228 ../lib/modules/windowsUser.inc:305 +#: ../lib/modules/windowsLDSUser.inc:232 ../lib/modules/windowsUser.inc:305 #: ../lib/modules/inetOrgPerson.inc:571 ../lib/modules/inetOrgPerson.inc:575 msgid "Job title of user: President, department manager, ..." msgstr "Job title of user: President, department manager, ..." @@ -7502,7 +7505,7 @@ msgstr "Kopano will store the user's archives on these servers." msgid "Korean" msgstr "Korean" -#: ../lib/modules/posixGroup.inc:455 +#: ../lib/modules/posixGroup.inc:456 msgid "" "LAM checks if the entered group name and GID are unique. Here you can enter " "the LDAP suffix that is used to search for duplicates. By default the " @@ -7538,7 +7541,7 @@ msgstr "LAM configuration" msgid "LAM has checked your input and is now ready to create the accounts." msgstr "LAM has checked your input and is now ready to create the accounts." -#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixAccount.inc:341 +#: ../lib/modules/posixGroup.inc:444 ../lib/modules/posixAccount.inc:341 #: ../lib/modules/inetOrgPerson.inc:758 ../lib/modules/customFields.inc:150 msgid "" "LAM supports CRYPT, CRYPT-SHA512, SHA, SSHA, MD5 and SMD5 to generate the " @@ -7559,10 +7562,10 @@ msgstr "LAM tests" msgid "LAM user password" msgstr "LAM user password" -#: ../lib/upload.inc:156 +#: ../lib/upload.inc:155 #, php-format -msgid "LAM was unable to create account %s! An LDAP error occured." -msgstr "LAM was unable to create account %s! An LDAP error occured." +msgid "LAM was unable to create account %s! An LDAP error occurred." +msgstr "LAM was unable to create account %s! An LDAP error occurred." #: ../lib/modules/sambaGroupMapping.inc:574 msgid "LAM was unable to find a Samba 3 domain with this name!" @@ -7572,15 +7575,15 @@ msgstr "LAM was unable to find a Samba 3 domain with this name!" msgid "LAM was unable to find a domain with this name!" msgstr "LAM was unable to find a domain with this name!" -#: ../lib/modules/windowsLDSUser.inc:1643 ../lib/modules/posixAccount.inc:113 +#: ../lib/modules/windowsLDSUser.inc:1661 ../lib/modules/posixAccount.inc:113 #: ../lib/modules/windowsUser.inc:2654 msgid "LAM was unable to find a group with this name!" msgstr "LAM was unable to find a group with this name!" -#: ../lib/modules/windowsLDSUser.inc:1772 ../lib/modules/posixAccount.inc:2867 -#: ../lib/modules/posixAccount.inc:2949 ../lib/modules/windowsUser.inc:2799 +#: ../lib/modules/windowsLDSUser.inc:1790 ../lib/modules/posixAccount.inc:2921 +#: ../lib/modules/posixAccount.inc:3003 ../lib/modules/windowsUser.inc:2799 #: ../lib/modules/nisNetGroupUser.inc:580 -#: ../lib/modules/groupOfNamesUser.inc:449 +#: ../lib/modules/groupOfNamesUser.inc:450 #, php-format msgid "LAM was unable to modify group memberships for group: %s" msgstr "LAM was unable to modify group memberships for group: %s" @@ -7590,7 +7593,7 @@ msgstr "LAM was unable to modify group memberships for group: %s" msgid "LAM was unable to modify memberships for role: %s" msgstr "LAM was unable to modify memberships for role: %s" -#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixAccount.inc:386 +#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:386 msgid "" "LAM will automatically suggest UID/GID numbers. You can either use a fixed " "range of numbers or an LDAP entry with object class \"sambaUnixIdPool\" or " @@ -7600,7 +7603,7 @@ msgstr "" "range of numbers or an LDAP entry with object class \"sambaUnixIdPool\" or " "\"msSFU30DomainInfo\"." -#: ../help/help.inc:277 +#: ../help/help.inc:287 msgid "LAM will search for accounts in this part of the LDAP tree." msgstr "LAM will search for accounts in this part of the LDAP tree." @@ -7616,7 +7619,7 @@ msgstr "" "will be replaced by the first character of first name. Only attributes of " "tab Personal may be used." -#: ../help/help.inc:279 +#: ../help/help.inc:289 msgid "" "LAM will use this LDAP DN and password to search for accounts. It is " "sufficient to specify an account with read rights. If nothing is inserted " @@ -7684,13 +7687,13 @@ msgstr "LDAP entries that are member of this list." msgid "LDAP entries that moderate this list (e.g. approve mails)." msgstr "LDAP entries that moderate this list (e.g. approve mails)." -#: ../templates/login.php:593 ../lib/account.inc:1507 +#: ../templates/login.php:603 ../lib/account.inc:1490 msgid "LDAP error, server says:" msgstr "LDAP error, server says:" #: ../templates/tools/multiEdit.php:139 ../templates/config/confmain.php:448 #: ../lib/modules/customFields.inc:197 ../lib/modules/customFields.inc:4095 -#: ../help/help.inc:361 +#: ../help/help.inc:371 msgid "LDAP filter" msgstr "LDAP filter" @@ -7730,11 +7733,11 @@ msgstr "LDAP said" msgid "LDAP search" msgstr "LDAP search" -#: ../templates/selfService/adminMain.php:434 ../help/help.inc:280 +#: ../templates/selfService/adminMain.php:434 ../help/help.inc:290 msgid "LDAP search attribute" msgstr "LDAP search attribute" -#: ../lib/account.inc:1011 +#: ../lib/account.inc:1015 msgid "LDAP search failed! Please check your preferences." msgstr "LDAP search failed! Please check your preferences." @@ -7750,7 +7753,7 @@ msgstr "LDAP search select list" msgid "LDAP server" msgstr "LDAP server" -#: ../lib/account.inc:1002 +#: ../lib/account.inc:1006 msgid "LDAP sizelimit exceeded, not all entries are shown." msgstr "LDAP sizelimit exceeded, not all entries are shown." @@ -7759,11 +7762,11 @@ msgstr "LDAP sizelimit exceeded, not all entries are shown." #: ../templates/selfService/adminMain.php:425 #: ../templates/profedit/profilepage.php:205 #: ../lib/modules/customFields.inc:193 ../lib/modules/customFields.inc:4092 -#: ../help/help.inc:75 ../help/help.inc:276 ../help/help.inc:359 +#: ../help/help.inc:75 ../help/help.inc:286 ../help/help.inc:369 msgid "LDAP suffix" msgstr "LDAP suffix" -#: ../lib/upload.inc:217 +#: ../lib/upload.inc:216 msgid "LDAP upload in progress. Please wait." msgstr "LDAP upload in progress. Please wait." @@ -7771,7 +7774,7 @@ msgstr "LDAP upload in progress. Please wait." msgid "LDAP user" msgstr "LDAP user" -#: ../help/help.inc:278 +#: ../help/help.inc:288 msgid "LDAP user and password" msgstr "LDAP user and password" @@ -7787,7 +7790,7 @@ msgstr "LDAP views based on nsview" msgid "LDIF Export" msgstr "LDIF Export" -#: ../templates/tools/importexport.php:170 ../help/help.inc:367 +#: ../templates/tools/importexport.php:170 ../help/help.inc:377 msgid "LDIF data" msgstr "LDIF data" @@ -7808,7 +7811,7 @@ msgstr "LDIF import only supports version 1" #: ../templates/selfService/adminMain.php:529 #: ../lib/modules/customFields.inc:93 ../lib/modules/customFields.inc:653 #: ../lib/modules/customFields.inc:1211 ../lib/modules/customFields.inc:1964 -#: ../lib/modules/customFields.inc:3640 ../help/help.inc:310 +#: ../lib/modules/customFields.inc:3640 ../help/help.inc:320 msgid "Label" msgstr "Label" @@ -7857,11 +7860,11 @@ msgstr "Lamdaemon: check NSS LDAP" msgid "Lamdaemon: read quotas" msgstr "Lamdaemon: read quotas" -#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:308 +#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:309 msgid "Language" msgstr "Language" -#: ../templates/config/confmain.php:665 +#: ../templates/config/confmain.php:667 msgid "Language is not defined!" msgstr "Language is not defined!" @@ -7871,9 +7874,9 @@ msgstr "Language settings" #: ../lib/modules/mitKerberos.inc:143 ../lib/modules/mitKerberos.inc:255 #: ../lib/modules/mitKerberos.inc:399 ../lib/modules/mitKerberos.inc:830 -#: ../lib/modules/windowsLDSUser.inc:219 ../lib/modules/windowsLDSUser.inc:676 -#: ../lib/modules/windowsLDSUser.inc:949 ../lib/modules/windowsLDSUser.inc:1851 -#: ../lib/modules/windowsLDSUser.inc:2152 ../lib/modules/windowsHost.inc:95 +#: ../lib/modules/windowsLDSUser.inc:219 ../lib/modules/windowsLDSUser.inc:680 +#: ../lib/modules/windowsLDSUser.inc:967 ../lib/modules/windowsLDSUser.inc:1871 +#: ../lib/modules/windowsLDSUser.inc:2192 ../lib/modules/windowsHost.inc:95 #: ../lib/modules/windowsHost.inc:169 ../lib/modules/windowsUser.inc:284 #: ../lib/modules/windowsUser.inc:925 ../lib/modules/windowsUser.inc:1284 #: ../lib/modules/windowsUser.inc:2930 ../lib/modules/windowsUser.inc:3705 @@ -7882,21 +7885,21 @@ msgstr "Last login" #: ../lib/types/user.inc:114 ../lib/modules/selfRegistration.inc:83 #: ../lib/modules/selfRegistration.inc:206 -#: ../lib/modules/windowsLDSUser.inc:169 ../lib/modules/windowsLDSUser.inc:351 -#: ../lib/modules/windowsLDSUser.inc:660 ../lib/modules/windowsLDSUser.inc:754 -#: ../lib/modules/windowsLDSUser.inc:862 ../lib/modules/windowsLDSUser.inc:1815 +#: ../lib/modules/windowsLDSUser.inc:169 ../lib/modules/windowsLDSUser.inc:355 +#: ../lib/modules/windowsLDSUser.inc:664 ../lib/modules/windowsLDSUser.inc:761 +#: ../lib/modules/windowsLDSUser.inc:869 ../lib/modules/windowsLDSUser.inc:1833 #: ../lib/modules/windowsUser.inc:187 ../lib/modules/windowsUser.inc:440 #: ../lib/modules/windowsUser.inc:885 ../lib/modules/windowsUser.inc:1032 #: ../lib/modules/windowsUser.inc:1163 ../lib/modules/windowsUser.inc:2864 #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:242 ../lib/modules/inetOrgPerson.inc:477 #: ../lib/modules/inetOrgPerson.inc:582 ../lib/modules/inetOrgPerson.inc:1211 -#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1968 -#: ../lib/modules/inetOrgPerson.inc:2594 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1966 +#: ../lib/modules/inetOrgPerson.inc:2592 ../lib/modules/inetOrgPerson.inc:4119 msgid "Last name" msgstr "Last name" -#: ../lib/modules/windowsLDSUser.inc:754 ../lib/modules/windowsLDSUser.inc:755 +#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:762 #: ../lib/modules/windowsUser.inc:1032 ../lib/modules/windowsUser.inc:1033 #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:71 msgid "Last name contains invalid characters or is empty!" @@ -7909,8 +7912,10 @@ msgstr "Last name of user. Only letters, - and spaces are allowed." #: ../lib/modules/mitKerberos.inc:139 ../lib/modules/mitKerberos.inc:254 #: ../lib/modules/mitKerberos.inc:389 ../lib/modules/mitKerberos.inc:826 -#: ../lib/modules/windowsHost.inc:91 ../lib/modules/windowsHost.inc:160 -#: ../lib/modules/sambaSamAccount.inc:398 +#: ../lib/modules/windowsLDSUser.inc:223 ../lib/modules/windowsLDSUser.inc:683 +#: ../lib/modules/windowsLDSUser.inc:958 ../lib/modules/windowsLDSUser.inc:1869 +#: ../lib/modules/windowsLDSUser.inc:2191 ../lib/modules/windowsHost.inc:91 +#: ../lib/modules/windowsHost.inc:160 ../lib/modules/sambaSamAccount.inc:398 #: ../lib/modules/sambaSamAccount.inc:1147 #: ../lib/modules/sambaSamAccount.inc:1954 #: ../lib/modules/sambaSamAccount.inc:2370 ../lib/modules/ppolicyUser.inc:91 @@ -7945,12 +7950,14 @@ msgstr "Last use" #: ../lib/modules/dhcp_settings.inc:151 ../lib/modules/dhcp_settings.inc:216 #: ../lib/modules/dhcp_settings.inc:232 ../lib/modules/dhcp_settings.inc:265 -#: ../lib/modules/dhcp_settings.inc:590 ../lib/modules/dhcp_settings.inc:709 +#: ../lib/modules/dhcp_settings.inc:582 ../lib/modules/dhcp_settings.inc:701 msgid "Lease time" msgstr "Lease time" -#: ../templates/config/mainmanage.php:303 -#: ../templates/config/mainmanage.php:304 ../help/help.inc:234 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:319 +#: ../templates/config/mainmanage.php:320 ../help/help.inc:238 msgid "Licence" msgstr "License" @@ -8029,7 +8036,7 @@ msgstr "" "List of Samba workstations the user is allowed to login. Empty means every " "workstation." -#: ../templates/config/confmain.php:659 +#: ../templates/config/confmain.php:661 msgid "List of admin users is empty or invalid!" msgstr "List of admin users is empty or invalid!" @@ -8062,7 +8069,7 @@ msgstr "" msgid "Listeners" msgstr "Listeners" -#: ../lib/modules.inc:1333 ../help/help.inc:254 +#: ../lib/modules.inc:1333 ../help/help.inc:264 msgid "Load profile" msgstr "Load profile" @@ -8121,8 +8128,8 @@ msgid "Local members" msgstr "Local members" #: ../lib/types/host.inc:101 ../lib/modules/windowsLDSUser.inc:141 -#: ../lib/modules/windowsLDSUser.inc:399 ../lib/modules/windowsLDSUser.inc:654 -#: ../lib/modules/windowsLDSUser.inc:872 ../lib/modules/windowsLDSUser.inc:1809 +#: ../lib/modules/windowsLDSUser.inc:403 ../lib/modules/windowsLDSUser.inc:658 +#: ../lib/modules/windowsLDSUser.inc:879 ../lib/modules/windowsLDSUser.inc:1827 #: ../lib/modules/ipHost.inc:73 ../lib/modules/ipHost.inc:97 #: ../lib/modules/ipHost.inc:113 ../lib/modules/ipHost.inc:140 #: ../lib/modules/ipHost.inc:299 ../lib/modules/windowsHost.inc:83 @@ -8138,9 +8145,9 @@ msgstr "Local members" #: ../lib/modules/inetOrgPerson.inc:445 ../lib/modules/inetOrgPerson.inc:492 #: ../lib/modules/inetOrgPerson.inc:717 ../lib/modules/inetOrgPerson.inc:721 #: ../lib/modules/inetOrgPerson.inc:1286 ../lib/modules/inetOrgPerson.inc:1289 -#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2036 -#: ../lib/modules/inetOrgPerson.inc:2776 ../lib/modules/inetOrgPerson.inc:4078 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2034 +#: ../lib/modules/inetOrgPerson.inc:2774 ../lib/modules/inetOrgPerson.inc:4075 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "Location" msgstr "Location" @@ -8152,18 +8159,18 @@ msgstr "Location where new alias is stored." msgid "Lock" msgstr "Lock" -#: ../templates/lists/changePassword.php:440 -#: ../templates/lists/changePassword.php:458 -#: ../templates/lists/changePassword.php:460 ../lib/modules/ppolicyUser.inc:154 +#: ../templates/lists/changePassword.php:444 +#: ../templates/lists/changePassword.php:462 +#: ../templates/lists/changePassword.php:464 ../lib/modules/ppolicyUser.inc:154 msgid "Lock account" msgstr "Lock account" -#: ../templates/lists/changePassword.php:266 +#: ../templates/lists/changePassword.php:270 msgid "Lock account?" msgstr "Lock account?" -#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1687 -#: ../lib/modules/posixAccount.inc:2415 ../lib/modules/inetOrgPerson.inc:1579 +#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1742 +#: ../lib/modules/posixAccount.inc:2469 ../lib/modules/inetOrgPerson.inc:1579 msgid "Lock password" msgstr "Lock password" @@ -8172,7 +8179,7 @@ msgstr "Lock password" msgid "Locked" msgstr "Locked" -#: ../templates/lists/changePassword.php:424 ../lib/types/user.inc:330 +#: ../templates/lists/changePassword.php:428 ../lib/types/user.inc:330 #: ../lib/types/user.inc:520 ../lib/types/user.inc:1117 #: ../lib/modules/locking389ds.inc:94 msgid "Locked till" @@ -8211,11 +8218,11 @@ msgstr "Lockout users after bad logon attempts" msgid "Lockout users after bad logon attempts must be between 0 and 999." msgstr "Lockout users after bad logon attempts must be between 0 and 999." -#: ../templates/config/mainmanage.php:431 ../help/help.inc:158 +#: ../templates/config/mainmanage.php:471 ../help/help.inc:158 msgid "Log destination" msgstr "Log destination" -#: ../templates/config/mainmanage.php:407 ../help/help.inc:156 +#: ../templates/config/mainmanage.php:447 ../help/help.inc:156 msgid "Log level" msgstr "Log level" @@ -8223,14 +8230,14 @@ msgstr "Log level" msgid "Log output" msgstr "Log output" -#: ../templates/config/mainmanage.php:405 +#: ../templates/config/mainmanage.php:445 msgid "Logging" msgstr "Logging" #: ../templates/login.php:404 ../templates/config/conflogin.php:71 #: ../templates/config/mainlogin.php:68 -#: ../templates/selfService/selfServiceLogin.php:224 -#: ../templates/selfService/selfServiceLogin.php:327 +#: ../templates/selfService/selfServiceLogin.php:225 +#: ../templates/selfService/selfServiceLogin.php:328 #: ../templates/selfService/adminLogin.php:57 #: ../templates/selfService/selfService2Factor.php:132 #: ../templates/3rdParty/pla/lib/HTMLTree.php:497 @@ -8238,15 +8245,15 @@ msgstr "Logging" msgid "Login" msgstr "Login" -#: ../templates/selfService/adminMain.php:567 ../help/help.inc:282 +#: ../templates/selfService/adminMain.php:567 ../help/help.inc:292 msgid "Login attribute label" msgstr "Login attribute label" -#: ../templates/selfService/adminMain.php:574 ../help/help.inc:284 +#: ../templates/selfService/adminMain.php:574 ../help/help.inc:294 msgid "Login caption" msgstr "Login caption" -#: ../templates/selfService/adminMain.php:579 ../help/help.inc:328 +#: ../templates/selfService/adminMain.php:579 ../help/help.inc:338 msgid "Login footer" msgstr "Login footer" @@ -8256,14 +8263,14 @@ msgstr "Login method" #: ../lib/types/user.inc:106 ../lib/modules/posixAccount.inc:176 #: ../lib/modules/posixAccount.inc:251 ../lib/modules/posixAccount.inc:306 -#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1678 -#: ../lib/modules/posixAccount.inc:2001 ../lib/modules/posixAccount.inc:2119 -#: ../lib/modules/posixAccount.inc:3209 +#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1733 +#: ../lib/modules/posixAccount.inc:2056 ../lib/modules/posixAccount.inc:2173 +#: ../lib/modules/posixAccount.inc:3263 msgid "Login shell" msgstr "Login shell" #: ../lib/modules/posixAccount.inc:186 ../lib/modules/posixAccount.inc:381 -#: ../lib/modules/posixAccount.inc:2302 +#: ../lib/modules/posixAccount.inc:2356 msgid "Login shells" msgstr "Login shells" @@ -8332,7 +8339,7 @@ msgstr "M-Node (0x04)" #: ../lib/types/dhcp.inc:99 ../lib/modules/ieee802device.inc:57 #: ../lib/modules/ieee802device.inc:67 ../lib/modules/ieee802device.inc:78 #: ../lib/modules/ieee802device.inc:105 ../lib/modules/fixed_ip.inc:107 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:762 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:760 msgid "MAC address" msgstr "MAC address" @@ -8360,14 +8367,14 @@ msgstr "MX record" msgid "MX records" msgstr "MX records" -#: ../lib/modules/posixGroup.inc:488 ../lib/modules/posixGroup.inc:551 -#: ../lib/modules/posixGroup.inc:580 ../lib/modules/posixGroup.inc:717 -#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2154 -#: ../lib/modules/posixAccount.inc:2211 ../lib/modules/posixAccount.inc:2282 +#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixGroup.inc:552 +#: ../lib/modules/posixGroup.inc:581 ../lib/modules/posixGroup.inc:718 +#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2208 +#: ../lib/modules/posixAccount.inc:2265 ../lib/modules/posixAccount.inc:2336 msgid "Magic number" msgstr "Magic number" -#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:387 +#: ../lib/modules/posixGroup.inc:461 ../lib/modules/posixAccount.inc:387 msgid "" "Magic number will set a fixed value that must match your server " "configuration." @@ -8384,27 +8391,31 @@ msgstr "Mail aliases" msgid "Mail domains" msgstr "Mail domains" +#: ../templates/config/mainmanage.php:497 +msgid "Mail options" +msgstr "Mail options" + #: ../lib/modules/inetLocalMailRecipient.inc:68 msgid "Mail routing" msgstr "Mail routing" #: ../lib/modules/selfRegistration.inc:756 -#: ../lib/modules/selfRegistration.inc:776 -#: ../lib/modules/passwordSelfReset.inc:1818 -#: ../lib/modules/passwordSelfReset.inc:1833 -#: ../lib/modules/passwordSelfReset.inc:1866 +#: ../lib/modules/selfRegistration.inc:775 +#: ../lib/modules/passwordSelfReset.inc:1817 +#: ../lib/modules/passwordSelfReset.inc:1832 +#: ../lib/modules/passwordSelfReset.inc:1864 msgid "Mail sending failed." msgstr "Mail sending failed." -#: ../lib/modules/bindDLZ.inc:148 ../lib/modules/bindDLZ.inc:152 -#: ../lib/modules/bindDLZ.inc:326 ../lib/modules/bindDLZ.inc:590 -#: ../lib/modules/bindDLZ.inc:1155 ../lib/modules/bindDLZ.inc:1849 -#: ../lib/modules/inetLocalMailRecipient.inc:90 +#: ../templates/config/mainmanage.php:498 ../lib/modules/bindDLZ.inc:148 +#: ../lib/modules/bindDLZ.inc:152 ../lib/modules/bindDLZ.inc:326 +#: ../lib/modules/bindDLZ.inc:590 ../lib/modules/bindDLZ.inc:1155 +#: ../lib/modules/bindDLZ.inc:1849 ../lib/modules/inetLocalMailRecipient.inc:90 #: ../lib/modules/inetLocalMailRecipient.inc:98 #: ../lib/modules/inetLocalMailRecipient.inc:127 #: ../lib/modules/inetLocalMailRecipient.inc:136 #: ../lib/modules/inetLocalMailRecipient.inc:185 -#: ../lib/modules/inetLocalMailRecipient.inc:306 +#: ../lib/modules/inetLocalMailRecipient.inc:306 ../help/help.inc:182 msgid "Mail server" msgstr "Mail server" @@ -8420,7 +8431,7 @@ msgstr "Mail servers (\"MX\" records)" msgid "Mail source" msgstr "Mail source" -#: ../lib/account.inc:1287 +#: ../lib/account.inc:1289 #, php-format msgid "Mail successfully sent to %s." msgstr "Mail successfully sent to %s." @@ -8487,11 +8498,11 @@ msgstr "Mails to this name are forwarded to the recipients." msgid "Main" msgstr "Main" -#: ../templates/selfService/adminMain.php:584 ../help/help.inc:286 +#: ../templates/selfService/adminMain.php:584 ../help/help.inc:296 msgid "Main page caption" msgstr "Main page caption" -#: ../templates/selfService/adminMain.php:589 ../help/help.inc:330 +#: ../templates/selfService/adminMain.php:589 ../help/help.inc:340 msgid "Main page footer" msgstr "Main page footer" @@ -8544,10 +8555,10 @@ msgstr "Managed by" msgid "Managed suffixes" msgstr "Managed suffixes" -#: ../lib/types/user.inc:108 ../lib/modules/windowsLDSUser.inc:279 -#: ../lib/modules/windowsLDSUser.inc:581 ../lib/modules/windowsLDSUser.inc:706 -#: ../lib/modules/windowsLDSUser.inc:934 ../lib/modules/windowsLDSUser.inc:1837 -#: ../lib/modules/windowsLDSUser.inc:2164 ../lib/modules/ipHost.inc:77 +#: ../lib/types/user.inc:108 ../lib/modules/windowsLDSUser.inc:283 +#: ../lib/modules/windowsLDSUser.inc:585 ../lib/modules/windowsLDSUser.inc:713 +#: ../lib/modules/windowsLDSUser.inc:941 ../lib/modules/windowsLDSUser.inc:1855 +#: ../lib/modules/windowsLDSUser.inc:2204 ../lib/modules/ipHost.inc:77 #: ../lib/modules/ipHost.inc:103 ../lib/modules/ipHost.inc:114 #: ../lib/modules/ipHost.inc:164 ../lib/modules/ipHost.inc:300 #: ../lib/modules/windowsUser.inc:356 ../lib/modules/windowsUser.inc:764 @@ -8555,8 +8566,8 @@ msgstr "Managed suffixes" #: ../lib/modules/windowsUser.inc:2888 ../lib/modules/windowsUser.inc:3718 #: ../lib/modules/inetOrgPerson.inc:291 ../lib/modules/inetOrgPerson.inc:546 #: ../lib/modules/inetOrgPerson.inc:590 ../lib/modules/inetOrgPerson.inc:594 -#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1969 -#: ../lib/modules/inetOrgPerson.inc:4095 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1967 +#: ../lib/modules/inetOrgPerson.inc:4092 ../lib/modules/inetOrgPerson.inc:4130 msgid "Manager" msgstr "Manager" @@ -8636,22 +8647,22 @@ msgstr "Max. file descriptors" msgid "Maximum" msgstr "Maximum" -#: ../lib/modules/posixGroup.inc:571 ../lib/modules/posixGroup.inc:706 -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:572 ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number" msgstr "Maximum GID number" -#: ../lib/modules/posixGroup.inc:706 +#: ../lib/modules/posixGroup.inc:707 msgid "Maximum GID number is invalid or empty!" msgstr "Maximum GID number is invalid or empty!" -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number must be greater than minimum GID number!" msgstr "Maximum GID number must be greater than minimum GID number!" #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:86 #: ../lib/modules/posixAccount.inc:87 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2208 ../lib/modules/posixAccount.inc:2279 +#: ../lib/modules/posixAccount.inc:2262 ../lib/modules/posixAccount.inc:2333 msgid "Maximum UID number" msgstr "Maximum UID number" @@ -8675,9 +8686,9 @@ msgstr "Maximum failure count" msgid "Maximum file size" msgstr "Maximum file size" -#: ../lib/modules/windowsLDSUser.inc:2169 ../lib/modules/windowsUser.inc:3742 -#: ../lib/modules/inetOrgPerson.inc:2526 ../lib/modules/inetOrgPerson.inc:2550 -#: ../lib/modules/inetOrgPerson.inc:4149 +#: ../lib/modules/windowsLDSUser.inc:2209 ../lib/modules/windowsUser.inc:3742 +#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2548 +#: ../lib/modules/inetOrgPerson.inc:4146 msgid "Maximum file size (kB)" msgstr "Maximum file size (kB)" @@ -8685,9 +8696,9 @@ msgstr "Maximum file size (kB)" msgid "Maximum file size must be a number. Please enter 0 for no limit." msgstr "Maximum file size must be a number. Please enter 0 for no limit." -#: ../lib/modules/windowsLDSUser.inc:2168 ../lib/modules/windowsUser.inc:3741 -#: ../lib/modules/inetOrgPerson.inc:2525 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:4148 +#: ../lib/modules/windowsLDSUser.inc:2208 ../lib/modules/windowsUser.inc:3741 +#: ../lib/modules/inetOrgPerson.inc:2523 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:4145 msgid "Maximum height (px)" msgstr "Maximum height (px)" @@ -8700,7 +8711,7 @@ msgstr "Maximum job size" #: ../lib/modules/dhcp_settings.inc:155 ../lib/modules/dhcp_settings.inc:217 #: ../lib/modules/dhcp_settings.inc:233 ../lib/modules/dhcp_settings.inc:271 -#: ../lib/modules/dhcp_settings.inc:594 ../lib/modules/dhcp_settings.inc:710 +#: ../lib/modules/dhcp_settings.inc:586 ../lib/modules/dhcp_settings.inc:702 msgid "Maximum lease time" msgstr "Maximum lease time" @@ -8708,7 +8719,7 @@ msgstr "Maximum lease time" msgid "Maximum length" msgstr "Maximum length" -#: ../lib/lists.inc:1199 ../help/help.inc:101 +#: ../lib/lists.inc:1198 ../help/help.inc:101 msgid "Maximum list entries" msgstr "Maximum list entries" @@ -8732,9 +8743,9 @@ msgstr "" msgid "Maximum password age" msgstr "Maximum password age" -#: ../lib/modules/windowsLDSUser.inc:2167 ../lib/modules/windowsUser.inc:3740 -#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2544 -#: ../lib/modules/inetOrgPerson.inc:4147 +#: ../lib/modules/windowsLDSUser.inc:2207 ../lib/modules/windowsUser.inc:3740 +#: ../lib/modules/inetOrgPerson.inc:2522 ../lib/modules/inetOrgPerson.inc:2542 +#: ../lib/modules/inetOrgPerson.inc:4144 msgid "Maximum width (px)" msgstr "Maximum width (px)" @@ -8840,7 +8851,7 @@ msgstr "Message store" msgid "Messages" msgstr "Messages" -#: ../lib/modules/windowsLDSUser.inc:353 ../lib/modules/windowsUser.inc:442 +#: ../lib/modules/windowsLDSUser.inc:357 ../lib/modules/windowsUser.inc:442 #: ../lib/modules/inetOrgPerson.inc:244 msgid "Miller" msgstr "Miller" @@ -8855,16 +8866,16 @@ msgstr "Minimal password length" msgid "Minimum" msgstr "Minimum" -#: ../lib/modules/posixGroup.inc:568 ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:569 ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number" msgstr "Minimum GID number" -#: ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number is invalid or empty!" msgstr "Minimum GID number is invalid or empty!" #: ../lib/modules/posixAccount.inc:83 ../lib/modules/posixAccount.inc:85 -#: ../lib/modules/posixAccount.inc:2205 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2259 ../lib/modules/posixAccount.inc:2330 msgid "Minimum UID number" msgstr "Minimum UID number" @@ -8877,15 +8888,15 @@ msgstr "Minimum UID number is invalid!" msgid "Minimum answer length" msgstr "Minimum answer length" -#: ../templates/config/mainmanage.php:389 +#: ../templates/config/mainmanage.php:429 msgid "Minimum character classes" msgstr "Minimum character classes" -#: ../templates/config/mainmanage.php:385 +#: ../templates/config/mainmanage.php:425 msgid "Minimum lowercase characters" msgstr "Minimum lowercase characters" -#: ../templates/config/mainmanage.php:387 +#: ../templates/config/mainmanage.php:427 msgid "Minimum numeric characters" msgstr "Minimum numeric characters" @@ -8901,14 +8912,14 @@ msgstr "Minimum numeric characters" msgid "Minimum password age" msgstr "Minimum password age" -#: ../templates/config/mainmanage.php:383 ../lib/types/ppolicyType.inc:90 +#: ../templates/config/mainmanage.php:423 ../lib/types/ppolicyType.inc:90 #: ../lib/modules/ppolicy.inc:120 ../lib/modules/ppolicy.inc:151 #: ../lib/modules/ppolicy.inc:180 ../lib/modules/ppolicy.inc:246 #: ../lib/modules/ppolicy.inc:484 msgid "Minimum password length" msgstr "Minimum password length" -#: ../templates/config/mainmanage.php:388 +#: ../templates/config/mainmanage.php:428 msgid "Minimum symbolic characters" msgstr "Minimum symbolic characters" @@ -8918,7 +8929,7 @@ msgstr "Minimum symbolic characters" msgid "Minimum time" msgstr "Minimum time" -#: ../templates/config/mainmanage.php:386 +#: ../templates/config/mainmanage.php:426 msgid "Minimum uppercase characters" msgstr "Minimum uppercase characters" @@ -8930,10 +8941,10 @@ msgstr "Missing attributes for" msgid "Missing modify command add, delete or replace" msgstr "Missing modify command add, delete or replace" -#: ../lib/modules/windowsLDSUser.inc:299 ../lib/modules/windowsLDSUser.inc:486 -#: ../lib/modules/windowsLDSUser.inc:718 ../lib/modules/windowsLDSUser.inc:766 -#: ../lib/modules/windowsLDSUser.inc:884 ../lib/modules/windowsLDSUser.inc:1823 -#: ../lib/modules/windowsLDSUser.inc:2148 ../lib/modules/windowsUser.inc:376 +#: ../lib/modules/windowsLDSUser.inc:303 ../lib/modules/windowsLDSUser.inc:490 +#: ../lib/modules/windowsLDSUser.inc:725 ../lib/modules/windowsLDSUser.inc:773 +#: ../lib/modules/windowsLDSUser.inc:891 ../lib/modules/windowsLDSUser.inc:1841 +#: ../lib/modules/windowsLDSUser.inc:2187 ../lib/modules/windowsUser.inc:376 #: ../lib/modules/windowsUser.inc:643 ../lib/modules/windowsUser.inc:967 #: ../lib/modules/windowsUser.inc:1044 ../lib/modules/windowsUser.inc:1186 #: ../lib/modules/windowsUser.inc:2872 ../lib/modules/windowsUser.inc:3697 @@ -8944,12 +8955,12 @@ msgstr "Mobile" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:363 #: ../lib/modules/inetOrgPerson.inc:516 ../lib/modules/inetOrgPerson.inc:638 #: ../lib/modules/inetOrgPerson.inc:642 ../lib/modules/inetOrgPerson.inc:1417 -#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1979 -#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1977 +#: ../lib/modules/inetOrgPerson.inc:4083 ../lib/modules/inetOrgPerson.inc:4125 msgid "Mobile number" msgstr "Mobile number" -#: ../lib/modules/inetOrgPerson.inc:2659 +#: ../lib/modules/inetOrgPerson.inc:2657 msgid "Mobile telephone number" msgstr "Mobile telephone number" @@ -9033,8 +9044,8 @@ msgstr "Modules" msgid "Monday" msgstr "Monday" -#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:711 ../lib/modules/systemQuotas.inc:99 +#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:774 ../lib/modules/systemQuotas.inc:99 #: ../lib/modules/systemQuotas.inc:124 ../lib/modules/systemQuotas.inc:370 msgid "Mountpoint" msgstr "Mountpoint" @@ -9047,7 +9058,7 @@ msgstr "Mountpoint contains invalid characters." msgid "Mountpoint of device with enabled quotas." msgstr "Mountpoint of device with enabled quotas." -#: ../lib/passwordExpirationJob.inc:486 +#: ../lib/passwordExpirationJob.inc:484 msgid "Move" msgstr "Move" @@ -9087,10 +9098,10 @@ msgstr "Multiple values are separated by comma." #: ../lib/modules/kolabGroup.inc:87 ../lib/modules/kolabGroup.inc:96 #: ../lib/modules/kolabGroup.inc:105 ../lib/modules/windowsLDSUser.inc:154 #: ../lib/modules/windowsLDSUser.inc:194 ../lib/modules/windowsLDSUser.inc:205 -#: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:260 -#: ../lib/modules/windowsLDSUser.inc:268 ../lib/modules/windowsLDSUser.inc:276 -#: ../lib/modules/windowsLDSUser.inc:296 ../lib/modules/windowsLDSUser.inc:308 -#: ../lib/modules/windowsLDSUser.inc:316 ../lib/modules/nisMailAliasUser.inc:81 +#: ../lib/modules/windowsLDSUser.inc:252 ../lib/modules/windowsLDSUser.inc:264 +#: ../lib/modules/windowsLDSUser.inc:272 ../lib/modules/windowsLDSUser.inc:280 +#: ../lib/modules/windowsLDSUser.inc:300 ../lib/modules/windowsLDSUser.inc:312 +#: ../lib/modules/windowsLDSUser.inc:320 ../lib/modules/nisMailAliasUser.inc:81 #: ../lib/modules/nisMailAliasUser.inc:89 ../lib/modules/puppetClient.inc:92 #: ../lib/modules/puppetClient.inc:104 ../lib/modules/puppetClient.inc:112 #: ../lib/modules/device.inc:77 ../lib/modules/dhcp_settings.inc:209 @@ -9144,7 +9155,7 @@ msgstr "Music on hold" msgid "Music to play on hold." msgstr "Music to play on hold." -#: ../lib/modules/windowsLDSUser.inc:401 ../lib/modules/ipHost.inc:99 +#: ../lib/modules/windowsLDSUser.inc:405 ../lib/modules/ipHost.inc:99 #: ../lib/modules/windowsHost.inc:121 ../lib/modules/device.inc:105 #: ../lib/modules/windowsUser.inc:490 ../lib/modules/inetOrgPerson.inc:325 #: ../lib/modules/inetOrgPerson.inc:333 ../lib/modules/inetOrgPerson.inc:447 @@ -9155,7 +9166,7 @@ msgstr "MyCity" msgid "MySQL" msgstr "MySQL" -#: ../lib/modules/windowsLDSUser.inc:383 ../lib/modules/windowsUser.inc:472 +#: ../lib/modules/windowsLDSUser.inc:387 ../lib/modules/windowsUser.inc:472 #: ../lib/modules/inetOrgPerson.inc:309 msgid "Mystreetname 42" msgstr "Mystreetname 42" @@ -9260,8 +9271,8 @@ msgstr "NS record" #: ../lib/modules/dynamicList.inc:122 ../lib/modules/dynamicList.inc:207 #: ../lib/modules/device.inc:64 ../lib/modules/device.inc:156 #: ../lib/modules/device.inc:334 ../lib/modules/device.inc:414 -#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:120 -#: ../lib/modules/range.inc:141 ../lib/modules/range.inc:547 +#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:119 +#: ../lib/modules/range.inc:140 ../lib/modules/range.inc:546 #: ../lib/modules/nisObject.inc:61 ../lib/modules/nisObject.inc:81 #: ../lib/modules/nisObject.inc:111 ../lib/modules/nisObject.inc:137 #: ../lib/modules/nisObject.inc:205 ../lib/modules/ppolicy.inc:80 @@ -9314,7 +9325,7 @@ msgstr "Name servers" msgid "Name servers (\"NS\" records)" msgstr "Name servers (\"NS\" records)" -#: ../help/help.inc:243 +#: ../help/help.inc:253 msgid "" "Name under which the profile will be saved. If a profile with the same name " "exists, it will be overwritten." @@ -9327,7 +9338,7 @@ msgid "Named object" msgstr "Named object" #: ../lib/modules/dhcp_settings.inc:191 ../lib/modules/dhcp_settings.inc:223 -#: ../lib/modules/dhcp_settings.inc:648 ../lib/modules/dhcp_settings.inc:720 +#: ../lib/modules/dhcp_settings.inc:640 ../lib/modules/dhcp_settings.inc:712 #: ../lib/modules/freeRadius.inc:91 ../lib/modules/freeRadius.inc:133 #: ../lib/modules/freeRadius.inc:212 ../lib/modules/freeRadius.inc:256 #: ../lib/modules/freeRadius.inc:303 ../lib/modules/freeRadius.inc:355 @@ -9337,13 +9348,13 @@ msgstr "Net mask" #: ../lib/modules/dhcp_settings.inc:167 ../lib/modules/dhcp_settings.inc:220 #: ../lib/modules/dhcp_settings.inc:237 ../lib/modules/dhcp_settings.inc:295 -#: ../lib/modules/dhcp_settings.inc:610 ../lib/modules/dhcp_settings.inc:714 +#: ../lib/modules/dhcp_settings.inc:602 ../lib/modules/dhcp_settings.inc:706 msgid "Netbios name servers" msgstr "Netbios name servers" #: ../lib/modules/dhcp_settings.inc:171 ../lib/modules/dhcp_settings.inc:221 #: ../lib/modules/dhcp_settings.inc:239 ../lib/modules/dhcp_settings.inc:301 -#: ../lib/modules/dhcp_settings.inc:620 ../lib/modules/dhcp_settings.inc:715 +#: ../lib/modules/dhcp_settings.inc:612 ../lib/modules/dhcp_settings.inc:707 msgid "Netbios node type" msgstr "Netbios node type" @@ -9363,7 +9374,7 @@ msgstr "New NIS object" msgid "New OU created successfully." msgstr "New OU created successfully." -#: ../lib/modules/windowsLDSUser.inc:407 ../lib/modules/windowsUser.inc:496 +#: ../lib/modules/windowsLDSUser.inc:411 ../lib/modules/windowsUser.inc:496 #: ../lib/modules/inetOrgPerson.inc:455 msgid "New York" msgstr "New York" @@ -9439,7 +9450,7 @@ msgstr "New host" msgid "New import" msgstr "New import" -#: ../templates/config/mainmanage.php:491 +#: ../templates/config/mainmanage.php:531 msgid "New master password" msgstr "New master password" @@ -9451,12 +9462,12 @@ msgstr "New master password set successfully." msgid "New object" msgstr "New object" -#: ../templates/tools/ou_edit.php:205 ../help/help.inc:353 +#: ../templates/tools/ou_edit.php:205 ../help/help.inc:363 msgid "New organisational unit" msgstr "New organisational unit" #: ../templates/config/confmain.php:520 ../lib/modules/sambaSamAccount.inc:2351 -#: ../lib/modules/posixAccount.inc:3172 ../lib/modules/windowsUser.inc:3055 +#: ../lib/modules/posixAccount.inc:3226 ../lib/modules/windowsUser.inc:3055 #: ../lib/modules/passwordSelfReset.inc:1294 msgid "New password" msgstr "New password" @@ -9469,7 +9480,7 @@ msgstr "New password set successfully." msgid "New policy" msgstr "New policy" -#: ../lib/modules/range.inc:116 ../lib/modules/range.inc:621 +#: ../lib/modules/range.inc:115 ../lib/modules/range.inc:620 msgid "New pool" msgstr "New pool" @@ -9483,8 +9494,8 @@ msgstr "New printer" msgid "New profile name" msgstr "New profile name" -#: ../lib/modules/range.inc:112 ../lib/modules/range.inc:139 -#: ../lib/modules/range.inc:536 ../lib/modules/range.inc:610 +#: ../lib/modules/range.inc:111 ../lib/modules/range.inc:138 +#: ../lib/modules/range.inc:535 ../lib/modules/range.inc:609 msgid "New range" msgstr "New range" @@ -9521,7 +9532,7 @@ msgstr "New text area" msgid "New user" msgstr "New user" -#: ../lib/modules/inetOrgPerson.inc:1882 +#: ../lib/modules/inetOrgPerson.inc:1880 msgid "New user certificate" msgstr "New user certificate" @@ -9582,7 +9593,7 @@ msgstr "Next user RID is not a number!" #: ../lib/modules/eduPerson.inc:100 ../lib/modules/eduPerson.inc:187 #: ../lib/modules/eduPerson.inc:225 ../lib/modules/eduPerson.inc:338 -#: ../lib/modules/eduPerson.inc:549 +#: ../lib/modules/eduPerson.inc:543 msgid "Nick names" msgstr "Nick names" @@ -9626,7 +9637,7 @@ msgstr "No RDN attribute was selected." msgid "No Samba 3 domains found in LDAP! Please create one first." msgstr "No Samba 3 domains found in LDAP! Please create one first." -#: ../lib/modules/posixAccount.inc:495 ../lib/modules/posixAccount.inc:1541 +#: ../lib/modules/posixAccount.inc:494 ../lib/modules/posixAccount.inc:1587 msgid "No Unix groups found in LDAP! Please create one first." msgstr "No Unix groups found in LDAP! Please create one first." @@ -9683,7 +9694,7 @@ msgstr "No devices found." msgid "No domains found!" msgstr "No domains found!" -#: ../lib/modules/passwordSelfReset.inc:1818 +#: ../lib/modules/passwordSelfReset.inc:1817 msgid "No email address found." msgstr "No email address found." @@ -9696,12 +9707,12 @@ msgstr "No entries found!" msgid "No entry was selected to delete" msgstr "No entry was selected to delete" -#: ../lib/modules/ldapPublicKey.inc:578 ../lib/modules/inetOrgPerson.inc:3760 -#: ../lib/modules/inetOrgPerson.inc:3797 ../lib/modules/customFields.inc:4599 +#: ../lib/modules/ldapPublicKey.inc:576 ../lib/modules/inetOrgPerson.inc:3757 +#: ../lib/modules/inetOrgPerson.inc:3794 ../lib/modules/customFields.inc:4599 msgid "No file received." msgstr "No file received." -#: ../templates/config/mainmanage.php:204 ../lib/modules/windowsLDSUser.inc:785 +#: ../templates/config/mainmanage.php:215 ../lib/modules/windowsLDSUser.inc:792 #: ../lib/modules/windowsUser.inc:1078 ../lib/modules/ldapPublicKey.inc:129 #: ../lib/modules/inetOrgPerson.inc:104 ../lib/modules/customFields.inc:4535 msgid "No file selected." @@ -9711,7 +9722,7 @@ msgstr "No file selected." msgid "No forwarding" msgstr "No forwarding" -#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:94 +#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixAccount.inc:94 msgid "No free ID-Number!" msgstr "No free ID-Number!" @@ -9755,7 +9766,7 @@ msgstr "" msgid "No local delivery" msgstr "No local delivery" -#: ../templates/config/mainmanage.php:411 +#: ../templates/config/mainmanage.php:451 msgid "No logging" msgstr "No logging" @@ -9767,7 +9778,7 @@ msgstr "No logo" msgid "No new attributes available for this entry" msgstr "No new attributes available for this entry" -#: ../templates/config/conftypes.php:284 ../help/help.inc:190 +#: ../templates/config/conftypes.php:284 ../help/help.inc:194 msgid "No new entries" msgstr "No new entries" @@ -9862,11 +9873,7 @@ msgstr "No users found!" msgid "No views found!" msgstr "No views found!" -#: ../templates/config/mainmanage.php:460 -msgid "Non-standard (\\n)" -msgstr "Non-standard (\\n)" - -#: ../templates/config/confmain.php:465 +#: ../templates/config/mainmanage.php:325 ../templates/config/confmain.php:465 #: ../templates/selfService/adminMain.php:488 ../lib/modules/qmailUser.inc:58 msgid "None" msgstr "None" @@ -9905,17 +9912,17 @@ msgstr "Notes" msgid "Nothing to export" msgstr "Nothing to export" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Notice" msgstr "Notice" #: ../lib/passwordExpirationJob.inc:90 ../lib/passwordExpirationJob.inc:144 -#: ../help/help.inc:398 +#: ../help/help.inc:408 msgid "Notification period" msgstr "Notification period" #: ../lib/modules/qmailUser.inc:1161 ../lib/modules/windowsUser.inc:4088 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/freeRadius.inc:884 msgid "Notify users about account expiration" msgstr "Notify users about account expiration" @@ -9979,7 +9986,7 @@ msgstr "Number of questions" msgid "Number of rows in text area." msgstr "Number of rows in text area." -#: ../templates/config/mainmanage.php:392 ../help/help.inc:170 +#: ../templates/config/mainmanage.php:432 ../help/help.inc:168 msgid "Number of rules that must match" msgstr "Number of rules that must match" @@ -10017,7 +10024,7 @@ msgstr "OU is invalid!" msgid "OU is not empty or invalid!" msgstr "OU is not empty or invalid!" -#: ../help/help.inc:353 ../help/help.inc:355 +#: ../help/help.inc:363 ../help/help.inc:365 msgid "OU-Editor" msgstr "OU-Editor" @@ -10052,9 +10059,9 @@ msgstr "Obsolete" msgid "Off" msgstr "Off" -#: ../lib/modules/windowsLDSUser.inc:157 ../lib/modules/windowsLDSUser.inc:411 -#: ../lib/modules/windowsLDSUser.inc:657 ../lib/modules/windowsLDSUser.inc:874 -#: ../lib/modules/windowsLDSUser.inc:1812 ../lib/modules/windowsUser.inc:175 +#: ../lib/modules/windowsLDSUser.inc:157 ../lib/modules/windowsLDSUser.inc:415 +#: ../lib/modules/windowsLDSUser.inc:661 ../lib/modules/windowsLDSUser.inc:881 +#: ../lib/modules/windowsLDSUser.inc:1830 ../lib/modules/windowsUser.inc:175 #: ../lib/modules/windowsUser.inc:500 ../lib/modules/windowsUser.inc:786 #: ../lib/modules/windowsUser.inc:882 ../lib/modules/windowsUser.inc:978 #: ../lib/modules/windowsUser.inc:1175 ../lib/modules/windowsUser.inc:2861 @@ -10062,17 +10069,17 @@ msgstr "Off" #: ../lib/modules/inetOrgPerson.inc:469 ../lib/modules/inetOrgPerson.inc:504 #: ../lib/modules/inetOrgPerson.inc:737 ../lib/modules/inetOrgPerson.inc:741 #: ../lib/modules/inetOrgPerson.inc:1378 ../lib/modules/inetOrgPerson.inc:1381 -#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2048 -#: ../lib/modules/inetOrgPerson.inc:2815 ../lib/modules/inetOrgPerson.inc:4082 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1987 ../lib/modules/inetOrgPerson.inc:2046 +#: ../lib/modules/inetOrgPerson.inc:2813 ../lib/modules/inetOrgPerson.inc:4079 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Office name" msgstr "Office name" #: ../templates/misc/ajax.php:287 ../templates/misc/ajax.php:417 -#: ../templates/misc/ajax.php:447 ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 +#: ../templates/misc/ajax.php:447 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 #: ../templates/tests/lamdaemonTest.php:103 ../templates/tools/ou_edit.php:214 #: ../templates/tools/ou_edit.php:226 ../templates/tools/webauthn.php:78 #: ../templates/tools/webauthn.php:116 ../templates/config/profmanage.php:230 @@ -10081,7 +10088,7 @@ msgstr "Office name" #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:280 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:503 ../templates/config/jobList.php:155 +#: ../templates/config/mainmanage.php:543 ../templates/config/jobList.php:155 #: ../templates/config/conflogin.php:126 ../templates/config/mainlogin.php:145 #: ../templates/selfService/profManage.php:196 #: ../templates/selfService/profManage.php:213 @@ -10093,7 +10100,7 @@ msgstr "Office name" #: ../templates/profedit/profilemain.php:235 #: ../templates/profedit/profilemain.php:242 ../lib/types/automountType.inc:213 #: ../lib/types/user.inc:357 ../lib/types/bind.inc:157 ../lib/html.inc:610 -#: ../lib/2factor.inc:571 ../lib/modules/selfRegistration.inc:462 +#: ../lib/2factor.inc:569 ../lib/modules/selfRegistration.inc:462 #: ../lib/modules/zarafaContact.inc:471 ../lib/modules/zarafaGroup.inc:486 #: ../lib/modules/device.inc:292 ../lib/modules/kopanoGroup.inc:438 #: ../lib/modules/sambaSamAccount.inc:1437 @@ -10110,12 +10117,12 @@ msgstr "Office name" #: ../lib/modules/passwordSelfReset.inc:1327 #: ../lib/modules/windowsGroup.inc:705 ../lib/modules/groupOfNames.inc:421 #: ../lib/modules/groupOfNames.inc:570 ../lib/modules/nisMailAlias.inc:388 -#: ../lib/lists.inc:806 ../lib/lists.inc:891 ../lib/modules.inc:1007 +#: ../lib/lists.inc:805 ../lib/lists.inc:890 ../lib/modules.inc:1007 #: ../lib/modules.inc:1311 msgid "Ok" msgstr "Ok" -#: ../lib/modules/posixAccount.inc:3168 +#: ../lib/modules/posixAccount.inc:3222 msgid "Old password" msgstr "Old password" @@ -10143,9 +10150,9 @@ msgstr "On broken or timed out connection" msgid "One (one level beneath base)" msgstr "One (one level beneath base)" -#: ../lib/modules/range.inc:138 ../lib/modules/fixed_ip.inc:132 -msgid "One or more errors occured. The invalid fields are marked." -msgstr "One or more errors occured. The invalid fields are marked." +#: ../lib/modules/range.inc:137 ../lib/modules/fixed_ip.inc:132 +msgid "One or more errors occurred. The invalid fields are marked." +msgstr "One or more errors occurred. The invalid fields are marked." #: ../templates/3rdParty/pla/htdocs/copy.php:98 #: ../templates/3rdParty/pla/htdocs/copy.php:155 @@ -10163,12 +10170,12 @@ msgstr "Operation statistics" msgid "Operation successful. DN %s has been created." msgstr "Operation successful. DN %s has been created." -#: ../templates/tools/multiEdit.php:141 ../help/help.inc:363 +#: ../templates/tools/multiEdit.php:141 ../help/help.inc:373 msgid "Operations" msgstr "Operations" #: ../templates/config/confmain.php:510 -#: ../templates/selfService/adminMain.php:531 ../help/help.inc:314 +#: ../templates/selfService/adminMain.php:531 ../help/help.inc:324 msgid "Optional" msgstr "Optional" @@ -10183,9 +10190,9 @@ msgstr "Optional description for the PC." #: ../lib/types/sudo.inc:86 ../lib/modules/mitKerberos.inc:405 #: ../lib/modules/zarafaDynamicGroup.inc:251 -#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:528 +#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:529 #: ../lib/modules/zarafaGroup.inc:259 ../lib/modules/kopanoGroup.inc:238 -#: ../lib/modules/posixAccount.inc:2299 ../lib/modules/zarafaUser.inc:601 +#: ../lib/modules/posixAccount.inc:2353 ../lib/modules/zarafaUser.inc:601 #: ../lib/modules/kopanoContact.inc:240 ../lib/modules/kolabUser.inc:331 #: ../lib/modules/kopanoDynamicGroup.inc:214 ../lib/modules/sudoRole.inc:93 #: ../lib/modules/sudoRole.inc:122 ../lib/modules/sudoRole.inc:188 @@ -10236,14 +10243,14 @@ msgstr "Order by" msgid "Ordering" msgstr "Ordering" -#: ../lib/types/user.inc:109 ../lib/modules/windowsLDSUser.inc:271 -#: ../lib/modules/windowsLDSUser.inc:275 ../lib/modules/windowsLDSUser.inc:573 -#: ../lib/modules/windowsLDSUser.inc:604 ../lib/modules/windowsLDSUser.inc:703 -#: ../lib/modules/windowsLDSUser.inc:931 ../lib/modules/windowsLDSUser.inc:1836 -#: ../lib/modules/windowsLDSUser.inc:2163 ../lib/modules/eduPerson.inc:125 +#: ../lib/types/user.inc:109 ../lib/modules/windowsLDSUser.inc:275 +#: ../lib/modules/windowsLDSUser.inc:279 ../lib/modules/windowsLDSUser.inc:577 +#: ../lib/modules/windowsLDSUser.inc:608 ../lib/modules/windowsLDSUser.inc:710 +#: ../lib/modules/windowsLDSUser.inc:938 ../lib/modules/windowsLDSUser.inc:1854 +#: ../lib/modules/windowsLDSUser.inc:2203 ../lib/modules/eduPerson.inc:125 #: ../lib/modules/eduPerson.inc:199 ../lib/modules/eduPerson.inc:226 #: ../lib/modules/eduPerson.inc:244 ../lib/modules/eduPerson.inc:342 -#: ../lib/modules/eduPerson.inc:552 ../lib/modules/windowsUser.inc:348 +#: ../lib/modules/eduPerson.inc:546 ../lib/modules/windowsUser.inc:348 #: ../lib/modules/windowsUser.inc:352 ../lib/modules/windowsUser.inc:756 #: ../lib/modules/windowsUser.inc:809 ../lib/modules/windowsUser.inc:952 #: ../lib/modules/windowsUser.inc:1233 ../lib/modules/windowsUser.inc:2887 @@ -10251,18 +10258,18 @@ msgstr "Ordering" #: ../lib/modules/inetOrgPerson.inc:437 ../lib/modules/inetOrgPerson.inc:549 #: ../lib/modules/inetOrgPerson.inc:770 ../lib/modules/inetOrgPerson.inc:774 #: ../lib/modules/inetOrgPerson.inc:1523 ../lib/modules/inetOrgPerson.inc:1526 -#: ../lib/modules/inetOrgPerson.inc:1994 ../lib/modules/inetOrgPerson.inc:2072 -#: ../lib/modules/inetOrgPerson.inc:2946 ../lib/modules/inetOrgPerson.inc:4097 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:2070 +#: ../lib/modules/inetOrgPerson.inc:2944 ../lib/modules/inetOrgPerson.inc:4094 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisation" msgstr "Organization" #: ../templates/tools/ou_edit.php:219 ../lib/types/user.inc:110 -#: ../lib/modules/windowsLDSUser.inc:263 ../lib/modules/windowsLDSUser.inc:267 -#: ../lib/modules/windowsLDSUser.inc:565 ../lib/modules/windowsLDSUser.inc:601 -#: ../lib/modules/windowsLDSUser.inc:700 ../lib/modules/windowsLDSUser.inc:928 -#: ../lib/modules/windowsLDSUser.inc:1835 -#: ../lib/modules/windowsLDSUser.inc:2162 ../lib/modules/windowsUser.inc:340 +#: ../lib/modules/windowsLDSUser.inc:267 ../lib/modules/windowsLDSUser.inc:271 +#: ../lib/modules/windowsLDSUser.inc:569 ../lib/modules/windowsLDSUser.inc:605 +#: ../lib/modules/windowsLDSUser.inc:707 ../lib/modules/windowsLDSUser.inc:935 +#: ../lib/modules/windowsLDSUser.inc:1853 +#: ../lib/modules/windowsLDSUser.inc:2202 ../lib/modules/windowsUser.inc:340 #: ../lib/modules/windowsUser.inc:344 ../lib/modules/windowsUser.inc:748 #: ../lib/modules/windowsUser.inc:806 ../lib/modules/windowsUser.inc:949 #: ../lib/modules/windowsUser.inc:1230 ../lib/modules/windowsUser.inc:2886 @@ -10270,15 +10277,15 @@ msgstr "Organization" #: ../lib/modules/inetOrgPerson.inc:429 ../lib/modules/inetOrgPerson.inc:552 #: ../lib/modules/inetOrgPerson.inc:762 ../lib/modules/inetOrgPerson.inc:766 #: ../lib/modules/inetOrgPerson.inc:1514 ../lib/modules/inetOrgPerson.inc:1517 -#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2069 -#: ../lib/modules/inetOrgPerson.inc:2984 ../lib/modules/inetOrgPerson.inc:4096 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2067 +#: ../lib/modules/inetOrgPerson.inc:2982 ../lib/modules/inetOrgPerson.inc:4093 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisational unit" msgstr "Organizational unit" #: ../lib/modules/eduPerson.inc:133 ../lib/modules/eduPerson.inc:137 #: ../lib/modules/eduPerson.inc:211 ../lib/modules/eduPerson.inc:227 -#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:554 +#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:548 msgid "Organisational units" msgstr "Organizational units" @@ -10291,11 +10298,11 @@ msgstr "Organizational units contains an invalid entry." msgid "Other" msgstr "Other" -#: ../lib/modules/windowsLDSUser.inc:303 ../lib/modules/windowsLDSUser.inc:307 -#: ../lib/modules/windowsLDSUser.inc:494 ../lib/modules/windowsLDSUser.inc:721 -#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:887 -#: ../lib/modules/windowsLDSUser.inc:1824 -#: ../lib/modules/windowsLDSUser.inc:2149 ../lib/modules/windowsUser.inc:380 +#: ../lib/modules/windowsLDSUser.inc:307 ../lib/modules/windowsLDSUser.inc:311 +#: ../lib/modules/windowsLDSUser.inc:498 ../lib/modules/windowsLDSUser.inc:728 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:894 +#: ../lib/modules/windowsLDSUser.inc:1842 +#: ../lib/modules/windowsLDSUser.inc:2188 ../lib/modules/windowsUser.inc:380 #: ../lib/modules/windowsUser.inc:384 ../lib/modules/windowsUser.inc:651 #: ../lib/modules/windowsUser.inc:970 ../lib/modules/windowsUser.inc:1046 #: ../lib/modules/windowsUser.inc:1189 ../lib/modules/windowsUser.inc:2873 @@ -10303,11 +10310,11 @@ msgstr "Other" msgid "Other mobiles" msgstr "Other mobiles" -#: ../lib/modules/windowsLDSUser.inc:291 ../lib/modules/windowsLDSUser.inc:295 -#: ../lib/modules/windowsLDSUser.inc:478 ../lib/modules/windowsLDSUser.inc:715 -#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:893 -#: ../lib/modules/windowsLDSUser.inc:1822 -#: ../lib/modules/windowsLDSUser.inc:2151 ../lib/modules/windowsUser.inc:368 +#: ../lib/modules/windowsLDSUser.inc:295 ../lib/modules/windowsLDSUser.inc:299 +#: ../lib/modules/windowsLDSUser.inc:482 ../lib/modules/windowsLDSUser.inc:722 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:900 +#: ../lib/modules/windowsLDSUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:2190 ../lib/modules/windowsUser.inc:368 #: ../lib/modules/windowsUser.inc:372 ../lib/modules/windowsUser.inc:635 #: ../lib/modules/windowsUser.inc:964 ../lib/modules/windowsUser.inc:1042 #: ../lib/modules/windowsUser.inc:1195 ../lib/modules/windowsUser.inc:2871 @@ -10316,9 +10323,9 @@ msgid "Other pagers" msgstr "Other pagers" #: ../lib/modules/windowsLDSUser.inc:149 ../lib/modules/windowsLDSUser.inc:153 -#: ../lib/modules/windowsLDSUser.inc:429 ../lib/modules/windowsLDSUser.inc:656 -#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:882 -#: ../lib/modules/windowsLDSUser.inc:1811 ../lib/modules/windowsUser.inc:167 +#: ../lib/modules/windowsLDSUser.inc:433 ../lib/modules/windowsLDSUser.inc:660 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:889 +#: ../lib/modules/windowsLDSUser.inc:1829 ../lib/modules/windowsUser.inc:167 #: ../lib/modules/windowsUser.inc:171 ../lib/modules/windowsUser.inc:524 #: ../lib/modules/windowsUser.inc:881 ../lib/modules/windowsUser.inc:1038 #: ../lib/modules/windowsUser.inc:1184 ../lib/modules/windowsUser.inc:2860 @@ -10326,8 +10333,8 @@ msgid "Other telephone numbers" msgstr "Other telephone numbers" #: ../lib/modules/windowsLDSUser.inc:189 ../lib/modules/windowsLDSUser.inc:193 -#: ../lib/modules/windowsLDSUser.inc:441 ../lib/modules/windowsLDSUser.inc:664 -#: ../lib/modules/windowsLDSUser.inc:899 ../lib/modules/windowsLDSUser.inc:1826 +#: ../lib/modules/windowsLDSUser.inc:445 ../lib/modules/windowsLDSUser.inc:668 +#: ../lib/modules/windowsLDSUser.inc:906 ../lib/modules/windowsLDSUser.inc:1844 #: ../lib/modules/windowsUser.inc:207 ../lib/modules/windowsUser.inc:211 #: ../lib/modules/windowsUser.inc:536 ../lib/modules/windowsUser.inc:889 #: ../lib/modules/windowsUser.inc:1201 ../lib/modules/windowsUser.inc:2875 @@ -10339,7 +10346,7 @@ msgstr "Other web sites" msgid "Output may contain HTML" msgstr "Output may contain HTML" -#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:568 +#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:556 #, php-format msgid "Output of command \"%s\" with return code %s" msgstr "Output of command \"%s\" with return code %s" @@ -10367,7 +10374,7 @@ msgstr "Overlays" msgid "Override default quota settings." msgstr "Override default quota settings." -#: ../templates/upload/masscreate.php:372 ../help/help.inc:240 +#: ../templates/upload/masscreate.php:372 ../help/help.inc:250 msgid "Overwrite" msgstr "Overwrite" @@ -10395,8 +10402,8 @@ msgstr "Owners" msgid "P-Node (0x02)" msgstr "P-Node (0x02)" -#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:421 -#: ../lib/modules/fixed_ip.inc:760 +#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:419 +#: ../lib/modules/fixed_ip.inc:758 msgid "PC name" msgstr "PC name" @@ -10409,8 +10416,8 @@ msgstr "PC01" msgid "PDF editor" msgstr "PDF editor" -#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:778 -#: ../help/help.inc:260 +#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:777 +#: ../help/help.inc:270 msgid "PDF structure" msgstr "PDF structure" @@ -10430,11 +10437,11 @@ msgstr "PDF structures" msgid "PDUs sent" msgstr "PDUs sent" -#: ../templates/config/mainmanage.php:451 ../help/help.inc:166 +#: ../templates/config/mainmanage.php:491 ../help/help.inc:164 msgid "PHP error reporting" msgstr "PHP error reporting" -#: ../templates/config/mainmanage.php:447 +#: ../templates/config/mainmanage.php:487 msgid "PHP system setting" msgstr "PHP system setting" @@ -10449,8 +10456,8 @@ msgstr "PIN+Token" msgid "POP3" msgstr "POP3" -#: ../templates/lists/changePassword.php:412 -#: ../templates/lists/changePassword.php:449 ../lib/types/user.inc:465 +#: ../templates/lists/changePassword.php:416 +#: ../templates/lists/changePassword.php:453 ../lib/types/user.inc:465 #: ../lib/types/user.inc:504 ../lib/modules/ppolicyUser.inc:510 msgid "PPolicy" msgstr "PPolicy" @@ -10482,7 +10489,7 @@ msgstr "" msgid "Page count" msgstr "Page count" -#: ../templates/selfService/adminMain.php:594 ../help/help.inc:292 +#: ../templates/selfService/adminMain.php:594 ../help/help.inc:302 msgid "Page header" msgstr "Page header" @@ -10490,14 +10497,14 @@ msgstr "Page header" msgid "Page layout" msgstr "Page layout" -#: ../templates/config/confmain.php:233 ../help/help.inc:198 +#: ../templates/config/confmain.php:233 ../help/help.inc:202 msgid "Paged results" msgstr "Paged results" -#: ../lib/modules/windowsLDSUser.inc:287 ../lib/modules/windowsLDSUser.inc:470 -#: ../lib/modules/windowsLDSUser.inc:712 ../lib/modules/windowsLDSUser.inc:762 -#: ../lib/modules/windowsLDSUser.inc:890 ../lib/modules/windowsLDSUser.inc:1821 -#: ../lib/modules/windowsLDSUser.inc:2150 ../lib/modules/windowsUser.inc:364 +#: ../lib/modules/windowsLDSUser.inc:291 ../lib/modules/windowsLDSUser.inc:474 +#: ../lib/modules/windowsLDSUser.inc:719 ../lib/modules/windowsLDSUser.inc:769 +#: ../lib/modules/windowsLDSUser.inc:897 ../lib/modules/windowsLDSUser.inc:1839 +#: ../lib/modules/windowsLDSUser.inc:2189 ../lib/modules/windowsUser.inc:364 #: ../lib/modules/windowsUser.inc:627 ../lib/modules/windowsUser.inc:961 #: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1192 #: ../lib/modules/windowsUser.inc:2870 ../lib/modules/windowsUser.inc:3699 @@ -10505,8 +10512,8 @@ msgstr "Paged results" #: ../lib/modules/inetOrgPerson.inc:379 ../lib/modules/inetOrgPerson.inc:522 #: ../lib/modules/inetOrgPerson.inc:654 ../lib/modules/inetOrgPerson.inc:658 #: ../lib/modules/inetOrgPerson.inc:1433 ../lib/modules/inetOrgPerson.inc:1436 -#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2685 -#: ../lib/modules/inetOrgPerson.inc:4088 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2683 +#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/asteriskVoicemail.inc:110 #: ../lib/modules/asteriskVoicemail.inc:140 #: ../lib/modules/asteriskVoicemail.inc:183 @@ -10552,9 +10559,9 @@ msgstr "Partially locked" msgid "Passthrough" msgstr "Passthrough" -#: ../templates/lists/changePassword.php:356 ../templates/login.php:359 -#: ../templates/config/conflogin.php:121 -#: ../templates/selfService/selfServiceLogin.php:283 +#: ../templates/lists/changePassword.php:360 ../templates/login.php:359 +#: ../templates/config/mainmanage.php:502 ../templates/config/conflogin.php:121 +#: ../templates/selfService/selfServiceLogin.php:284 #: ../templates/selfService/adminLogin.php:117 ../lib/selfService.inc:497 #: ../lib/modules/mitKerberos.inc:155 ../lib/modules/mitKerberos.inc:241 #: ../lib/modules/mitKerberos.inc:256 ../lib/modules/mitKerberos.inc:834 @@ -10562,28 +10569,28 @@ msgstr "Passthrough" #: ../lib/modules/selfRegistration.inc:580 #: ../lib/modules/selfRegistration.inc:583 #: ../lib/modules/selfRegistration.inc:586 -#: ../lib/modules/windowsLDSUser.inc:207 ../lib/modules/windowsLDSUser.inc:339 -#: ../lib/modules/windowsLDSUser.inc:667 ../lib/modules/windowsLDSUser.inc:776 -#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/windowsLDSUser.inc:1845 -#: ../lib/modules/windowsLDSUser.inc:1848 +#: ../lib/modules/windowsLDSUser.inc:207 ../lib/modules/windowsLDSUser.inc:343 +#: ../lib/modules/windowsLDSUser.inc:671 ../lib/modules/windowsLDSUser.inc:783 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/windowsLDSUser.inc:1863 +#: ../lib/modules/windowsLDSUser.inc:1866 #: ../lib/modules/asteriskAccount.inc:114 #: ../lib/modules/asteriskAccount.inc:323 ../lib/modules/posixGroup.inc:219 -#: ../lib/modules/posixGroup.inc:700 ../lib/modules/sambaSamAccount.inc:105 +#: ../lib/modules/posixGroup.inc:701 ../lib/modules/sambaSamAccount.inc:105 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:252 #: ../lib/modules/sambaSamAccount.inc:433 ../lib/modules/posixAccount.inc:99 #: ../lib/modules/posixAccount.inc:100 ../lib/modules/posixAccount.inc:174 #: ../lib/modules/posixAccount.inc:307 ../lib/modules/posixAccount.inc:427 -#: ../lib/modules/posixAccount.inc:1684 ../lib/modules/posixAccount.inc:2134 -#: ../lib/modules/posixAccount.inc:2137 ../lib/modules/posixAccount.inc:2224 -#: ../lib/modules/posixAccount.inc:2409 ../lib/modules/windowsUser.inc:245 +#: ../lib/modules/posixAccount.inc:1739 ../lib/modules/posixAccount.inc:2188 +#: ../lib/modules/posixAccount.inc:2191 ../lib/modules/posixAccount.inc:2277 +#: ../lib/modules/posixAccount.inc:2463 ../lib/modules/windowsUser.inc:245 #: ../lib/modules/windowsUser.inc:428 ../lib/modules/windowsUser.inc:898 #: ../lib/modules/windowsUser.inc:987 ../lib/modules/windowsUser.inc:1062 #: ../lib/modules/windowsUser.inc:1063 ../lib/modules/windowsUser.inc:2922 #: ../lib/modules/windowsUser.inc:2925 ../lib/modules/inetOrgPerson.inc:786 -#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1949 -#: ../lib/modules/inetOrgPerson.inc:2000 ../lib/modules/inetOrgPerson.inc:2003 -#: ../lib/modules/inetOrgPerson.inc:2211 ../lib/modules/inetOrgPerson.inc:4136 +#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1947 +#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2001 +#: ../lib/modules/inetOrgPerson.inc:2209 ../lib/modules/inetOrgPerson.inc:4133 #: ../lib/modules/asteriskVoicemail.inc:98 #: ../lib/modules/asteriskVoicemail.inc:164 #: ../lib/modules/customFields.inc:3020 ../lib/modules/heimdalKerberos.inc:123 @@ -10591,7 +10598,7 @@ msgstr "Passthrough" #: ../lib/modules/heimdalKerberos.inc:222 #: ../lib/modules/heimdalKerberos.inc:718 #: ../lib/modules/heimdalKerberos.inc:721 ../lib/modules.inc:1114 -#: ../help/help.inc:258 +#: ../help/help.inc:186 ../help/help.inc:268 msgid "Password" msgstr "Password" @@ -10602,13 +10609,13 @@ msgstr "Password" msgid "Password change at next login" msgstr "Password change at next login" -#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1223 +#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1219 #: ../lib/modules/heimdalKerberos.inc:117 #: ../lib/modules/heimdalKerberos.inc:1056 msgid "Password change command" msgstr "Password change command" -#: ../templates/lists/changePassword.php:295 +#: ../templates/lists/changePassword.php:299 msgid "Password change options" msgstr "Password change options" @@ -10633,7 +10640,7 @@ msgstr "Password change service" msgid "Password change with old password" msgstr "Password change with old password" -#: ../lib/modules/posixAccount.inc:3358 +#: ../lib/modules/posixAccount.inc:3412 msgid "Password changed." msgstr "Password changed." @@ -10647,7 +10654,7 @@ msgid "Password check module" msgstr "Password check module" #: ../lib/modules/mitKerberos.inc:288 ../lib/modules/selfRegistration.inc:583 -#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/posixGroup.inc:700 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/posixGroup.inc:701 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:107 ../lib/modules/posixAccount.inc:100 #: ../lib/modules/posixAccount.inc:101 ../lib/modules/windowsUser.inc:1063 @@ -10683,7 +10690,7 @@ msgstr "Password expiration must be are natural number or -1." msgid "Password expired" msgstr "Password expired" -#: ../templates/selfService/adminMain.php:571 ../help/help.inc:296 +#: ../templates/selfService/adminMain.php:571 ../help/help.inc:306 msgid "Password field label" msgstr "Password field label" @@ -10691,10 +10698,10 @@ msgstr "Password field label" msgid "Password for voicemail mailbox." msgstr "Password for voicemail mailbox." -#: ../lib/modules/posixGroup.inc:442 ../lib/modules/posixGroup.inc:535 +#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixGroup.inc:536 #: ../lib/modules/posixAccount.inc:185 ../lib/modules/posixAccount.inc:340 -#: ../lib/modules/posixAccount.inc:2301 ../lib/modules/inetOrgPerson.inc:757 -#: ../lib/modules/inetOrgPerson.inc:4066 ../lib/modules/customFields.inc:149 +#: ../lib/modules/posixAccount.inc:2355 ../lib/modules/inetOrgPerson.inc:757 +#: ../lib/modules/inetOrgPerson.inc:4063 ../lib/modules/customFields.inc:149 #: ../lib/modules/customFields.inc:3036 msgid "Password hash type" msgstr "Password hash type" @@ -10736,11 +10743,11 @@ msgstr "Password maximum age must be bigger than password minimum age." msgid "Password minimum age must be are natural number." msgstr "Password minimum age must be are natural number." -#: ../templates/config/mainmanage.php:398 ../help/help.inc:174 +#: ../templates/config/mainmanage.php:438 ../help/help.inc:172 msgid "Password must not contain part of user/first/last name" msgstr "Password must not contain part of user/first/last name" -#: ../templates/config/mainmanage.php:396 ../help/help.inc:172 +#: ../templates/config/mainmanage.php:436 ../help/help.inc:170 msgid "Password must not contain user name" msgstr "Password must not contain user name" @@ -10756,7 +10763,7 @@ msgstr "Password policies" msgid "Password policies (ppolicy)" msgstr "Password policies (ppolicy)" -#: ../templates/config/mainmanage.php:380 ../lib/types/user.inc:319 +#: ../templates/config/mainmanage.php:420 ../lib/types/user.inc:319 #: ../lib/types/user.inc:1103 ../lib/modules/ppolicyUser.inc:44 #: ../lib/modules/ppolicyUser.inc:55 ../lib/modules/ppolicyUser.inc:71 #: ../lib/modules/ppolicyUser.inc:87 ../lib/modules/ppolicyUser.inc:127 @@ -10790,11 +10797,11 @@ msgstr "Password reset page settings" msgid "Password self reset" msgstr "Password self reset" -#: ../lib/modules/passwordSelfReset.inc:1879 +#: ../lib/modules/passwordSelfReset.inc:1877 msgid "Password successfully reset." msgstr "Password successfully reset." -#: ../help/help.inc:233 +#: ../help/help.inc:237 msgid "Password to unlock SSH key file." msgstr "Password to unlock SSH key file." @@ -10809,7 +10816,7 @@ msgstr "Password warning" msgid "Password warning must be are natural number." msgstr "Password warning must be are natural number." -#: ../templates/config/confmain.php:756 +#: ../templates/config/confmain.php:758 #: ../templates/3rdParty/pla/htdocs/password_checker.php:61 #: ../lib/modules/passwordSelfReset.inc:1425 ../lib/modules.inc:1211 msgid "Passwords are different!" @@ -10843,7 +10850,7 @@ msgstr "" msgid "Path separator" msgstr "Path separator" -#: ../help/help.inc:231 +#: ../help/help.inc:235 msgid "" "Path to SSH key file to connect to lamdaemon server. If empty then password " "authentication with the person's password who is logged into LAM will be " @@ -10857,7 +10864,7 @@ msgstr "" msgid "Path to external script" msgstr "Path to external script" -#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:369 +#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:365 msgid "Path to key for DNS updates" msgstr "Path to key for DNS updates" @@ -10923,17 +10930,17 @@ msgstr "Personal" msgid "Personal data" msgstr "Personal data" -#: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2153 -#: ../lib/modules/windowsLDSUser.inc:2166 ../lib/modules/windowsUser.inc:3707 +#: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2193 +#: ../lib/modules/windowsLDSUser.inc:2206 ../lib/modules/windowsUser.inc:3707 #: ../lib/modules/windowsUser.inc:3739 ../lib/modules/inetOrgPerson.inc:161 -#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2523 -#: ../lib/modules/inetOrgPerson.inc:2841 ../lib/modules/inetOrgPerson.inc:4102 -#: ../lib/modules/inetOrgPerson.inc:4136 ../lib/modules/inetOrgPerson.inc:4146 +#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2521 +#: ../lib/modules/inetOrgPerson.inc:2839 ../lib/modules/inetOrgPerson.inc:4099 +#: ../lib/modules/inetOrgPerson.inc:4133 ../lib/modules/inetOrgPerson.inc:4143 msgid "Photo" msgstr "Photo" -#: ../lib/modules/windowsLDSUser.inc:1275 ../lib/modules/windowsUser.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:1707 +#: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2021 +#: ../lib/modules/inetOrgPerson.inc:1705 msgid "Photo file" msgstr "Photo file" @@ -10978,7 +10985,7 @@ msgstr "" msgid "Please add at least one extension owner." msgstr "Please add at least one extension owner." -#: ../help/help.inc:211 +#: ../help/help.inc:215 msgid "Please add this line to your webserver's crontab." msgstr "Please add this line to your webserver's crontab." @@ -10986,14 +10993,6 @@ msgstr "Please add this line to your webserver's crontab." msgid "Please authenticate with your security device." msgstr "Please authenticate with your security device." -#: ../help/help.inc:165 -msgid "" -"Please change this setting only if you experience problems in receiving " -"emails from LAM. This defines the line ending of emails." -msgstr "" -"Please change this setting only if you experience problems in receiving " -"emails from LAM. This defines the line ending of emails." - #: ../lib/modules/qmailGroup.inc:296 msgid "Please check if this email should be sent." msgstr "Please check if this email should be sent." @@ -11022,7 +11021,7 @@ msgstr "Please click to lock/unlock this account." msgid "Please create a profile by clicking on the link below." msgstr "Please create a profile by clicking on the link below." -#: ../lib/lists.inc:1263 +#: ../lib/lists.inc:1262 msgid "" "Please do not edit multiple accounts in parallel in multiple browser tabs." msgstr "" @@ -11056,7 +11055,7 @@ msgstr "Please enter a RID number or the name of a special account!" msgid "Please enter a caller ID." msgstr "Please enter a caller ID." -#: ../help/help.inc:374 +#: ../help/help.inc:384 msgid "" "Please enter a comma separated list of attributes to export. Using \"*\" " "will export all attributes." @@ -11184,7 +11183,7 @@ msgstr "Please enter a number for quota size." #: ../templates/lib/141_jquery-validationEngine-lang.php:53 #: ../templates/lib/141_jquery-validationEngine-lang.php:57 -#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:527 +#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:525 #: ../lib/modules/mitKerberos.inc:289 ../lib/modules/zarafaUser.inc:431 #: ../lib/modules/zarafaUser.inc:432 ../lib/modules/zarafaUser.inc:433 #: ../lib/modules/zarafaUser.inc:434 ../lib/modules/zarafaUser.inc:435 @@ -11193,8 +11192,8 @@ msgstr "Please enter a number for quota size." #: ../lib/modules/bindDLZXfr.inc:94 ../lib/modules/courierMailAccount.inc:212 #: ../lib/modules/bindDLZ.inc:561 ../lib/modules/windowsUser.inc:1069 #: ../lib/modules/kolabUser.inc:221 ../lib/modules/kolabUser.inc:222 -#: ../lib/modules/inetOrgPerson.inc:2544 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:2550 ../lib/modules/sudoRole.inc:284 +#: ../lib/modules/inetOrgPerson.inc:2542 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:2548 ../lib/modules/sudoRole.inc:284 #: ../lib/modules/sudoRole.inc:285 ../lib/modules/kopanoUser.inc:431 #: ../lib/modules/kopanoUser.inc:432 ../lib/modules/kopanoUser.inc:433 #: ../lib/modules/kopanoUser.inc:434 ../lib/modules/kopanoUser.inc:435 @@ -11235,11 +11234,11 @@ msgstr "Please enter a numeric value for the minimum password length." msgid "Please enter a numeric value for the password history length." msgstr "Please enter a numeric value for the password history length." -#: ../help/help.inc:183 +#: ../help/help.inc:181 msgid "Please enter a part of the user's DN to search for registered devices." msgstr "Please enter a part of the user's DN to search for registered devices." -#: ../lib/modules/range.inc:141 +#: ../lib/modules/range.inc:140 msgid "Please enter a pool name." msgstr "Please enter a pool name." @@ -11320,17 +11319,17 @@ msgstr "Please enter a valid account status." msgid "Please enter a valid admin email address." msgstr "Please enter a valid admin email address." -#: ../templates/config/confmain.php:649 +#: ../templates/config/confmain.php:651 msgid "Please enter a valid bind user." msgstr "Please enter a valid bind user." -#: ../lib/modules/windowsLDSUser.inc:782 ../lib/modules/windowsLDSUser.inc:783 +#: ../lib/modules/windowsLDSUser.inc:789 ../lib/modules/windowsLDSUser.inc:790 #: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1076 #: ../lib/modules/inetOrgPerson.inc:107 ../lib/modules/inetOrgPerson.inc:108 msgid "Please enter a valid business category!" msgstr "Please enter a valid business category!" -#: ../lib/modules/windowsLDSUser.inc:746 ../lib/modules/windowsLDSUser.inc:747 +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:754 #: ../lib/modules/posixAccount.inc:119 ../lib/modules/posixAccount.inc:120 #: ../lib/modules/windowsUser.inc:1022 ../lib/modules/windowsUser.inc:1023 #: ../lib/modules/inetOrgPerson.inc:98 ../lib/modules/inetOrgPerson.inc:99 @@ -11377,7 +11376,7 @@ msgstr "Please enter a valid default user." msgid "Please enter a valid delivery mode." msgstr "Please enter a valid delivery mode." -#: ../lib/modules/windowsLDSUser.inc:750 ../lib/modules/windowsLDSUser.inc:751 +#: ../lib/modules/windowsLDSUser.inc:757 ../lib/modules/windowsLDSUser.inc:758 #: ../lib/modules/sambaSamAccount.inc:110 #: ../lib/modules/sambaSamAccount.inc:111 ../lib/modules/windowsUser.inc:1028 #: ../lib/modules/windowsUser.inc:1029 @@ -11388,12 +11387,13 @@ msgstr "Please enter a valid display name!" msgid "Please enter a valid drive letter." msgstr "Please enter a valid drive letter." -#: ../lib/passwordExpirationJob.inc:122 ../lib/passwordExpirationJob.inc:128 -#: ../lib/passwordExpirationJob.inc:134 ../lib/passwordExpirationJob.inc:140 -#: ../lib/modules/kolabGroup.inc:155 ../lib/modules/kolabGroup.inc:156 -#: ../lib/modules/selfRegistration.inc:125 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 ../lib/passwordExpirationJob.inc:122 +#: ../lib/passwordExpirationJob.inc:128 ../lib/passwordExpirationJob.inc:134 +#: ../lib/passwordExpirationJob.inc:140 ../lib/modules/kolabGroup.inc:155 +#: ../lib/modules/kolabGroup.inc:156 ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:500 -#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:773 +#: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:780 #: ../lib/modules/zarafaDynamicGroup.inc:184 #: ../lib/modules/zarafaDynamicGroup.inc:185 ../lib/modules/qmailUser.inc:402 #: ../lib/modules/qmailUser.inc:403 ../lib/modules/qmailUser.inc:404 @@ -11438,13 +11438,13 @@ msgstr "Please enter a valid email alias." msgid "Please enter a valid employee number." msgstr "Please enter a valid employee number." -#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:781 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:788 #: ../lib/modules/windowsUser.inc:1073 ../lib/modules/windowsUser.inc:1074 #: ../lib/modules/inetOrgPerson.inc:96 ../lib/modules/inetOrgPerson.inc:97 msgid "Please enter a valid employee type!" msgstr "Please enter a valid employee type!" -#: ../lib/modules/windowsLDSUser.inc:758 ../lib/modules/windowsLDSUser.inc:759 +#: ../lib/modules/windowsLDSUser.inc:765 ../lib/modules/windowsLDSUser.inc:766 #: ../lib/modules/windowsUser.inc:1036 ../lib/modules/windowsUser.inc:1037 #: ../lib/modules/inetOrgPerson.inc:78 ../lib/modules/inetOrgPerson.inc:79 msgid "Please enter a valid fax number!" @@ -11495,7 +11495,7 @@ msgstr "Please enter a valid group type." msgid "Please enter a valid job suffix." msgstr "Please enter a valid job suffix." -#: ../lib/modules/windowsLDSUser.inc:778 ../lib/modules/windowsLDSUser.inc:779 +#: ../lib/modules/windowsLDSUser.inc:785 ../lib/modules/windowsLDSUser.inc:786 #: ../lib/modules/windowsUser.inc:1071 ../lib/modules/windowsUser.inc:1072 #: ../lib/modules/inetOrgPerson.inc:94 ../lib/modules/inetOrgPerson.inc:95 msgid "Please enter a valid job title!" @@ -11552,7 +11552,7 @@ msgid "Please enter a valid number (e.g. \"1.5\")." msgstr "Please enter a valid number (e.g. \"1.5\")." #: ../lib/modules/pykotaPrinter.inc:212 ../lib/modules/pykotaPrinter.inc:213 -#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:717 +#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:718 #: ../lib/modules/customFields.inc:2316 ../lib/modules/customFields.inc:2325 #: ../lib/modules/customFields.inc:3888 ../lib/modules/customFields.inc:3892 msgid "Please enter a valid number." @@ -11585,7 +11585,7 @@ msgstr "Please enter a valid port number." msgid "Please enter a valid postal address!" msgstr "Please enter a valid postal address!" -#: ../lib/modules/windowsLDSUser.inc:770 ../lib/modules/windowsLDSUser.inc:771 +#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/windowsLDSUser.inc:778 #: ../lib/modules/windowsUser.inc:1048 ../lib/modules/windowsUser.inc:1049 #: ../lib/modules/inetOrgPerson.inc:92 ../lib/modules/inetOrgPerson.inc:93 msgid "Please enter a valid postal code!" @@ -11614,7 +11614,7 @@ msgstr "Please enter a valid recipient expression." msgid "Please enter a valid registered address." msgstr "Please enter a valid registered address." -#: ../templates/config/mainmanage.php:177 +#: ../templates/config/mainmanage.php:188 msgid "Please enter a valid remote server in format \"server:port\"." msgstr "Please enter a valid remote server in format \"server:port\"." @@ -11638,12 +11638,12 @@ msgstr "Please enter a valid server name where the mailboxes reside." msgid "Please enter a valid street name!" msgstr "Please enter a valid street name!" -#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:757 -#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:761 -#: ../lib/modules/windowsLDSUser.inc:762 ../lib/modules/windowsLDSUser.inc:763 -#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:765 -#: ../lib/modules/windowsLDSUser.inc:766 ../lib/modules/windowsLDSUser.inc:767 -#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:769 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:764 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:768 +#: ../lib/modules/windowsLDSUser.inc:769 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:772 +#: ../lib/modules/windowsLDSUser.inc:773 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:776 #: ../lib/modules/windowsUser.inc:1034 ../lib/modules/windowsUser.inc:1035 #: ../lib/modules/windowsUser.inc:1038 ../lib/modules/windowsUser.inc:1039 #: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1041 @@ -11661,8 +11661,8 @@ msgstr "Please enter a valid telephone number!" msgid "Please enter a valid user name or email address." msgstr "Please enter a valid user name or email address." -#: ../lib/modules/posixGroup.inc:851 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixGroup.inc:852 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 #, php-format msgid "Please enter a value between %s and %s!" msgstr "Please enter a value between %s and %s!" @@ -11683,9 +11683,9 @@ msgstr "Please enter a value to add." msgid "Please enter a value to modify." msgstr "Please enter a value to modify." -#: ../help/help.inc:372 -msgid "Please enter an LDAP filter to specifiy the exported entries." -msgstr "Please enter an LDAP filter to specifiy the exported entries." +#: ../help/help.inc:382 +msgid "Please enter an LDAP filter to specify the exported entries." +msgstr "Please enter an LDAP filter to specify the exported entries." #: ../lib/modules/customFields.inc:82 msgid "Please enter an alias for this group." @@ -11713,7 +11713,7 @@ msgstr "Please enter an user name on this page: %s" msgid "Please enter at least %s values." msgstr "Please enter at least %s values." -#: ../lib/modules/range.inc:142 +#: ../lib/modules/range.inc:141 #, php-format msgid "Please enter at least one range for pool \"%s\"." msgstr "Please enter at least one range for pool \"%s\"." @@ -11768,11 +11768,11 @@ msgstr "" "Please enter the DN and password of the administrative self registration " "account." -#: ../help/help.inc:207 +#: ../help/help.inc:211 msgid "Please enter the DN and password to use for all jobs." msgstr "Please enter the DN and password to use for all jobs." -#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixAccount.inc:395 +#: ../lib/modules/posixGroup.inc:469 ../lib/modules/posixAccount.inc:395 msgid "" "Please enter the DN of the LDAP entry with object class \"msSFU30DomainInfo" "\"." @@ -11780,7 +11780,7 @@ msgstr "" "Please enter the DN of the LDAP entry with object class \"msSFU30DomainInfo" "\"." -#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixAccount.inc:391 +#: ../lib/modules/posixGroup.inc:465 ../lib/modules/posixAccount.inc:391 msgid "" "Please enter the DN of the LDAP entry with object class \"sambaUnixIdPool\"." msgstr "" @@ -11839,7 +11839,7 @@ msgid "" msgstr "" "Please enter the LDAP suffix where your Samba domain entries are stored." -#: ../help/help.inc:335 +#: ../help/help.inc:345 msgid "" "Please enter the WebAuthn domain. This is the public domain of the webserver " "(e.g. \"example.com\"). Do not include protocol or port." @@ -11898,7 +11898,7 @@ msgstr "" "Please enter the base URL of your webserver (e.g. https://www.example.com). " "This is used to generate links in emails." -#: ../lib/modules/windowsLDSUser.inc:284 ../lib/modules/windowsUser.inc:361 +#: ../lib/modules/windowsLDSUser.inc:288 ../lib/modules/windowsUser.inc:361 msgid "Please enter the company name." msgstr "Please enter the company name." @@ -11962,10 +11962,14 @@ msgstr "" "Please enter the list of scripts which should be run. Each line has the " "following format: [action] [script and arguments]" -#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixAccount.inc:399 +#: ../lib/modules/posixGroup.inc:490 ../lib/modules/posixAccount.inc:399 msgid "Please enter the magic number you configured on server side." msgstr "Please enter the magic number you configured on server side." +#: ../templates/config/mainmanage.php:263 +msgid "Please enter the mail server with host name and port." +msgstr "Please enter the mail server with host name and port." + #: ../lib/modules/nisObject.inc:66 msgid "" "Please enter the mapping entry (e.g. \"-fstype=nfs,rw server:/projects\")." @@ -12016,7 +12020,7 @@ msgstr "" "Please enter the new name of the profile. The name may contain letters, " "numbers and -/_." -#: ../help/help.inc:399 +#: ../help/help.inc:409 msgid "" "Please enter the number of days before password expiration to send out the " "email." @@ -12051,7 +12055,7 @@ msgstr "" msgid "Please enter the password which you want to set for this account." msgstr "Please enter the password which you want to set for this account." -#: ../help/help.inc:259 +#: ../help/help.inc:269 msgid "" "Please enter the password which you want to set for this account. You may " "also generate a random password (12 characters) which will be displayed on " @@ -12116,9 +12120,9 @@ msgstr "" "Please enter the regular expression (e.g. \"/^[0-9a-zA-Z]+$/\") to validate " "this field. For a syntax description see here." -#: ../templates/lists/changePassword.php:537 +#: ../templates/lists/changePassword.php:541 #: ../lib/modules/selfRegistration.inc:580 -#: ../lib/modules/windowsLDSUser.inc:776 ../lib/modules/sambaSamAccount.inc:105 +#: ../lib/modules/windowsLDSUser.inc:783 ../lib/modules/sambaSamAccount.inc:105 #: ../lib/modules/posixAccount.inc:99 ../lib/modules/windowsUser.inc:1062 #: ../lib/modules/customFields.inc:3120 msgid "Please enter the same password in both password fields." @@ -12128,11 +12132,21 @@ msgstr "Please enter the same password in both password fields." msgid "Please enter the security question for the password self reset." msgstr "Please enter the security question for the password self reset." -#: ../help/help.inc:319 +#: ../help/help.inc:183 +msgid "" +"Please enter the server name and port of your SMTP server (e.g. " +"localhost:25). If this setting is left empty then LAM will try to use a " +"locally installed mail server. The server must support TLS." +msgstr "" +"Please enter the server name and port of your SMTP server (e.g. " +"localhost:25). If this setting is left empty then LAM will try to use a " +"locally installed mail server. The server must support TLS." + +#: ../help/help.inc:329 msgid "Please enter the site and secret key you got from Google reCAPTCHA." msgstr "Please enter the site and secret key you got from Google reCAPTCHA." -#: ../help/help.inc:181 +#: ../help/help.inc:179 msgid "Please enter the syslog remote server in format \"server:port\"." msgstr "Please enter the syslog remote server in format \"server:port\"." @@ -12140,7 +12154,7 @@ msgstr "Please enter the syslog remote server in format \"server:port\"." msgid "Please enter the time limit in minutes. 0 means unlimited." msgstr "Please enter the time limit in minutes. 0 means unlimited." -#: ../help/help.inc:217 +#: ../help/help.inc:221 msgid "Please enter the user name and password to connect to the database." msgstr "Please enter the user name and password to connect to the database." @@ -12167,11 +12181,11 @@ msgid "" msgstr "" "Please enter your Puppet variables for this node (e.g. config_exim=true)." -#: ../help/help.inc:325 +#: ../help/help.inc:335 msgid "Please enter your client id for the verification API." msgstr "Please enter your client id for the verification API." -#: ../help/help.inc:235 +#: ../help/help.inc:239 msgid "Please enter your licence key." msgstr "Please enter your license key." @@ -12191,11 +12205,11 @@ msgstr "Please enter your password to change the server preferences:" msgid "Please enter your public SSH key." msgstr "Please enter your public SSH key." -#: ../help/help.inc:327 +#: ../help/help.inc:337 msgid "Please enter your secret key for the verification API." msgstr "Please enter your secret key for the verification API." -#: ../lib/modules/range.inc:483 ../lib/modules/fixed_ip.inc:407 +#: ../lib/modules/range.inc:482 ../lib/modules/fixed_ip.inc:405 msgid "Please fill out the DHCP settings first." msgstr "Please fill out the DHCP settings first." @@ -12213,15 +12227,15 @@ msgstr "Please install and activate the PDO extension for PHP." #: ../templates/upload/masscreate.php:275 msgid "" -"Please provide a CSV formated file with your account data. The cells in the " +"Please provide a CSV formatted file with your account data. The cells in the " "first row must be filled with the column identifiers. The following rows " "represent one account for each row." msgstr "" -"Please provide a CSV formated file with your account data. The cells in the " +"Please provide a CSV formatted file with your account data. The cells in the " "first row must be filled with the column identifiers. The following rows " "represent one account for each row." -#: ../lib/config.inc:2920 +#: ../lib/config.inc:2973 msgid "Please provide a file in DER or PEM format." msgstr "Please provide a file in DER or PEM format." @@ -12233,7 +12247,7 @@ msgstr "Please provide a file to upload." msgid "Please register a security device." msgstr "Please register a security device." -#: ../lib/modules/windowsLDSUser.inc:224 ../lib/modules/windowsLDSUser.inc:324 +#: ../lib/modules/windowsLDSUser.inc:228 ../lib/modules/windowsLDSUser.inc:328 #: ../lib/modules/windowsUser.inc:301 ../lib/modules/windowsUser.inc:401 #: ../lib/modules/inetOrgPerson.inc:694 msgid "" @@ -12241,11 +12255,15 @@ msgid "" msgstr "" "Please select an image file to upload. It must be in JPG format (.jpg/.jpeg)." +#: ../help/help.inc:241 +msgid "Please select how to be warned before your licence expires." +msgstr "Please select how to be warned before your license expires." + #: ../lib/modules/customFields.inc:106 msgid "Please select the field type (e.g. text field)." msgstr "Please select the field type (e.g. text field)." -#: ../help/help.inc:273 +#: ../help/help.inc:283 msgid "" "Please select the font for the PDF file. Dejavu will work on all systems but " "does not support e.g. Chinese and Japanese. The other fonts require that an " @@ -12255,11 +12273,11 @@ msgstr "" "does not support e.g. Chinese and Japanese. The other fonts require that an " "appropriate font is installed on the system where the PDF is opened." -#: ../help/help.inc:360 +#: ../help/help.inc:370 msgid "Please select the suffix where changes should be done." msgstr "Please select the suffix where changes should be done." -#: ../help/help.inc:201 +#: ../help/help.inc:205 msgid "" "Please select the template for the new server profile. You can either select " "an existing server profile or use one of the built-in templates." @@ -12267,7 +12285,7 @@ msgstr "" "Please select the template for the new server profile. You can either select " "an existing server profile or use one of the built-in templates." -#: ../help/help.inc:209 +#: ../help/help.inc:213 msgid "Please select the type of database to use for job data." msgstr "Please select the type of database to use for job data." @@ -12277,10 +12295,10 @@ msgstr "Please select your local time zone." #: ../help/help.inc:157 msgid "" -"Please select your prefered log level. Messages with a lower level will not " +"Please select your preferred log level. Messages with a lower level will not " "be logged." msgstr "" -"Please select your prefered log level. Messages with a lower level will not " +"Please select your preferred log level. Messages with a lower level will not " "be logged." #: ../templates/config/conftypes.php:435 @@ -12301,7 +12319,7 @@ msgid "Please set up your master configuration file (config/config.cfg) first!" msgstr "" "Please set up your master configuration file (config/config.cfg) first!" -#: ../lib/modules/dhcp_settings.inc:573 ../lib/modules/ddns.inc:362 +#: ../lib/modules/dhcp_settings.inc:566 ../lib/modules/ddns.inc:358 msgid "" "Please set your LDAP suffix to an LDAP entry with object class \"dhcpService" "\" or \"dhcpServer\"." @@ -12321,7 +12339,7 @@ msgstr "Please specify at least one operation." msgid "Please specify how your users need to identify themselves." msgstr "Please specify how your users need to identify themselves." -#: ../help/help.inc:177 +#: ../help/help.inc:175 msgid "" "Please specify the URL (e.g. \"https://api.pwnedpasswords.com/range/" "{SHA1PREFIX}\") of your external password check." @@ -12341,7 +12359,7 @@ msgstr "" "Please specify the possible values for this field. Each value can have a " "descriptive label that is displayed to the user." -#: ../help/help.inc:364 +#: ../help/help.inc:374 msgid "" "Please specify which attributes should be changed. The modify operation will " "also add an value if the attribute does not yet exist. To delete all values " @@ -12351,7 +12369,7 @@ msgstr "" "also add an value if the attribute does not yet exist. To delete all values " "of an attribute please leave the value field empty." -#: ../lib/modules/windowsLDSUser.inc:786 ../lib/modules/windowsUser.inc:1079 +#: ../lib/modules/windowsLDSUser.inc:793 ../lib/modules/windowsUser.inc:1079 msgid "Please upload a .jpg/.jpeg file." msgstr "Please upload a .jpg/.jpeg file." @@ -12368,7 +12386,7 @@ msgstr "Policy count: %s" msgid "Policy list has invalid format!" msgstr "Policy list has invalid format!" -#: ../lib/modules/range.inc:544 +#: ../lib/modules/range.inc:543 msgid "Pools" msgstr "Pools" @@ -12411,9 +12429,9 @@ msgstr "" "Possible wildcards are: \"*\" = any character, \"^\" = line start, \"$\" = " "line end" -#: ../lib/modules/windowsLDSUser.inc:165 ../lib/modules/windowsLDSUser.inc:387 -#: ../lib/modules/windowsLDSUser.inc:659 ../lib/modules/windowsLDSUser.inc:870 -#: ../lib/modules/windowsLDSUser.inc:1814 ../lib/modules/windowsUser.inc:183 +#: ../lib/modules/windowsLDSUser.inc:165 ../lib/modules/windowsLDSUser.inc:391 +#: ../lib/modules/windowsLDSUser.inc:663 ../lib/modules/windowsLDSUser.inc:877 +#: ../lib/modules/windowsLDSUser.inc:1832 ../lib/modules/windowsUser.inc:183 #: ../lib/modules/windowsUser.inc:476 ../lib/modules/windowsUser.inc:782 #: ../lib/modules/windowsUser.inc:884 ../lib/modules/windowsUser.inc:985 #: ../lib/modules/windowsUser.inc:1171 ../lib/modules/windowsUser.inc:2863 @@ -12421,18 +12439,18 @@ msgstr "" #: ../lib/modules/inetOrgPerson.inc:339 ../lib/modules/inetOrgPerson.inc:486 #: ../lib/modules/inetOrgPerson.inc:606 ../lib/modules/inetOrgPerson.inc:610 #: ../lib/modules/inetOrgPerson.inc:1268 ../lib/modules/inetOrgPerson.inc:1271 -#: ../lib/modules/inetOrgPerson.inc:1971 ../lib/modules/inetOrgPerson.inc:2030 -#: ../lib/modules/inetOrgPerson.inc:2750 ../lib/modules/inetOrgPerson.inc:4076 -#: ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1969 ../lib/modules/inetOrgPerson.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:2748 ../lib/modules/inetOrgPerson.inc:4073 +#: ../lib/modules/inetOrgPerson.inc:4120 msgid "Post office box" msgstr "Post office box" #: ../lib/modules/inetOrgPerson.inc:88 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:323 ../lib/modules/inetOrgPerson.inc:498 #: ../lib/modules/inetOrgPerson.inc:622 ../lib/modules/inetOrgPerson.inc:1312 -#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2042 -#: ../lib/modules/inetOrgPerson.inc:2711 ../lib/modules/inetOrgPerson.inc:4080 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1972 ../lib/modules/inetOrgPerson.inc:2040 +#: ../lib/modules/inetOrgPerson.inc:2709 ../lib/modules/inetOrgPerson.inc:4077 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Postal address" msgstr "Postal address" @@ -12440,9 +12458,9 @@ msgstr "Postal address" msgid "Postal address, city" msgstr "Postal address, city" -#: ../lib/modules/windowsLDSUser.inc:161 ../lib/modules/windowsLDSUser.inc:393 -#: ../lib/modules/windowsLDSUser.inc:658 ../lib/modules/windowsLDSUser.inc:770 -#: ../lib/modules/windowsLDSUser.inc:871 ../lib/modules/windowsLDSUser.inc:1813 +#: ../lib/modules/windowsLDSUser.inc:161 ../lib/modules/windowsLDSUser.inc:397 +#: ../lib/modules/windowsLDSUser.inc:662 ../lib/modules/windowsLDSUser.inc:777 +#: ../lib/modules/windowsLDSUser.inc:878 ../lib/modules/windowsLDSUser.inc:1831 #: ../lib/modules/windowsUser.inc:179 ../lib/modules/windowsUser.inc:482 #: ../lib/modules/windowsUser.inc:783 ../lib/modules/windowsUser.inc:883 #: ../lib/modules/windowsUser.inc:986 ../lib/modules/windowsUser.inc:1048 @@ -12451,9 +12469,9 @@ msgstr "Postal address, city" #: ../lib/modules/inetOrgPerson.inc:161 ../lib/modules/inetOrgPerson.inc:315 #: ../lib/modules/inetOrgPerson.inc:489 ../lib/modules/inetOrgPerson.inc:614 #: ../lib/modules/inetOrgPerson.inc:618 ../lib/modules/inetOrgPerson.inc:1277 -#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1972 -#: ../lib/modules/inetOrgPerson.inc:2033 ../lib/modules/inetOrgPerson.inc:2737 -#: ../lib/modules/inetOrgPerson.inc:4077 ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1970 +#: ../lib/modules/inetOrgPerson.inc:2031 ../lib/modules/inetOrgPerson.inc:2735 +#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4120 msgid "Postal code" msgstr "Postal code" @@ -12484,7 +12502,7 @@ msgstr "Preference" msgid "Prefix for mailboxes" msgstr "Prefix for mailboxes" -#: ../lib/modules/windowsLDSUser.inc:511 ../lib/modules/windowsUser.inc:694 +#: ../lib/modules/windowsLDSUser.inc:515 ../lib/modules/windowsUser.inc:694 #: ../lib/modules/inetOrgPerson.inc:269 msgid "President" msgstr "President" @@ -12509,15 +12527,15 @@ msgstr "Price per page" #: ../lib/modules/eduPerson.inc:87 ../lib/modules/eduPerson.inc:167 #: ../lib/modules/eduPerson.inc:228 ../lib/modules/eduPerson.inc:282 -#: ../lib/modules/eduPerson.inc:546 +#: ../lib/modules/eduPerson.inc:540 msgid "Primary affiliation" msgstr "Primary affiliation" #: ../lib/modules/posixAccount.inc:224 ../lib/modules/posixAccount.inc:286 #: ../lib/modules/posixAccount.inc:303 ../lib/modules/posixAccount.inc:349 #: ../lib/modules/posixAccount.inc:423 ../lib/modules/posixAccount.inc:461 -#: ../lib/modules/posixAccount.inc:1634 ../lib/modules/posixAccount.inc:1975 -#: ../lib/modules/posixAccount.inc:2015 ../lib/modules/posixAccount.inc:2111 +#: ../lib/modules/posixAccount.inc:1680 ../lib/modules/posixAccount.inc:2030 +#: ../lib/modules/posixAccount.inc:2070 ../lib/modules/posixAccount.inc:2165 msgid "Primary group" msgstr "Primary group" @@ -12533,13 +12551,13 @@ msgstr "Primary name server" #: ../lib/modules/eduPerson.inc:129 ../lib/modules/eduPerson.inc:205 #: ../lib/modules/eduPerson.inc:231 ../lib/modules/eduPerson.inc:246 -#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:553 +#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:547 msgid "Primary organisational unit" msgstr "Primary organizational unit" #: ../lib/modules/eduPerson.inc:113 ../lib/modules/eduPerson.inc:160 #: ../lib/modules/eduPerson.inc:229 ../lib/modules/eduPerson.inc:276 -#: ../lib/modules/eduPerson.inc:548 +#: ../lib/modules/eduPerson.inc:542 msgid "Principal name" msgstr "Principal name" @@ -12656,7 +12674,7 @@ msgstr "Profile management" #: ../templates/selfService/profManage.php:221 #: ../templates/selfService/adminLogin.php:111 #: ../templates/profedit/profilepage.php:190 -#: ../templates/profedit/profilemain.php:357 ../help/help.inc:242 +#: ../templates/profedit/profilemain.php:357 ../help/help.inc:252 msgid "Profile name" msgstr "Profile name" @@ -12717,7 +12735,7 @@ msgstr "Program to execute for all incoming mails." msgid "Progress" msgstr "Progress" -#: ../help/help.inc:321 +#: ../help/help.inc:331 msgid "Protect the self service login with a captcha." msgstr "Protect the self service login with a captcha." @@ -12735,11 +12753,11 @@ msgstr "Provider" msgid "Proxy URL" msgstr "Proxy URL" -#: ../lib/types/user.inc:111 ../lib/modules/windowsLDSUser.inc:311 -#: ../lib/modules/windowsLDSUser.inc:315 ../lib/modules/windowsLDSUser.inc:454 -#: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:879 -#: ../lib/modules/windowsLDSUser.inc:1825 -#: ../lib/modules/windowsLDSUser.inc:2146 ../lib/modules/windowsUser.inc:388 +#: ../lib/types/user.inc:111 ../lib/modules/windowsLDSUser.inc:315 +#: ../lib/modules/windowsLDSUser.inc:319 ../lib/modules/windowsLDSUser.inc:458 +#: ../lib/modules/windowsLDSUser.inc:674 ../lib/modules/windowsLDSUser.inc:886 +#: ../lib/modules/windowsLDSUser.inc:1843 +#: ../lib/modules/windowsLDSUser.inc:2185 ../lib/modules/windowsUser.inc:388 #: ../lib/modules/windowsUser.inc:392 ../lib/modules/windowsUser.inc:611 #: ../lib/modules/windowsUser.inc:907 ../lib/modules/windowsUser.inc:1181 #: ../lib/modules/windowsUser.inc:2874 ../lib/modules/windowsUser.inc:3100 @@ -12859,7 +12877,7 @@ msgstr "Question" msgid "Quota" msgstr "Quota" -#: ../lib/modules/quota.inc:781 +#: ../lib/modules/quota.inc:844 #, php-format msgid "Quota for %s on %s" msgstr "Quota for %s on %s" @@ -12927,7 +12945,7 @@ msgstr "Quota warning limit" #: ../templates/profedit/profilepage.php:216 ../lib/modules/dynamicList.inc:58 #: ../lib/modules/dynamicList.inc:245 ../lib/modules/selfRegistration.inc:97 #: ../lib/modules/selfRegistration.inc:200 ../lib/modules.inc:1075 -#: ../help/help.inc:238 ../help/help.inc:252 +#: ../help/help.inc:248 ../help/help.inc:262 msgid "RDN identifier" msgstr "RDN identifier" @@ -12971,18 +12989,18 @@ msgstr "Radio buttons" msgid "Radius profile for this user." msgstr "Radius profile for this user." -#: ../lib/modules/range.inc:100 ../lib/modules/range.inc:508 -#: ../lib/modules/range.inc:568 +#: ../lib/modules/range.inc:99 ../lib/modules/range.inc:507 +#: ../lib/modules/range.inc:567 msgid "Range from" msgstr "Range from" -#: ../lib/modules/range.inc:104 ../lib/modules/range.inc:521 -#: ../lib/modules/range.inc:570 +#: ../lib/modules/range.inc:103 ../lib/modules/range.inc:520 +#: ../lib/modules/range.inc:569 msgid "Range to" msgstr "Range to" -#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:82 -#: ../lib/modules/range.inc:130 ../lib/modules/range.inc:764 +#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:81 +#: ../lib/modules/range.inc:129 ../lib/modules/range.inc:763 msgid "Ranges" msgstr "Ranges" @@ -12992,11 +13010,11 @@ msgstr "Read" #: ../templates/config/confmain.php:217 ../templates/config/conftypes.php:268 #: ../lib/modules/customFields.inc:109 ../lib/modules/customFields.inc:1978 -#: ../help/help.inc:196 +#: ../help/help.inc:200 msgid "Read-only" msgstr "Read-only" -#: ../lib/modules/inetOrgPerson.inc:4119 +#: ../lib/modules/inetOrgPerson.inc:4116 msgid "Read-only fields" msgstr "Read-only fields" @@ -13086,14 +13104,14 @@ msgstr "Recursively copy all children of this object as well." #: ../templates/config/profmanage.php:207 #: ../templates/config/profmanage.php:262 -#: ../templates/config/mainmanage.php:494 ../templates/config/confmain.php:522 +#: ../templates/config/mainmanage.php:534 ../templates/config/confmain.php:522 #: ../lib/modules/selfRegistration.inc:417 -#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3175 +#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3229 #: ../lib/modules/windowsUser.inc:3059 msgid "Reenter password" msgstr "Reenter password" -#: ../templates/config/confmain.php:236 ../help/help.inc:204 +#: ../templates/config/confmain.php:236 ../help/help.inc:208 msgid "Referential integrity overlay" msgstr "Referential integrity overlay" @@ -13106,7 +13124,7 @@ msgstr "Referrals" #: ../templates/3rdParty/pla/lib/TemplateRender.php:984 #: ../templates/3rdParty/pla/lib/TemplateRender.php:985 #: ../templates/3rdParty/pla/lib/HTMLTree.php:237 -#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:888 +#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:887 msgid "Refresh" msgstr "Refresh" @@ -13140,9 +13158,9 @@ msgstr "Register new key" #: ../lib/modules/inetOrgPerson.inc:90 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:331 ../lib/modules/inetOrgPerson.inc:501 #: ../lib/modules/inetOrgPerson.inc:626 ../lib/modules/inetOrgPerson.inc:1349 -#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2045 -#: ../lib/modules/inetOrgPerson.inc:2724 ../lib/modules/inetOrgPerson.inc:4081 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2043 +#: ../lib/modules/inetOrgPerson.inc:2722 ../lib/modules/inetOrgPerson.inc:4078 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Registered address" msgstr "Registered address" @@ -13198,20 +13216,20 @@ msgstr "Reloading" msgid "Remember user name" msgstr "Remember user name" -#: ../templates/config/mainmanage.php:414 +#: ../templates/config/mainmanage.php:454 msgid "Remote" msgstr "Remote" -#: ../templates/config/mainmanage.php:445 ../help/help.inc:180 +#: ../templates/config/mainmanage.php:485 ../help/help.inc:178 msgid "Remote server" msgstr "Remote server" #: ../templates/pdfedit/pdfpage.php:270 ../templates/pdfedit/pdfpage.php:345 #: ../lib/modules/locking389ds.inc:182 ../lib/modules/mitKerberos.inc:714 -#: ../lib/modules/windowsLDSUser.inc:1405 ../lib/modules/qmailUser.inc:721 +#: ../lib/modules/windowsLDSUser.inc:1423 ../lib/modules/qmailUser.inc:721 #: ../lib/modules/windowsHost.inc:201 ../lib/modules/sambaSamAccount.inc:1496 #: ../lib/modules/windowsUser.inc:1735 ../lib/modules/windowsUser.inc:2151 -#: ../lib/modules/kolabUser.inc:723 ../lib/modules/shadowAccount.inc:506 +#: ../lib/modules/kolabUser.inc:722 ../lib/modules/shadowAccount.inc:506 #: ../lib/modules/shadowAccount.inc:572 ../lib/modules/freeRadius.inc:565 #: ../lib/modules/windowsLDSGroup.inc:184 #: ../lib/modules/heimdalKerberos.inc:613 ../lib/modules/windowsGroup.inc:358 @@ -13272,7 +13290,7 @@ msgstr "Remove Samba 3 extension" msgid "Remove Shadow account extension" msgstr "Remove Shadow account extension" -#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1698 +#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1753 msgid "Remove Unix extension" msgstr "Remove Unix extension" @@ -13310,7 +13328,7 @@ msgstr "Remove host extension" msgid "Remove mail routing extension" msgstr "Remove mail routing extension" -#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1692 +#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1747 #: ../lib/modules/inetOrgPerson.inc:1585 msgid "Remove password" msgstr "Remove password" @@ -13327,7 +13345,7 @@ msgstr "Remove qmail extension" #: ../lib/modules/zarafaContact.inc:450 ../lib/modules/zarafaGroup.inc:464 #: ../lib/modules/device.inc:273 ../lib/modules/kopanoGroup.inc:415 #: ../lib/modules/zarafaUser.inc:953 ../lib/modules/kopanoContact.inc:401 -#: ../lib/modules/inetOrgPerson.inc:1796 ../lib/modules/kopanoUser.inc:875 +#: ../lib/modules/inetOrgPerson.inc:1794 ../lib/modules/kopanoUser.inc:875 #: ../lib/modules/windowsLDSGroup.inc:462 ../lib/modules/qmailGroup.inc:670 #: ../lib/modules/organizationalRole.inc:371 #: ../lib/modules/windowsGroup.inc:685 ../lib/modules/groupOfNames.inc:400 @@ -13344,7 +13362,7 @@ msgstr "Remove this account type" msgid "Remove user from alias entry." msgstr "Remove user from alias entry." -#: ../lib/modules/posixGroup.inc:1007 ../lib/modules/posixGroup.inc:1050 +#: ../lib/modules/posixGroup.inc:1008 ../lib/modules/posixGroup.inc:1051 msgid "Removed users" msgstr "Removed users" @@ -13409,7 +13427,7 @@ msgstr "Renewable lifetime" msgid "Renewable lifetime must be a number." msgstr "Renewable lifetime must be a number." -#: ../templates/lists/changePassword.php:359 +#: ../templates/lists/changePassword.php:363 #: ../lib/modules/passwordSelfReset.inc:1302 ../lib/modules.inc:1119 msgid "Repeat password" msgstr "Repeat password" @@ -13419,12 +13437,12 @@ msgid "Replaced $user or $group in homedir." msgstr "Replaced $user or $group in homedir." #: ../templates/config/confmain.php:360 ../lib/passwordExpirationJob.inc:84 -#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:347 -#: ../help/help.inc:384 +#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:357 +#: ../help/help.inc:394 msgid "Reply-to address" msgstr "Reply-to address" -#: ../templates/config/confmain.php:618 +#: ../templates/config/confmain.php:620 msgid "Reply-to address for password mails is invalid." msgstr "Reply-to address for password mails is invalid." @@ -13537,8 +13555,8 @@ msgid "Reverse DNS entries (\"PTR\" records)" msgstr "Reverse DNS entries (\"PTR\" records)" #: ../lib/modules/ddns.inc:105 ../lib/modules/ddns.inc:113 -#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:395 -#: ../lib/modules/ddns.inc:423 +#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:391 +#: ../lib/modules/ddns.inc:419 msgid "Reverse zone name" msgstr "Reverse zone name" @@ -13585,9 +13603,9 @@ msgstr "Room" #: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:413 #: ../lib/modules/inetOrgPerson.inc:507 ../lib/modules/inetOrgPerson.inc:705 #: ../lib/modules/inetOrgPerson.inc:1386 ../lib/modules/inetOrgPerson.inc:1389 -#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2051 -#: ../lib/modules/inetOrgPerson.inc:2763 ../lib/modules/inetOrgPerson.inc:4083 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2049 +#: ../lib/modules/inetOrgPerson.inc:2761 ../lib/modules/inetOrgPerson.inc:4080 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Room number" msgstr "Room number" @@ -13640,7 +13658,7 @@ msgstr "Run user" msgid "Run users" msgstr "Run users" -#: ../lib/modules/windowsLDSUser.inc:371 ../lib/modules/windowsUser.inc:460 +#: ../lib/modules/windowsLDSUser.inc:375 ../lib/modules/windowsUser.inc:460 msgid "S.M." msgstr "S.M." @@ -13656,6 +13674,14 @@ msgstr "SIP URI for a realtime peer." msgid "SIP user agent identification." msgstr "SIP user agent identification." +#: ../help/help.inc:187 +msgid "SMTP password" +msgstr "SMTP password" + +#: ../help/help.inc:185 +msgid "SMTP user name" +msgstr "SMTP user name" + #: ../lib/modules/bindDLZ.inc:369 ../lib/modules/bindDLZ.inc:375 #: ../lib/modules/bindDLZ.inc:381 ../lib/modules/bindDLZ.inc:387 #: ../lib/modules/bindDLZ.inc:393 ../lib/modules/bindDLZ.inc:400 @@ -13696,12 +13722,12 @@ msgstr "SSH connection" msgid "SSH connection established." msgstr "SSH connection established." -#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:718 -#: ../help/help.inc:230 +#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:720 +#: ../help/help.inc:234 msgid "SSH key file" msgstr "SSH key file" -#: ../templates/config/confmain.php:287 ../help/help.inc:232 +#: ../templates/config/confmain.php:287 ../help/help.inc:236 msgid "SSH key password" msgstr "SSH key password" @@ -13720,7 +13746,7 @@ msgstr "SSH public keys" msgid "SSL certificate" msgstr "SSL certificate" -#: ../templates/config/mainmanage.php:323 +#: ../templates/config/mainmanage.php:363 msgid "SSL certificates" msgstr "SSL certificates" @@ -13733,8 +13759,8 @@ msgstr "SSL certificates" msgid "SSL port" msgstr "SSL port" -#: ../templates/lists/changePassword.php:409 -#: ../templates/lists/changePassword.php:446 +#: ../templates/lists/changePassword.php:413 +#: ../templates/lists/changePassword.php:450 msgid "Samba" msgstr "Samba" @@ -13753,14 +13779,14 @@ msgstr "Samba 3 domain SID is invalid!" msgid "Samba 3 domain entries" msgstr "Samba 3 domain entries" -#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2152 +#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2206 msgid "Samba ID pool" msgstr "Samba ID pool" -#: ../lib/modules/posixGroup.inc:463 ../lib/modules/posixGroup.inc:574 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixAccount.inc:121 -#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2199 -#: ../lib/modules/posixAccount.inc:2270 +#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixGroup.inc:575 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:121 +#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2253 +#: ../lib/modules/posixAccount.inc:2324 msgid "Samba ID pool DN" msgstr "Samba ID pool DN" @@ -13829,7 +13855,7 @@ msgstr "Saturday" #: ../templates/profedit/profilepage.php:242 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1120 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1124 -#: ../lib/modules/inetOrgPerson.inc:3172 ../lib/modules/customFields.inc:4409 +#: ../lib/modules/inetOrgPerson.inc:3170 ../lib/modules/customFields.inc:4409 #: ../lib/modules.inc:1293 msgid "Save" msgstr "Save" @@ -13868,23 +13894,27 @@ msgstr "Schema test" #: ../lib/modules/eduPerson.inc:91 ../lib/modules/eduPerson.inc:95 #: ../lib/modules/eduPerson.inc:174 ../lib/modules/eduPerson.inc:232 -#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:547 +#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:541 msgid "Scoped affiliations" msgstr "Scoped affiliations" +#: ../templates/config/mainmanage.php:322 +msgid "Screen" +msgstr "Screen" + #: ../help/help.inc:105 msgid "Script path" msgstr "Script path" -#: ../templates/config/confmain.php:669 +#: ../templates/config/confmain.php:671 msgid "Script path is invalid!" msgstr "Script path is invalid!" -#: ../templates/config/confmain.php:706 +#: ../templates/config/confmain.php:708 msgid "Script rights are invalid!" msgstr "Script rights are invalid!" -#: ../templates/config/confmain.php:672 +#: ../templates/config/confmain.php:674 msgid "Script server is invalid!" msgstr "Script server is invalid!" @@ -13893,7 +13923,7 @@ msgid "Script servers" msgstr "Script servers" #: ../templates/tools/serverInfo.php:272 ../templates/tools/serverInfo.php:348 -#: ../templates/config/mainmanage.php:479 +#: ../templates/config/mainmanage.php:519 #: ../templates/3rdParty/pla/lib/QueryRender.php:60 #: ../templates/3rdParty/pla/lib/QueryRender.php:165 #: ../templates/3rdParty/pla/lib/ds_ldap_pla.php:577 @@ -13908,8 +13938,8 @@ msgstr "Search Results" #: ../lib/modules/dhcp_settings.inc:203 ../lib/modules/dhcp_settings.inc:207 #: ../lib/modules/dhcp_settings.inc:226 ../lib/modules/dhcp_settings.inc:235 -#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:606 -#: ../lib/modules/dhcp_settings.inc:712 +#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:598 +#: ../lib/modules/dhcp_settings.inc:704 msgid "Search domains" msgstr "Search domains" @@ -13917,7 +13947,7 @@ msgstr "Search domains" #: ../templates/3rdParty/pla/lib/QueryRender.php:135 #: ../templates/3rdParty/pla/lib/export_functions.php:201 #: ../templates/3rdParty/pla/htdocs/export_form.php:81 ../lib/export.inc:256 -#: ../help/help.inc:371 +#: ../help/help.inc:381 msgid "Search filter" msgstr "Search filter" @@ -13937,11 +13967,11 @@ msgid "Search tree suffix for users" msgstr "Search tree suffix for users" #: ../templates/config/confmain.php:504 -#: ../templates/selfService/adminMain.php:525 ../help/help.inc:326 +#: ../templates/selfService/adminMain.php:525 ../help/help.inc:336 msgid "Secret key" msgstr "Secret key" -#: ../templates/selfService/adminMain.php:560 ../help/help.inc:320 +#: ../templates/selfService/adminMain.php:560 ../help/help.inc:330 msgid "Secure login" msgstr "Secure login" @@ -13980,7 +14010,7 @@ msgstr "" msgid "Security questions" msgstr "Security questions" -#: ../templates/config/mainmanage.php:310 ../templates/config/confmain.php:421 +#: ../templates/config/mainmanage.php:350 ../templates/config/confmain.php:421 msgid "Security settings" msgstr "Security settings" @@ -13988,7 +14018,7 @@ msgstr "Security settings" msgid "See also" msgstr "See also" -#: ../lib/account.inc:1005 +#: ../lib/account.inc:1009 msgid "See the manual for instructions to solve this problem." msgstr "See the manual for instructions to solve this problem." @@ -14025,10 +14055,10 @@ msgstr "Select one or more alias entries from the list to add the recipient." msgid "Select user" msgstr "Select user" -#: ../lib/modules/windowsLDSUser.inc:1241 ../lib/modules/posixAccount.inc:1781 -#: ../lib/modules/posixAccount.inc:1812 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1836 +#: ../lib/modules/posixAccount.inc:1867 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Selected groups" msgstr "Selected groups" @@ -14041,7 +14071,7 @@ msgstr "Selected modules" msgid "Selected roles" msgstr "Selected roles" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Selected users" msgstr "Selected users" @@ -14081,10 +14111,10 @@ msgstr "Send notification mail" msgid "Send password via mail" msgstr "Send password via mail" -#: ../templates/lists/changePassword.php:320 -#: ../templates/lists/changePassword.php:364 +#: ../templates/lists/changePassword.php:324 +#: ../templates/lists/changePassword.php:368 #: ../templates/config/confmain.php:345 ../lib/modules.inc:1144 -#: ../help/help.inc:264 +#: ../help/help.inc:274 msgid "Send via mail" msgstr "Send via mail" @@ -14129,7 +14159,7 @@ msgstr "" "Sends the old password together with the new password when the user sets a " "new password." -#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:265 +#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:275 msgid "" "Sends the password to the user via mail. Please edit your LAM server profile " "to setup the mail settings." @@ -14137,7 +14167,7 @@ msgstr "" "Sends the password to the user via mail. Please edit your LAM server profile " "to setup the mail settings." -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/selfService2Factor.php:168 #: ../templates/login2Factor.php:154 ../lib/types/host.inc:102 #: ../lib/env.inc:157 ../lib/modules/device.inc:68 ../lib/modules/device.inc:91 @@ -14171,7 +14201,7 @@ msgstr "Server" msgid "Server address" msgstr "Server address" -#: ../templates/config/confmain.php:564 +#: ../templates/config/confmain.php:563 #: ../templates/selfService/adminMain.php:246 msgid "Server address is invalid!" msgstr "Server address is invalid!" @@ -14214,7 +14244,7 @@ msgstr "Service name (e.g. sshd, imap, ftp). Enter one service per entry." msgid "Services (\"SRV\" records)" msgstr "Services (\"SRV\" records)" -#: ../templates/config/mainmanage.php:312 ../help/help.inc:154 +#: ../templates/config/mainmanage.php:352 ../help/help.inc:154 msgid "Session timeout" msgstr "Session timeout" @@ -14250,7 +14280,7 @@ msgstr "Set also for Windows" msgid "Set password" msgstr "Set password" -#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2303 +#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2357 msgid "Set primary group as memberUid" msgstr "Set primary group as memberUid" @@ -14264,7 +14294,7 @@ msgstr "Set profile password" msgid "Set random password" msgstr "Set random password" -#: ../templates/lists/changePassword.php:350 +#: ../templates/lists/changePassword.php:354 msgid "Set specific password" msgstr "Set specific password" @@ -14288,7 +14318,7 @@ msgstr "" msgid "Set to \"true\" to create the mailbox." msgstr "Set to \"true\" to create the mailbox." -#: ../help/help.inc:241 +#: ../help/help.inc:251 msgid "Set to true to overwrite an existing LDAP entry." msgstr "Set to true to overwrite an existing LDAP entry." @@ -14314,7 +14344,7 @@ msgstr "" msgid "Sets the delivery mode (e.g. disable mail forwarding)." msgstr "Sets the delivery mode (e.g. disable mail forwarding)." -#: ../lib/modules/posixGroup.inc:435 +#: ../lib/modules/posixGroup.inc:436 msgid "Sets the group password." msgstr "Sets the group password." @@ -14324,7 +14354,7 @@ msgid "" msgstr "" "Sets the preference for the mail server. Lower values have higher priority." -#: ../help/help.inc:197 +#: ../help/help.inc:201 msgid "Sets this account type to read-only." msgstr "Sets this account type to read-only." @@ -14351,7 +14381,7 @@ msgstr "Setting this will make shared folders invisible to this user." #: ../lib/types/user.inc:366 ../lib/types/user.inc:369 #: ../lib/types/user.inc:1076 ../lib/types/user.inc:1079 #: ../lib/modules/shadowAccount.inc:90 ../lib/modules/shadowAccount.inc:875 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/shadowAccount.inc:1072 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/shadowAccount.inc:1071 msgid "Shadow" msgstr "Shadow" @@ -14445,16 +14475,16 @@ msgstr "Size limit in bytes for a single mail. Larger mails will be bounced." #: ../templates/3rdParty/pla/htdocs/update_confirm.php:55 #: ../templates/3rdParty/pla/htdocs/create_confirm.php:81 -#: ../lib/2factor.inc:565 +#: ../lib/2factor.inc:564 msgid "Skip" msgstr "Skip" -#: ../lib/modules/quota.inc:712 ../lib/modules/systemQuotas.inc:371 +#: ../lib/modules/quota.inc:775 ../lib/modules/systemQuotas.inc:371 msgid "Soft block" msgstr "Soft block" -#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:564 ../lib/modules/systemQuotas.inc:126 +#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:624 ../lib/modules/systemQuotas.inc:126 msgid "Soft block limit" msgstr "Soft block limit" @@ -14462,7 +14492,7 @@ msgstr "Soft block limit" msgid "Soft block limit." msgstr "Soft block limit." -#: ../lib/modules/quota.inc:714 ../lib/modules/systemQuotas.inc:373 +#: ../lib/modules/quota.inc:777 ../lib/modules/systemQuotas.inc:373 msgid "Soft inode" msgstr "Soft inode" @@ -14470,8 +14500,8 @@ msgstr "Soft inode" msgid "Soft inode (files) limit." msgstr "Soft inode (files) limit." -#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:570 ../lib/modules/systemQuotas.inc:130 +#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:630 ../lib/modules/systemQuotas.inc:130 msgid "Soft inode limit" msgstr "Soft inode limit" @@ -14506,7 +14536,7 @@ msgstr "" msgid "Sorry this help number ({bold}%s{endbold}) is not available." msgstr "Sorry this help number ({bold}%s{endbold}) is not available." -#: ../lib/lists.inc:420 +#: ../lib/lists.inc:419 msgid "Sort sequence" msgstr "Sort sequence" @@ -14554,7 +14584,7 @@ msgstr "" "Specifies if LAM should automatically follow referrals. Activate if you use " "referrals in your LDAP directory." -#: ../help/help.inc:350 +#: ../help/help.inc:360 msgid "" "Specifies if password mails may be sent to mail addresses other than the " "user's LDAP mail address." @@ -14562,11 +14592,11 @@ msgstr "" "Specifies if password mails may be sent to mail addresses other than the " "user's LDAP mail address." -#: ../help/help.inc:346 +#: ../help/help.inc:356 msgid "Specifies if the mail should be sent as text or HTML." msgstr "Specifies if the mail should be sent as text or HTML." -#: ../help/help.inc:175 +#: ../help/help.inc:173 msgid "" "Specifies if the password must not contain 3 or more characters of the user/" "first/last name." @@ -14574,7 +14604,7 @@ msgstr "" "Specifies if the password must not contain 3 or more characters of the user/" "first/last name." -#: ../help/help.inc:173 +#: ../help/help.inc:171 msgid "Specifies if the password must not contain the user name." msgstr "Specifies if the password must not contain the user name." @@ -14682,7 +14712,7 @@ msgstr "" "Specifies the minimum number of characters that will be accepted in a " "password." -#: ../help/help.inc:171 +#: ../help/help.inc:169 msgid "Specifies the number of above password rules that must be fulfilled." msgstr "Specifies the number of above password rules that must be fulfilled." @@ -14802,9 +14832,9 @@ msgstr "Standard LDAP search filter. Example: (&(sn=Smith)(givenName=David))" msgid "Start time" msgstr "Start time" -#: ../lib/modules/windowsLDSUser.inc:173 ../lib/modules/windowsLDSUser.inc:405 -#: ../lib/modules/windowsLDSUser.inc:661 ../lib/modules/windowsLDSUser.inc:873 -#: ../lib/modules/windowsLDSUser.inc:1816 ../lib/modules/windowsUser.inc:191 +#: ../lib/modules/windowsLDSUser.inc:173 ../lib/modules/windowsLDSUser.inc:409 +#: ../lib/modules/windowsLDSUser.inc:665 ../lib/modules/windowsLDSUser.inc:880 +#: ../lib/modules/windowsLDSUser.inc:1834 ../lib/modules/windowsUser.inc:191 #: ../lib/modules/windowsUser.inc:494 ../lib/modules/windowsUser.inc:785 #: ../lib/modules/windowsUser.inc:886 ../lib/modules/windowsUser.inc:983 #: ../lib/modules/windowsUser.inc:1174 ../lib/modules/windowsUser.inc:2865 @@ -14812,9 +14842,9 @@ msgstr "Start time" #: ../lib/modules/inetOrgPerson.inc:453 ../lib/modules/inetOrgPerson.inc:495 #: ../lib/modules/inetOrgPerson.inc:725 ../lib/modules/inetOrgPerson.inc:729 #: ../lib/modules/inetOrgPerson.inc:1295 ../lib/modules/inetOrgPerson.inc:1298 -#: ../lib/modules/inetOrgPerson.inc:1988 ../lib/modules/inetOrgPerson.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:2789 ../lib/modules/inetOrgPerson.inc:4079 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2037 +#: ../lib/modules/inetOrgPerson.inc:2787 ../lib/modules/inetOrgPerson.inc:4076 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "State" msgstr "State" @@ -14838,21 +14868,21 @@ msgstr "Status" msgid "Step %s of %s" msgstr "Step %s of %s" -#: ../lib/modules/windowsLDSUser.inc:347 ../lib/modules/windowsUser.inc:436 +#: ../lib/modules/windowsLDSUser.inc:351 ../lib/modules/windowsUser.inc:436 #: ../lib/modules/inetOrgPerson.inc:238 msgid "Steve" msgstr "Steve" -#: ../lib/modules/windowsLDSUser.inc:359 ../lib/modules/windowsLDSUser.inc:365 -#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2427 +#: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:369 +#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2481 #: ../lib/modules/windowsUser.inc:448 ../lib/modules/windowsUser.inc:454 -#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2196 -#: ../lib/modules/inetOrgPerson.inc:2221 +#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2194 +#: ../lib/modules/inetOrgPerson.inc:2219 #: ../lib/modules/asteriskVoicemail.inc:173 msgid "Steve Miller" msgstr "Steve Miller" -#: ../lib/modules/posixAccount.inc:2435 +#: ../lib/modules/posixAccount.inc:2489 msgid "Steve Miller,Room 2.14,123-123-1234,123-123-1234" msgstr "Steve Miller,Room 2.14,123-123-1234,123-123-1234" @@ -14869,8 +14899,8 @@ msgstr "" "recommended." #: ../lib/types/user.inc:115 ../lib/modules/windowsLDSUser.inc:177 -#: ../lib/modules/windowsLDSUser.inc:381 ../lib/modules/windowsLDSUser.inc:662 -#: ../lib/modules/windowsLDSUser.inc:869 ../lib/modules/windowsLDSUser.inc:1817 +#: ../lib/modules/windowsLDSUser.inc:385 ../lib/modules/windowsLDSUser.inc:666 +#: ../lib/modules/windowsLDSUser.inc:876 ../lib/modules/windowsLDSUser.inc:1835 #: ../lib/modules/windowsUser.inc:195 ../lib/modules/windowsUser.inc:470 #: ../lib/modules/windowsUser.inc:781 ../lib/modules/windowsUser.inc:887 #: ../lib/modules/windowsUser.inc:982 ../lib/modules/windowsUser.inc:1170 @@ -14879,9 +14909,9 @@ msgstr "" #: ../lib/modules/inetOrgPerson.inc:307 ../lib/modules/inetOrgPerson.inc:483 #: ../lib/modules/inetOrgPerson.inc:598 ../lib/modules/inetOrgPerson.inc:602 #: ../lib/modules/inetOrgPerson.inc:1259 ../lib/modules/inetOrgPerson.inc:1262 -#: ../lib/modules/inetOrgPerson.inc:1970 ../lib/modules/inetOrgPerson.inc:2027 -#: ../lib/modules/inetOrgPerson.inc:2698 ../lib/modules/inetOrgPerson.inc:4075 -#: ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1968 ../lib/modules/inetOrgPerson.inc:2025 +#: ../lib/modules/inetOrgPerson.inc:2696 ../lib/modules/inetOrgPerson.inc:4072 +#: ../lib/modules/inetOrgPerson.inc:4118 msgid "Street" msgstr "Street" @@ -14907,8 +14937,8 @@ msgstr "Subgroups" #: ../lib/modules/selfRegistration.inc:218 #: ../lib/modules/passwordSelfReset.inc:123 #: ../lib/modules/passwordSelfReset.inc:664 -#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:338 -#: ../help/help.inc:388 +#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:348 +#: ../help/help.inc:398 msgid "Subject" msgstr "Subject" @@ -14921,14 +14951,14 @@ msgstr "Submit" #: ../lib/types/dhcp.inc:97 ../lib/modules/dhcp_settings.inc:147 #: ../lib/modules/dhcp_settings.inc:214 ../lib/modules/dhcp_settings.inc:230 -#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:583 -#: ../lib/modules/dhcp_settings.inc:719 +#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:575 +#: ../lib/modules/dhcp_settings.inc:711 msgid "Subnet" msgstr "Subnet" #: ../lib/modules/dhcp_settings.inc:187 ../lib/modules/dhcp_settings.inc:222 #: ../lib/modules/dhcp_settings.inc:242 ../lib/modules/dhcp_settings.inc:315 -#: ../lib/modules/dhcp_settings.inc:635 ../lib/modules/dhcp_settings.inc:716 +#: ../lib/modules/dhcp_settings.inc:627 ../lib/modules/dhcp_settings.inc:708 msgid "Subnet mask" msgstr "Subnet mask" @@ -14974,12 +15004,12 @@ msgstr "Sudo roles with higher order numbers are used if multiple roles match." msgid "Suffix" msgstr "Suffix" -#: ../lib/modules/posixGroup.inc:454 ../lib/modules/posixGroup.inc:583 +#: ../lib/modules/posixGroup.inc:455 ../lib/modules/posixGroup.inc:584 msgid "Suffix for GID/group name check" msgstr "Suffix for GID/group name check" -#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2214 -#: ../lib/modules/posixAccount.inc:2285 +#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2268 +#: ../lib/modules/posixAccount.inc:2339 msgid "Suffix for UID/user name check" msgstr "Suffix for UID/user name check" @@ -15042,11 +15072,11 @@ msgstr "Sync Unix password with Windows password" msgid "Sync Unix to Windows" msgstr "Sync Unix to Windows" -#: ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:1921 msgid "Sync Unix to group of names" msgstr "Sync Unix to group of names" -#: ../lib/modules/posixAccount.inc:1880 +#: ../lib/modules/posixAccount.inc:1935 msgid "Sync Windows to Unix" msgstr "Sync Windows to Unix" @@ -15054,12 +15084,12 @@ msgstr "Sync Windows to Unix" msgid "Sync fields with page layout" msgstr "Sync fields with page layout" -#: ../lib/modules/posixGroup.inc:331 ../lib/modules/posixGroup.inc:340 +#: ../lib/modules/posixGroup.inc:332 ../lib/modules/posixGroup.inc:341 #, php-format msgid "Sync from %s" msgstr "Sync from %s" -#: ../lib/modules/posixAccount.inc:1870 +#: ../lib/modules/posixAccount.inc:1925 msgid "Sync group of names to Unix" msgstr "Sync group of names to Unix" @@ -15067,7 +15097,7 @@ msgstr "Sync group of names to Unix" msgid "Sync group of names to Windows" msgstr "Sync group of names to Windows" -#: ../lib/modules/posixAccount.inc:1861 ../lib/modules/posixAccount.inc:2229 +#: ../lib/modules/posixAccount.inc:1916 ../lib/modules/posixAccount.inc:2283 #: ../lib/modules/windowsUser.inc:1863 ../lib/modules/windowsUser.inc:3732 msgid "Sync groups" msgstr "Sync groups" @@ -15090,7 +15120,7 @@ msgstr "Syntaxes" msgid "System administrator" msgstr "System administrator" -#: ../templates/config/mainmanage.php:412 +#: ../templates/config/mainmanage.php:452 msgid "System logging" msgstr "System logging" @@ -15098,6 +15128,11 @@ msgstr "System logging" msgid "TLS cannot be combined with ldaps://." msgstr "TLS cannot be combined with ldaps://." +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:342 ../help/help.inc:244 +msgid "TO address" +msgstr "TO address" + #: ../lib/modules/bindDLZ.inc:130 ../lib/modules/bindDLZ.inc:442 #: ../lib/modules/bindDLZ.inc:447 ../lib/modules/bindDLZ.inc:454 #: ../lib/modules/bindDLZ.inc:578 @@ -15109,8 +15144,8 @@ msgstr "TXT record" msgid "TXT records" msgstr "TXT records" -#: ../lib/passwordExpirationJob.inc:498 ../lib/passwordExpirationJob.inc:532 -#: ../help/help.inc:418 +#: ../lib/passwordExpirationJob.inc:496 ../lib/passwordExpirationJob.inc:530 +#: ../help/help.inc:428 msgid "Target DN" msgstr "Target DN" @@ -15136,11 +15171,11 @@ msgstr "Target server profile" msgid "Technical name" msgstr "Technical name" -#: ../templates/lists/changePassword.php:287 ../lib/types/user.inc:116 +#: ../templates/lists/changePassword.php:291 ../lib/types/user.inc:116 #: ../lib/types/user.inc:220 ../lib/modules/windowsLDSUser.inc:181 -#: ../lib/modules/windowsLDSUser.inc:423 ../lib/modules/windowsLDSUser.inc:663 -#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:881 -#: ../lib/modules/windowsLDSUser.inc:1818 ../lib/modules/windowsUser.inc:199 +#: ../lib/modules/windowsLDSUser.inc:427 ../lib/modules/windowsLDSUser.inc:667 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:888 +#: ../lib/modules/windowsLDSUser.inc:1836 ../lib/modules/windowsUser.inc:199 #: ../lib/modules/windowsUser.inc:518 ../lib/modules/windowsUser.inc:888 #: ../lib/modules/windowsUser.inc:979 ../lib/modules/windowsUser.inc:1034 #: ../lib/modules/windowsUser.inc:1183 ../lib/modules/windowsUser.inc:2867 @@ -15148,24 +15183,24 @@ msgstr "Technical name" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:347 #: ../lib/modules/inetOrgPerson.inc:510 ../lib/modules/inetOrgPerson.inc:630 #: ../lib/modules/inetOrgPerson.inc:634 ../lib/modules/inetOrgPerson.inc:1401 -#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1977 -#: ../lib/modules/inetOrgPerson.inc:2054 ../lib/modules/inetOrgPerson.inc:2633 -#: ../lib/modules/inetOrgPerson.inc:4084 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1975 +#: ../lib/modules/inetOrgPerson.inc:2052 ../lib/modules/inetOrgPerson.inc:2631 +#: ../lib/modules/inetOrgPerson.inc:4081 ../lib/modules/inetOrgPerson.inc:4124 msgid "Telephone number" msgstr "Telephone number" -#: ../lib/modules/windowsLDSUser.inc:535 ../lib/modules/windowsUser.inc:718 +#: ../lib/modules/windowsLDSUser.inc:539 ../lib/modules/windowsUser.inc:718 #: ../lib/modules/inetOrgPerson.inc:285 msgid "Temp" msgstr "Temp" -#: ../lib/modules/windowsLDSUser.inc:377 ../lib/modules/windowsUser.inc:466 +#: ../lib/modules/windowsLDSUser.inc:381 ../lib/modules/windowsUser.inc:466 #: ../lib/modules/pykotaUser.inc:737 ../lib/modules/inetOrgPerson.inc:261 msgid "Temp, contract till December" msgstr "Temp, contract till December" #: ../templates/config/profmanage.php:223 -#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:200 +#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:204 msgid "Template" msgstr "Template" @@ -15195,8 +15230,8 @@ msgstr "Tests" #: ../lib/modules/passwordSelfReset.inc:127 #: ../lib/modules/passwordSelfReset.inc:137 #: ../lib/modules/passwordSelfReset.inc:666 -#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:340 -#: ../help/help.inc:392 +#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:350 +#: ../help/help.inc:402 msgid "Text" msgstr "Text" @@ -15254,7 +15289,7 @@ msgstr "" "The DNs of the directory entries representing the person's organizational " "units." -#: ../lib/modules/posixGroup.inc:451 +#: ../lib/modules/posixGroup.inc:452 msgid "" "The ID of this group was changed. You can update all user and host entries " "to the new group ID." @@ -15266,18 +15301,18 @@ msgstr "" msgid "The IMAP admin password is empty." msgstr "The IMAP admin password is empty." -#: ../templates/config/mainmanage.php:126 -#: ../templates/config/mainmanage.php:149 ../lib/modules/bindDLZ.inc:582 +#: ../templates/config/mainmanage.php:137 +#: ../templates/config/mainmanage.php:160 ../lib/modules/bindDLZ.inc:582 #: ../lib/modules/bindDLZ.inc:583 #, php-format msgid "The IP address %s is invalid!" msgstr "The IP address %s is invalid!" -#: ../lib/modules/fixed_ip.inc:475 +#: ../lib/modules/fixed_ip.inc:473 msgid "The IP address does not match the subnet." msgstr "The IP address does not match the subnet." -#: ../lib/modules/fixed_ip.inc:478 +#: ../lib/modules/fixed_ip.inc:476 msgid "The IP address is already in use." msgstr "The IP address is already in use." @@ -15285,10 +15320,10 @@ msgstr "The IP address is already in use." #: ../lib/modules/asteriskAccount.inc:572 #: ../lib/modules/asteriskAccount.inc:573 ../lib/modules/ppolicyUser.inc:100 #: ../lib/modules/bindDLZXfr.inc:95 ../lib/modules/bindDLZXfr.inc:96 -#: ../lib/modules/range.inc:499 ../lib/modules/range.inc:516 -#: ../lib/modules/range.inc:576 ../lib/modules/range.inc:593 +#: ../lib/modules/range.inc:498 ../lib/modules/range.inc:515 +#: ../lib/modules/range.inc:575 ../lib/modules/range.inc:592 #: ../lib/modules/freeRadius.inc:317 ../lib/modules/freeRadius.inc:318 -#: ../lib/modules/fixed_ip.inc:470 +#: ../lib/modules/fixed_ip.inc:468 msgid "The IP address is invalid." msgstr "The IP address is invalid." @@ -15312,8 +15347,8 @@ msgstr "" "The IP addresses of the Netbios name servers (e.g. \"123.123.123.123, " "123.123.123.124\")." -#: ../lib/modules/range.inc:503 ../lib/modules/range.inc:518 -#: ../lib/modules/range.inc:582 ../lib/modules/range.inc:596 +#: ../lib/modules/range.inc:502 ../lib/modules/range.inc:517 +#: ../lib/modules/range.inc:581 ../lib/modules/range.inc:595 msgid "The IP does not match the subnet." msgstr "The IP does not match the subnet." @@ -15333,19 +15368,19 @@ msgstr "The MAC address of the PC. Example: 11:22:33:44:55:aa" msgid "The Netbios server is invalid." msgstr "The Netbios server is invalid." -#: ../lib/modules/fixed_ip.inc:440 +#: ../lib/modules/fixed_ip.inc:438 msgid "The PC name may not be longer than 20 characters." msgstr "The PC name may not be longer than 20 characters." -#: ../lib/modules/fixed_ip.inc:449 +#: ../lib/modules/fixed_ip.inc:447 msgid "The PC name may only contain A-Z, a-z and 0-9." msgstr "The PC name may only contain A-Z, a-z and 0-9." -#: ../lib/modules/fixed_ip.inc:443 +#: ../lib/modules/fixed_ip.inc:441 msgid "The PC name needs to be at least 2 characters long." msgstr "The PC name needs to be at least 2 characters long." -#: ../help/help.inc:261 +#: ../help/help.inc:271 msgid "" "The PDF structure defines what information is exported as PDF file and how " "the pages are structured. You can manage the PDF structures in the PDF " @@ -15379,7 +15414,7 @@ msgstr "" "uses the highest UID in use + 1 for new accounts. Please set the minimum UID " "to equal values or use independent ranges." -#: ../templates/config/mainmanage.php:199 +#: ../templates/config/mainmanage.php:210 msgid "The URL for the external password check is invalid." msgstr "The URL for the external password check is invalid." @@ -15415,7 +15450,7 @@ msgstr "The account type is invalid." msgid "The account will be locked after this date." msgstr "The account will be locked after this date." -#: ../help/help.inc:245 ../help/help.inc:253 +#: ../help/help.inc:255 ../help/help.inc:263 msgid "The account will be saved under this LDAP suffix." msgstr "The account will be saved under this LDAP suffix." @@ -15452,7 +15487,7 @@ msgstr "" "The attribute %s is not supported for the object class %s by your LDAP " "server." -#: ../help/help.inc:333 +#: ../help/help.inc:343 msgid "" "The attribute (e.g. \"uid\") that contains the user name for the 2-factor " "service." @@ -15474,7 +15509,7 @@ msgstr "The attribute value does not exist" msgid "The caller ID format is invalid." msgstr "The caller ID format is invalid." -#: ../templates/selfService/selfServiceLogin.php:116 +#: ../templates/selfService/selfServiceLogin.php:117 #: ../lib/modules/selfRegistration.inc:529 #: ../lib/modules/passwordSelfReset.inc:1139 msgid "The captcha was wrong." @@ -15488,7 +15523,8 @@ msgstr "The class names contain invalid values." msgid "The class names may only contain ASCII characters." msgstr "The class names may only contain ASCII characters." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "The config file is not writable." msgstr "The config file is not writable." @@ -15550,7 +15586,7 @@ msgstr "The domain name of the subnet." msgid "The email address is invalid." msgstr "The email address is invalid." -#: ../lib/modules/range.inc:105 +#: ../lib/modules/range.inc:104 msgid "The ending IP address of the range." msgstr "The ending IP address of the range." @@ -15593,7 +15629,7 @@ msgstr "The entry's name." msgid "The environment name may only contain ASCII characters." msgstr "The environment name may only contain ASCII characters." -#: ../help/help.inc:395 +#: ../help/help.inc:405 msgid "" "The expiration date can be added with @@EXPIRE_DATE_DDMMYYYY@@ or " "@@EXPIRE_DATE_YYYYMMDD@@." @@ -15614,11 +15650,11 @@ msgstr "The expiration date must be in format DD.MM.YYYY HH:MM." msgid "The expiration time \"%s\" must be a number." msgstr "The expiration time \"%s\" must be a number." -#: ../help/help.inc:419 +#: ../help/help.inc:429 msgid "The expired accounts will be moved to this DN." msgstr "The expired accounts will be moved to this DN." -#: ../help/help.inc:370 +#: ../help/help.inc:380 msgid "The export will read entries of this DN." msgstr "The export will read entries of this DN." @@ -15655,7 +15691,7 @@ msgstr "" "The file you uploaded is too large. Please check php.ini, upload_max_size " "setting" -#: ../lib/modules/posixGroup.inc:473 +#: ../lib/modules/posixGroup.inc:474 msgid "" "The filter can be any regular expression, e.g. \".*\" = any characters, \"^" "\" = line start, \"$\" = line end." @@ -15713,7 +15749,7 @@ msgstr "" msgid "The full name is invalid." msgstr "The full name is invalid." -#: ../templates/login.php:527 +#: ../templates/login.php:537 msgid "The given user name matches multiple LDAP entries." msgstr "The given user name matches multiple LDAP entries." @@ -15771,7 +15807,7 @@ msgstr "The host name is invalid." msgid "The initials of the user's first names." msgstr "The initials of the user's first names." -#: ../help/help.inc:368 +#: ../help/help.inc:378 msgid "The input data must be formatted in LDIF format." msgstr "The input data must be formatted in LDIF format." @@ -15841,7 +15877,7 @@ msgstr "The list's email address." msgid "The listed IPs were found in DHCP by matching the host's MAC address." msgstr "The listed IPs were found in DHCP by matching the host's MAC address." -#: ../templates/config/mainmanage.php:183 +#: ../templates/config/mainmanage.php:194 msgid "" "The log file is empty or contains invalid characters! Valid characters are: " "a-z, A-Z, 0-9, /, \\, ., :, _ and -." @@ -15878,11 +15914,11 @@ msgid "" msgstr "" "The mail text for confirmation mails must include the wildcard @@resetLink@@." -#: ../help/help.inc:393 +#: ../help/help.inc:403 msgid "The mail text of all mails." msgstr "The mail text of all mails." -#: ../help/help.inc:341 +#: ../help/help.inc:351 msgid "The mail text of all password mails." msgstr "The mail text of all password mails." @@ -16033,7 +16069,7 @@ msgstr "The object class %s is not supported by your LDAP server." msgid "The office name of the user (e.g. YourCompany, Human Resources)." msgstr "The office name of the user (e.g. YourCompany, Human Resources)." -#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1935 +#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1933 msgid "The operation was stopped because of the above errors." msgstr "The operation was stopped because of the above errors." @@ -16156,15 +16192,15 @@ msgstr "" "The password of your IMAP admin user. The login name for the IMAP admin user " "is stored in the LAM server profile." -#: ../templates/lists/changePassword.php:647 ../lib/modules.inc:1206 +#: ../templates/lists/changePassword.php:651 ../lib/modules.inc:1206 msgid "The password was set to:" msgstr "The password was set to:" -#: ../lib/modules/range.inc:125 +#: ../lib/modules/range.inc:124 msgid "The pool's failover peer." msgstr "The pool's failover peer." -#: ../lib/modules/range.inc:121 +#: ../lib/modules/range.inc:120 msgid "The pool's name." msgstr "The pool's name." @@ -16229,11 +16265,11 @@ msgstr "" msgid "The quota must be entered as a floating point number." msgstr "The quota must be entered as a floating point number." -#: ../lib/modules/range.inc:505 ../lib/modules/range.inc:585 +#: ../lib/modules/range.inc:504 ../lib/modules/range.inc:584 msgid "The range conflicts with another range." msgstr "The range conflicts with another range." -#: ../lib/modules/range.inc:501 ../lib/modules/range.inc:579 +#: ../lib/modules/range.inc:500 ../lib/modules/range.inc:578 msgid "The range end needs to be greater than the range start." msgstr "The range end needs to be greater than the range start." @@ -16301,7 +16337,7 @@ msgstr "The server name \"%s\" is invalid." msgid "The source and destination DN are the same." msgstr "The source and destination DN are the same." -#: ../lib/modules/range.inc:101 +#: ../lib/modules/range.inc:100 msgid "The starting IP address of the range." msgstr "The starting IP address of the range." @@ -16323,11 +16359,11 @@ msgstr "The street name of the user's address." msgid "The structural object class of the entries." msgstr "The structural object class of the entries." -#: ../help/help.inc:389 +#: ../help/help.inc:399 msgid "The subject of all mails." msgstr "The subject of all mails." -#: ../help/help.inc:339 +#: ../help/help.inc:349 msgid "The subject of all password mails." msgstr "The subject of all password mails." @@ -16473,24 +16509,24 @@ msgstr "The user's email address." msgid "The user's fax number." msgstr "The user's fax number." -#: ../lib/modules/windowsLDSUser.inc:300 ../lib/modules/windowsUser.inc:377 +#: ../lib/modules/windowsLDSUser.inc:304 ../lib/modules/windowsUser.inc:377 #: ../lib/modules/inetOrgPerson.inc:639 ../lib/modules/inetOrgPerson.inc:643 msgid "The user's mobile number." msgstr "The user's mobile number." -#: ../lib/modules/windowsLDSUser.inc:272 ../lib/modules/windowsLDSUser.inc:276 +#: ../lib/modules/windowsLDSUser.inc:276 ../lib/modules/windowsLDSUser.inc:280 #: ../lib/modules/windowsUser.inc:349 ../lib/modules/windowsUser.inc:353 #: ../lib/modules/inetOrgPerson.inc:771 ../lib/modules/inetOrgPerson.inc:775 msgid "The user's organisation name." msgstr "The user's organisation name." -#: ../lib/modules/windowsLDSUser.inc:264 ../lib/modules/windowsLDSUser.inc:268 +#: ../lib/modules/windowsLDSUser.inc:268 ../lib/modules/windowsLDSUser.inc:272 #: ../lib/modules/windowsUser.inc:341 ../lib/modules/windowsUser.inc:345 #: ../lib/modules/inetOrgPerson.inc:763 ../lib/modules/inetOrgPerson.inc:767 msgid "The user's organisational unit." msgstr "The user's organisational unit." -#: ../lib/modules/windowsLDSUser.inc:288 ../lib/modules/windowsUser.inc:365 +#: ../lib/modules/windowsLDSUser.inc:292 ../lib/modules/windowsUser.inc:365 #: ../lib/modules/inetOrgPerson.inc:655 ../lib/modules/inetOrgPerson.inc:659 msgid "The user's pager number." msgstr "The user's pager number." @@ -16504,7 +16540,7 @@ msgstr "The user's private telephone number." msgid "The user's telephone number." msgstr "The user's telephone number." -#: ../lib/modules/windowsLDSUser.inc:236 ../lib/modules/windowsUser.inc:313 +#: ../lib/modules/windowsLDSUser.inc:240 ../lib/modules/windowsUser.inc:313 #: ../lib/modules/inetOrgPerson.inc:779 msgid "The user's unique employee number." msgstr "The user's unique employee number." @@ -16545,7 +16581,7 @@ msgstr "The were no attributes marked as an RDN attribute." msgid "The wildcard for the account creation link is @@creationLink@@." msgstr "The wildcard for the account creation link is @@creationLink@@." -#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:344 +#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:354 msgid "The wildcard for the new password is @@newPassword@@." msgstr "The wildcard for the new password is @@newPassword@@." @@ -16558,7 +16594,7 @@ msgstr "The wildcard for the reset link is @@resetLink@@." msgid "There are %s members in group %s:" msgstr "There are %s members in group %s:" -#: ../lib/modules/posixGroup.inc:714 ../lib/modules/sambaGroupMapping.inc:576 +#: ../lib/modules/posixGroup.inc:715 ../lib/modules/sambaGroupMapping.inc:576 msgid "There are still users who have this group as their primary group." msgstr "There are still users who have this group as their primary group." @@ -16574,7 +16610,7 @@ msgstr "There is already another user with this caller ID." msgid "There is already another user with this mailbox name." msgstr "There is already another user with this mailbox name." -#: ../lib/upload.inc:219 +#: ../lib/upload.inc:218 msgid "There were errors while uploading:" msgstr "There were errors while uploading:" @@ -16583,7 +16619,7 @@ msgstr "There were errors while uploading:" msgid "There will be %s updates done with this mass update" msgstr "There will be %s updates done with this mass update" -#: ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:440 msgid "" "These are the minimum and maximum numbers to use for group IDs when creating " "new group accounts. New group accounts will always get the highest number in " @@ -16661,7 +16697,7 @@ msgid "" msgstr "" "This GID number is invalid! Please provide either a number or a group name." -#: ../help/help.inc:293 +#: ../help/help.inc:303 msgid "" "This HTML code will be placed on top of all self service pages. E.g. you can " "use this to place your custom logo. Any HTML code is permitted." @@ -16673,12 +16709,12 @@ msgstr "" msgid "This MAC address is already in use." msgstr "This MAC address is already in use." -#: ../lib/modules/fixed_ip.inc:452 +#: ../lib/modules/fixed_ip.inc:450 #, php-format msgid "This PC name already exists in %s. Use e.g. %s." msgstr "This PC name already exists in %s. Use e.g. %s." -#: ../lib/modules/fixed_ip.inc:446 +#: ../lib/modules/fixed_ip.inc:444 msgid "This PC name already exists." msgstr "This PC name already exists." @@ -16702,7 +16738,7 @@ msgstr "This attribute is required" msgid "This attribute is required for the RDN." msgstr "This attribute is required for the RDN." -#: ../lib/modules/windowsLDSUser.inc:232 ../lib/modules/windowsUser.inc:309 +#: ../lib/modules/windowsLDSUser.inc:236 ../lib/modules/windowsUser.inc:309 #: ../lib/modules/inetOrgPerson.inc:734 msgid "This can be used to specify if the user has a car license." msgstr "This can be used to specify if the user has a car license." @@ -16799,33 +16835,29 @@ msgstr "This describes the location of the user." msgid "This document was automatically created by LDAP Account Manager" msgstr "This document was automatically created by LDAP Account Manager" -#: ../help/help.inc:407 +#: ../help/help.inc:417 msgid "This email address will be set as BCC address of all mails." msgstr "This email address will be set as BCC address of all mails." -#: ../help/help.inc:403 +#: ../help/help.inc:413 msgid "This email address will be set as CC address of all mails." msgstr "This email address will be set as CC address of all mails." -#: ../help/help.inc:385 +#: ../help/help.inc:245 +msgid "This email address will be set as TO address for the mails." +msgstr "This email address will be set as TO address for the mails." + +#: ../help/help.inc:395 msgid "This email address will be set as reply-to address of all mails." msgstr "This email address will be set as reply-to address of all mails." -#: ../help/help.inc:348 +#: ../help/help.inc:358 msgid "" "This email address will be set as reply-to address of all password mails." msgstr "" "This email address will be set as reply-to address of all password mails." -#: ../help/help.inc:381 -msgid "" -"This email address will be set as sender address of all mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"This email address will be set as sender address of all mails. If empty the " -"system default (php.ini) will be used." - -#: ../help/help.inc:337 +#: ../help/help.inc:347 msgid "" "This email address will be set as sender address of all password mails. If " "empty the system default (php.ini) will be used." @@ -16834,13 +16866,10 @@ msgstr "" "empty the system default (php.ini) will be used." #: ../lib/modules/selfRegistration.inc:90 -#: ../lib/modules/passwordSelfReset.inc:120 -msgid "" -"This email address will be set as sender address of the mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"This email address will be set as sender address of the mails. If empty the " -"system default (php.ini) will be used." +#: ../lib/modules/passwordSelfReset.inc:120 ../help/help.inc:243 +#: ../help/help.inc:391 +msgid "This email address will be set as sender address of the mails." +msgstr "This email address will be set as sender address of the mails." #: ../lib/modules/passwordSelfReset.inc:100 msgid "This enables the password self reset function." @@ -16995,7 +17024,7 @@ msgstr "This is a semi-colon separated list of delegates." msgid "This is a structural ObjectClass and cannot be removed." msgstr "This is a structural ObjectClass and cannot be removed." -#: ../help/help.inc:199 +#: ../help/help.inc:203 msgid "" "This is a workaround for Active Directory. Enable it if you get messages " "about size limit exceeded." @@ -17008,7 +17037,7 @@ msgstr "" msgid "This is an optional description for this entry." msgstr "This is an optional description for this entry." -#: ../help/help.inc:281 +#: ../help/help.inc:291 msgid "" "This is needed to find the LDAP DNs of your user accounts. E.g. if you use " "\"uid\" and your user inputs \"miller\" then LAM will search for an account " @@ -17018,9 +17047,9 @@ msgstr "" "\"uid\" and your user inputs \"miller\" then LAM will search for an account " "with uid=miller." -#: ../lib/passwordExpirationJob.inc:532 ../lib/modules/windowsLDSUser.inc:784 +#: ../lib/passwordExpirationJob.inc:530 ../lib/modules/windowsLDSUser.inc:791 #: ../lib/modules/zarafaDynamicGroup.inc:183 ../lib/modules/ipHost.inc:125 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixGroup.inc:716 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixGroup.inc:717 #: ../lib/modules/device.inc:128 ../lib/modules/eduPerson.inc:245 #: ../lib/modules/eduPerson.inc:247 ../lib/modules/zarafaAddressList.inc:155 #: ../lib/modules/posixAccount.inc:121 ../lib/modules/posixAccount.inc:122 @@ -17089,7 +17118,7 @@ msgstr "" msgid "This is the LDAP DN of the host's manager." msgstr "This is the LDAP DN of the host's manager." -#: ../lib/modules/windowsLDSUser.inc:280 ../lib/modules/windowsUser.inc:357 +#: ../lib/modules/windowsLDSUser.inc:284 ../lib/modules/windowsUser.inc:357 #: ../lib/modules/inetOrgPerson.inc:591 ../lib/modules/inetOrgPerson.inc:595 msgid "" "This is the LDAP DN of the user's manager. Use this property to represent " @@ -17159,7 +17188,7 @@ msgstr "" "This is the answer to the security question. It allows users to reset their " "password." -#: ../help/help.inc:219 +#: ../help/help.inc:223 msgid "This is the database name on the server." msgstr "This is the database name on the server." @@ -17201,7 +17230,7 @@ msgstr "This is the group name which will be shown in Windows." msgid "This is the host's location (e.g. Munich, server room 3)." msgstr "This is the host's location (e.g. Munich, server room 3)." -#: ../help/help.inc:239 ../help/help.inc:253 +#: ../help/help.inc:249 ../help/help.inc:263 msgid "" "This is the identifier for the relative DN value. It must be one of the " "given allowed LDAP attributes (e.g. user accounts usually use \"uid\" while " @@ -17391,11 +17420,11 @@ msgstr "This is the suffix for the LDAP tree viewer." msgid "" "This is the suffix of the LDAP tree from where to search for LDAP entries. " "Only entries in this subtree will be displayed in the account list. When " -"creating a new accont this will be the DN where it is saved." +"creating a new account this will be the DN where it is saved." msgstr "" "This is the suffix of the LDAP tree from where to search for LDAP entries. " "Only entries in this subtree will be displayed in the account list. When " -"creating a new accont this will be the DN where it is saved." +"creating a new account this will be the DN where it is saved." #: ../lib/modules/inetLocalMailRecipient.inc:79 msgid "This is the target email address for the user's mails." @@ -17469,12 +17498,12 @@ msgid "This is used to mark this account as resource." msgstr "This is used to mark this account as resource." #: ../lib/modules/qmailUser.inc:1100 ../lib/modules/windowsUser.inc:4188 -#: ../lib/modules/shadowAccount.inc:1081 ../lib/modules/freeRadius.inc:825 +#: ../lib/modules/shadowAccount.inc:1080 ../lib/modules/freeRadius.inc:825 msgid "This job deletes or moves user accounts when they expire." msgstr "This job deletes or moves user accounts when they expire." #: ../lib/modules/qmailUser.inc:1169 ../lib/modules/windowsUser.inc:4096 -#: ../lib/modules/shadowAccount.inc:986 ../lib/modules/freeRadius.inc:893 +#: ../lib/modules/shadowAccount.inc:985 ../lib/modules/freeRadius.inc:892 msgid "" "This job sends out emails to inform your users that their account will " "expire soon." @@ -17510,7 +17539,7 @@ msgstr "" "This message is shown when the field value does not match the validation " "expression." -#: ../help/help.inc:203 +#: ../help/help.inc:207 msgid "" "This name is shown on the login page as server name. Defaults to server " "address if empty." @@ -17592,15 +17621,15 @@ msgstr "" msgid "This specifies what to do when the client connection is broken." msgstr "This specifies what to do when the client connection is broken." -#: ../help/help.inc:329 +#: ../help/help.inc:339 msgid "This text is displayed as footer on the self service login page." msgstr "This text is displayed as footer on the self service login page." -#: ../help/help.inc:331 +#: ../help/help.inc:341 msgid "This text is displayed as footer on the self service main page." msgstr "This text is displayed as footer on the self service main page." -#: ../help/help.inc:313 +#: ../help/help.inc:323 msgid "" "This text is displayed on top of the 2-factor page. You can also input HTML " "code here." @@ -17608,7 +17637,7 @@ msgstr "" "This text is displayed on top of the 2-factor page. You can also input HTML " "code here." -#: ../help/help.inc:285 +#: ../help/help.inc:295 msgid "" "This text is displayed on top of the self service login page. You can also " "input HTML code here." @@ -17616,23 +17645,23 @@ msgstr "" "This text is displayed on top of the self service login page. You can also " "input HTML code here." -#: ../help/help.inc:287 -msgid "" -"This text is displayed on top of the self service main page. You can also " -"input HTML code here." -msgstr "" -"This text is displayed on top of the self service main page. You can also " -"input HTML code here." - #: ../help/help.inc:297 msgid "" +"This text is displayed on top of the self service main page. You can also " +"input HTML code here." +msgstr "" +"This text is displayed on top of the self service main page. You can also " +"input HTML code here." + +#: ../help/help.inc:307 +msgid "" "This text is placed as label for the password field on the login page. LAM " "will use \"Password\" if you do not enter any text." msgstr "" "This text is placed as label for the password field on the login page. LAM " "will use \"Password\" if you do not enter any text." -#: ../help/help.inc:283 +#: ../help/help.inc:293 msgid "" "This text should shortly describe your selected LDAP search attribute (e.g. " "email or user name)." @@ -17658,7 +17687,7 @@ msgid "This tool allows you to customize the PDF pages." msgstr "This tool allows you to customize the PDF pages." #: ../templates/lists/changePassword.php:75 -#: ../templates/lists/changePassword.php:243 +#: ../templates/lists/changePassword.php:247 msgid "This user is not supported or was not found." msgstr "This user is not supported or was not found." @@ -17709,11 +17738,11 @@ msgstr "This value can only be \"true\" or \"false\"." msgid "This value can only be \"true\", \"false\" or \"system\"." msgstr "This value can only be \"true\", \"false\" or \"system\"." -#: ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 msgid "This value must be a list of user names separated by semicolons." msgstr "This value must be a list of user names separated by semicolons." -#: ../help/help.inc:354 +#: ../help/help.inc:364 msgid "This will create a new organisational unit under the selected one." msgstr "This will create a new organisational unit under the selected one." @@ -17721,7 +17750,7 @@ msgstr "This will create a new organisational unit under the selected one." msgid "This will create the user's home directory on the specified server." msgstr "This will create the user's home directory on the specified server." -#: ../help/help.inc:356 +#: ../help/help.inc:366 msgid "" "This will delete the selected organisational unit. The OU has to be empty." msgstr "" @@ -17731,7 +17760,7 @@ msgstr "" msgid "This will delete the selected profile." msgstr "This will delete the selected profile." -#: ../help/help.inc:309 +#: ../help/help.inc:319 msgid "" "This will disable the check of the SSL certificates for the 2-factor " "authentication service. Not recommended for production usage." @@ -17741,7 +17770,7 @@ msgstr "" #: ../lib/modules/kolabGroup.inc:109 ../lib/modules/puppetClient.inc:116 #: ../lib/modules/qmailUser.inc:230 ../lib/modules/zarafaContact.inc:91 -#: ../lib/modules/posixGroup.inc:481 ../lib/modules/eduPerson.inc:150 +#: ../lib/modules/posixGroup.inc:482 ../lib/modules/eduPerson.inc:150 #: ../lib/modules/pykotaGroup.inc:124 ../lib/modules/sambaSamAccount.inc:405 #: ../lib/modules/posixAccount.inc:316 ../lib/modules/zarafaUser.inc:155 #: ../lib/modules/kopanoContact.inc:91 @@ -17754,7 +17783,7 @@ msgid "This will enable the extension automatically if this profile is loaded." msgstr "" "This will enable the extension automatically if this profile is loaded." -#: ../lib/modules/posixGroup.inc:485 +#: ../lib/modules/posixGroup.inc:486 msgid "This will force syncing with group of names members of the same group." msgstr "This will force syncing with group of names members of the same group." @@ -17774,7 +17803,7 @@ msgstr "This will not add the posixAccount object class to the account." msgid "This will reset the host's password to a default value." msgstr "This will reset the host's password to a default value." -#: ../templates/lists/changePassword.php:309 +#: ../templates/lists/changePassword.php:313 msgid "" "This will set a random password and display it on the screen or send it to " "the user via mail." @@ -17782,7 +17811,7 @@ msgstr "" "This will set a random password and display it on the screen or send it to " "the user via mail." -#: ../help/help.inc:317 +#: ../help/help.inc:327 msgid "" "This will set a random password and display it on the screen or send it to " "the user via mail. Please edit your LAM server profile to setup the mail " @@ -17835,7 +17864,8 @@ msgstr "Time limit" msgid "Time of user's last login." msgstr "Time of user's last login." -#: ../lib/modules/windowsHost.inc:92 ../lib/modules/windowsUser.inc:281 +#: ../lib/modules/windowsLDSUser.inc:224 ../lib/modules/windowsHost.inc:92 +#: ../lib/modules/windowsUser.inc:281 msgid "Time of user's last password change." msgstr "Time of user's last password change." @@ -17932,7 +17962,7 @@ msgstr "Tree suffix" msgid "Tree view" msgstr "Tree view" -#: ../templates/config/confmain.php:662 +#: ../templates/config/confmain.php:664 msgid "TreeSuffix is invalid!" msgstr "TreeSuffix is invalid!" @@ -17962,8 +17992,8 @@ msgstr "Type" msgid "UID" msgstr "UID" -#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2180 -#: ../lib/modules/posixAccount.inc:2251 +#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2234 +#: ../lib/modules/posixAccount.inc:2305 msgid "UID generator" msgstr "UID generator" @@ -17995,7 +18025,7 @@ msgstr "" #: ../lib/modules/posixAccount.inc:218 ../lib/modules/posixAccount.inc:280 #: ../lib/modules/posixAccount.inc:301 ../lib/modules/posixAccount.inc:332 #: ../lib/modules/posixAccount.inc:336 ../lib/modules/posixAccount.inc:345 -#: ../lib/modules/posixAccount.inc:1619 ../lib/modules/posixAccount.inc:2116 +#: ../lib/modules/posixAccount.inc:1665 ../lib/modules/posixAccount.inc:2170 #: ../lib/modules/kopanoContact.inc:117 ../lib/modules/kopanoContact.inc:182 #: ../lib/modules/kopanoContact.inc:183 ../lib/modules/kopanoContact.inc:217 #: ../lib/modules/kopanoContact.inc:463 ../lib/modules/kopanoContact.inc:575 @@ -18046,11 +18076,11 @@ msgstr "" msgid "URL" msgstr "URL" -#: ../help/help.inc:305 +#: ../help/help.inc:315 msgid "URL of external 2-factor authentication service." msgstr "URL of external 2-factor authentication service." -#: ../help/help.inc:307 +#: ../help/help.inc:317 msgid "URLs of external 2-factor authentication service. Enter one per line." msgstr "URLs of external 2-factor authentication service. Enter one per line." @@ -18063,7 +18093,7 @@ msgstr "Unable to add DNS record." msgid "Unable to change ACL on IMAP server for mailbox deletion." msgstr "Unable to change ACL on IMAP server for mailbox deletion." -#: ../lib/modules/mitKerberos.inc:1182 ../lib/modules/mitKerberos.inc:1186 +#: ../lib/modules/mitKerberos.inc:1178 ../lib/modules/mitKerberos.inc:1182 #: ../lib/modules/heimdalKerberos.inc:1031 msgid "Unable to change Kerberos password." msgstr "Unable to change Kerberos password." @@ -18100,13 +18130,13 @@ msgstr "Unable to connect to database." msgid "Unable to connect to remote server!" msgstr "Unable to connect to remote server!" -#: ../lib/upload.inc:294 +#: ../lib/upload.inc:293 msgid "Unable to create ZIP file for PDF export." msgstr "Unable to create ZIP file for PDF export." #: ../lib/modules/selfRegistration.inc:647 -#: ../lib/modules/selfRegistration.inc:839 -#: ../lib/modules/selfRegistration.inc:843 +#: ../lib/modules/selfRegistration.inc:838 +#: ../lib/modules/selfRegistration.inc:842 msgid "Unable to create account." msgstr "Unable to create account." @@ -18122,6 +18152,10 @@ msgstr "Unable to create new OU!" msgid "Unable to create new automount map." msgstr "Unable to create new automount map." +#: ../lib/modules/posixAccount.inc:1231 +msgid "Unable to create new group." +msgstr "Unable to create new group." + #: ../templates/selfService/profManage.php:61 ../lib/config.inc:222 msgid "Unable to create new profile!" msgstr "Unable to create new profile!" @@ -18173,9 +18207,9 @@ msgstr "Unable to delete profile!" msgid "Unable to find a printer with name \"%s\"." msgstr "Unable to find a printer with name \"%s\"." -#: ../lib/modules/posixAccount.inc:2574 ../lib/modules/posixAccount.inc:2583 -#: ../lib/modules/posixAccount.inc:2885 ../lib/modules/nisNetGroupUser.inc:512 -#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:390 +#: ../lib/modules/posixAccount.inc:2628 ../lib/modules/posixAccount.inc:2637 +#: ../lib/modules/posixAccount.inc:2939 ../lib/modules/nisNetGroupUser.inc:512 +#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:391 msgid "Unable to find group in LDAP." msgstr "Unable to find group in LDAP." @@ -18192,7 +18226,7 @@ msgstr "Unable to find password security question for this account." msgid "Unable to find role in LDAP." msgstr "Unable to find role in LDAP." -#: ../templates/login.php:535 ../templates/login.php:543 +#: ../templates/login.php:545 ../templates/login.php:553 msgid "Unable to find the user name in LDAP." msgstr "Unable to find the user name in LDAP." @@ -18201,7 +18235,7 @@ msgstr "Unable to find the user name in LDAP." msgid "Unable to find user account." msgstr "Unable to find user account." -#: ../templates/config/mainmanage.php:234 +#: ../templates/config/mainmanage.php:245 msgid "Unable to import server certificate. Please use the upload function." msgstr "Unable to import server certificate. Please use the upload function." @@ -18227,7 +18261,7 @@ msgstr "Unable to locate mailbox on IMAP." msgid "Unable to login to remote server!" msgstr "Unable to login to remote server!" -#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsUser.inc:1080 +#: ../lib/modules/windowsLDSUser.inc:794 ../lib/modules/windowsUser.inc:1080 #: ../lib/modules/inetOrgPerson.inc:105 msgid "Unable to process this file." msgstr "Unable to process this file." @@ -18247,7 +18281,7 @@ msgstr "Unable to read PDF structure." msgid "Unable to read file." msgstr "Unable to read file." -#: ../lib/modules/selfRegistration.inc:832 +#: ../lib/modules/selfRegistration.inc:831 msgid "Unable to register your new account. Please try again." msgstr "Unable to register your new account. Please try again." @@ -18273,7 +18307,7 @@ msgstr "Unable to retrieve schema!" msgid "Unable to save profile!" msgstr "Unable to save profile!" -#: ../lib/account.inc:1254 ../lib/account.inc:1293 +#: ../lib/account.inc:1258 ../lib/account.inc:1295 msgid "Unable to send mail!" msgstr "Unable to send mail!" @@ -18282,17 +18316,21 @@ msgstr "Unable to send mail!" msgid "Unable to set deletion date on %s." msgstr "Unable to set deletion date on %s." -#: ../lib/modules/posixAccount.inc:880 ../lib/modules/posixAccount.inc:2972 -#: ../lib/modules/posixAccount.inc:3355 ../lib/modules/inetOrgPerson.inc:966 -#: ../lib/modules/inetOrgPerson.inc:2488 +#: ../lib/modules/posixAccount.inc:879 ../lib/modules/posixAccount.inc:3026 +#: ../lib/modules/posixAccount.inc:3409 ../lib/modules/inetOrgPerson.inc:966 +#: ../lib/modules/inetOrgPerson.inc:2486 msgid "Unable to set password" msgstr "Unable to set password" -#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:109 +#: ../lib/modules/quota.inc:354 +msgid "Unable to set quota." +msgstr "Unable to set quota." + +#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:110 msgid "Unable to start 2-factor authentication because no tokens were found." msgstr "Unable to start 2-factor authentication because no tokens were found." -#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:106 +#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:107 msgid "Unable to start 2-factor authentication." msgstr "Unable to start 2-factor authentication." @@ -18310,7 +18348,7 @@ msgstr "Unable to upload logo file." msgid "Unable to verify your password reset request. Please try again." msgstr "Unable to verify your password reset request. Please try again." -#: ../lib/modules/selfRegistration.inc:869 +#: ../lib/modules/selfRegistration.inc:868 msgid "Unable to verify your user creation request. Please try again." msgstr "Unable to verify your user creation request. Please try again." @@ -18322,10 +18360,10 @@ msgstr "Unbind" msgid "Universal" msgstr "Universal" -#: ../templates/lists/changePassword.php:406 -#: ../templates/lists/changePassword.php:443 ../lib/types/user.inc:303 +#: ../templates/lists/changePassword.php:410 +#: ../templates/lists/changePassword.php:447 ../lib/types/user.inc:303 #: ../lib/types/user.inc:457 ../lib/types/user.inc:496 -#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:379 +#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:380 #: ../lib/modules/posixAccount.inc:159 msgid "Unix" msgstr "Unix" @@ -18334,13 +18372,13 @@ msgstr "Unix" msgid "Unix account" msgstr "Unix account" -#: ../lib/modules/posixAccount.inc:1773 ../lib/modules/posixAccount.inc:2228 +#: ../lib/modules/posixAccount.inc:1828 ../lib/modules/posixAccount.inc:2282 msgid "Unix groups" msgstr "Unix groups" #: ../lib/modules/dhcp_settings.inc:199 ../lib/modules/dhcp_settings.inc:225 -#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:631 -#: ../lib/modules/dhcp_settings.inc:717 +#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:623 +#: ../lib/modules/dhcp_settings.inc:709 msgid "Unknown clients" msgstr "Unknown clients" @@ -18363,18 +18401,18 @@ msgstr "Unkown change type" msgid "Unlock" msgstr "Unlock" -#: ../templates/lists/changePassword.php:205 -#: ../templates/lists/changePassword.php:403 -#: ../templates/lists/changePassword.php:427 -#: ../templates/lists/changePassword.php:429 ../lib/modules/ppolicyUser.inc:150 +#: ../templates/lists/changePassword.php:209 +#: ../templates/lists/changePassword.php:407 +#: ../templates/lists/changePassword.php:431 +#: ../templates/lists/changePassword.php:433 ../lib/modules/ppolicyUser.inc:150 msgid "Unlock account" msgstr "Unlock account" -#: ../templates/lists/changePassword.php:265 +#: ../templates/lists/changePassword.php:269 msgid "Unlock account?" msgstr "Unlock account?" -#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1690 +#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1745 #: ../lib/modules/inetOrgPerson.inc:1582 msgid "Unlock password" msgstr "Unlock password" @@ -18393,7 +18431,7 @@ msgstr "Unsolved dependency:" msgid "Up" msgstr "Up" -#: ../templates/lists/changePassword.php:220 +#: ../templates/lists/changePassword.php:224 msgid "Update Samba password timestamp" msgstr "Update Samba password timestamp" @@ -18420,14 +18458,14 @@ msgstr "Update values" msgid "Updating object" msgstr "Updating object" -#: ../templates/config/mainmanage.php:345 ../templates/pdfedit/pdfmain.php:293 -#: ../lib/modules/windowsLDSUser.inc:1278 ../lib/modules/windowsUser.inc:2024 -#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1710 -#: ../lib/modules/inetOrgPerson.inc:1884 +#: ../templates/config/mainmanage.php:385 ../templates/pdfedit/pdfmain.php:293 +#: ../lib/modules/windowsLDSUser.inc:1296 ../lib/modules/windowsUser.inc:2024 +#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1708 +#: ../lib/modules/inetOrgPerson.inc:1882 msgid "Upload" msgstr "Upload" -#: ../templates/config/mainmanage.php:347 +#: ../templates/config/mainmanage.php:387 msgid "Upload CA certificate in DER/PEM format." msgstr "Upload CA certificate in DER/PEM format." @@ -18448,12 +18486,12 @@ msgstr "Upload file" msgid "Upload file and create accounts" msgstr "Upload file and create accounts" -#: ../lib/upload.inc:218 ../lib/lists.inc:1257 +#: ../lib/upload.inc:217 ../lib/lists.inc:1256 msgid "Upload has finished" msgstr "Upload has finished" -#: ../lib/modules/windowsLDSUser.inc:1274 ../lib/modules/windowsUser.inc:2020 -#: ../lib/modules/inetOrgPerson.inc:1706 +#: ../lib/modules/windowsLDSUser.inc:1292 ../lib/modules/windowsUser.inc:2020 +#: ../lib/modules/inetOrgPerson.inc:1704 msgid "Upload image" msgstr "Upload image" @@ -18462,7 +18500,7 @@ msgstr "Upload image" msgid "Upload was stopped after errors in %s module!" msgstr "Upload was stopped after errors in %s module!" -#: ../lib/modules/windowsLDSUser.inc:320 ../lib/modules/windowsUser.inc:397 +#: ../lib/modules/windowsLDSUser.inc:324 ../lib/modules/windowsUser.inc:397 #: ../lib/modules/inetOrgPerson.inc:795 msgid "Uploaded images will be cropped to these maximum values." msgstr "Uploaded images will be cropped to these maximum values." @@ -18497,7 +18535,7 @@ msgstr "Use Unix password" msgid "Use captcha" msgstr "Use captcha" -#: ../templates/selfService/adminMain.php:443 ../help/help.inc:300 +#: ../templates/selfService/adminMain.php:443 ../help/help.inc:310 msgid "Use for all operations" msgstr "Use for all operations" @@ -18509,7 +18547,7 @@ msgstr "Use for all operations" msgid "Use no password" msgstr "Use no password" -#: ../lib/modules/windowsLDSUser.inc:312 ../lib/modules/windowsLDSUser.inc:316 +#: ../lib/modules/windowsLDSUser.inc:316 ../lib/modules/windowsLDSUser.inc:320 #: ../lib/modules/windowsUser.inc:389 ../lib/modules/windowsUser.inc:393 msgid "" "Use this to enter additional email addresses in format \"smtp:user@domain.com" @@ -18518,7 +18556,7 @@ msgstr "" "Use this to enter additional email addresses in format \"smtp:user@domain.com" "\"." -#: ../help/help.inc:362 +#: ../help/help.inc:372 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of entries to modify." @@ -18526,7 +18564,7 @@ msgstr "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of entries to modify." -#: ../help/help.inc:185 +#: ../help/help.inc:189 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of visible elements for this account type." @@ -18534,7 +18572,7 @@ msgstr "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of visible elements for this account type." -#: ../help/help.inc:299 +#: ../help/help.inc:309 msgid "" "Use this to enter an additional LDAP filter (e.g. " "\"(objectClass=passwordSelfReset)\") to reduce the number of accounts who " @@ -18556,7 +18594,7 @@ msgstr "Use this to hide the caller ID." msgid "Use this to hide this entry from the address book." msgstr "Use this to hide this entry from the address book." -#: ../help/help.inc:311 +#: ../help/help.inc:321 msgid "" "Use this to overwrite the default label for the 2-factor input field. " "Default is \"PIN+Token\"." @@ -18588,7 +18626,7 @@ msgstr "" msgid "Used balance for the billing code." msgstr "Used balance for the billing code." -#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:524 msgid "Used blocks" msgstr "Used blocks" @@ -18612,7 +18650,7 @@ msgstr "Used for calculating RIDs from UID/GID. Do not change if unsure." msgid "Used for registration context." msgstr "Used for registration context." -#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:525 msgid "Used inodes" msgstr "Used inodes" @@ -18641,7 +18679,7 @@ msgstr "Used to regularly check that a device is still online." msgid "User" msgstr "User" -#: ../templates/config/mainmanage.php:476 ../help/help.inc:182 +#: ../templates/config/mainmanage.php:516 ../help/help.inc:180 msgid "User DN" msgstr "User DN" @@ -18664,8 +18702,8 @@ msgid "User can change password" msgstr "User can change password" #: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:790 -#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2908 -#: ../lib/modules/inetOrgPerson.inc:4101 +#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2906 +#: ../lib/modules/inetOrgPerson.inc:4098 msgid "User certificates" msgstr "User certificates" @@ -18707,22 +18745,22 @@ msgstr "User modification" msgid "User must change password" msgstr "User must change password" -#: ../templates/lists/changePassword.php:273 ../templates/login.php:313 -#: ../templates/config/confmain.php:285 ../lib/types/alias.inc:94 -#: ../lib/types/user.inc:118 ../lib/types/user.inc:120 -#: ../lib/selfService.inc:489 ../lib/modules/mitKerberos.inc:115 -#: ../lib/modules/mitKerberos.inc:210 ../lib/modules/mitKerberos.inc:248 -#: ../lib/modules/mitKerberos.inc:334 ../lib/modules/mitKerberos.inc:805 -#: ../lib/modules/selfRegistration.inc:392 +#: ../templates/lists/changePassword.php:277 ../templates/login.php:313 +#: ../templates/config/mainmanage.php:500 ../templates/config/confmain.php:285 +#: ../lib/types/alias.inc:94 ../lib/types/user.inc:118 +#: ../lib/types/user.inc:120 ../lib/selfService.inc:489 +#: ../lib/modules/mitKerberos.inc:115 ../lib/modules/mitKerberos.inc:210 +#: ../lib/modules/mitKerberos.inc:248 ../lib/modules/mitKerberos.inc:334 +#: ../lib/modules/mitKerberos.inc:805 ../lib/modules/selfRegistration.inc:392 #: ../lib/modules/selfRegistration.inc:486 #: ../lib/modules/selfRegistration.inc:493 -#: ../lib/modules/windowsLDSUser.inc:117 ../lib/modules/windowsLDSUser.inc:331 -#: ../lib/modules/windowsLDSUser.inc:648 ../lib/modules/windowsLDSUser.inc:742 -#: ../lib/modules/windowsLDSUser.inc:853 ../lib/modules/windowsLDSUser.inc:1803 +#: ../lib/modules/windowsLDSUser.inc:117 ../lib/modules/windowsLDSUser.inc:335 +#: ../lib/modules/windowsLDSUser.inc:652 ../lib/modules/windowsLDSUser.inc:749 +#: ../lib/modules/windowsLDSUser.inc:860 ../lib/modules/windowsLDSUser.inc:1821 #: ../lib/modules/account.inc:94 ../lib/modules/account.inc:129 #: ../lib/modules/account.inc:131 ../lib/modules/account.inc:132 -#: ../lib/modules/account.inc:214 ../lib/modules/account.inc:233 -#: ../lib/modules/account.inc:245 ../lib/modules/account.inc:258 +#: ../lib/modules/account.inc:211 ../lib/modules/account.inc:230 +#: ../lib/modules/account.inc:242 ../lib/modules/account.inc:255 #: ../lib/modules/uidObject.inc:44 ../lib/modules/uidObject.inc:66 #: ../lib/modules/uidObject.inc:75 ../lib/modules/uidObject.inc:84 #: ../lib/modules/uidObject.inc:95 ../lib/modules/uidObject.inc:150 @@ -18731,8 +18769,8 @@ msgstr "User must change password" #: ../lib/modules/nisNetGroupHost.inc:260 ../lib/modules/posixAccount.inc:103 #: ../lib/modules/posixAccount.inc:104 ../lib/modules/posixAccount.inc:107 #: ../lib/modules/posixAccount.inc:210 ../lib/modules/posixAccount.inc:298 -#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1604 -#: ../lib/modules/posixAccount.inc:2098 ../lib/modules/windowsUser.inc:131 +#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1650 +#: ../lib/modules/posixAccount.inc:2152 ../lib/modules/windowsUser.inc:131 #: ../lib/modules/windowsUser.inc:420 ../lib/modules/windowsUser.inc:872 #: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1151 #: ../lib/modules/windowsUser.inc:2850 ../lib/modules/pykotaUser.inc:115 @@ -18742,17 +18780,18 @@ msgstr "User must change password" #: ../lib/modules/nisnetgroup.inc:154 ../lib/modules/nisnetgroup.inc:483 #: ../lib/modules/inetOrgPerson.inc:100 ../lib/modules/inetOrgPerson.inc:166 #: ../lib/modules/inetOrgPerson.inc:689 ../lib/modules/inetOrgPerson.inc:1196 -#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1946 -#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2202 -#: ../lib/modules/inetOrgPerson.inc:3012 ../lib/modules/inetOrgPerson.inc:4110 -#: ../lib/modules/inetOrgPerson.inc:4139 +#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1944 +#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2200 +#: ../lib/modules/inetOrgPerson.inc:3010 ../lib/modules/inetOrgPerson.inc:4107 +#: ../lib/modules/inetOrgPerson.inc:4136 #: ../lib/modules/passwordSelfReset.inc:627 #: ../lib/modules/passwordSelfReset.inc:1022 #: ../lib/modules/passwordSelfReset.inc:1253 #: ../lib/modules/heimdalKerberos.inc:93 ../lib/modules/heimdalKerberos.inc:179 #: ../lib/modules/heimdalKerberos.inc:217 #: ../lib/modules/heimdalKerberos.inc:285 -#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:228 +#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:184 +#: ../help/help.inc:232 msgid "User name" msgstr "User name" @@ -18764,7 +18803,7 @@ msgid "User name (pre W2K)" msgstr "User name (pre W2K)" #: ../lib/modules/selfRegistration.inc:493 -#: ../lib/modules/windowsLDSUser.inc:744 ../lib/modules/windowsLDSUser.inc:745 +#: ../lib/modules/windowsLDSUser.inc:751 ../lib/modules/windowsLDSUser.inc:752 #: ../lib/modules/posixAccount.inc:111 ../lib/modules/windowsUser.inc:1020 #: ../lib/modules/windowsUser.inc:1021 ../lib/modules/pykotaUser.inc:276 #: ../lib/modules/pykotaUser.inc:277 ../lib/modules/pykotaUser.inc:280 @@ -18778,13 +18817,13 @@ msgstr "User name and email address" #: ../templates/config/confmain.php:494 #: ../templates/selfService/adminMain.php:515 ../lib/modules/imapAccess.inc:107 -#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:332 +#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:342 msgid "User name attribute" msgstr "User name attribute" #: ../lib/modules/mitKerberos.inc:280 ../lib/modules/mitKerberos.inc:281 #: ../lib/modules/selfRegistration.inc:486 -#: ../lib/modules/windowsLDSUser.inc:742 ../lib/modules/windowsLDSUser.inc:743 +#: ../lib/modules/windowsLDSUser.inc:749 ../lib/modules/windowsLDSUser.inc:750 #: ../lib/modules/account.inc:129 ../lib/modules/account.inc:130 #: ../lib/modules/account.inc:132 ../lib/modules/zarafaContact.inc:178 #: ../lib/modules/zarafaContact.inc:179 ../lib/modules/uidObject.inc:84 @@ -18815,7 +18854,7 @@ msgstr "" msgid "User name for NIS." msgstr "User name for NIS." -#: ../help/help.inc:229 +#: ../help/help.inc:233 msgid "" "User name for SSH connection to lamdaemon server. If empty the user name of " "the person who is logged into LAM will be used." @@ -18854,7 +18893,7 @@ msgstr "" msgid "User name or email address" msgstr "User name or email address" -#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2215 +#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2269 msgid "User name suggestion" msgstr "User name suggestion" @@ -18882,7 +18921,7 @@ msgstr "User server" #: ../lib/types/user.inc:55 ../lib/modules/posixAccount.inc:83 #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:87 -#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/zarafaUser.inc:1803 +#: ../lib/modules/posixAccount.inc:2223 ../lib/modules/zarafaUser.inc:1803 #: ../lib/modules/sudoRole.inc:73 ../lib/modules/sudoRole.inc:97 #: ../lib/modules/sudoRole.inc:158 ../lib/modules/sudoRole.inc:215 #: ../lib/modules/sudoRole.inc:227 ../lib/modules/sudoRole.inc:300 @@ -18896,7 +18935,7 @@ msgstr "Users" msgid "Users or groups that may directly send email as this user." msgstr "Users or groups that may directly send email as this user." -#: ../lib/modules/posixGroup.inc:427 +#: ../lib/modules/posixGroup.inc:428 msgid "" "Users who are member of the current group. Users who have set their primary " "group to this group will not be shown." @@ -18904,7 +18943,7 @@ msgstr "" "Users who are member of the current group. Users who have set their primary " "group to this group will not be shown." -#: ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:432 msgid "" "Users who will become member of the current group. User names are separated " "by semicolons." @@ -18936,7 +18975,7 @@ msgstr "" msgid "VCARD 2.1 Export" msgstr "VCARD 2.1 Export" -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 msgid "Valid to" msgstr "Valid to" @@ -19047,95 +19086,95 @@ msgstr "Voicemail mailbox for this account." msgid "Want more features? Get LAM Pro!" msgstr "Want more features? Get LAM Pro!" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/page.php:70 msgid "Warning" msgstr "Warning" -#: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1452 -#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:841 +#: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1470 +#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:840 #: ../lib/modules/organizationalRoleUser.inc:197 #: ../lib/modules/organizationalRoleUser.inc:214 #: ../lib/modules/windowsUser.inc:2315 ../lib/modules/windowsLDSGroup.inc:713 -#: ../lib/modules/groupOfNamesUser.inc:224 -#: ../lib/modules/groupOfNamesUser.inc:269 ../lib/modules/windowsGroup.inc:1025 -#: ../lib/modules.inc:2033 +#: ../lib/modules/groupOfNamesUser.inc:225 +#: ../lib/modules/groupOfNamesUser.inc:270 ../lib/modules/windowsGroup.inc:1025 +#: ../lib/modules.inc:2031 #, php-format msgid "Was unable to add attributes to DN: %s." msgstr "Was unable to add attributes to DN: %s." -#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:659 -#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2473 +#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:658 +#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2471 #: ../lib/import.inc:461 ../lib/import.inc:618 ../lib/import.inc:680 -#: ../lib/import.inc:743 ../lib/modules.inc:1995 +#: ../lib/import.inc:743 ../lib/modules.inc:1993 #, php-format msgid "Was unable to create DN: %s." msgstr "Was unable to create DN: %s." -#: ../lib/account.inc:972 ../lib/account.inc:980 -#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:726 +#: ../lib/account.inc:976 ../lib/account.inc:984 +#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:725 #, php-format msgid "Was unable to delete DN: %s." msgstr "Was unable to delete DN: %s." -#: ../templates/lists/changePassword.php:787 -#: ../templates/lists/changePassword.php:884 -#: ../templates/lists/changePassword.php:934 ../templates/delete.php:266 +#: ../templates/lists/changePassword.php:791 +#: ../templates/lists/changePassword.php:888 +#: ../templates/lists/changePassword.php:938 ../templates/delete.php:266 #, php-format msgid "Was unable to modify attributes from DN: %s." msgstr "Was unable to modify attributes from DN: %s." -#: ../lib/modules/posixAccount.inc:825 ../lib/modules/windowsUser.inc:2341 -#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:703 +#: ../lib/modules/posixAccount.inc:824 ../lib/modules/windowsUser.inc:2341 +#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:702 #: ../lib/modules/nisNetGroupUser.inc:355 #: ../lib/modules/nisNetGroupUser.inc:372 #: ../lib/modules/nisNetGroupUser.inc:407 #: ../lib/modules/nisNetGroupUser.inc:419 #: ../lib/modules/nisNetGroupUser.inc:566 -#: ../lib/modules/groupOfNamesUser.inc:254 ../lib/modules/customFields.inc:4826 -#: ../lib/modules.inc:2015 +#: ../lib/modules/groupOfNamesUser.inc:255 ../lib/modules/customFields.inc:4826 +#: ../lib/modules.inc:2013 #, php-format msgid "Was unable to modify attributes of DN: %s." msgstr "Was unable to modify attributes of DN: %s." -#: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1465 -#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:858 +#: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1483 +#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:857 #: ../lib/modules/organizationalRoleUser.inc:202 #: ../lib/modules/organizationalRoleUser.inc:225 #: ../lib/modules/windowsUser.inc:2328 ../lib/modules/windowsLDSGroup.inc:726 -#: ../lib/modules/groupOfNamesUser.inc:219 -#: ../lib/modules/groupOfNamesUser.inc:283 ../lib/modules/windowsGroup.inc:1038 -#: ../lib/modules.inc:2046 +#: ../lib/modules/groupOfNamesUser.inc:220 +#: ../lib/modules/groupOfNamesUser.inc:284 ../lib/modules/windowsGroup.inc:1038 +#: ../lib/modules.inc:2044 #, php-format msgid "Was unable to remove attributes from DN: %s." msgstr "Was unable to remove attributes from DN: %s." -#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1975 +#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1973 #, php-format msgid "Was unable to rename DN: %s." msgstr "Was unable to rename DN: %s." -#: ../lib/modules/windowsLDSUser.inc:197 ../lib/modules/windowsLDSUser.inc:435 -#: ../lib/modules/windowsLDSUser.inc:665 ../lib/modules/windowsLDSUser.inc:898 -#: ../lib/modules/windowsLDSUser.inc:1827 ../lib/modules/windowsUser.inc:215 +#: ../lib/modules/windowsLDSUser.inc:197 ../lib/modules/windowsLDSUser.inc:439 +#: ../lib/modules/windowsLDSUser.inc:669 ../lib/modules/windowsLDSUser.inc:905 +#: ../lib/modules/windowsLDSUser.inc:1845 ../lib/modules/windowsUser.inc:215 #: ../lib/modules/windowsUser.inc:530 ../lib/modules/windowsUser.inc:890 #: ../lib/modules/windowsUser.inc:981 ../lib/modules/windowsUser.inc:1200 #: ../lib/modules/windowsUser.inc:2876 ../lib/modules/windowsUser.inc:3072 #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:405 #: ../lib/modules/inetOrgPerson.inc:528 ../lib/modules/inetOrgPerson.inc:673 #: ../lib/modules/inetOrgPerson.inc:677 ../lib/modules/inetOrgPerson.inc:1449 -#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1996 -#: ../lib/modules/inetOrgPerson.inc:2063 ../lib/modules/inetOrgPerson.inc:2620 -#: ../lib/modules/inetOrgPerson.inc:4100 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1994 +#: ../lib/modules/inetOrgPerson.inc:2061 ../lib/modules/inetOrgPerson.inc:2618 +#: ../lib/modules/inetOrgPerson.inc:4097 ../lib/modules/inetOrgPerson.inc:4127 msgid "Web site" msgstr "Web site" -#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:475 +#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:515 #: ../lib/tools/webauthn.inc:46 ../lib/modules/webauthn.inc:69 msgid "Webauthn devices" msgstr "Webauthn devices" -#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:572 +#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:570 #: ../lib/modules/webauthn.inc:137 msgid "Webauthn failed" msgstr "Webauthn failed" @@ -19184,8 +19223,8 @@ msgstr "" "When using ldaps:// or TLS be sure to use exactly the same IP/domain name as " "in your certificate!" -#: ../templates/lists/changePassword.php:421 -#: ../templates/lists/changePassword.php:455 ../lib/types/user.inc:327 +#: ../templates/lists/changePassword.php:425 +#: ../templates/lists/changePassword.php:459 ../lib/types/user.inc:327 #: ../lib/types/user.inc:376 ../lib/types/user.inc:473 #: ../lib/types/user.inc:516 ../lib/types/user.inc:1111 #: ../lib/types/user.inc:1113 ../lib/modules/windowsHost.inc:63 @@ -19195,14 +19234,14 @@ msgstr "" msgid "Windows" msgstr "Windows" -#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2153 +#: ../lib/modules/posixGroup.inc:551 ../lib/modules/posixAccount.inc:2207 msgid "Windows domain info" msgstr "Windows domain info" -#: ../lib/modules/posixGroup.inc:467 ../lib/modules/posixGroup.inc:577 -#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:122 -#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2202 -#: ../lib/modules/posixAccount.inc:2273 +#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixGroup.inc:578 +#: ../lib/modules/posixGroup.inc:717 ../lib/modules/posixAccount.inc:122 +#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2256 +#: ../lib/modules/posixAccount.inc:2327 msgid "Windows domain info DN" msgstr "Windows domain info DN" @@ -19252,7 +19291,7 @@ msgstr "Windows primary group SID" msgid "Windows-Domain name of group." msgstr "Windows-Domain name of group." -#: ../lib/modules/windowsLDSUser.inc:902 ../lib/modules/windowsUser.inc:1204 +#: ../lib/modules/windowsLDSUser.inc:909 ../lib/modules/windowsUser.inc:1204 #: ../lib/modules/inetOrgPerson.inc:1460 msgid "Work details" msgstr "Work details" @@ -19288,9 +19327,9 @@ msgstr "Write" msgid "Write access" msgstr "Write access" -#: ../templates/login.php:523 ../templates/login.php:588 -#: ../templates/selfService/selfServiceLogin.php:155 -#: ../templates/selfService/selfServiceLogin.php:191 +#: ../templates/login.php:533 ../templates/login.php:598 +#: ../templates/selfService/selfServiceLogin.php:156 +#: ../templates/selfService/selfServiceLogin.php:192 msgid "Wrong password/user name combination. Please try again." msgstr "Wrong password/user name combination. Please try again." @@ -19313,15 +19352,15 @@ msgstr "Yes" msgid "You are not yet allowed to change your password." msgstr "You are not yet allowed to change your password." -#: ../templates/lists/changePassword.php:543 -#: ../templates/lists/changePassword.php:553 +#: ../templates/lists/changePassword.php:547 +#: ../templates/lists/changePassword.php:557 #: ../lib/modules/sambaSamAccount.inc:2484 #: ../lib/modules/sambaSamAccount.inc:2578 ../lib/modules/ppolicyUser.inc:338 #: ../lib/modules/ppolicyUser.inc:418 msgid "You are reusing an old password. Please choose a different password." msgstr "You are reusing an old password. Please choose a different password." -#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:709 +#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:710 #: ../lib/modules/posixAccount.inc:103 ../lib/modules/posixAccount.inc:105 msgid "" "You are using capital letters. This can cause problems because Windows is " @@ -19330,11 +19369,11 @@ msgstr "" "You are using capital letters. This can cause problems because Windows is " "not case-sensitive." -#: ../help/help.inc:415 +#: ../help/help.inc:425 msgid "You can delete or move expired accounts." msgstr "You can delete or move expired accounts." -#: ../lib/lists.inc:1259 +#: ../lib/lists.inc:1258 #, php-format msgid "" "You can download your PDF files {link=%s}{color=#d2131a}here{endcolor}" @@ -19343,7 +19382,7 @@ msgstr "" "You can download your PDF files {link=%s}{color=#d2131a}here{endcolor}" "{endlink}." -#: ../help/help.inc:303 +#: ../help/help.inc:313 msgid "You can enable 2-factor authentication here (e.g. via mobile device)." msgstr "You can enable 2-factor authentication here (e.g. via mobile device)." @@ -19369,7 +19408,7 @@ msgstr "" "You can specify if LAM allows full write access, password changes or only " "read access." -#: ../help/help.inc:186 +#: ../help/help.inc:190 msgid "" "You can use the wildcard @@LOGIN_DN@@ which will be substituted with the DN " "of the user who is currently logged in to LAM." @@ -19390,8 +19429,8 @@ msgid "You can use this to temporarily deactivate the Zarafa extension." msgstr "You can use this to temporarily deactivate the Zarafa extension." #: ../lib/modules/passwordSelfReset.inc:129 -#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:343 -#: ../help/help.inc:394 +#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:353 +#: ../help/help.inc:404 msgid "" "You can use wildcards for LDAP attributes in the form @@attribute@@ (e.g. " "@@uid@@ for the user name)." @@ -19429,7 +19468,7 @@ msgstr "You cannot perform updates while server is in read-only mode" msgid "You cannot rename an entry which has child entries." msgstr "You cannot rename an entry which has child entries." -#: ../templates/config/confmain.php:569 +#: ../templates/config/confmain.php:568 msgid "" "You cannot use SSL and TLS encryption at the same time. Please use either " "\"ldaps://\" or TLS." @@ -19474,9 +19513,9 @@ msgstr "You left the value blank for required attribute (%s)." msgid "You made no changes" msgstr "You made no changes" -#: ../templates/config/mainmanage.php:213 -#: ../templates/config/mainmanage.php:219 -#: ../templates/config/mainmanage.php:231 +#: ../templates/config/mainmanage.php:224 +#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:242 msgid "You might need to restart your webserver for changes to take effect." msgstr "You might need to restart your webserver for changes to take effect." @@ -19534,7 +19573,8 @@ msgstr "" "Your PHP.INI does not have file_uploads = ON. Please enable file uploads in " "PHP." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "" "Your changes cannot be saved until you make the file writable for the " @@ -19543,7 +19583,7 @@ msgstr "" "Your changes cannot be saved until you make the file writable for the " "webserver user." -#: ../templates/login.php:456 ../templates/selfService/selfServiceLogin.php:380 +#: ../templates/login.php:459 ../templates/selfService/selfServiceLogin.php:384 #, php-format msgid "" "Your licence expires on %s. You need to purchase a new licence to be able to " @@ -19552,7 +19592,7 @@ msgstr "" "Your license expires on %s. You need to purchase a new license to be able to " "use LAM Pro after this date." -#: ../lib/modules/selfRegistration.inc:863 +#: ../lib/modules/selfRegistration.inc:862 msgid "" "Your new account was created but post processing failed. Please contact your " "local administrator." @@ -19560,7 +19600,7 @@ msgstr "" "Your new account was created but post processing failed. Please contact your " "local administrator." -#: ../lib/modules/selfRegistration.inc:860 +#: ../lib/modules/selfRegistration.inc:859 msgid "" "Your new account was successfully created. Please return to login to change " "your user data." @@ -19568,7 +19608,7 @@ msgstr "" "Your new account was successfully created. Please return to login to change " "your user data." -#: ../lib/account.inc:1505 ../lib/modules/windowsUser.inc:3218 +#: ../lib/account.inc:1488 ../lib/modules/windowsUser.inc:3218 msgid "" "Your password does not meet the password strength qualifications. Please " "retry with another one." @@ -19588,7 +19628,7 @@ msgstr "Your selected password is known to be insecure." msgid "Your session expired, click here to go back to the login page." msgstr "Your session expired, click here to go back to the login page." -#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:102 +#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:103 msgid "Your session expired, please log in again." msgstr "Your session expired, please log in again." @@ -19597,7 +19637,7 @@ msgstr "Your session expired, please log in again." msgid "Your settings were successfully saved." msgstr "Your settings were successfully saved." -#: ../lib/modules/windowsLDSUser.inc:413 ../lib/modules/windowsLDSUser.inc:575 +#: ../lib/modules/windowsLDSUser.inc:417 ../lib/modules/windowsLDSUser.inc:579 #: ../lib/modules/windowsUser.inc:502 ../lib/modules/windowsUser.inc:758 #: ../lib/modules/inetOrgPerson.inc:439 ../lib/modules/inetOrgPerson.inc:471 msgid "YourCompany" @@ -19659,7 +19699,7 @@ msgstr "Zarafa will store the user's archives on these servers." #: ../lib/types/bind.inc:81 ../lib/modules/ddns.inc:101 #: ../lib/modules/ddns.inc:112 ../lib/modules/ddns.inc:127 -#: ../lib/modules/ddns.inc:392 ../lib/modules/ddns.inc:422 +#: ../lib/modules/ddns.inc:388 ../lib/modules/ddns.inc:418 msgid "Zone name" msgstr "Zone name" @@ -19692,8 +19732,8 @@ msgstr "add value" msgid "adminstrators" msgstr "adminstrators" -#: ../templates/config/mainmanage.php:391 -#: ../templates/config/mainmanage.php:449 ../templates/schema/schema.php:187 +#: ../templates/config/mainmanage.php:431 +#: ../templates/config/mainmanage.php:489 ../templates/schema/schema.php:187 #: ../templates/schema/schema.php:283 msgid "all" msgstr "all" @@ -19733,7 +19773,7 @@ msgstr "confirm" msgid "dc=yourcompany,dc=com" msgstr "dc=yourcompany,dc=com" -#: ../templates/config/mainmanage.php:448 ../lib/modules/ppolicyUser.inc:126 +#: ../templates/config/mainmanage.php:488 ../lib/modules/ppolicyUser.inc:126 msgid "default" msgstr "default" @@ -19836,11 +19876,11 @@ msgstr "group@company.com" msgid "hint" msgstr "hint" -#: ../lib/modules/quota.inc:214 ../lib/modules/quota.inc:220 +#: ../lib/modules/quota.inc:218 ../lib/modules/quota.inc:224 msgid "hours" msgstr "hours" -#: ../lib/modules/windowsLDSUser.inc:437 ../lib/modules/windowsLDSUser.inc:443 +#: ../lib/modules/windowsLDSUser.inc:441 ../lib/modules/windowsLDSUser.inc:447 #: ../lib/modules/windowsUser.inc:532 ../lib/modules/windowsUser.inc:538 #: ../lib/modules/inetOrgPerson.inc:407 msgid "http://www.company.com" @@ -19924,7 +19964,7 @@ msgstr "new" #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 -#: ../lib/modules/windowsLDSUser.inc:1496 ../lib/modules/kopanoServer.inc:311 +#: ../lib/modules/windowsLDSUser.inc:1514 ../lib/modules/kopanoServer.inc:311 #: ../lib/modules/zarafaDynamicGroup.inc:417 #: ../lib/modules/zarafaDynamicGroup.inc:420 #: ../lib/modules/zarafaContact.inc:638 ../lib/modules/zarafaGroup.inc:653 @@ -19961,7 +20001,7 @@ msgstr "new" #: ../lib/modules/generalInformation.inc:101 #: ../lib/modules/kopanoAddressList.inc:296 #: ../lib/modules/kopanoAddressList.inc:299 ../lib/modules/zarafaServer.inc:331 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:772 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 msgid "no" msgstr "no" @@ -20008,7 +20048,7 @@ msgstr "ou=accounts,dc=yourdomain,dc=org" msgid "pc01$" msgstr "pc01$" -#: ../lib/modules/posixAccount.inc:2443 +#: ../lib/modules/posixAccount.inc:2497 msgid "pc01,Room 2.34" msgstr "pc01,Room 2.34" @@ -20071,10 +20111,10 @@ msgstr "search" msgid "seconds" msgstr "seconds" -#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:341 -#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:412 -#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2411 -#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2213 +#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:345 +#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:413 +#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2465 +#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2211 #: ../lib/modules/asteriskVoicemail.inc:166 #: ../lib/modules/heimdalKerberos.inc:212 msgid "secret" @@ -20084,11 +20124,11 @@ msgstr "secret" msgid "select the rdn attribute" msgstr "select the rdn attribute" -#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/windowsLDSUser.inc:333 +#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/windowsLDSUser.inc:337 #: ../lib/modules/uidObject.inc:68 ../lib/modules/posixAccount.inc:212 #: ../lib/modules/windowsUser.inc:422 ../lib/modules/windowsUser.inc:669 #: ../lib/modules/windowsUser.inc:678 ../lib/modules/pykotaUser.inc:195 -#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2204 +#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2202 #: ../lib/modules/heimdalKerberos.inc:181 ../lib/modules/nisMailAlias.inc:109 msgid "smiller" msgstr "smiller" @@ -20101,7 +20141,7 @@ msgstr "smiller@otherdomain.org" msgid "smiller@yourdomain.org" msgstr "smiller@yourdomain.org" -#: ../lib/modules/windowsLDSUser.inc:456 ../lib/modules/windowsUser.inc:613 +#: ../lib/modules/windowsLDSUser.inc:460 ../lib/modules/windowsUser.inc:613 msgid "smtp:user@example.com" msgstr "smtp:user@example.com" @@ -20129,18 +20169,18 @@ msgstr "test-start" msgid "true" msgstr "true" -#: ../lib/modules/windowsLDSUser.inc:583 ../lib/modules/ipHost.inc:105 +#: ../lib/modules/windowsLDSUser.inc:587 ../lib/modules/ipHost.inc:105 #: ../lib/modules/windowsUser.inc:766 ../lib/modules/inetOrgPerson.inc:293 #: ../lib/modules/aliasEntry.inc:71 ../lib/modules/qmailGroup.inc:246 #: ../lib/modules/qmailGroup.inc:254 ../lib/modules/qmailGroup.inc:262 msgid "uid=smiller,ou=People,dc=company,dc=com" msgstr "uid=smiller,ou=People,dc=company,dc=com" -#: ../templates/config/mainmanage.php:327 +#: ../templates/config/mainmanage.php:367 msgid "use custom CA certificates" msgstr "use custom CA certificates" -#: ../templates/config/mainmanage.php:324 +#: ../templates/config/mainmanage.php:364 msgid "use system certificates" msgstr "use system certificates" @@ -20148,7 +20188,7 @@ msgstr "use system certificates" msgid "user01,user02,user03" msgstr "user01,user02,user03" -#: ../lib/modules/windowsLDSUser.inc:419 ../lib/modules/qmailUser.inc:239 +#: ../lib/modules/windowsLDSUser.inc:423 ../lib/modules/qmailUser.inc:239 #: ../lib/modules/qmailUser.inc:245 ../lib/modules/qmailUser.inc:791 #: ../lib/modules/eduPerson.inc:162 ../lib/modules/windowsUser.inc:508 #: ../lib/modules/windowsUser.inc:514 ../lib/modules/pykotaUser.inc:729 @@ -20174,7 +20214,7 @@ msgstr "with " #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:234 #: ../templates/schema/schema.php:316 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 -#: ../lib/modules/windowsLDSUser.inc:519 ../lib/modules/windowsLDSUser.inc:1496 +#: ../lib/modules/windowsLDSUser.inc:523 ../lib/modules/windowsLDSUser.inc:1514 #: ../lib/modules/kopanoServer.inc:313 #: ../lib/modules/zarafaDynamicGroup.inc:415 #: ../lib/modules/zarafaDynamicGroup.inc:422 @@ -20207,7 +20247,7 @@ msgstr "with " #: ../lib/modules/generalInformation.inc:103 #: ../lib/modules/kopanoAddressList.inc:294 #: ../lib/modules/kopanoAddressList.inc:301 ../lib/modules/zarafaServer.inc:333 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:768 msgid "yes" msgstr "yes" @@ -20221,6 +20261,125 @@ msgstr "yes - ordered ascending" msgid "yes - ordered descending" msgstr "yes - ordered descending" +#~ msgid "License" +#~ msgstr "License" + +#~ msgid "Please select how to be warned before your license expires." +#~ msgstr "Please select how to be warned before your license expires." + +#~ msgid "Adding the range failed because errors occured." +#~ msgstr "Adding the range failed because errors occured." + +#~ msgid "Additional options" +#~ msgstr "Additional options" + +#~ msgid "" +#~ "Business category (e.g. Administration, IT-Services, Manangement, ...)" +#~ msgstr "" +#~ "Business category (e.g. Administration, IT-Services, Manangement, ...)" + +#~ msgid "Creates accounts by uploading a CSV formated file." +#~ msgstr "Creates accounts by uploading a CSV formated file." + +#~ msgid "" +#~ "DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." +#~ msgstr "" +#~ "DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." + +#~ msgid "Default (\\r\\n)" +#~ msgstr "Default (\\r\\n)" + +#~ msgid "Email format" +#~ msgstr "Email format" + +#~ msgid "" +#~ "If empty GID number will be generated automaticly depending on your " +#~ "configuration settings." +#~ msgstr "" +#~ "If empty GID number will be generated automaticly depending on your " +#~ "configuration settings." + +#~ msgid "If empty GID number will be generated automaticly." +#~ msgstr "If empty GID number will be generated automaticly." + +#~ msgid "If empty UID number will be generated automaticly." +#~ msgstr "If empty UID number will be generated automaticly." + +#~ msgid "" +#~ "If set to true then all incomming mails needs to come from a member of " +#~ "the list." +#~ msgstr "" +#~ "If set to true then all incomming mails needs to come from a member of " +#~ "the list." + +#~ msgid "" +#~ "If this is set to true then an incomming mail needs to be approved by the " +#~ "sender." +#~ msgstr "" +#~ "If this is set to true then an incomming mail needs to be approved by the " +#~ "sender." + +#~ msgid "Invalid password for IMAP admin or other problem occured." +#~ msgstr "Invalid password for IMAP admin or other problem occured." + +#~ msgid "LAM was unable to create account %s! An LDAP error occured." +#~ msgstr "LAM was unable to create account %s! An LDAP error occured." + +#~ msgid "Non-standard (\\n)" +#~ msgstr "Non-standard (\\n)" + +#~ msgid "One or more errors occured. The invalid fields are marked." +#~ msgstr "One or more errors occured. The invalid fields are marked." + +#~ msgid "" +#~ "Please change this setting only if you experience problems in receiving " +#~ "emails from LAM. This defines the line ending of emails." +#~ msgstr "" +#~ "Please change this setting only if you experience problems in receiving " +#~ "emails from LAM. This defines the line ending of emails." + +#~ msgid "Please enter an LDAP filter to specifiy the exported entries." +#~ msgstr "Please enter an LDAP filter to specifiy the exported entries." + +#~ msgid "" +#~ "Please provide a CSV formated file with your account data. The cells in " +#~ "the first row must be filled with the column identifiers. The following " +#~ "rows represent one account for each row." +#~ msgstr "" +#~ "Please provide a CSV formated file with your account data. The cells in " +#~ "the first row must be filled with the column identifiers. The following " +#~ "rows represent one account for each row." + +#~ msgid "" +#~ "Please select your prefered log level. Messages with a lower level will " +#~ "not be logged." +#~ msgstr "" +#~ "Please select your prefered log level. Messages with a lower level will " +#~ "not be logged." + +#~ msgid "" +#~ "This email address will be set as sender address of all mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "This email address will be set as sender address of all mails. If empty " +#~ "the system default (php.ini) will be used." + +#~ msgid "" +#~ "This email address will be set as sender address of the mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "This email address will be set as sender address of the mails. If empty " +#~ "the system default (php.ini) will be used." + +#~ msgid "" +#~ "This is the suffix of the LDAP tree from where to search for LDAP " +#~ "entries. Only entries in this subtree will be displayed in the account " +#~ "list. When creating a new accont this will be the DN where it is saved." +#~ msgstr "" +#~ "This is the suffix of the LDAP tree from where to search for LDAP " +#~ "entries. Only entries in this subtree will be displayed in the account " +#~ "list. When creating a new accont this will be the DN where it is saved." + #~ msgid "Automatical scripts" #~ msgstr "Automatical scripts" diff --git a/lam/templates/config/mainmanage.php b/lam/templates/config/mainmanage.php index 5562d4f7..b5c386b8 100644 --- a/lam/templates/config/mainmanage.php +++ b/lam/templates/config/mainmanage.php @@ -111,11 +111,11 @@ if (isset($_POST['submitFormData'])) { $cfg->licenseEmailTo = $_POST['licenseEmailTo']; if ((($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_EMAIL) || ($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_ALL)) && !get_preg($cfg->licenseEmailFrom, 'email')) { - $errors[] = _('License') . ': ' . _('From address') . ' - ' . _('Please enter a valid email address!'); + $errors[] = _('Licence') . ': ' . _('From address') . ' - ' . _('Please enter a valid email address!'); } if ((($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_EMAIL) || ($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_ALL)) && !get_preg($cfg->licenseEmailTo, 'email')) { - $errors[] = _('License') . ': ' . _('TO address') . ' - ' . _('Please enter a valid email address!'); + $errors[] = _('Licence') . ': ' . _('TO address') . ' - ' . _('Please enter a valid email address!'); } } // set session timeout From 5b17baa628428bd09fbcd64d44f1faf0ca790f00 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Wed, 22 Apr 2020 18:41:57 +0200 Subject: [PATCH 08/11] i18n --- lam/locale/zh_CN/LC_MESSAGES/messages.mo | Bin 309448 -> 309901 bytes lam/locale/zh_CN/LC_MESSAGES/messages.po | 1980 +++++++++++----------- 2 files changed, 1025 insertions(+), 955 deletions(-) diff --git a/lam/locale/zh_CN/LC_MESSAGES/messages.mo b/lam/locale/zh_CN/LC_MESSAGES/messages.mo index 4de7385ec5414bd7ed652491ab280266dc3f14f6..c6053496ebd10d1fe1c31f3d128ecfe0de249423 100644 GIT binary patch delta 74587 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 AX#fBK diff --git a/lam/locale/zh_CN/LC_MESSAGES/messages.po b/lam/locale/zh_CN/LC_MESSAGES/messages.po index 125130d5..2c26b8be 100644 --- a/lam/locale/zh_CN/LC_MESSAGES/messages.po +++ b/lam/locale/zh_CN/LC_MESSAGES/messages.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: LAM 7.1\n" +"Project-Id-Version: LAM 7.2\n" "Report-Msgid-Bugs-To: post@rolandgruber.de\n" "POT-Creation-Date: 2004-01-14 17:45+0200\n" -"PO-Revision-Date: 2020-02-21 15:28+0800\n" +"PO-Revision-Date: 2020-04-22 17:56+0800\n" "Last-Translator: Alan Needham \n" "Language-Team: Chinese(Simplified) \n" "Language: zh_CN\n" @@ -108,7 +108,7 @@ msgid "12345" msgstr "12345" #: ../templates/config/confmain.php:463 -#: ../templates/selfService/adminMain.php:485 ../help/help.inc:302 +#: ../templates/selfService/adminMain.php:485 ../help/help.inc:312 msgid "2-factor authentication" msgstr "双重因子认证" @@ -180,8 +180,8 @@ msgstr "SOA记录除了NS/MX/A条目外不允许其他记录." msgid "A SOA record requires that the host name is set to \"@\"." msgstr "SOA记录需要主机名前设置\"@\"." -#: ../lib/modules/selfRegistration.inc:772 -#: ../lib/modules/passwordSelfReset.inc:1862 +#: ../lib/modules/selfRegistration.inc:771 +#: ../lib/modules/passwordSelfReset.inc:1860 msgid "" "A confirmation mail was sent. Please click on the link in the mail to " "proceed." @@ -327,8 +327,8 @@ msgstr "帐号" #: ../lib/modules/zarafaContact.inc:179 ../lib/modules/zarafaContact.inc:180 #: ../lib/modules/zarafaContact.inc:181 ../lib/modules/zarafaContact.inc:184 #: ../lib/modules/zarafaContact.inc:185 ../lib/modules/windowsHost.inc:145 -#: ../lib/modules/posixGroup.inc:708 ../lib/modules/posixGroup.inc:712 -#: ../lib/modules/posixGroup.inc:713 ../lib/modules/zarafaGroup.inc:190 +#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 ../lib/modules/zarafaGroup.inc:190 #: ../lib/modules/zarafaGroup.inc:192 ../lib/modules/zarafaGroup.inc:193 #: ../lib/modules/zarafaGroup.inc:194 ../lib/modules/zarafaGroup.inc:195 #: ../lib/modules/zarafaGroup.inc:197 ../lib/modules/device.inc:127 @@ -680,7 +680,7 @@ msgstr "新增帐号成功." msgid "Account was modified successfully." msgstr "帐号修改成功." -#: ../lib/passwordExpirationJob.inc:488 ../help/help.inc:414 +#: ../lib/passwordExpirationJob.inc:486 ../help/help.inc:424 msgid "Action" msgstr "功能" @@ -696,7 +696,7 @@ msgstr "操作" msgid "Activate" msgstr "激活的" -#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:366 +#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:362 msgid "Activate DynDNS" msgstr "活动的动态DNS" @@ -705,7 +705,7 @@ msgstr "活动的动态DNS" msgid "Activate TLS" msgstr "激活TLS" -#: ../help/help.inc:205 +#: ../help/help.inc:209 msgid "" "Activate this checkbox if you have any server side extension for referential " "integrity in place. LAM will then skip cleanup tasks like deletion of group " @@ -736,7 +736,7 @@ msgstr "激活这个选项将从客户机上继承初始化程序和工作目录 msgid "Activate this checkbox to set the client's printer as default printer." msgstr "激活这个选项将会设置客户打印机为缺省打印机。" -#: ../help/help.inc:376 +#: ../help/help.inc:386 msgid "" "Activate this option to export internal attributes that are not visible by " "default." @@ -781,7 +781,7 @@ msgstr "激活这个选项将会删除用户的主目录." #: ../lib/modules/kopanoAddressList.inc:141 #: ../lib/modules/kopanoAddressList.inc:185 #: ../lib/modules/kopanoAddressList.inc:298 ../lib/modules/fixed_ip.inc:119 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:763 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:761 msgid "Active" msgstr "激活" @@ -813,18 +813,18 @@ msgstr "激活帐号类型" #: ../lib/modules/bindDLZ.inc:995 ../lib/modules/bindDLZ.inc:1083 #: ../lib/modules/bindDLZ.inc:1197 ../lib/modules/bindDLZ.inc:1327 #: ../lib/modules/bindDLZ.inc:1493 ../lib/modules/bindDLZ.inc:1602 -#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:687 -#: ../lib/modules/kolabUser.inc:735 ../lib/modules/sambaGroupMapping.inc:372 +#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:686 +#: ../lib/modules/kolabUser.inc:734 ../lib/modules/sambaGroupMapping.inc:372 #: ../lib/modules/sambaGroupMapping.inc:465 ../lib/modules/pykotaUser.inc:373 #: ../lib/modules/ldapPublicKey.inc:355 ../lib/modules/ldapPublicKey.inc:364 #: ../lib/modules/nisNetGroupUser.inc:219 ../lib/modules/yubiKeyUser.inc:322 #: ../lib/modules/yubiKeyUser.inc:323 ../lib/modules/nisnetgroup.inc:301 -#: ../lib/modules/inetOrgPerson.inc:1768 ../lib/modules/kopanoUser.inc:843 +#: ../lib/modules/inetOrgPerson.inc:1766 ../lib/modules/kopanoUser.inc:843 #: ../lib/modules/kopanoUser.inc:1416 ../lib/modules/kopanoUser.inc:1447 #: ../lib/modules/windowsLDSGroup.inc:423 ../lib/modules/customFields.inc:1243 #: ../lib/modules/customFields.inc:2569 ../lib/modules/customFields.inc:2587 #: ../lib/modules/qmailGroup.inc:642 ../lib/modules/organizationalRole.inc:304 -#: ../lib/modules/fixed_ip.inc:608 ../lib/modules/windowsGroup.inc:656 +#: ../lib/modules/fixed_ip.inc:606 ../lib/modules/windowsGroup.inc:656 #: ../lib/modules/groupOfNames.inc:354 ../lib/modules/groupOfNames.inc:503 msgid "Add" msgstr "增加" @@ -898,7 +898,7 @@ msgstr "增加 Samba 3 扩展" msgid "Add Shadow account extension" msgstr "增加 Shadow 帐号扩展" -#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1704 +#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1759 msgid "Add Unix extension" msgstr "增加Unix扩展" @@ -917,7 +917,7 @@ msgstr "增加Zarafa联系人扩展" msgid "Add Zarafa extension" msgstr "增加Zarafa扩展" -#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4118 +#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4115 msgid "Add addressbook (ou=addressbook)" msgstr "增加通讯录(ou=addressbook)" @@ -938,7 +938,7 @@ msgstr "给属性新增一个值" msgid "Add another rule" msgstr "增加另外一个规则" -#: ../lib/modules/inetOrgPerson.inc:1802 ../lib/modules/windowsLDSGroup.inc:476 +#: ../lib/modules/inetOrgPerson.inc:1800 ../lib/modules/windowsLDSGroup.inc:476 #: ../lib/modules/qmailGroup.inc:683 ../lib/modules/organizationalRole.inc:309 #: ../lib/modules/groupOfNames.inc:406 ../lib/modules/groupOfNames.inc:555 msgid "Add entries" @@ -955,7 +955,7 @@ msgstr "增加条目" msgid "Add entries of this type:" msgstr "增加类型条目:" -#: ../lib/modules/fixed_ip.inc:520 +#: ../lib/modules/fixed_ip.inc:518 msgid "Add existing host" msgstr "增加已有主机" @@ -963,7 +963,7 @@ msgstr "增加已有主机" msgid "Add extension" msgstr "增加扩展" -#: ../lib/modules/ddns.inc:367 +#: ../lib/modules/ddns.inc:363 msgid "Add fix IP addresses to DNS" msgstr "为DNS增加一个固定的IP地址" @@ -971,7 +971,7 @@ msgstr "为DNS增加一个固定的IP地址" msgid "Add host extension" msgstr "增加 host 扩展" -#: ../templates/selfService/adminMain.php:707 ../help/help.inc:290 +#: ../templates/selfService/adminMain.php:707 ../help/help.inc:300 msgid "Add input field" msgstr "增加输入栏目" @@ -1017,7 +1017,7 @@ msgstr "新增binary属性" msgid "Add new field" msgstr "增加新域" -#: ../templates/selfService/adminMain.php:695 ../help/help.inc:288 +#: ../templates/selfService/adminMain.php:695 ../help/help.inc:298 msgid "Add new group" msgstr "新增组" @@ -1068,7 +1068,7 @@ msgstr "加入到已有别名中" msgid "Add value" msgstr "增加值" -#: ../lib/modules/posixGroup.inc:1002 ../lib/modules/posixGroup.inc:1045 +#: ../lib/modules/posixGroup.inc:1003 ../lib/modules/posixGroup.inc:1046 msgid "Added users" msgstr "增加的用户" @@ -1076,17 +1076,17 @@ msgstr "增加的用户" msgid "Adding" msgstr "添加中" -#: ../lib/modules/range.inc:139 -msgid "Adding the range failed because errors occured." +#: ../lib/modules/range.inc:138 +msgid "Adding the range failed because errors occurred." msgstr "因为发生了错误致使增加范围失败." -#: ../templates/selfService/adminMain.php:601 ../help/help.inc:294 +#: ../templates/selfService/adminMain.php:601 ../help/help.inc:304 msgid "Additional CSS links" msgstr "附加的CSS连接" #: ../templates/config/conftypes.php:245 -#: ../templates/selfService/adminMain.php:447 ../help/help.inc:184 -#: ../help/help.inc:298 +#: ../templates/selfService/adminMain.php:447 ../help/help.inc:188 +#: ../help/help.inc:308 msgid "Additional LDAP filter" msgstr "附加的LDAP过滤表达式" @@ -1101,8 +1101,8 @@ msgstr "本条目的附加邮件地址." #: ../lib/modules/posixAccount.inc:231 ../lib/modules/posixAccount.inc:304 #: ../lib/modules/posixAccount.inc:353 ../lib/modules/posixAccount.inc:439 -#: ../lib/modules/posixAccount.inc:1641 ../lib/modules/posixAccount.inc:1977 -#: ../lib/modules/posixAccount.inc:2113 +#: ../lib/modules/posixAccount.inc:1696 ../lib/modules/posixAccount.inc:2032 +#: ../lib/modules/posixAccount.inc:2167 msgid "Additional groups" msgstr "附加组" @@ -1110,11 +1110,7 @@ msgstr "附加组" msgid "Additional notes to describe this entry." msgstr "描述这个条目的附加备注." -#: ../templates/config/mainmanage.php:457 -msgid "Additional options" -msgstr "附加选项" - -#: ../lib/upload.inc:257 +#: ../lib/upload.inc:256 msgid "Additional tasks for module:" msgstr "模块的附加任务:" @@ -1133,17 +1129,17 @@ msgstr "地址列表总计:%s" msgid "Address of IMAP server (e.g. mail.example.org)." msgstr "IMAP服务器地址(比如:mail.example.org)." -#: ../help/help.inc:289 +#: ../help/help.inc:299 msgid "" "Adds a new group element to the list of self service options. Use this to " "structure the input fields." msgstr "为自助服务选项列表新增组元素.利用它建立输入栏目." -#: ../lib/modules/range.inc:117 +#: ../lib/modules/range.inc:116 msgid "Adds a new range pool." msgstr "增加一个新范围的地址池." -#: ../help/help.inc:291 +#: ../help/help.inc:301 msgid "Adds a new self service option to the selected group element." msgstr "为选定的组元素增加新的自助服务选项." @@ -1151,7 +1147,7 @@ msgstr "为选定的组元素增加新的自助服务选项." msgid "Adds an \"ou=addressbook\" subentry to each user." msgstr "给每一个用户增加\"ou=addressbook\"子条目." -#: ../lib/modules/range.inc:113 +#: ../lib/modules/range.inc:112 msgid "Adds input fields for a new IP range." msgstr "为新IP范围增加输入域." @@ -1207,13 +1203,13 @@ msgid "Administrators group" msgstr "管理员组" #: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2210 -#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4150 +#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4147 msgid "Advanced options" msgstr "高级选项" #: ../lib/modules/eduPerson.inc:104 ../lib/modules/eduPerson.inc:108 #: ../lib/modules/eduPerson.inc:180 ../lib/modules/eduPerson.inc:224 -#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:550 +#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:544 msgid "Affiliations" msgstr "联系" @@ -1317,7 +1313,7 @@ msgstr "邮件的别名" msgid "Aliases for user name" msgstr "用户名的别名" -#: ../lib/lists.inc:798 +#: ../lib/lists.inc:797 #, php-format msgid "All accounts (%s)" msgstr "所有帐号( %s)" @@ -1327,7 +1323,7 @@ msgstr "所有帐号( %s)" msgid "All changes were successful." msgstr "修改成功." -#: ../lib/lists.inc:797 +#: ../lib/lists.inc:796 #, php-format msgid "All selected accounts (%s)" msgstr "所有选中的帐号(%s)" @@ -1336,7 +1332,7 @@ msgstr "所有选中的帐号(%s)" msgid "Allow" msgstr "允许" -#: ../templates/config/confmain.php:376 ../help/help.inc:349 +#: ../templates/config/confmain.php:376 ../help/help.inc:359 msgid "Allow alternate address" msgstr "允许另外的地址" @@ -1365,7 +1361,7 @@ msgstr "允许多值" msgid "Allow password change" msgstr "允许改变密码" -#: ../templates/config/confmain.php:329 ../help/help.inc:220 +#: ../templates/config/confmain.php:329 ../help/help.inc:224 msgid "Allow setting specific passwords" msgstr "允许设置自己的密码" @@ -1376,7 +1372,7 @@ msgstr "允许设置自己的密码" msgid "Allow terminal server login" msgstr "允许终端服务登录" -#: ../templates/config/confmain.php:335 ../help/help.inc:222 +#: ../templates/config/confmain.php:335 ../help/help.inc:226 msgid "Allow to display password on screen" msgstr "允许在屏幕上显示密码" @@ -1397,12 +1393,12 @@ msgstr "允许用户在此域输入。" msgid "Allowed codec" msgstr "允许的编码" -#: ../templates/config/mainmanage.php:313 ../lib/types/user.inc:104 +#: ../templates/config/mainmanage.php:353 ../lib/types/user.inc:104 #: ../help/help.inc:160 msgid "Allowed hosts" msgstr "允许的主机" -#: ../templates/config/mainmanage.php:315 +#: ../templates/config/mainmanage.php:355 msgid "Allowed hosts (self service)" msgstr "允许的主机(自助服务)" @@ -1446,7 +1442,7 @@ msgstr "允许的发送者" msgid "Allowed workstations" msgstr "允许的工作站" -#: ../help/help.inc:223 +#: ../help/help.inc:227 msgid "Allows to display a randomly generated password on screen." msgstr "允许在屏幕上显示随机生成的密码。" @@ -1458,7 +1454,7 @@ msgstr "这个属性允许输入多值." msgid "Allows to select multiple values from the list." msgstr "这个列表允许多选." -#: ../help/help.inc:221 +#: ../help/help.inc:225 msgid "Allows to set a specific password via input field." msgstr "允许在输入框设置密码。" @@ -1473,7 +1469,7 @@ msgstr "允许在输入框设置密码。" msgid "Alternate address" msgstr "变更地址" -#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:270 +#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:280 msgid "Alternate recipient" msgstr "另外的接收者" @@ -1533,7 +1529,7 @@ msgid "Any secondary pager numbers." msgstr "其他的传呼号." #: ../lib/modules/kolabUser.inc:279 ../lib/modules/kolabUser.inc:604 -#: ../lib/modules/kolabUser.inc:710 ../lib/modules/kolabUser.inc:713 +#: ../lib/modules/kolabUser.inc:709 ../lib/modules/kolabUser.inc:712 msgid "Anyone" msgstr "任何人" @@ -1590,7 +1586,7 @@ msgstr "问" #: ../lib/modules/eduPerson.inc:141 ../lib/modules/eduPerson.inc:145 #: ../lib/modules/eduPerson.inc:217 ../lib/modules/eduPerson.inc:233 -#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:555 +#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:549 msgid "Assurance profiles" msgstr "断言配置" @@ -1674,7 +1670,7 @@ msgstr "属性类型" #: ../templates/tools/importexport.php:279 #: ../lib/modules/selfRegistration.inc:77 -#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:373 +#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:383 msgid "Attributes" msgstr "属性" @@ -1732,12 +1728,12 @@ msgstr "自动脚本" #: ../lib/modules/puppetClient.inc:115 ../lib/modules/puppetClient.inc:172 #: ../lib/modules/qmailUser.inc:98 ../lib/modules/qmailUser.inc:229 #: ../lib/modules/zarafaContact.inc:90 ../lib/modules/zarafaContact.inc:651 -#: ../lib/modules/posixGroup.inc:393 ../lib/modules/posixGroup.inc:480 +#: ../lib/modules/posixGroup.inc:394 ../lib/modules/posixGroup.inc:481 #: ../lib/modules/eduPerson.inc:149 ../lib/modules/eduPerson.inc:154 #: ../lib/modules/pykotaGroup.inc:123 ../lib/modules/pykotaGroup.inc:134 #: ../lib/modules/sambaSamAccount.inc:165 #: ../lib/modules/sambaSamAccount.inc:404 ../lib/modules/posixAccount.inc:315 -#: ../lib/modules/posixAccount.inc:2018 ../lib/modules/zarafaUser.inc:154 +#: ../lib/modules/posixAccount.inc:2073 ../lib/modules/zarafaUser.inc:154 #: ../lib/modules/zarafaUser.inc:1345 ../lib/modules/kopanoContact.inc:90 #: ../lib/modules/kopanoContact.inc:603 #: ../lib/modules/courierMailAccount.inc:132 @@ -1803,10 +1799,10 @@ msgstr "有效的帐号类型" msgid "Available actions" msgstr "可选动作" -#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1783 -#: ../lib/modules/posixAccount.inc:1814 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1838 +#: ../lib/modules/posixAccount.inc:1869 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Available groups" msgstr "可选组" @@ -1823,7 +1819,7 @@ msgstr "可选模块" msgid "Available roles" msgstr "可选角色" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Available users" msgstr "可选用户" @@ -1836,7 +1832,7 @@ msgid "B-Node (0x01)" msgstr "B-节点 (0x01)" #: ../lib/passwordExpirationJob.inc:86 ../lib/passwordExpirationJob.inc:140 -#: ../help/help.inc:406 +#: ../help/help.inc:416 msgid "BCC address" msgstr "秘密抄送地址" @@ -1844,17 +1840,17 @@ msgstr "秘密抄送地址" #: ../templates/upload/massBuildAccounts.php:292 #: ../lib/modules/windowsLDSUser.inc:1262 #: ../lib/modules/windowsLDSUser.inc:1297 ../lib/modules/zarafaContact.inc:474 -#: ../lib/modules/posixGroup.inc:349 ../lib/modules/zarafaGroup.inc:489 +#: ../lib/modules/posixGroup.inc:350 ../lib/modules/zarafaGroup.inc:489 #: ../lib/modules/device.inc:295 ../lib/modules/kopanoGroup.inc:440 #: ../lib/modules/sambaSamAccount.inc:1372 -#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1888 -#: ../lib/modules/posixAccount.inc:1956 ../lib/modules/zarafaUser.inc:978 +#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1943 +#: ../lib/modules/posixAccount.inc:2011 ../lib/modules/zarafaUser.inc:978 #: ../lib/modules/zarafaUser.inc:1027 ../lib/modules/kopanoContact.inc:424 #: ../lib/modules/windowsUser.inc:1881 ../lib/modules/windowsUser.inc:2025 #: ../lib/modules/windowsUser.inc:2214 ../lib/modules/sambaGroupMapping.inc:485 #: ../lib/modules/pykotaUser.inc:581 ../lib/modules/pykotaUser.inc:624 -#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1711 -#: ../lib/modules/inetOrgPerson.inc:1803 ../lib/modules/inetOrgPerson.inc:1888 +#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1709 +#: ../lib/modules/inetOrgPerson.inc:1801 ../lib/modules/inetOrgPerson.inc:1886 #: ../lib/modules/kopanoUser.inc:899 ../lib/modules/kopanoUser.inc:947 #: ../lib/modules/windowsLDSGroup.inc:298 #: ../lib/modules/windowsLDSGroup.inc:484 @@ -1879,7 +1875,7 @@ msgstr "返回DNS列表" msgid "Back to NIS object list" msgstr "返回到 NIS 对象列表" -#: ../lib/baseType.inc:56 +#: ../lib/baseType.inc:55 msgid "Back to account list" msgstr "返回到帐号列表" @@ -1975,7 +1971,7 @@ msgstr "备份" msgid "Backends" msgstr "后端" -#: ../help/help.inc:323 +#: ../help/help.inc:333 msgid "Background color for self service pages." msgstr "自助服务页面的背景色。" @@ -2067,23 +2063,23 @@ msgstr "Base (只有基本DN)" #: ../templates/3rdParty/pla/lib/QueryRender.php:106 #: ../templates/3rdParty/pla/lib/QueryRender.php:479 #: ../templates/3rdParty/pla/htdocs/export_form.php:59 ../lib/export.inc:127 -#: ../lib/export.inc:254 ../help/help.inc:369 +#: ../lib/export.inc:254 ../help/help.inc:379 msgid "Base DN" msgstr "基本DN" #: ../templates/config/confmain.php:496 #: ../templates/selfService/adminMain.php:480 #: ../templates/selfService/adminMain.php:517 ../help/help.inc:136 -#: ../help/help.inc:304 +#: ../help/help.inc:314 msgid "Base URL" msgstr "基本URL" #: ../templates/config/confmain.php:499 -#: ../templates/selfService/adminMain.php:520 ../help/help.inc:306 +#: ../templates/selfService/adminMain.php:520 ../help/help.inc:316 msgid "Base URLs" msgstr "基本 URL" -#: ../templates/selfService/adminMain.php:599 ../help/help.inc:322 +#: ../templates/selfService/adminMain.php:599 ../help/help.inc:332 msgid "Base color" msgstr "基本颜色" @@ -2157,7 +2153,7 @@ msgstr "绑定密码" msgid "Bind user" msgstr "绑定用户" -#: ../help/help.inc:134 ../help/help.inc:206 +#: ../help/help.inc:134 ../help/help.inc:210 msgid "Bind user and password" msgstr "绑定用户名和密码" @@ -2193,7 +2189,7 @@ msgid "Block soft quota must be smaller than block hard quota." msgstr "块数软性限额必须小于硬性限额." #: ../templates/lists/changePassword.php:330 -#: ../templates/config/confmain.php:346 +#: ../templates/config/mainmanage.php:324 ../templates/config/confmain.php:346 msgid "Both" msgstr "两个都" @@ -2237,25 +2233,25 @@ msgstr "块更新以下DN" #: ../lib/modules/inetOrgPerson.inc:299 ../lib/modules/inetOrgPerson.inc:540 #: ../lib/modules/inetOrgPerson.inc:709 ../lib/modules/inetOrgPerson.inc:713 #: ../lib/modules/inetOrgPerson.inc:1497 ../lib/modules/inetOrgPerson.inc:1500 -#: ../lib/modules/inetOrgPerson.inc:1985 ../lib/modules/inetOrgPerson.inc:2081 -#: ../lib/modules/inetOrgPerson.inc:2828 ../lib/modules/inetOrgPerson.inc:4093 -#: ../lib/modules/inetOrgPerson.inc:4132 +#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2079 +#: ../lib/modules/inetOrgPerson.inc:2826 ../lib/modules/inetOrgPerson.inc:4090 +#: ../lib/modules/inetOrgPerson.inc:4129 msgid "Business category" msgstr "商业种类" #: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:252 #: ../lib/modules/windowsUser.inc:321 ../lib/modules/windowsUser.inc:325 #: ../lib/modules/inetOrgPerson.inc:710 ../lib/modules/inetOrgPerson.inc:714 -msgid "Business category (e.g. Administration, IT-Services, Manangement, ...)" -msgstr "商业种类(比如:行政部门,IT服务部门,管理部门,...)" +msgid "Business category (e.g. Administration, IT-Services, Management, ...)" +msgstr "商业目录(比如:行政部门,IT服务部门,管理部门,...)" -#: ../help/help.inc:187 +#: ../help/help.inc:191 msgid "" "By default LAM will show all accounts that match the selected account " "modules." msgstr "缺省地,LAM将显示与所选帐号模块匹配的所有账号." -#: ../help/help.inc:301 +#: ../help/help.inc:311 msgid "" "By default all modifications are done as the user that authenticated in self " "service. If active then LAM will use the connection user for all LDAP " @@ -2285,7 +2281,7 @@ msgid "Bytes sent" msgstr "字节已发送" #: ../lib/passwordExpirationJob.inc:85 ../lib/passwordExpirationJob.inc:134 -#: ../help/help.inc:402 +#: ../help/help.inc:412 msgid "CC address" msgstr "抄送地址" @@ -2358,7 +2354,7 @@ msgstr "可能呼叫转移" #: ../templates/config/profmanage.php:252 #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:505 +#: ../templates/config/mainmanage.php:545 #: ../templates/config/confmodules.php:153 ../templates/config/jobList.php:185 #: ../templates/config/jobs.php:273 ../templates/config/jobs.php:316 #: ../templates/config/confmain.php:539 @@ -2395,30 +2391,30 @@ msgstr "可能呼叫转移" #: ../lib/modules/kopanoContact.inc:375 ../lib/modules/windowsUser.inc:1738 #: ../lib/modules/windowsUser.inc:2153 ../lib/modules/sambaGroupMapping.inc:466 #: ../lib/modules/shadowAccount.inc:509 ../lib/modules/shadowAccount.inc:575 -#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1769 +#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1767 #: ../lib/modules/freeRadius.inc:568 ../lib/modules/kopanoUser.inc:844 #: ../lib/modules/windowsLDSGroup.inc:357 #: ../lib/modules/windowsLDSGroup.inc:424 ../lib/modules/webauthn.inc:175 #: ../lib/modules/customFields.inc:1244 ../lib/modules/aliasEntry.inc:157 #: ../lib/modules/aliasEntry.inc:180 ../lib/modules/qmailGroup.inc:643 -#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:609 +#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:607 #: ../lib/modules/heimdalKerberos.inc:615 ../lib/modules/windowsGroup.inc:591 #: ../lib/modules/windowsGroup.inc:657 ../lib/modules/groupOfNames.inc:355 #: ../lib/modules/groupOfNames.inc:504 ../lib/modules/nisMailAlias.inc:389 -#: ../lib/lists.inc:808 ../lib/lists.inc:891 ../lib/modules.inc:1312 +#: ../lib/lists.inc:807 ../lib/lists.inc:890 ../lib/modules.inc:1312 msgid "Cancel" msgstr "取消" -#: ../templates/login.php:513 ../templates/login.php:583 +#: ../templates/login.php:523 ../templates/login.php:593 #: ../templates/config/jobs.php:429 -#: ../templates/selfService/selfServiceLogin.php:196 -#: ../templates/selfService/selfServiceLogin.php:202 +#: ../templates/selfService/selfServiceLogin.php:197 +#: ../templates/selfService/selfServiceLogin.php:203 #: ../templates/selfService/selfServiceMain.php:171 -#: ../lib/modules/selfRegistration.inc:839 +#: ../lib/modules/selfRegistration.inc:838 msgid "Cannot connect to specified LDAP server. Please try again." msgstr "无法连接指定的LDAP服务器,请再试一次." -#: ../templates/login.php:281 ../lib/config.inc:2784 +#: ../templates/login.php:281 ../lib/config.inc:2837 msgid "Cannot open config file!" msgstr "无法打开配置文件!" @@ -2430,7 +2426,7 @@ msgstr "无法读取配额。" msgid "Cannot update quota." msgstr "不能修改配额." -#: ../lib/config.inc:2796 ../lib/config.inc:2804 +#: ../lib/config.inc:2849 ../lib/config.inc:2857 msgid "" "Cannot write certificate file. Please check the permissions of config/" "serverCerts.pem." @@ -2446,8 +2442,8 @@ msgstr "不能写入证书文件. 请检查config/serverCerts.pem的权限." msgid "Capacity" msgstr "容量" -#: ../templates/selfService/selfServiceLogin.php:116 -#: ../templates/selfService/selfServiceLogin.php:303 +#: ../templates/selfService/selfServiceLogin.php:117 +#: ../templates/selfService/selfServiceLogin.php:304 #: ../templates/selfService/adminMain.php:544 #: ../templates/selfService/adminMain.php:549 #: ../lib/modules/selfRegistration.inc:126 @@ -2462,7 +2458,7 @@ msgid "Captcha" msgstr "Captcha" #: ../templates/config/confmain.php:512 -#: ../templates/selfService/adminMain.php:533 ../help/help.inc:312 +#: ../templates/selfService/adminMain.php:533 ../help/help.inc:322 msgid "Caption" msgstr "标题" @@ -2479,9 +2475,9 @@ msgstr "标题和标签" #: ../lib/modules/windowsUser.inc:3709 ../lib/modules/inetOrgPerson.inc:162 #: ../lib/modules/inetOrgPerson.inc:461 ../lib/modules/inetOrgPerson.inc:534 #: ../lib/modules/inetOrgPerson.inc:733 ../lib/modules/inetOrgPerson.inc:1473 -#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1987 -#: ../lib/modules/inetOrgPerson.inc:2802 ../lib/modules/inetOrgPerson.inc:4091 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1476 ../lib/modules/inetOrgPerson.inc:1985 +#: ../lib/modules/inetOrgPerson.inc:2800 ../lib/modules/inetOrgPerson.inc:4088 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Car license" msgstr "汽车执照" @@ -2524,7 +2520,7 @@ msgstr "更改 Asterisk 密码" msgid "Change Asterisk voicemail password" msgstr "更改 Asterisk 语音邮件密码" -#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:450 +#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:451 msgid "Change GID number of users and hosts" msgstr "更改用户和主机的GID号" @@ -2562,11 +2558,11 @@ msgstr "更改缺省的配置文件" msgid "Change field label." msgstr "修改域标识." -#: ../lib/lists.inc:891 +#: ../lib/lists.inc:890 msgid "Change list settings" msgstr "改变列表设置" -#: ../templates/config/mainmanage.php:490 ../help/help.inc:148 +#: ../templates/config/mainmanage.php:530 ../help/help.inc:148 msgid "Change master password" msgstr "更改管理员密码" @@ -2589,11 +2585,11 @@ msgstr "现在更改密码?" msgid "Change passwords" msgstr "更改密码" -#: ../lib/lists.inc:892 +#: ../lib/lists.inc:891 msgid "Change settings" msgstr "修改设置" -#: ../lib/modules/posixAccount.inc:1190 +#: ../lib/modules/posixAccount.inc:1189 msgid "Changed value because only ASCII characters are allowed." msgstr "值已改变,因为只能使用ASCII字符." @@ -2603,7 +2599,7 @@ msgstr "值已改变,因为只能使用ASCII字符." msgid "Charlie" msgstr "Charlie" -#: ../lib/modules/posixAccount.inc:1671 +#: ../lib/modules/posixAccount.inc:1726 msgid "Check home directories" msgstr "检查主目录" @@ -2670,11 +2666,11 @@ msgid "Classes" msgstr "类" #: ../lib/modules/qmailUser.inc:1091 ../lib/modules/windowsUser.inc:4179 -#: ../lib/modules/shadowAccount.inc:1072 ../lib/modules/freeRadius.inc:816 +#: ../lib/modules/shadowAccount.inc:1071 ../lib/modules/freeRadius.inc:816 msgid "Cleanup expired user accounts" msgstr "清理过期用户账号" -#: ../lib/lists.inc:462 +#: ../lib/lists.inc:461 msgid "Clear filter" msgstr "清除过滤表达式" @@ -2699,7 +2695,7 @@ msgid "Click to popup a dialog to select an entry (DN) graphically" msgstr "点击弹出的对话框来选择一个图形化的DN条目" #: ../templates/config/confmain.php:502 -#: ../templates/selfService/adminMain.php:523 ../help/help.inc:324 +#: ../templates/selfService/adminMain.php:523 ../help/help.inc:334 msgid "Client id" msgstr "客户端ID号" @@ -2767,7 +2763,7 @@ msgstr "提交" msgid "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." msgstr "普通的例子是 \"@givenname@%sn%\" 或 \"%givenname%.%sn%\"." -#: ../templates/config/mainmanage.php:361 ../lib/types/host.inc:96 +#: ../templates/config/mainmanage.php:401 ../lib/types/host.inc:96 #: ../lib/types/user.inc:95 ../lib/types/customType.inc:71 #: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:361 #: ../lib/modules/windowsLDSUser.inc:592 ../lib/modules/windowsLDSUser.inc:653 @@ -2776,10 +2772,10 @@ msgstr "普通的例子是 \"@givenname@%sn%\" 或 \"%givenname%.%sn%\"." #: ../lib/modules/pykotaGroup.inc:385 ../lib/modules/pykotaGroup.inc:475 #: ../lib/modules/pykotaGroup.inc:487 ../lib/modules/posixAccount.inc:119 #: ../lib/modules/posixAccount.inc:175 ../lib/modules/posixAccount.inc:443 -#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1613 -#: ../lib/modules/posixAccount.inc:1996 ../lib/modules/posixAccount.inc:2085 -#: ../lib/modules/posixAccount.inc:2115 ../lib/modules/posixAccount.inc:2425 -#: ../lib/modules/posixAccount.inc:3194 ../lib/modules/windowsUser.inc:127 +#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1659 +#: ../lib/modules/posixAccount.inc:2051 ../lib/modules/posixAccount.inc:2139 +#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/posixAccount.inc:2479 +#: ../lib/modules/posixAccount.inc:3248 ../lib/modules/windowsUser.inc:127 #: ../lib/modules/windowsUser.inc:446 ../lib/modules/windowsUser.inc:779 #: ../lib/modules/windowsUser.inc:873 ../lib/modules/windowsUser.inc:1022 #: ../lib/modules/windowsUser.inc:1164 ../lib/modules/windowsUser.inc:2851 @@ -2787,9 +2783,9 @@ msgstr "普通的例子是 \"@givenname@%sn%\" 或 \"%givenname%.%sn%\"." #: ../lib/modules/pykotaUser.inc:245 ../lib/modules/pykotaUser.inc:357 #: ../lib/modules/pykotaUser.inc:886 ../lib/modules/inetOrgPerson.inc:98 #: ../lib/modules/inetOrgPerson.inc:681 ../lib/modules/inetOrgPerson.inc:1228 -#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1948 -#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2018 -#: ../lib/modules/inetOrgPerson.inc:2194 ../lib/modules/inetOrgPerson.inc:4140 +#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1946 +#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2016 +#: ../lib/modules/inetOrgPerson.inc:2192 ../lib/modules/inetOrgPerson.inc:4137 #: ../lib/modules/asteriskExtension.inc:119 msgid "Common name" msgstr "全名" @@ -2872,6 +2868,7 @@ msgstr "配置类型" msgid "Confirm sender" msgstr "确认发送者" +#: ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:215 msgid "Confirmation mail settings" msgstr "确认邮件的设置" @@ -3041,16 +3038,16 @@ msgstr "Courier" #: ../templates/3rdParty/pla/lib/TemplateRender.php:1077 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1081 #: ../templates/initsuff.php:201 ../lib/modules/nisMailAliasUser.inc:364 -#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1937 +#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1992 msgid "Create" msgstr "建立" -#: ../lib/lists.inc:571 ../lib/lists.inc:776 ../lib/modules.inc:1430 -#: ../help/help.inc:256 +#: ../lib/lists.inc:570 ../lib/lists.inc:775 ../lib/modules.inc:1430 +#: ../help/help.inc:266 msgid "Create PDF file" msgstr "建立PDF文件" -#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:220 +#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:219 msgid "Create PDF files" msgstr "建立PDF文件" @@ -3080,7 +3077,7 @@ msgstr "新建另外一个DNS条目" msgid "Create another NIS object" msgstr "建立另外一个 NIS 对象" -#: ../lib/baseType.inc:55 +#: ../lib/baseType.inc:54 msgid "Create another account" msgstr "建立另外一个帐号" @@ -3155,12 +3152,16 @@ msgstr "建立另外一个用户" msgid "Create another view" msgstr "建立另外一个视图" -#: ../lib/lists.inc:787 +#: ../lib/lists.inc:786 msgid "Create for" msgstr "建立" -#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1656 -#: ../lib/modules/posixAccount.inc:2004 +#: ../lib/modules/posixAccount.inc:1692 ../lib/modules/posixAccount.inc:2281 +msgid "Create group with same name" +msgstr "用同样的名字建组" + +#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1711 +#: ../lib/modules/posixAccount.inc:2059 msgid "Create home directory" msgstr "建立主目录" @@ -3200,6 +3201,10 @@ msgstr "创建者" msgid "Created new automount map." msgstr "建立新的自动挂接映射." +#: ../lib/modules/posixAccount.inc:1226 +msgid "Created new group." +msgstr "建立新组。" + #: ../templates/config/profmanage.php:77 #: ../templates/selfService/profManage.php:56 msgid "Created new profile." @@ -3216,7 +3221,7 @@ msgid "" msgstr "为给定的帐号类型建立新组。新组将建立一个对象类和属性的容器。" #: ../lib/tools/fileUpload.inc:54 -msgid "Creates accounts by uploading a CSV formated file." +msgid "Creates accounts by uploading a CSV formatted file." msgstr "上传一个CSV格式文件批量建立帐号." #: ../templates/3rdParty/pla/htdocs/create.php:77 @@ -3228,12 +3233,12 @@ msgstr "成功建立.DN%s已经建立." msgid "Creation time" msgstr "创建时间" -#: ../templates/config/jobs.php:224 ../help/help.inc:210 +#: ../templates/config/jobs.php:224 ../help/help.inc:214 msgid "Cron configuration" msgstr "Cron 配置" #: ../lib/modules/windowsLDSUser.inc:1300 ../lib/modules/windowsUser.inc:2028 -#: ../lib/modules/inetOrgPerson.inc:1714 +#: ../lib/modules/inetOrgPerson.inc:1712 msgid "Crop image" msgstr "裁剪图像" @@ -3267,7 +3272,7 @@ msgid "Custom icon" msgstr "自定义图标" #: ../templates/config/conftypes.php:238 ../lib/modules/customFields.inc:181 -#: ../help/help.inc:194 +#: ../help/help.inc:198 msgid "Custom label" msgstr "自定义标签" @@ -3294,10 +3299,9 @@ msgstr "剪切" msgid "DDNS" msgstr "DDNS" -#: ../lib/modules/ddns.inc:375 -msgid "" -"DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." -msgstr "DDNS没有激活.可以DHCP设置中激活(DDNS)." +#: ../lib/modules/ddns.inc:371 +msgid "DDNS is not activated. You can activate it in the DHCP settings (DDNS)." +msgstr "DDNS没有激活.可以DHCP设置中激活DDNS." #: ../lib/types/dhcp.inc:57 msgid "DHCP" @@ -3325,7 +3329,7 @@ msgstr "DHCP 设置" #: ../templates/3rdParty/pla/htdocs/delete_form.php:35 #: ../templates/3rdParty/pla/htdocs/delete_form.php:112 #: ../templates/3rdParty/pla/htdocs/mass_delete.php:57 ../lib/modules.inc:443 -#: ../lib/modules.inc:2105 +#: ../lib/modules.inc:2103 msgid "DN" msgstr "DN" @@ -3339,8 +3343,8 @@ msgstr "DN不存在" msgid "DN settings" msgstr "DN 设置" -#: ../templates/upload/masscreate.php:334 ../help/help.inc:244 -#: ../help/help.inc:252 +#: ../templates/upload/masscreate.php:334 ../help/help.inc:254 +#: ../help/help.inc:262 msgid "DN suffix" msgstr "DN 后缀" @@ -3360,8 +3364,8 @@ msgid "DNAME records" msgstr "DNAME记录" #: ../lib/modules/dhcp_settings.inc:218 ../lib/modules/dhcp_settings.inc:234 -#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:598 -#: ../lib/modules/dhcp_settings.inc:711 +#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:590 +#: ../lib/modules/dhcp_settings.inc:703 msgid "DNS" msgstr "DNS" @@ -3419,11 +3423,11 @@ msgstr "数据库连接成功." msgid "Database count: %s" msgstr "数据库总计: %s" -#: ../templates/config/jobs.php:198 ../help/help.inc:212 +#: ../templates/config/jobs.php:198 ../help/help.inc:216 msgid "Database host" msgstr "数据库主机" -#: ../templates/config/jobs.php:203 ../help/help.inc:218 +#: ../templates/config/jobs.php:203 ../help/help.inc:222 msgid "Database name" msgstr "数据库名" @@ -3431,11 +3435,11 @@ msgstr "数据库名" msgid "Database password" msgstr "数据库密码" -#: ../templates/config/jobs.php:201 ../help/help.inc:214 +#: ../templates/config/jobs.php:201 ../help/help.inc:218 msgid "Database port" msgstr "数据库端口" -#: ../templates/config/jobs.php:158 ../help/help.inc:208 +#: ../templates/config/jobs.php:158 ../help/help.inc:212 msgid "Database type" msgstr "数据库类型" @@ -3443,7 +3447,7 @@ msgstr "数据库类型" msgid "Database user" msgstr "数据库用户" -#: ../help/help.inc:216 +#: ../help/help.inc:220 msgid "Database user and password" msgstr "数据库用户名和密码" @@ -3481,7 +3485,7 @@ msgstr "非激活的" msgid "Deactivated" msgstr "非激活" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Debug" msgstr "调试" @@ -3492,13 +3496,9 @@ msgstr "调试" msgid "Default" msgstr "缺省" -#: ../templates/config/mainmanage.php:459 -msgid "Default (\\r\\n)" -msgstr "缺省 (\\r\\n)" - #: ../lib/modules/dhcp_settings.inc:163 ../lib/modules/dhcp_settings.inc:219 #: ../lib/modules/dhcp_settings.inc:236 ../lib/modules/dhcp_settings.inc:289 -#: ../lib/modules/dhcp_settings.inc:608 ../lib/modules/dhcp_settings.inc:713 +#: ../lib/modules/dhcp_settings.inc:600 ../lib/modules/dhcp_settings.inc:705 msgid "Default gateway" msgstr "缺省网关" @@ -3507,11 +3507,11 @@ msgstr "缺省网关" msgid "Default language" msgstr "缺省语言" -#: ../help/help.inc:225 +#: ../help/help.inc:229 msgid "Default method to output a random password." msgstr "输出随机密码的缺省方法." -#: ../templates/config/confmain.php:348 ../help/help.inc:224 +#: ../templates/config/confmain.php:348 ../help/help.inc:228 msgid "Default password output" msgstr "默认密码输出" @@ -3534,7 +3534,7 @@ msgstr "缺省用户" msgid "Default value" msgstr "缺省值" -#: ../help/help.inc:167 +#: ../help/help.inc:165 msgid "" "Defines if the PHP error reporting setting from php.ini is used or the " "setting preferred by LAM (\"E_ALL & ~E_NOTICE\"). If you do not develop LAM " @@ -3555,12 +3555,12 @@ msgid "" "peer." msgstr "为此端检查消息等待信号(MWI)来定义邮箱." -#: ../lib/passwordExpirationJob.inc:480 ../lib/passwordExpirationJob.inc:527 -#: ../help/help.inc:410 +#: ../lib/passwordExpirationJob.inc:478 ../lib/passwordExpirationJob.inc:525 +#: ../help/help.inc:420 msgid "Delay" msgstr "延期" -#: ../help/help.inc:411 +#: ../help/help.inc:421 msgid "Delay this action by a number of days after account expiry." msgstr "帐号过期后功能延期的天数." @@ -3568,7 +3568,7 @@ msgstr "帐号过期后功能延期的天数." #: ../lib/modules/kolabUser.inc:119 ../lib/modules/kolabUser.inc:123 #: ../lib/modules/kolabUser.inc:179 ../lib/modules/kolabUser.inc:201 #: ../lib/modules/kolabUser.inc:308 ../lib/modules/kolabUser.inc:617 -#: ../lib/modules/kolabUser.inc:689 ../lib/modules/kolabSharedFolder.inc:116 +#: ../lib/modules/kolabUser.inc:688 ../lib/modules/kolabSharedFolder.inc:116 #: ../lib/modules/kolabSharedFolder.inc:120 #: ../lib/modules/kolabSharedFolder.inc:190 #: ../lib/modules/kolabSharedFolder.inc:201 @@ -3589,7 +3589,7 @@ msgstr "" #: ../templates/tools/serverInfo.php:355 ../templates/tools/multiEdit.php:150 #: ../templates/tools/ou_edit.php:135 ../templates/tools/webauthn.php:107 #: ../templates/config/profmanage.php:250 -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/profManage.php:226 #: ../templates/pdfedit/pdfmain.php:247 ../templates/pdfedit/pdfmain.php:248 #: ../templates/pdfedit/pdfmain.php:288 ../templates/delete.php:151 @@ -3597,18 +3597,18 @@ msgstr "" #: ../templates/profedit/profilemain.php:228 #: ../templates/3rdParty/pla/htdocs/delete_form.php:33 #: ../templates/3rdParty/pla/htdocs/delete_form.php:124 -#: ../lib/passwordExpirationJob.inc:485 ../lib/modules/pykotaPrinter.inc:277 +#: ../lib/passwordExpirationJob.inc:483 ../lib/modules/pykotaPrinter.inc:277 #: ../lib/modules/nisNetGroupHost.inc:109 -#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1929 +#: ../lib/modules/sambaSamAccount.inc:1624 ../lib/modules/posixAccount.inc:1984 #: ../lib/modules/zarafaUser.inc:1468 ../lib/modules/zarafaUser.inc:1519 #: ../lib/modules/bindDLZ.inc:1322 ../lib/modules/bindDLZ.inc:1713 -#: ../lib/modules/kolabUser.inc:676 ../lib/modules/sambaGroupMapping.inc:386 +#: ../lib/modules/kolabUser.inc:675 ../lib/modules/sambaGroupMapping.inc:386 #: ../lib/modules/ldapPublicKey.inc:350 ../lib/modules/nisNetGroupUser.inc:193 #: ../lib/modules/yubiKeyUser.inc:315 ../lib/modules/nisnetgroup.inc:261 -#: ../lib/modules/inetOrgPerson.inc:3055 ../lib/modules/inetOrgPerson.inc:3176 +#: ../lib/modules/inetOrgPerson.inc:3053 ../lib/modules/inetOrgPerson.inc:3174 #: ../lib/modules/kopanoUser.inc:1388 ../lib/modules/kopanoUser.inc:1439 #: ../lib/modules/webauthn.inc:160 ../lib/modules/customFields.inc:2563 -#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:565 +#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:564 #: ../lib/modules.inc:1319 msgid "Delete" msgstr "删除" @@ -3632,7 +3632,7 @@ msgstr "在拷贝(移动)后删除:" msgid "Delete all %s objects" msgstr "删除全部 %s 个对象" -#: ../templates/config/mainmanage.php:339 +#: ../templates/config/mainmanage.php:379 msgid "Delete all CA certificates" msgstr "删除全部 CA 证书" @@ -3640,7 +3640,7 @@ msgstr "删除全部 CA 证书" msgid "Delete group" msgstr "删除组" -#: ../lib/modules/posixAccount.inc:1736 +#: ../lib/modules/posixAccount.inc:1791 msgid "Delete home directory" msgstr "删除主目录" @@ -3648,12 +3648,12 @@ msgstr "删除主目录" msgid "Delete mailbox" msgstr "删除邮箱" -#: ../lib/modules/posixGroup.inc:335 ../lib/modules/posixGroup.inc:344 -#: ../lib/modules/posixAccount.inc:1862 ../lib/modules/windowsUser.inc:1864 +#: ../lib/modules/posixGroup.inc:336 ../lib/modules/posixGroup.inc:345 +#: ../lib/modules/posixAccount.inc:1917 ../lib/modules/windowsUser.inc:1864 msgid "Delete non-matching entries" msgstr "删除不匹配的项" -#: ../templates/tools/ou_edit.php:218 ../help/help.inc:355 +#: ../templates/tools/ou_edit.php:218 ../help/help.inc:365 msgid "Delete organisational unit" msgstr "删除组织单元" @@ -3663,7 +3663,7 @@ msgstr "删除组织单元" msgid "Delete photo" msgstr "删除照片" -#: ../lib/modules/range.inc:550 +#: ../lib/modules/range.inc:549 msgid "Delete pool" msgstr "删除地址池" @@ -3674,8 +3674,8 @@ msgstr "删除地址池" msgid "Delete profile" msgstr "删除配置文件" -#: ../lib/modules/range.inc:108 ../lib/modules/range.inc:140 -#: ../lib/modules/range.inc:526 ../lib/modules/range.inc:601 +#: ../lib/modules/range.inc:107 ../lib/modules/range.inc:139 +#: ../lib/modules/range.inc:525 ../lib/modules/range.inc:600 msgid "Delete range" msgstr "删除范围" @@ -3776,7 +3776,7 @@ msgstr "删除选中的视图" msgid "Delete successful: %s" msgstr "删除成功:%s" -#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1741 +#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1796 msgid "Delete sudo rights" msgstr "删除sudo权限" @@ -3812,7 +3812,7 @@ msgstr "删除的PDF结构." msgid "Deleted profile." msgstr "已删除的配置文件." -#: ../lib/modules/range.inc:109 +#: ../lib/modules/range.inc:108 msgid "Deletes an IP range." msgstr "删除一个IP范围." @@ -3841,11 +3841,11 @@ msgstr "删除日期" #: ../lib/modules/autoDelete.inc:65 ../lib/modules/autoDelete.inc:77 #: ../lib/modules/autoDelete.inc:84 ../lib/modules/autoDelete.inc:117 #: ../lib/modules/autoDelete.inc:152 ../lib/modules/autoDelete.inc:385 -#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:106 +#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:105 msgid "Deletion time" msgstr "删除时间" -#: ../lib/lists.inc:1254 +#: ../lib/lists.inc:1253 msgid "Deletion was successful." msgstr "删除操作成功." @@ -3887,9 +3887,9 @@ msgstr "阻止打印" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:421 #: ../lib/modules/inetOrgPerson.inc:543 ../lib/modules/inetOrgPerson.inc:745 #: ../lib/modules/inetOrgPerson.inc:749 ../lib/modules/inetOrgPerson.inc:1505 -#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1997 -#: ../lib/modules/inetOrgPerson.inc:2066 ../lib/modules/inetOrgPerson.inc:2856 -#: ../lib/modules/inetOrgPerson.inc:4094 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1508 ../lib/modules/inetOrgPerson.inc:1995 +#: ../lib/modules/inetOrgPerson.inc:2064 ../lib/modules/inetOrgPerson.inc:2854 +#: ../lib/modules/inetOrgPerson.inc:4091 ../lib/modules/inetOrgPerson.inc:4130 msgid "Department" msgstr "部门" @@ -3943,17 +3943,17 @@ msgstr "" #: ../lib/modules/windowsLDSUser.inc:873 ../lib/modules/windowsLDSUser.inc:1823 #: ../lib/modules/account.inc:78 ../lib/modules/account.inc:88 #: ../lib/modules/account.inc:98 ../lib/modules/account.inc:106 -#: ../lib/modules/account.inc:222 ../lib/modules/account.inc:244 +#: ../lib/modules/account.inc:219 ../lib/modules/account.inc:241 #: ../lib/modules/windowsHost.inc:79 ../lib/modules/windowsHost.inc:114 #: ../lib/modules/windowsHost.inc:133 ../lib/modules/windowsHost.inc:156 #: ../lib/modules/windowsHost.inc:329 ../lib/modules/posixGroup.inc:215 -#: ../lib/modules/posixGroup.inc:422 ../lib/modules/posixGroup.inc:650 -#: ../lib/modules/posixGroup.inc:668 ../lib/modules/device.inc:84 +#: ../lib/modules/posixGroup.inc:423 ../lib/modules/posixGroup.inc:651 +#: ../lib/modules/posixGroup.inc:669 ../lib/modules/device.inc:84 #: ../lib/modules/device.inc:109 ../lib/modules/device.inc:117 #: ../lib/modules/device.inc:159 ../lib/modules/device.inc:428 #: ../lib/modules/dhcp_settings.inc:195 ../lib/modules/dhcp_settings.inc:224 -#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:645 -#: ../lib/modules/dhcp_settings.inc:718 ../lib/modules/courierMailAlias.inc:92 +#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:637 +#: ../lib/modules/dhcp_settings.inc:710 ../lib/modules/courierMailAlias.inc:92 #: ../lib/modules/courierMailAlias.inc:101 #: ../lib/modules/courierMailAlias.inc:126 #: ../lib/modules/courierMailAlias.inc:155 @@ -3988,9 +3988,9 @@ msgstr "" #: ../lib/modules/nisnetgroup.inc:571 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:259 ../lib/modules/inetOrgPerson.inc:480 #: ../lib/modules/inetOrgPerson.inc:566 ../lib/modules/inetOrgPerson.inc:1241 -#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1965 -#: ../lib/modules/inetOrgPerson.inc:2024 ../lib/modules/inetOrgPerson.inc:2998 -#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1963 +#: ../lib/modules/inetOrgPerson.inc:2022 ../lib/modules/inetOrgPerson.inc:2996 +#: ../lib/modules/inetOrgPerson.inc:4071 ../lib/modules/inetOrgPerson.inc:4118 #: ../lib/modules/sudoRole.inc:69 ../lib/modules/sudoRole.inc:152 #: ../lib/modules/sudoRole.inc:214 ../lib/modules/sudoRole.inc:298 #: ../lib/modules/sudoRole.inc:453 ../lib/modules/windowsLDSGroup.inc:88 @@ -4009,7 +4009,7 @@ msgstr "" #: ../lib/modules/organizationalRole.inc:170 #: ../lib/modules/organizationalRole.inc:481 #: ../lib/modules/organizationalRole.inc:735 ../lib/modules/fixed_ip.inc:115 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:764 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:762 #: ../lib/modules/pykotaBillingCode.inc:80 #: ../lib/modules/pykotaBillingCode.inc:108 #: ../lib/modules/pykotaBillingCode.inc:115 @@ -4020,7 +4020,7 @@ msgstr "" #: ../lib/modules/groupOfNames.inc:92 ../lib/modules/groupOfNames.inc:138 #: ../lib/modules/groupOfNames.inc:174 ../lib/modules/groupOfNames.inc:211 #: ../lib/modules/groupOfNames.inc:734 ../lib/modules/groupOfNames.inc:1047 -#: ../lib/baseType.inc:107 +#: ../lib/baseType.inc:106 msgid "Description" msgstr "描述" @@ -4055,15 +4055,15 @@ msgid "Disable POP3 access" msgstr "关闭POP3访问" #: ../templates/config/confmain.php:511 -#: ../templates/selfService/adminMain.php:532 ../help/help.inc:308 +#: ../templates/selfService/adminMain.php:532 ../help/help.inc:318 msgid "Disable certificate check" msgstr "关闭证书检查" -#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:368 +#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:364 msgid "Disable client updates" msgstr "禁止客户端更新" -#: ../lib/modules/posixGroup.inc:476 ../lib/modules/posixGroup.inc:584 +#: ../lib/modules/posixGroup.inc:477 ../lib/modules/posixGroup.inc:585 msgid "Disable membership management" msgstr "关闭成员管理功能" @@ -4091,7 +4091,7 @@ msgstr "关闭" msgid "Disables the client to update DNS entries." msgstr "禁止客户端更新DNS条目." -#: ../lib/modules/posixGroup.inc:477 +#: ../lib/modules/posixGroup.inc:478 msgid "Disables the group membership management." msgstr "关闭组成员管理功能." @@ -4113,7 +4113,7 @@ msgstr "不允许基于TGT的票据" msgid "Disallow all tickets" msgstr "不允许所有的编码" -#: ../templates/config/conftypes.php:290 ../help/help.inc:192 +#: ../templates/config/conftypes.php:290 ../help/help.inc:196 msgid "Disallow delete" msgstr "不允许删除" @@ -4210,10 +4210,10 @@ msgstr "将多个组显示成堆叠式" #: ../lib/modules/sambaGroupMapping.inc:336 #: ../lib/modules/sambaGroupMapping.inc:513 #: ../lib/modules/inetOrgPerson.inc:166 ../lib/modules/inetOrgPerson.inc:685 -#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1953 -#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2219 -#: ../lib/modules/inetOrgPerson.inc:3025 ../lib/modules/inetOrgPerson.inc:4106 -#: ../help/help.inc:202 +#: ../lib/modules/inetOrgPerson.inc:1236 ../lib/modules/inetOrgPerson.inc:1951 +#: ../lib/modules/inetOrgPerson.inc:1996 ../lib/modules/inetOrgPerson.inc:2217 +#: ../lib/modules/inetOrgPerson.inc:3023 ../lib/modules/inetOrgPerson.inc:4103 +#: ../help/help.inc:206 msgid "Display name" msgstr "显示名" @@ -4240,7 +4240,7 @@ msgstr "显示的属性" msgid "Distribution" msgstr "分发" -#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2305 +#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2359 msgid "Do not add object class" msgstr "不要增加对象类" @@ -4269,7 +4269,7 @@ msgstr "确认发送到这个邮件列表?" msgid "Do you really want to remove the following accounts?" msgstr "确认删除下列帐号?" -#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:484 +#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:524 #: ../lib/modules/webauthn.inc:133 msgid "Do you really want to remove this device?" msgstr "是否确实要删除此设备?" @@ -4296,7 +4296,7 @@ msgstr "确认如下更改?" #: ../lib/modules/windowsUser.inc:2942 ../lib/modules/sambaGroupMapping.inc:158 #: ../lib/modules/sambaGroupMapping.inc:367 #: ../lib/modules/sambaGroupMapping.inc:547 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:334 +#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:344 msgid "Domain" msgstr "域" @@ -4365,8 +4365,8 @@ msgstr "本地域" #: ../lib/types/smbDomain.inc:95 ../lib/modules/dhcp_settings.inc:143 #: ../lib/modules/dhcp_settings.inc:215 ../lib/modules/dhcp_settings.inc:231 -#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:588 -#: ../lib/modules/dhcp_settings.inc:708 ../lib/modules/nisNetGroupHost.inc:102 +#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:580 +#: ../lib/modules/dhcp_settings.inc:700 ../lib/modules/nisNetGroupHost.inc:102 #: ../lib/modules/nisNetGroupHost.inc:217 #: ../lib/modules/nisNetGroupHost.inc:261 ../lib/modules/nisNetGroupUser.inc:98 #: ../lib/modules/nisNetGroupUser.inc:186 @@ -4415,7 +4415,7 @@ msgid "Don't stop on errors" msgstr "发生错误时不停止" #: ../lib/modules/windowsLDSUser.inc:1311 ../lib/modules/windowsUser.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:1725 +#: ../lib/modules/inetOrgPerson.inc:1723 msgid "Done" msgstr "完成" @@ -4424,7 +4424,7 @@ msgstr "完成" msgid "Down" msgstr "向下" -#: ../templates/config/mainmanage.php:336 +#: ../templates/config/mainmanage.php:376 msgid "Download CA certificates" msgstr "下载 CA 证书" @@ -4468,7 +4468,7 @@ msgstr "每一行代表一个LDAP属性. 请参考语法手册." #: ../lib/modules/sambaSamAccount.inc:1286 #: ../lib/modules/windowsLDSGroup.inc:192 #: ../lib/modules/windowsLDSGroup.inc:221 ../lib/modules/windowsGroup.inc:378 -#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:559 +#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:558 msgid "Edit" msgstr "编辑" @@ -4476,11 +4476,11 @@ msgstr "编辑" msgid "Edit again" msgstr "再次编辑" -#: ../templates/config/mainmanage.php:262 ../templates/config/index.php:79 +#: ../templates/config/mainmanage.php:278 ../templates/config/index.php:79 msgid "Edit general settings" msgstr "编辑通用设置" -#: ../lib/modules/windowsLDSUser.inc:1003 ../lib/modules/posixAccount.inc:1643 +#: ../lib/modules/windowsLDSUser.inc:1003 ../lib/modules/posixAccount.inc:1698 #: ../lib/modules/windowsUser.inc:1359 msgid "Edit groups" msgstr "编辑组" @@ -4505,6 +4505,7 @@ msgstr "编辑分组" msgid "Edit workstations" msgstr "编辑工作站" +#: ../templates/config/mainmanage.php:323 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1688 #: ../lib/types/kopanoDynamicGroupType.inc:81 #: ../lib/types/zarafaDynamicGroupType.inc:95 ../lib/types/user.inc:107 @@ -4572,9 +4573,9 @@ msgstr "邮件 \"%s\" 已经被使用." #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:387 #: ../lib/modules/inetOrgPerson.inc:525 ../lib/modules/inetOrgPerson.inc:662 #: ../lib/modules/inetOrgPerson.inc:666 ../lib/modules/inetOrgPerson.inc:1441 -#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1981 -#: ../lib/modules/inetOrgPerson.inc:2060 ../lib/modules/inetOrgPerson.inc:2607 -#: ../lib/modules/inetOrgPerson.inc:4089 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1444 ../lib/modules/inetOrgPerson.inc:1979 +#: ../lib/modules/inetOrgPerson.inc:2058 ../lib/modules/inetOrgPerson.inc:2605 +#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/kolabSharedFolder.inc:94 #: ../lib/modules/kolabSharedFolder.inc:151 #: ../lib/modules/kolabSharedFolder.inc:202 @@ -4703,10 +4704,6 @@ msgstr "电子邮件别名列表格式非法!" msgid "Email aliases" msgstr "电子邮件别名" -#: ../templates/config/mainmanage.php:462 ../help/help.inc:164 -msgid "Email format" -msgstr "邮件格式" - #: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:239 #: ../lib/modules/windowsLDSUser.inc:529 ../lib/modules/windowsLDSUser.inc:692 #: ../lib/modules/windowsLDSUser.inc:917 ../lib/modules/windowsLDSUser.inc:1848 @@ -4716,8 +4713,8 @@ msgstr "邮件格式" #: ../lib/modules/windowsUser.inc:3710 ../lib/modules/inetOrgPerson.inc:275 #: ../lib/modules/inetOrgPerson.inc:555 ../lib/modules/inetOrgPerson.inc:778 #: ../lib/modules/inetOrgPerson.inc:1481 ../lib/modules/inetOrgPerson.inc:1484 -#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:4098 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1990 ../lib/modules/inetOrgPerson.inc:4095 +#: ../lib/modules/inetOrgPerson.inc:4132 #: ../lib/modules/passwordSelfReset.inc:631 #: ../lib/modules/passwordSelfReset.inc:1042 #: ../lib/modules/passwordSelfReset.inc:1261 @@ -4735,9 +4732,9 @@ msgstr "雇员号" #: ../lib/modules/windowsUser.inc:3711 ../lib/modules/inetOrgPerson.inc:96 #: ../lib/modules/inetOrgPerson.inc:283 ../lib/modules/inetOrgPerson.inc:537 #: ../lib/modules/inetOrgPerson.inc:586 ../lib/modules/inetOrgPerson.inc:1489 -#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1990 -#: ../lib/modules/inetOrgPerson.inc:2078 ../lib/modules/inetOrgPerson.inc:4092 -#: ../lib/modules/inetOrgPerson.inc:4131 +#: ../lib/modules/inetOrgPerson.inc:1492 ../lib/modules/inetOrgPerson.inc:1988 +#: ../lib/modules/inetOrgPerson.inc:2076 ../lib/modules/inetOrgPerson.inc:4089 +#: ../lib/modules/inetOrgPerson.inc:4128 msgid "Employee type" msgstr "雇员类型" @@ -4747,7 +4744,7 @@ msgid "Employee type: Contractor, Employee, Intern, Temp, External, ..." msgstr "雇员类型: 承包商,雇员,实习生,临时工,外部员工,..." #: ../templates/lists/changePassword.php:529 -#: ../templates/lists/changePassword.php:536 ../templates/login.php:489 +#: ../templates/lists/changePassword.php:536 ../templates/login.php:499 msgid "Empty password submitted. Please try again." msgstr "提交了空密码,请重试." @@ -4797,7 +4794,7 @@ msgstr "" msgid "Encountered an error while performing search." msgstr "检索时发生错误." -#: ../templates/config/mainmanage.php:318 ../help/help.inc:168 +#: ../templates/config/mainmanage.php:358 ../help/help.inc:166 msgid "Encrypt session" msgstr "加密会话" @@ -4811,7 +4808,7 @@ msgid "" "connection." msgstr "连接到IMAP的加密协议。LAM需要加密的连接。" -#: ../help/help.inc:169 +#: ../help/help.inc:167 msgid "" "Encrypts sensitive data like passwords in your session. This requires the " "PHP OpenSSL extension." @@ -4833,7 +4830,7 @@ msgstr "强制类" msgid "Enforce language" msgstr "强制语言" -#: ../help/help.inc:227 +#: ../help/help.inc:231 msgid "Enforce password change on next login by default." msgstr "强制下一次登录时必须修改密码." @@ -4848,11 +4845,11 @@ msgid "" msgstr "" "在此处输入组的基本 dn。只有当您要在自助服务页上显示成员列表时, 才需要这样做。" -#: ../help/help.inc:213 +#: ../help/help.inc:217 msgid "Enter the host name of your database server." msgstr "请输入数据库服务器的主机名." -#: ../help/help.inc:215 +#: ../help/help.inc:219 msgid "" "Enter the port number of your database server. The default port will be used " "if empty." @@ -4864,7 +4861,7 @@ msgstr "输入想增加的值:" #: ../lib/modules/eduPerson.inc:117 ../lib/modules/eduPerson.inc:121 #: ../lib/modules/eduPerson.inc:193 ../lib/modules/eduPerson.inc:230 -#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:551 +#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:545 msgid "Entitlements" msgstr "授权" @@ -4908,7 +4905,7 @@ msgstr "条目建立" #: ../templates/3rdParty/pla/htdocs/mass_edit.php:27 #: ../templates/3rdParty/pla/htdocs/rdelete.php:24 #: ../templates/3rdParty/pla/htdocs/rdelete.php:56 -#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:955 +#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:959 msgid "Entry does not exist" msgstr "条目不存在" @@ -4932,7 +4929,7 @@ msgstr "设备" #: ../lib/3rdParty/yubico/Yubico.php:175 ../lib/3rdParty/yubico/Yubico.php:220 #: ../lib/3rdParty/yubico/Yubico.php:229 ../lib/3rdParty/yubico/Yubico.php:240 #: ../lib/3rdParty/yubico/Yubico.php:243 ../lib/3rdParty/yubico/Yubico.php:248 -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/Template.php:399 #: ../templates/3rdParty/pla/lib/Template.php:442 #: ../templates/3rdParty/pla/lib/Template.php:486 @@ -4948,7 +4945,7 @@ msgstr "错误" msgid "Error number" msgstr "错误号" -#: ../lib/modules/mitKerberos.inc:1199 ../lib/modules/heimdalKerberos.inc:1045 +#: ../lib/modules/mitKerberos.inc:1195 ../lib/modules/heimdalKerberos.inc:1045 msgid "Error while changing Kerberos password." msgstr "在修改Kerberos密码时发生错误." @@ -4957,7 +4954,7 @@ msgstr "在修改Kerberos密码时发生错误." msgid "Error while deleting DN: %s" msgstr "删除DN: %s时发生错误" -#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:251 +#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:252 #: ../lib/env.inc:245 msgid "Evaluation Licence" msgstr "评估版许可" @@ -4985,7 +4982,7 @@ msgstr "示例值" msgid "Examples" msgstr "示例" -#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2232 +#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2286 #: ../lib/modules/windowsUser.inc:404 ../lib/modules/windowsUser.inc:3736 msgid "Exclude from group sync" msgstr "从组同步中排除" @@ -5028,6 +5025,10 @@ msgstr "过期时间戳" msgid "Expiration timestamp (\"regseconds\" option)." msgstr "过期时间戳(\"regseconds\"选项)." +#: ../templates/config/mainmanage.php:327 ../help/help.inc:240 +msgid "Expiration warning" +msgstr "过期告警" + #: ../lib/types/ppolicyType.inc:89 ../lib/modules/ppolicy.inc:116 #: ../lib/modules/ppolicy.inc:152 ../lib/modules/ppolicy.inc:179 #: ../lib/modules/ppolicy.inc:211 ../lib/modules/ppolicy.inc:483 @@ -5056,7 +5057,7 @@ msgid "Export" msgstr "导出" #: ../templates/pdfedit/pdfmain.php:264 ../templates/pdfedit/pdfmain.php:265 -#: ../help/help.inc:268 +#: ../help/help.inc:278 msgid "Export PDF structure" msgstr "导出PDF结构" @@ -5066,7 +5067,7 @@ msgid "Export format" msgstr "导出格式" #: ../templates/profedit/profilemain.php:240 -#: ../templates/profedit/profilemain.php:241 ../help/help.inc:248 +#: ../templates/profedit/profilemain.php:241 ../help/help.inc:258 msgid "Export profile" msgstr "导出配置文件" @@ -5112,7 +5113,7 @@ msgstr "扩展属主" msgid "Extension with this name already exists." msgstr "扩展名已经存在." -#: ../templates/config/mainmanage.php:401 ../help/help.inc:176 +#: ../templates/config/mainmanage.php:441 ../help/help.inc:174 msgid "External password check" msgstr "外部密码检查" @@ -5137,7 +5138,7 @@ msgstr "拷贝失败" msgid "Failed to create entry!" msgstr "新增条目失败!" -#: ../lib/modules/range.inc:124 ../lib/modules/range.inc:561 +#: ../lib/modules/range.inc:123 ../lib/modules/range.inc:560 msgid "Failover peer" msgstr "失效恢复节点" @@ -5159,9 +5160,9 @@ msgstr "失败记录间隔" #: ../lib/modules/inetOrgPerson.inc:371 ../lib/modules/inetOrgPerson.inc:519 #: ../lib/modules/inetOrgPerson.inc:646 ../lib/modules/inetOrgPerson.inc:650 #: ../lib/modules/inetOrgPerson.inc:1425 ../lib/modules/inetOrgPerson.inc:1428 -#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2057 -#: ../lib/modules/inetOrgPerson.inc:2672 ../lib/modules/inetOrgPerson.inc:4087 -#: ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1981 ../lib/modules/inetOrgPerson.inc:2055 +#: ../lib/modules/inetOrgPerson.inc:2670 ../lib/modules/inetOrgPerson.inc:4084 +#: ../lib/modules/inetOrgPerson.inc:4125 msgid "Fax number" msgstr "传真号" @@ -5180,8 +5181,8 @@ msgstr "字段" #: ../templates/tools/importexport.php:152 #: ../templates/tools/importexport.php:169 -#: ../templates/config/mainmanage.php:413 -#: ../templates/config/mainmanage.php:444 +#: ../templates/config/mainmanage.php:453 +#: ../templates/config/mainmanage.php:484 #: ../templates/3rdParty/pla/lib/functions.php:526 #: ../templates/3rdParty/pla/tools/unserialize.php:14 #: ../templates/3rdParty/pla/htdocs/import.php:48 @@ -5227,7 +5228,7 @@ msgstr "文件路径" #: ../templates/upload/masscreate.php:272 ../lib/tools/fileUpload.inc:45 #: ../lib/modules/ldapPublicKey.inc:93 ../lib/modules/customFields.inc:4238 -#: ../lib/lists.inc:875 +#: ../lib/lists.inc:874 msgid "File upload" msgstr "文件上传" @@ -5242,7 +5243,7 @@ msgstr "文件上传" #: ../lib/modules/zarafaDynamicGroup.inc:170 #: ../lib/modules/zarafaDynamicGroup.inc:223 #: ../lib/modules/zarafaDynamicGroup.inc:413 -#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:471 +#: ../lib/modules/zarafaContact.inc:94 ../lib/modules/posixGroup.inc:472 #: ../lib/modules/nisNetGroupHost.inc:119 #: ../lib/modules/zarafaAddressList.inc:78 #: ../lib/modules/zarafaAddressList.inc:133 @@ -5275,8 +5276,8 @@ msgstr "文件上传" #: ../lib/modules/groupOfNames.inc:316 ../lib/modules/groupOfNames.inc:391 #: ../lib/modules/groupOfNames.inc:465 ../lib/modules/groupOfNames.inc:541 #: ../lib/modules/nisMailAlias.inc:92 ../lib/modules/nisMailAlias.inc:374 -#: ../lib/lists.inc:456 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 -#: ../help/help.inc:178 +#: ../lib/lists.inc:455 ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 +#: ../help/help.inc:176 msgid "Filter" msgstr "过滤器" @@ -5303,8 +5304,8 @@ msgstr "完成所有操作." #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:236 ../lib/modules/inetOrgPerson.inc:476 #: ../lib/modules/inetOrgPerson.inc:578 ../lib/modules/inetOrgPerson.inc:1204 -#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1967 -#: ../lib/modules/inetOrgPerson.inc:2581 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1207 ../lib/modules/inetOrgPerson.inc:1965 +#: ../lib/modules/inetOrgPerson.inc:2579 ../lib/modules/inetOrgPerson.inc:4119 msgid "First name" msgstr "名字" @@ -5327,7 +5328,7 @@ msgstr "固定IP地址" msgid "Fixed list" msgstr "固定列表" -#: ../lib/modules/posixGroup.inc:548 ../lib/modules/posixAccount.inc:2151 +#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2205 msgid "Fixed range" msgstr "固定的范围" @@ -5340,8 +5341,8 @@ msgstr "折叠记号" msgid "Follow referrals" msgstr "搜索引荐服务器" -#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:780 -#: ../help/help.inc:272 +#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:779 +#: ../help/help.inc:282 msgid "Font" msgstr "字体" @@ -5359,15 +5360,15 @@ msgstr "上传请使用\"(主机,用户,域)\"格式来编写条目.多条目请 #: ../lib/modules/mitKerberos.inc:182 ../lib/modules/mitKerberos.inc:414 #: ../lib/modules/shadowAccount.inc:376 ../lib/modules/heimdalKerberos.inc:126 #: ../lib/modules/heimdalKerberos.inc:340 ../lib/modules.inc:1132 -#: ../help/help.inc:262 +#: ../help/help.inc:272 msgid "Force password change" msgstr "强制改变密码" -#: ../templates/config/confmain.php:341 ../help/help.inc:226 +#: ../templates/config/confmain.php:341 ../help/help.inc:230 msgid "Force password change by default" msgstr "缺省强制修改密码" -#: ../lib/modules/posixGroup.inc:484 ../lib/modules/posixGroup.inc:531 +#: ../lib/modules/posixGroup.inc:485 ../lib/modules/posixGroup.inc:532 msgid "Force sync with group of names" msgstr "强制同步组名" @@ -5375,7 +5376,7 @@ msgstr "强制同步组名" msgid "Forgot password?" msgstr "忘记密码?" -#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:342 +#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:352 msgid "Format" msgstr "格式" @@ -5394,7 +5395,7 @@ msgid "Free printing" msgstr "自由打印" #: ../lib/modules/freeRadius.inc:76 ../lib/modules/freeRadius.inc:816 -#: ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/freeRadius.inc:884 msgid "FreeRadius" msgstr "FreeRadius" @@ -5402,17 +5403,19 @@ msgstr "FreeRadius" msgid "Friday" msgstr "星期五" -#: ../templates/config/confmain.php:357 ../lib/passwordExpirationJob.inc:83 -#: ../lib/passwordExpirationJob.inc:122 ../lib/modules/selfRegistration.inc:89 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:339 ../templates/config/confmain.php:357 +#: ../lib/passwordExpirationJob.inc:83 ../lib/passwordExpirationJob.inc:122 +#: ../lib/modules/selfRegistration.inc:89 #: ../lib/modules/selfRegistration.inc:217 #: ../lib/modules/passwordSelfReset.inc:119 #: ../lib/modules/passwordSelfReset.inc:663 -#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:336 -#: ../help/help.inc:380 +#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:242 +#: ../help/help.inc:346 ../help/help.inc:390 msgid "From address" msgstr "收件人地址" -#: ../templates/config/confmain.php:615 +#: ../templates/config/confmain.php:614 ../templates/config/confmain.php:617 msgid "From address for password mails is invalid." msgstr "密码邮件的发件人地址非法." @@ -5474,7 +5477,7 @@ msgstr "功能" msgid "GB-12345" msgstr "GB-12345" -#: ../lib/modules/posixGroup.inc:458 ../lib/modules/posixGroup.inc:553 +#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixGroup.inc:554 msgid "GID generator" msgstr "GID生成器" @@ -5483,17 +5486,17 @@ msgstr "GID生成器" #: ../lib/modules/qmailUser.inc:298 ../lib/modules/qmailUser.inc:375 #: ../lib/modules/qmailUser.inc:461 ../lib/modules/qmailUser.inc:934 #: ../lib/modules/qmailUser.inc:1059 ../lib/modules/posixGroup.inc:211 -#: ../lib/modules/posixGroup.inc:398 ../lib/modules/posixGroup.inc:404 -#: ../lib/modules/posixGroup.inc:418 ../lib/modules/posixGroup.inc:438 -#: ../lib/modules/posixGroup.inc:667 ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:399 ../lib/modules/posixGroup.inc:405 +#: ../lib/modules/posixGroup.inc:419 ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:668 ../lib/modules/posixGroup.inc:702 #: ../lib/modules/posixAccount.inc:115 ../lib/modules/posixAccount.inc:302 -#: ../lib/modules/posixAccount.inc:2117 +#: ../lib/modules/posixAccount.inc:2171 #: ../lib/modules/sambaGroupMapping.inc:110 #: ../lib/modules/sambaGroupMapping.inc:511 msgid "GID number" msgstr "GID编号" -#: ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:702 msgid "" "GID number has changed. Please select checkbox to change GID number of users " "and hosts." @@ -5508,7 +5511,7 @@ msgstr "" "GID已经更改,要保持文件属性一,你必须以root身份运行以下命令: 'find / -gid %s -" "uid %s -exec chgrp %s {} \\;'" -#: ../lib/modules/posixGroup.inc:708 +#: ../lib/modules/posixGroup.inc:709 msgid "GID number has to be a numeric value!" msgstr "GID号必须使用数字!" @@ -5517,10 +5520,10 @@ msgid "GID number is already in use." msgstr "GID号已经被使用." #: ../lib/modules/posixAccount.inc:419 ../lib/modules/posixAccount.inc:457 -#: ../lib/modules/posixAccount.inc:1628 ../lib/modules/posixAccount.inc:2088 -#: ../lib/modules/posixAccount.inc:2120 ../lib/modules/posixAccount.inc:2223 -#: ../lib/modules/posixAccount.inc:2292 ../lib/modules/posixAccount.inc:2433 -#: ../lib/modules/posixAccount.inc:2441 +#: ../lib/modules/posixAccount.inc:1674 ../lib/modules/posixAccount.inc:2142 +#: ../lib/modules/posixAccount.inc:2174 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2346 ../lib/modules/posixAccount.inc:2487 +#: ../lib/modules/posixAccount.inc:2495 msgid "Gecos" msgstr "Gecos" @@ -5532,7 +5535,7 @@ msgstr "通用" msgid "General information" msgstr "一般信息" -#: ../templates/config/mainmanage.php:286 +#: ../templates/config/mainmanage.php:302 #: ../templates/selfService/adminMain.php:408 #: ../templates/profedit/profilepage.php:189 ../lib/configPages.inc:87 msgid "General settings" @@ -5542,7 +5545,7 @@ msgstr "通用设置" msgid "Generate new serial number." msgstr "生成新的序列号。" -#: ../templates/lists/changePassword.php:311 ../help/help.inc:316 +#: ../templates/lists/changePassword.php:311 ../help/help.inc:326 msgid "Generate random password" msgstr "生成随机密码" @@ -5571,7 +5574,7 @@ msgstr "回退" msgid "Go to" msgstr "到" -#: ../templates/selfService/adminMain.php:547 ../help/help.inc:318 +#: ../templates/selfService/adminMain.php:547 ../help/help.inc:328 msgid "Google reCAPTCHA" msgstr "Google reCAPTCHA" @@ -5581,7 +5584,7 @@ msgstr "Google reCAPTCHA" msgid "Grace authentication limit" msgstr "缓期认证限制" -#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:524 msgid "Grace block period" msgstr "块限制宽限周期" @@ -5596,7 +5599,7 @@ msgid "" "days." msgstr "节点限制的宽限期,大部分文件系统都使用最大值7天." -#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:525 msgid "Grace inode period" msgstr "节点限制宽限期" @@ -5638,7 +5641,7 @@ msgstr "组说明" msgid "Group description." msgstr "组描述." -#: ../lib/modules/posixGroup.inc:423 +#: ../lib/modules/posixGroup.inc:424 msgid "Group description. If left empty group name will be used." msgstr "组说明,若空则会使用组名来替代." @@ -5652,15 +5655,15 @@ msgstr "组成员DN" #: ../lib/modules/pykotaPrinter.inc:122 ../lib/modules/pykotaPrinter.inc:185 #: ../lib/modules/pykotaPrinter.inc:198 ../lib/modules/pykotaPrinter.inc:262 #: ../lib/modules/pykotaPrinter.inc:594 ../lib/modules/posixGroup.inc:85 -#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:304 -#: ../lib/modules/posixGroup.inc:426 ../lib/modules/posixGroup.inc:430 -#: ../lib/modules/posixGroup.inc:653 ../lib/modules/posixGroup.inc:665 -#: ../lib/modules/posixGroup.inc:678 ../lib/modules/windowsLDSGroup.inc:190 +#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:305 +#: ../lib/modules/posixGroup.inc:427 ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:654 ../lib/modules/posixGroup.inc:666 +#: ../lib/modules/posixGroup.inc:679 ../lib/modules/windowsLDSGroup.inc:190 #: ../lib/modules/windowsGroup.inc:376 msgid "Group members" msgstr "组成员" -#: ../lib/modules/posixGroup.inc:654 +#: ../lib/modules/posixGroup.inc:655 msgid "Group members (incl. primary members)" msgstr "组成员(包括主组)" @@ -5673,10 +5676,10 @@ msgstr "组成员(包括主组)" #: ../lib/modules/zarafaDynamicGroup.inc:180 #: ../lib/modules/zarafaDynamicGroup.inc:204 #: ../lib/modules/zarafaDynamicGroup.inc:410 ../lib/modules/posixGroup.inc:66 -#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:446 -#: ../lib/modules/posixGroup.inc:649 ../lib/modules/posixGroup.inc:666 -#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:710 -#: ../lib/modules/posixGroup.inc:711 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:650 ../lib/modules/posixGroup.inc:667 +#: ../lib/modules/posixGroup.inc:710 ../lib/modules/posixGroup.inc:711 +#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:170 ../lib/modules/pykotaGroup.inc:190 #: ../lib/modules/kopanoDynamicGroup.inc:62 #: ../lib/modules/kopanoDynamicGroup.inc:119 @@ -5716,8 +5719,8 @@ msgid "Group name already in use." msgstr "组名已经被使用." #: ../lib/modules/zarafaDynamicGroup.inc:180 -#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:711 -#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:712 +#: ../lib/modules/posixGroup.inc:713 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:169 ../lib/modules/pykotaGroup.inc:172 #: ../lib/modules/pykotaGroup.inc:173 ../lib/modules/kopanoDynamicGroup.inc:184 #: ../lib/modules/kopanoDynamicGroup.inc:185 ../lib/modules/nisnetgroup.inc:153 @@ -5733,7 +5736,7 @@ msgstr "组名包含非法字符,可用字符为: a-z, A-Z, 0-9,及 -或_ !" msgid "Group name for NIS." msgstr "NIS的组名." -#: ../lib/modules/posixGroup.inc:710 +#: ../lib/modules/posixGroup.inc:711 msgid "Group name in use. Selected next free group name." msgstr "组名已被使用,请选择可用的组名." @@ -5744,7 +5747,7 @@ msgid "" "A-Z, 0-9 and .-_ ." msgstr ".将要建立的组名,可用字符为: a-z, A-Z, 0-9,及 -或_." -#: ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:448 msgid "" "Group name of the group which should be created. Valid characters are: a-z, " "A-Z, 0-9 and .-_ . If group name is already used group name will be expanded " @@ -5780,7 +5783,7 @@ msgstr "帐号的组名" msgid "Group of unique names" msgstr "组的唯一名" -#: ../lib/modules/posixGroup.inc:410 ../lib/modules/posixGroup.inc:434 +#: ../lib/modules/posixGroup.inc:411 ../lib/modules/posixGroup.inc:435 msgid "Group password" msgstr "组密码" @@ -5801,15 +5804,15 @@ msgstr "组类型" #: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:1002 #: ../lib/modules/windowsLDSUser.inc:1239 #: ../lib/modules/windowsLDSUser.inc:1860 -#: ../lib/modules/windowsLDSUser.inc:1890 ../lib/modules/posixGroup.inc:505 +#: ../lib/modules/windowsLDSUser.inc:1890 ../lib/modules/posixGroup.inc:506 #: ../lib/modules/zarafaGroup.inc:737 ../lib/modules/kopanoGroup.inc:698 -#: ../lib/modules/posixAccount.inc:3227 ../lib/modules/windowsUser.inc:239 +#: ../lib/modules/posixAccount.inc:3281 ../lib/modules/windowsUser.inc:239 #: ../lib/modules/windowsUser.inc:242 ../lib/modules/windowsUser.inc:604 #: ../lib/modules/windowsUser.inc:897 ../lib/modules/windowsUser.inc:1358 #: ../lib/modules/windowsUser.inc:1820 ../lib/modules/windowsUser.inc:2919 #: ../lib/modules/windowsUser.inc:2949 ../lib/modules/windowsLDSGroup.inc:271 #: ../lib/modules/generalInformation.inc:111 -#: ../lib/modules/groupOfNamesUser.inc:537 ../lib/modules/windowsGroup.inc:505 +#: ../lib/modules/groupOfNamesUser.inc:538 ../lib/modules/windowsGroup.inc:505 msgid "Groups" msgstr "组" @@ -5818,15 +5821,15 @@ msgid "Groups (read-only)" msgstr "组(只读)" #: ../lib/types/gon.inc:54 ../lib/modules/posixAccount.inc:261 -#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1811 -#: ../lib/modules/posixAccount.inc:1988 ../lib/modules/posixAccount.inc:2131 -#: ../lib/modules/posixAccount.inc:2227 ../lib/modules/groupOfNamesUser.inc:54 +#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:2043 ../lib/modules/posixAccount.inc:2185 +#: ../lib/modules/posixAccount.inc:2280 ../lib/modules/groupOfNamesUser.inc:54 #: ../lib/modules/groupOfNamesUser.inc:56 #: ../lib/modules/groupOfNamesUser.inc:60 #: ../lib/modules/groupOfNamesUser.inc:64 #: ../lib/modules/groupOfNamesUser.inc:75 -#: ../lib/modules/groupOfNamesUser.inc:329 -#: ../lib/modules/groupOfNamesUser.inc:367 +#: ../lib/modules/groupOfNamesUser.inc:330 +#: ../lib/modules/groupOfNamesUser.inc:368 msgid "Groups of names" msgstr "组名" @@ -5837,7 +5840,7 @@ msgstr "H-节点 (0x08)" #: ../templates/config/confmain.php:370 ../lib/passwordExpirationJob.inc:88 #: ../lib/modules/selfRegistration.inc:221 #: ../lib/modules/passwordSelfReset.inc:665 -#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:345 +#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:355 msgid "HTML format" msgstr "HTML格式" @@ -5855,17 +5858,17 @@ msgstr "HTTP认证" msgid "HTTP port" msgstr "HTTP端口" -#: ../lib/modules/quota.inc:713 ../lib/modules/systemQuotas.inc:372 +#: ../lib/modules/quota.inc:776 ../lib/modules/systemQuotas.inc:372 msgid "Hard block" msgstr "块的硬性限制" #: ../lib/modules/quota.inc:123 ../lib/modules/quota.inc:124 -#: ../lib/modules/quota.inc:467 ../lib/modules/quota.inc:567 +#: ../lib/modules/quota.inc:524 ../lib/modules/quota.inc:627 #: ../lib/modules/systemQuotas.inc:128 msgid "Hard block limit" msgstr "块的硬性限制" -#: ../lib/modules/quota.inc:715 ../lib/modules/systemQuotas.inc:374 +#: ../lib/modules/quota.inc:778 ../lib/modules/systemQuotas.inc:374 msgid "Hard inode" msgstr "节点的硬性限制" @@ -5873,8 +5876,8 @@ msgstr "节点的硬性限制" msgid "Hard inode (files) limit" msgstr "节点的硬性限制" -#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:573 ../lib/modules/systemQuotas.inc:132 +#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:633 ../lib/modules/systemQuotas.inc:132 msgid "Hard inode limit" msgstr "节点硬性限制" @@ -5936,7 +5939,7 @@ msgid "Here you can enter a description for this role." msgstr "在这输入这个角色的描述." #: ../lib/modules/pykotaPrinter.inc:128 ../lib/modules/zarafaContact.inc:95 -#: ../lib/modules/posixGroup.inc:472 ../lib/modules/zarafaUser.inc:159 +#: ../lib/modules/posixGroup.inc:473 ../lib/modules/zarafaUser.inc:159 #: ../lib/modules/kopanoContact.inc:95 ../lib/modules/sambaGroupMapping.inc:171 #: ../lib/modules/nisnetgroup.inc:107 ../lib/modules/kopanoUser.inc:159 #: ../lib/modules/windowsLDSGroup.inc:109 @@ -5975,7 +5978,7 @@ msgstr "在这输入这个设备的序列号." msgid "Here you can enter additional web sites for the user." msgstr "在这可以为用户输入一个附加的web网站." -#: ../help/help.inc:271 +#: ../help/help.inc:281 msgid "" "Here you can enter an alternative mail address for the password. To use the " "user's primary email address please leave the field blank." @@ -6013,7 +6016,7 @@ msgstr "你可以在这里打开或关闭Kopano功能." msgid "Here you can explicitly enable and disable Zarafa features." msgstr "你可以在这里打开或关闭Zarafa功能." -#: ../help/help.inc:269 +#: ../help/help.inc:279 msgid "" "Here you can export PDF structures to other server profiles (overwrite " "existing). You may also export a structure to the global templates. In this " @@ -6023,7 +6026,7 @@ msgstr "" "可以导出PDF架构到其他服务器配置文件(覆盖已有).也可以导出一个架构到全局模板,将" "这个架构拷贝到所有还不存在这个名字的服务器模板." -#: ../help/help.inc:249 +#: ../help/help.inc:259 msgid "" "Here you can export account profiles to other server profiles (overwrite " "existing). You may also export a profile to the global templates. In this " @@ -6033,19 +6036,19 @@ msgstr "" "可以导出账号配置到其他服务器配置文件(覆盖已有).也可以输出一个配置文件到全局模" "板,将这个配置文件拷贝到所有还不存在这个名字的服务器模板." -#: ../help/help.inc:267 +#: ../help/help.inc:277 msgid "" "Here you can import PDF structures from other server profiles (overwrite " "existing)." msgstr "可以导入其他服务器配置文件的PDF架构(覆盖已有)." -#: ../help/help.inc:247 +#: ../help/help.inc:257 msgid "" "Here you can import account profiles from other server profiles (overwrite " "existing)." msgstr "可以导入其他服务器配置文件的账号配置文件(覆盖已有)." -#: ../lib/lists.inc:458 ../help/help.inc:179 +#: ../lib/lists.inc:457 ../help/help.inc:177 msgid "" "Here you can input simple filter expressions (e.g. 'value' or 'v*'). The " "filter is case-insensitive." @@ -6053,7 +6056,7 @@ msgstr "" "在这里, 您可以输入简单的过滤器表达式 (例如 \"value\" 或 \"v *\")。筛选器不区" "分大小写。" -#: ../help/help.inc:255 +#: ../help/help.inc:265 msgid "" "Here you can load an account profile to set default settings for your " "account. The \"default\" profile is automatically loaded for new accounts." @@ -6069,11 +6072,11 @@ msgstr "您可以管理您的帐号配置文件." msgid "Here you can manage your webauthn devices." msgstr "在这里,您可以管理您的 webauthn 设备。" -#: ../help/help.inc:195 +#: ../help/help.inc:199 msgid "Here you can overwrite the display name for this account type." msgstr "这里可以设置一个新的这个账号类型显示的名字." -#: ../help/help.inc:257 +#: ../help/help.inc:267 msgid "" "Here you can select a PDF structure and export the account to a PDF file." msgstr "您可以选择一个PDF结构,您可以在此選擇一個PDF架構,然後將帳號滙出成PDF檔." @@ -6113,7 +6116,7 @@ msgstr "" msgid "Here you can set the URL to a custom icon (32x32px) for this module." msgstr "设置这个模块图标 (32x32像素)的URL." -#: ../help/help.inc:295 +#: ../help/help.inc:305 msgid "" "Here you can specify additional CSS links to change the layout of the self " "service pages. This is useful to adapt them to your corporate design. Please " @@ -6213,11 +6216,11 @@ msgstr "您可以上传一个新的文件." #: ../lib/modules/kopanoAddressList.inc:111 #: ../lib/modules/kopanoAddressList.inc:142 #: ../lib/modules/kopanoAddressList.inc:179 -#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:188 +#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:192 msgid "Hidden" msgstr "隐藏" -#: ../help/help.inc:189 +#: ../help/help.inc:193 msgid "" "Hidden account types will not show up in LAM. This is useful if you want to " "display e.g. only groups but still need to manage their members." @@ -6235,10 +6238,10 @@ msgstr "" #: ../lib/modules/zarafaGroup.inc:761 ../lib/modules/kopanoGroup.inc:114 #: ../lib/modules/kopanoGroup.inc:722 ../lib/modules/sambaSamAccount.inc:401 #: ../lib/modules/sambaSamAccount.inc:1946 ../lib/modules/posixAccount.inc:324 -#: ../lib/modules/posixAccount.inc:2218 ../lib/modules/posixAccount.inc:2287 +#: ../lib/modules/posixAccount.inc:2272 ../lib/modules/posixAccount.inc:2341 #: ../lib/modules/zarafaUser.inc:150 ../lib/modules/zarafaUser.inc:1816 #: ../lib/modules/windowsUser.inc:257 ../lib/modules/windowsUser.inc:3692 -#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4071 +#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4068 #: ../lib/modules/freeRadius.inc:127 ../lib/modules/freeRadius.inc:298 #: ../lib/modules/kopanoUser.inc:150 ../lib/modules/kopanoUser.inc:1746 #: ../lib/modules/windowsLDSGroup.inc:80 ../lib/modules/zarafaServer.inc:88 @@ -6314,8 +6317,8 @@ msgstr "按住CTRL键可以多选角色." #: ../lib/modules/posixAccount.inc:237 ../lib/modules/posixAccount.inc:305 #: ../lib/modules/posixAccount.inc:357 ../lib/modules/posixAccount.inc:361 #: ../lib/modules/posixAccount.inc:365 ../lib/modules/posixAccount.inc:369 -#: ../lib/modules/posixAccount.inc:1649 ../lib/modules/posixAccount.inc:1902 -#: ../lib/modules/posixAccount.inc:1999 ../lib/modules/posixAccount.inc:2118 +#: ../lib/modules/posixAccount.inc:1704 ../lib/modules/posixAccount.inc:1957 +#: ../lib/modules/posixAccount.inc:2054 ../lib/modules/posixAccount.inc:2172 #: ../lib/modules/courierMailAccount.inc:136 #: ../lib/modules/courierMailAccount.inc:244 #: ../lib/modules/courierMailAccount.inc:423 @@ -6374,8 +6377,8 @@ msgstr "用户的宿主服务器." #: ../lib/modules/inetOrgPerson.inc:355 ../lib/modules/inetOrgPerson.inc:513 #: ../lib/modules/inetOrgPerson.inc:697 ../lib/modules/inetOrgPerson.inc:701 #: ../lib/modules/inetOrgPerson.inc:1409 ../lib/modules/inetOrgPerson.inc:1412 -#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2646 -#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2644 +#: ../lib/modules/inetOrgPerson.inc:4082 ../lib/modules/inetOrgPerson.inc:4124 msgid "Home telephone number" msgstr "宅电" @@ -6392,7 +6395,7 @@ msgstr "个人目录包含非法字符." #: ../lib/modules/asteriskAccount.inc:316 #: ../lib/modules/asteriskAccount.inc:589 #: ../lib/modules/asteriskAccount.inc:984 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:604 +#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:602 #: ../lib/modules/hostObject.inc:144 msgid "Host" msgstr "主机" @@ -6421,14 +6424,14 @@ msgid "Host list" msgstr "主机列表" #: ../lib/types/host.inc:95 ../lib/types/bind.inc:80 -#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:216 +#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:213 #: ../lib/modules/windowsHost.inc:75 ../lib/modules/windowsHost.inc:107 #: ../lib/modules/windowsHost.inc:132 ../lib/modules/windowsHost.inc:144 #: ../lib/modules/windowsHost.inc:155 ../lib/modules/windowsHost.inc:328 #: ../lib/modules/posixAccount.inc:105 ../lib/modules/posixAccount.inc:106 #: ../lib/modules/posixAccount.inc:108 ../lib/modules/posixAccount.inc:272 #: ../lib/modules/posixAccount.inc:295 ../lib/modules/posixAccount.inc:453 -#: ../lib/modules/posixAccount.inc:1606 ../lib/modules/posixAccount.inc:2100 +#: ../lib/modules/posixAccount.inc:1652 ../lib/modules/posixAccount.inc:2154 #: ../lib/modules/bindDLZ.inc:93 ../lib/modules/bindDLZ.inc:156 #: ../lib/modules/bindDLZ.inc:160 ../lib/modules/bindDLZ.inc:264 #: ../lib/modules/bindDLZ.inc:351 ../lib/modules/bindDLZ.inc:492 @@ -6476,7 +6479,7 @@ msgstr "" #: ../lib/types/host.inc:55 ../lib/modules/posixAccount.inc:85 #: ../lib/modules/posixAccount.inc:86 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2240 ../lib/modules/sudoRole.inc:77 +#: ../lib/modules/posixAccount.inc:2294 ../lib/modules/sudoRole.inc:77 #: ../lib/modules/sudoRole.inc:102 ../lib/modules/sudoRole.inc:164 #: ../lib/modules/sudoRole.inc:216 ../lib/modules/sudoRole.inc:228 #: ../lib/modules/sudoRole.inc:302 ../lib/modules/sudoRole.inc:455 @@ -6489,16 +6492,16 @@ msgstr "主机" msgid "I am out of office." msgstr "我辞职了." -#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:705 #: ../lib/modules/posixAccount.inc:96 ../lib/modules/kopanoContact.inc:183 msgid "ID is already in use" msgstr "ID已经被使用" -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixGroup.inc:703 -#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixGroup.inc:851 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/posixGroup.inc:705 ../lib/modules/posixGroup.inc:852 #: ../lib/modules/posixAccount.inc:94 ../lib/modules/posixAccount.inc:95 -#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 msgid "ID-Number" msgstr "ID号" @@ -6533,13 +6536,13 @@ msgstr "输入IMAP 密码" #: ../lib/modules/freeRadius.inc:204 ../lib/modules/freeRadius.inc:253 #: ../lib/modules/freeRadius.inc:302 ../lib/modules/freeRadius.inc:351 #: ../lib/modules/freeRadius.inc:689 ../lib/modules/fixed_ip.inc:111 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:761 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:759 msgid "IP address" msgstr "IP地址" #: ../lib/modules/ddns.inc:97 ../lib/modules/ddns.inc:111 -#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:379 -#: ../lib/modules/ddns.inc:421 +#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:375 +#: ../lib/modules/ddns.inc:417 msgid "IP address of the DNS server" msgstr "DNS服务器IP地址" @@ -6634,7 +6637,7 @@ msgstr "如果选中,密码不会过期." msgid "If checked password does not expire. (Setting X-Flag)" msgstr "密码不过期.(设置X标志)" -#: ../help/help.inc:315 +#: ../help/help.inc:325 msgid "" "If checked then also users who did not setup a second factor are able to " "login." @@ -6655,31 +6658,31 @@ msgid "" "of failed login attempts." msgstr "帐号被锁定(设置L标志).多次登录失败后帐号会被锁定.在此可以解除锁定." -#: ../help/help.inc:191 +#: ../help/help.inc:195 msgid "" "If checked then the user will not be able to create new entries of this " "account type." msgstr "如果选中,用户不能建立新的帐户条目。" -#: ../help/help.inc:193 +#: ../help/help.inc:197 msgid "" "If checked then the user will not be able to delete entries of this account " "type." msgstr "如果选中,用户不能删除账号类型这个条目。" -#: ../lib/modules/posixGroup.inc:419 +#: ../lib/modules/posixGroup.inc:420 msgid "" -"If empty GID number will be generated automaticly depending on your " +"If empty GID number will be generated automatically depending on your " "configuration settings." -msgstr "如果为空,视配置而定,GID号自动产生." +msgstr "如果为空,GID号自动产生(视配置而定,)." #: ../lib/modules/qmailUser.inc:202 -msgid "If empty GID number will be generated automaticly." +msgid "If empty GID number will be generated automatically." msgstr "如果为空,GID号会自动生成." #: ../lib/modules/qmailUser.inc:198 ../lib/modules/zarafaContact.inc:118 #: ../lib/modules/posixAccount.inc:346 ../lib/modules/kopanoContact.inc:118 -msgid "If empty UID number will be generated automaticly." +msgid "If empty UID number will be generated automatically." msgstr "如果为空,UID号会自动生成." #: ../lib/modules/selfRegistration.inc:110 @@ -6747,7 +6750,7 @@ msgstr "如果设为\"true\",密码不会过期(设为X标志)" #: ../lib/modules/qmailGroup.inc:162 msgid "" -"If set to true then all incomming mails needs to come from a member of the " +"If set to true then all incoming mails needs to come from a member of the " "list." msgstr "此处如果设置为真,所有进来的邮件都需要来自于列表中的用户." @@ -6790,7 +6793,7 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:194 msgid "" -"If this is set to true then an incomming mail needs to be approved by the " +"If this is set to true then an incoming mail needs to be approved by the " "sender." msgstr "此处如果设置为真,所有进来的邮件必须被发送者批准." @@ -6863,7 +6866,7 @@ msgstr "如果您选中此项,用户不能请求服务票据." #: ../lib/modules/mitKerberos.inc:183 ../lib/modules/sambaSamAccount.inc:297 #: ../lib/modules/windowsUser.inc:237 ../lib/modules/heimdalKerberos.inc:127 -#: ../help/help.inc:263 +#: ../help/help.inc:273 msgid "" "If you set this option then the user has to change his password at the next " "login." @@ -6932,16 +6935,16 @@ msgid "Import" msgstr "导入" #: ../templates/pdfedit/pdfmain.php:256 ../templates/pdfedit/pdfmain.php:257 -#: ../help/help.inc:266 +#: ../help/help.inc:276 msgid "Import PDF structures" msgstr "导入PDF架构" -#: ../templates/config/mainmanage.php:353 +#: ../templates/config/mainmanage.php:393 msgid "Import from server" msgstr "从服务器导入" #: ../templates/profedit/profilemain.php:233 -#: ../templates/profedit/profilemain.php:234 ../help/help.inc:246 +#: ../templates/profedit/profilemain.php:234 ../help/help.inc:256 msgid "Import profiles" msgstr "导出配置文件" @@ -6950,7 +6953,7 @@ msgstr "导出配置文件" msgid "Import successful" msgstr "导入成功" -#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:241 msgid "Imported certificate from server." msgstr "从服务器导入证书." @@ -6958,7 +6961,7 @@ msgstr "从服务器导入证书." msgid "Imports and exports LDAP data." msgstr "导入和导出 ldap 数据。" -#: ../templates/config/mainmanage.php:355 +#: ../templates/config/mainmanage.php:395 msgid "Imports the certificate directly from your LDAP server." msgstr "从LDAP服务器直接导入证书." @@ -6973,7 +6976,7 @@ msgid "Inactive hosts will not be able to get an address from the DHCP server." msgstr "非激活的主机不会从DHCP服务器获取到地址." #: ../templates/tools/importexport.php:280 -#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:375 +#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:385 msgid "Include system attributes" msgstr "包括系统属性" @@ -7015,9 +7018,9 @@ msgstr "初始化程序" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:251 #: ../lib/modules/inetOrgPerson.inc:558 ../lib/modules/inetOrgPerson.inc:782 #: ../lib/modules/inetOrgPerson.inc:1219 ../lib/modules/inetOrgPerson.inc:1222 -#: ../lib/modules/inetOrgPerson.inc:1995 ../lib/modules/inetOrgPerson.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:2869 ../lib/modules/inetOrgPerson.inc:4099 -#: ../lib/modules/inetOrgPerson.inc:4135 +#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2019 +#: ../lib/modules/inetOrgPerson.inc:2867 ../lib/modules/inetOrgPerson.inc:4096 +#: ../lib/modules/inetOrgPerson.inc:4132 msgid "Initials" msgstr "初始化" @@ -7089,7 +7092,7 @@ msgstr "在配置路径中插入用户名或组名." msgid "Insufficient rights for this operation." msgstr "操作权限不足." -#: ../lib/modules/fixed_ip.inc:459 +#: ../lib/modules/fixed_ip.inc:457 msgid "Invalid MAC address." msgstr "非法的MAC地址." @@ -7101,7 +7104,7 @@ msgstr "错误的RDN属性!" msgid "Invalid RDN value" msgstr "非法的RDN值" -#: ../lib/modules/posixAccount.inc:1723 ../lib/modules/yubiKeyUser.inc:147 +#: ../lib/modules/posixAccount.inc:1778 ../lib/modules/yubiKeyUser.inc:147 msgid "" "Invalid configuration detected. Please edit your server profile (module " "settings) and fill all required fields." @@ -7114,7 +7117,7 @@ msgstr "检测到无效配置。请编辑服务器配置文件 (模块设置) msgid "Invalid data" msgstr "无效数据" -#: ../lib/modules/fixed_ip.inc:464 +#: ../lib/modules/fixed_ip.inc:462 msgid "Invalid description." msgstr "非法的描述." @@ -7135,15 +7138,15 @@ msgid "Invalid option" msgstr "非法选项" #: ../lib/modules/imapAccess.inc:161 -msgid "Invalid password for IMAP admin or other problem occured." +msgid "Invalid password for IMAP admin or other problem occurred." msgstr "非法的IMAP管理员密码或者发生了其它问题。" -#: ../lib/modules/ldapPublicKey.inc:651 ../lib/modules/yubiKeyUser.inc:530 -#: ../lib/modules/inetOrgPerson.inc:3884 ../lib/modules/customFields.inc:1577 +#: ../lib/modules/ldapPublicKey.inc:649 ../lib/modules/yubiKeyUser.inc:530 +#: ../lib/modules/inetOrgPerson.inc:3881 ../lib/modules/customFields.inc:1577 msgid "Invalid request" msgstr "无效请求" -#: ../templates/config/mainmanage.php:237 +#: ../templates/config/mainmanage.php:248 msgid "Invalid server name. Please enter \"server\" or \"server:port\"." msgstr "不合法的服务器名. 请输入 \"服务器名\" or \"服务器名:端口\"." @@ -7156,7 +7159,7 @@ msgstr "在\"%s\"域有非法字符." #: ../lib/modules/kolabUser.inc:104 ../lib/modules/kolabUser.inc:111 #: ../lib/modules/kolabUser.inc:161 ../lib/modules/kolabUser.inc:198 #: ../lib/modules/kolabUser.inc:263 ../lib/modules/kolabUser.inc:602 -#: ../lib/modules/kolabUser.inc:737 +#: ../lib/modules/kolabUser.inc:736 msgid "Invitation policy" msgstr "邀请原则" @@ -7164,11 +7167,11 @@ msgstr "邀请原则" msgid "Invitation policy list" msgstr "邀请原则列表" -#: ../lib/modules/range.inc:140 +#: ../lib/modules/range.inc:139 msgid "It is not possible to delete all ranges." msgstr "不能删除所有范围." -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixAccount.inc:95 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:95 msgid "" "It is possible that this ID-number is reused. This can cause several " "problems because files with old permissions might still exist. To avoid this " @@ -7204,9 +7207,9 @@ msgstr "任务后缀" #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:267 #: ../lib/modules/inetOrgPerson.inc:531 ../lib/modules/inetOrgPerson.inc:570 #: ../lib/modules/inetOrgPerson.inc:574 ../lib/modules/inetOrgPerson.inc:1465 -#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1966 -#: ../lib/modules/inetOrgPerson.inc:2075 ../lib/modules/inetOrgPerson.inc:2882 -#: ../lib/modules/inetOrgPerson.inc:4090 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1964 +#: ../lib/modules/inetOrgPerson.inc:2073 ../lib/modules/inetOrgPerson.inc:2880 +#: ../lib/modules/inetOrgPerson.inc:4087 ../lib/modules/inetOrgPerson.inc:4127 msgid "Job title" msgstr "头衔" @@ -7317,7 +7320,7 @@ msgstr "Kopano将在这些服务器上存储用户的归档." msgid "Korean" msgstr "韩语" -#: ../lib/modules/posixGroup.inc:455 +#: ../lib/modules/posixGroup.inc:456 msgid "" "LAM checks if the entered group name and GID are unique. Here you can enter " "the LDAP suffix that is used to search for duplicates. By default the " @@ -7349,7 +7352,7 @@ msgstr "LAM 配置" msgid "LAM has checked your input and is now ready to create the accounts." msgstr "您的输入检查完毕,即将建立帐号." -#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixAccount.inc:341 +#: ../lib/modules/posixGroup.inc:444 ../lib/modules/posixAccount.inc:341 #: ../lib/modules/inetOrgPerson.inc:758 ../lib/modules/customFields.inc:150 msgid "" "LAM supports CRYPT, CRYPT-SHA512, SHA, SSHA, MD5 and SMD5 to generate the " @@ -7369,9 +7372,9 @@ msgstr "LAM 测试" msgid "LAM user password" msgstr "LAM用户密码" -#: ../lib/upload.inc:156 +#: ../lib/upload.inc:155 #, php-format -msgid "LAM was unable to create account %s! An LDAP error occured." +msgid "LAM was unable to create account %s! An LDAP error occurred." msgstr "LAM无法建立%s帐号,LDAP发生错误." #: ../lib/modules/sambaGroupMapping.inc:574 @@ -7387,10 +7390,10 @@ msgstr "LAM找不到这个域!" msgid "LAM was unable to find a group with this name!" msgstr "LAM找不到这个组!" -#: ../lib/modules/windowsLDSUser.inc:1790 ../lib/modules/posixAccount.inc:2867 -#: ../lib/modules/posixAccount.inc:2949 ../lib/modules/windowsUser.inc:2799 +#: ../lib/modules/windowsLDSUser.inc:1790 ../lib/modules/posixAccount.inc:2921 +#: ../lib/modules/posixAccount.inc:3003 ../lib/modules/windowsUser.inc:2799 #: ../lib/modules/nisNetGroupUser.inc:580 -#: ../lib/modules/groupOfNamesUser.inc:449 +#: ../lib/modules/groupOfNamesUser.inc:450 #, php-format msgid "LAM was unable to modify group memberships for group: %s" msgstr "LAM无法修改 %s组成员" @@ -7400,7 +7403,7 @@ msgstr "LAM无法修改 %s组成员" msgid "LAM was unable to modify memberships for role: %s" msgstr "LAM无法修改 %s角色成员" -#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixAccount.inc:386 +#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:386 msgid "" "LAM will automatically suggest UID/GID numbers. You can either use a fixed " "range of numbers or an LDAP entry with object class \"sambaUnixIdPool\" or " @@ -7409,7 +7412,7 @@ msgstr "" "LAM将自动提供UID/GID数字. 可以在LDAP中指定对象类 \"sambaUnixIdPool\" 或者" "\"msSFU30DomainInfo\"中指定固定的范围." -#: ../help/help.inc:277 +#: ../help/help.inc:287 msgid "LAM will search for accounts in this part of the LDAP tree." msgstr "LAM将在这部分LDAP树搜索帐号." @@ -7423,7 +7426,7 @@ msgstr "" "LAM将基于姓名建议一个用户名.您可以指定这个建议值, %sn%被姓来替换 @givenname@" "被名字的第一个字符来替换.仅一些Person 的tab属性可能被使用。" -#: ../help/help.inc:279 +#: ../help/help.inc:289 msgid "" "LAM will use this LDAP DN and password to search for accounts. It is " "sufficient to specify an account with read rights. If nothing is inserted " @@ -7489,13 +7492,13 @@ msgstr "这个列表中的用户的LDAP条目." msgid "LDAP entries that moderate this list (e.g. approve mails)." msgstr "主持这个列表(比如批准邮件)的LDAP条目." -#: ../templates/login.php:593 ../lib/account.inc:1507 +#: ../templates/login.php:603 ../lib/account.inc:1490 msgid "LDAP error, server says:" msgstr "LDAP错误,服务器错误消息:" #: ../templates/tools/multiEdit.php:139 ../templates/config/confmain.php:448 #: ../lib/modules/customFields.inc:197 ../lib/modules/customFields.inc:4095 -#: ../help/help.inc:361 +#: ../help/help.inc:371 msgid "LDAP filter" msgstr "LDAP过滤条件" @@ -7535,11 +7538,11 @@ msgstr "LDAP说" msgid "LDAP search" msgstr "LDAP搜索" -#: ../templates/selfService/adminMain.php:434 ../help/help.inc:280 +#: ../templates/selfService/adminMain.php:434 ../help/help.inc:290 msgid "LDAP search attribute" msgstr "LDAP搜索属性" -#: ../lib/account.inc:1011 +#: ../lib/account.inc:1015 msgid "LDAP search failed! Please check your preferences." msgstr "LDAP搜索失败,请检查配置。" @@ -7555,7 +7558,7 @@ msgstr "LDAP搜索可选列表" msgid "LDAP server" msgstr "LDAP服务器" -#: ../lib/account.inc:1002 +#: ../lib/account.inc:1006 msgid "LDAP sizelimit exceeded, not all entries are shown." msgstr "超过LDAP限制的大小,无法显示所有条目." @@ -7564,11 +7567,11 @@ msgstr "超过LDAP限制的大小,无法显示所有条目." #: ../templates/selfService/adminMain.php:425 #: ../templates/profedit/profilepage.php:205 #: ../lib/modules/customFields.inc:193 ../lib/modules/customFields.inc:4092 -#: ../help/help.inc:75 ../help/help.inc:276 ../help/help.inc:359 +#: ../help/help.inc:75 ../help/help.inc:286 ../help/help.inc:369 msgid "LDAP suffix" msgstr "LDAP后缀" -#: ../lib/upload.inc:217 +#: ../lib/upload.inc:216 msgid "LDAP upload in progress. Please wait." msgstr "LDAP上传中,请稍等..." @@ -7576,7 +7579,7 @@ msgstr "LDAP上传中,请稍等..." msgid "LDAP user" msgstr "LDAP用户" -#: ../help/help.inc:278 +#: ../help/help.inc:288 msgid "LDAP user and password" msgstr "LDAP用户名和密码" @@ -7592,7 +7595,7 @@ msgstr "基于nsview的LDAP视图" msgid "LDIF Export" msgstr "LDIF导出" -#: ../templates/tools/importexport.php:170 ../help/help.inc:367 +#: ../templates/tools/importexport.php:170 ../help/help.inc:377 msgid "LDIF data" msgstr "LDIF数据" @@ -7613,7 +7616,7 @@ msgstr "LDIF导入功能只支持版本1" #: ../templates/selfService/adminMain.php:529 #: ../lib/modules/customFields.inc:93 ../lib/modules/customFields.inc:653 #: ../lib/modules/customFields.inc:1211 ../lib/modules/customFields.inc:1964 -#: ../lib/modules/customFields.inc:3640 ../help/help.inc:310 +#: ../lib/modules/customFields.inc:3640 ../help/help.inc:320 msgid "Label" msgstr "标签" @@ -7660,11 +7663,11 @@ msgstr "Lamdaemon: 检查 NSS LDAP" msgid "Lamdaemon: read quotas" msgstr "Lamdaemon: 读取配额" -#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:308 +#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:309 msgid "Language" msgstr "语言" -#: ../templates/config/confmain.php:665 +#: ../templates/config/confmain.php:667 msgid "Language is not defined!" msgstr "尚未定义语言!" @@ -7694,8 +7697,8 @@ msgstr "上次登录" #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:158 #: ../lib/modules/inetOrgPerson.inc:242 ../lib/modules/inetOrgPerson.inc:477 #: ../lib/modules/inetOrgPerson.inc:582 ../lib/modules/inetOrgPerson.inc:1211 -#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1968 -#: ../lib/modules/inetOrgPerson.inc:2594 ../lib/modules/inetOrgPerson.inc:4122 +#: ../lib/modules/inetOrgPerson.inc:1214 ../lib/modules/inetOrgPerson.inc:1966 +#: ../lib/modules/inetOrgPerson.inc:2592 ../lib/modules/inetOrgPerson.inc:4119 msgid "Last name" msgstr "姓" @@ -7750,12 +7753,14 @@ msgstr "上次使用" #: ../lib/modules/dhcp_settings.inc:151 ../lib/modules/dhcp_settings.inc:216 #: ../lib/modules/dhcp_settings.inc:232 ../lib/modules/dhcp_settings.inc:265 -#: ../lib/modules/dhcp_settings.inc:590 ../lib/modules/dhcp_settings.inc:709 +#: ../lib/modules/dhcp_settings.inc:582 ../lib/modules/dhcp_settings.inc:701 msgid "Lease time" msgstr "释放时间" -#: ../templates/config/mainmanage.php:303 -#: ../templates/config/mainmanage.php:304 ../help/help.inc:234 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:319 +#: ../templates/config/mainmanage.php:320 ../help/help.inc:238 msgid "Licence" msgstr "许可证" @@ -7832,7 +7837,7 @@ msgid "" "workstation." msgstr "允许用户登录的Samba工作站,留空表示所有工作站." -#: ../templates/config/confmain.php:659 +#: ../templates/config/confmain.php:661 msgid "List of admin users is empty or invalid!" msgstr "管理员清单为空或非法!" @@ -7863,7 +7868,7 @@ msgstr "允许用户登录的工作站列表。留空代表所有工作站。" msgid "Listeners" msgstr "监听" -#: ../lib/modules.inc:1333 ../help/help.inc:254 +#: ../lib/modules.inc:1333 ../help/help.inc:264 msgid "Load profile" msgstr "调入配置文件" @@ -7939,9 +7944,9 @@ msgstr "本地成员" #: ../lib/modules/inetOrgPerson.inc:445 ../lib/modules/inetOrgPerson.inc:492 #: ../lib/modules/inetOrgPerson.inc:717 ../lib/modules/inetOrgPerson.inc:721 #: ../lib/modules/inetOrgPerson.inc:1286 ../lib/modules/inetOrgPerson.inc:1289 -#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2036 -#: ../lib/modules/inetOrgPerson.inc:2776 ../lib/modules/inetOrgPerson.inc:4078 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2034 +#: ../lib/modules/inetOrgPerson.inc:2774 ../lib/modules/inetOrgPerson.inc:4075 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "Location" msgstr "地点" @@ -7963,8 +7968,8 @@ msgstr "锁定帐号" msgid "Lock account?" msgstr "锁定帐号?" -#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1687 -#: ../lib/modules/posixAccount.inc:2415 ../lib/modules/inetOrgPerson.inc:1579 +#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1742 +#: ../lib/modules/posixAccount.inc:2469 ../lib/modules/inetOrgPerson.inc:1579 msgid "Lock password" msgstr "锁定密码" @@ -8012,11 +8017,11 @@ msgstr "在多次错误登录后锁定用户" msgid "Lockout users after bad logon attempts must be between 0 and 999." msgstr "用户锁定前错误的登录次数必须在0-999之间。" -#: ../templates/config/mainmanage.php:431 ../help/help.inc:158 +#: ../templates/config/mainmanage.php:471 ../help/help.inc:158 msgid "Log destination" msgstr "日志存储位置" -#: ../templates/config/mainmanage.php:407 ../help/help.inc:156 +#: ../templates/config/mainmanage.php:447 ../help/help.inc:156 msgid "Log level" msgstr "日志等级" @@ -8024,14 +8029,14 @@ msgstr "日志等级" msgid "Log output" msgstr "日志输出" -#: ../templates/config/mainmanage.php:405 +#: ../templates/config/mainmanage.php:445 msgid "Logging" msgstr "日志" #: ../templates/login.php:404 ../templates/config/conflogin.php:71 #: ../templates/config/mainlogin.php:68 -#: ../templates/selfService/selfServiceLogin.php:224 -#: ../templates/selfService/selfServiceLogin.php:327 +#: ../templates/selfService/selfServiceLogin.php:225 +#: ../templates/selfService/selfServiceLogin.php:328 #: ../templates/selfService/adminLogin.php:57 #: ../templates/selfService/selfService2Factor.php:132 #: ../templates/3rdParty/pla/lib/HTMLTree.php:497 @@ -8039,15 +8044,15 @@ msgstr "日志" msgid "Login" msgstr "登录" -#: ../templates/selfService/adminMain.php:567 ../help/help.inc:282 +#: ../templates/selfService/adminMain.php:567 ../help/help.inc:292 msgid "Login attribute label" msgstr "登录属性标签" -#: ../templates/selfService/adminMain.php:574 ../help/help.inc:284 +#: ../templates/selfService/adminMain.php:574 ../help/help.inc:294 msgid "Login caption" msgstr "登录标题" -#: ../templates/selfService/adminMain.php:579 ../help/help.inc:328 +#: ../templates/selfService/adminMain.php:579 ../help/help.inc:338 msgid "Login footer" msgstr "登录页面的页脚" @@ -8057,14 +8062,14 @@ msgstr "登录方法" #: ../lib/types/user.inc:106 ../lib/modules/posixAccount.inc:176 #: ../lib/modules/posixAccount.inc:251 ../lib/modules/posixAccount.inc:306 -#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1678 -#: ../lib/modules/posixAccount.inc:2001 ../lib/modules/posixAccount.inc:2119 -#: ../lib/modules/posixAccount.inc:3209 +#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1733 +#: ../lib/modules/posixAccount.inc:2056 ../lib/modules/posixAccount.inc:2173 +#: ../lib/modules/posixAccount.inc:3263 msgid "Login shell" msgstr "登录shell" #: ../lib/modules/posixAccount.inc:186 ../lib/modules/posixAccount.inc:381 -#: ../lib/modules/posixAccount.inc:2302 +#: ../lib/modules/posixAccount.inc:2356 msgid "Login shells" msgstr "登录shells" @@ -8133,7 +8138,7 @@ msgstr "M-节点 (0x04)" #: ../lib/types/dhcp.inc:99 ../lib/modules/ieee802device.inc:57 #: ../lib/modules/ieee802device.inc:67 ../lib/modules/ieee802device.inc:78 #: ../lib/modules/ieee802device.inc:105 ../lib/modules/fixed_ip.inc:107 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:762 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:760 msgid "MAC address" msgstr "MAC地址" @@ -8161,14 +8166,14 @@ msgstr "MX记录" msgid "MX records" msgstr "MX记录" -#: ../lib/modules/posixGroup.inc:488 ../lib/modules/posixGroup.inc:551 -#: ../lib/modules/posixGroup.inc:580 ../lib/modules/posixGroup.inc:717 -#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2154 -#: ../lib/modules/posixAccount.inc:2211 ../lib/modules/posixAccount.inc:2282 +#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixGroup.inc:552 +#: ../lib/modules/posixGroup.inc:581 ../lib/modules/posixGroup.inc:718 +#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2208 +#: ../lib/modules/posixAccount.inc:2265 ../lib/modules/posixAccount.inc:2336 msgid "Magic number" msgstr "魔法号" -#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:387 +#: ../lib/modules/posixGroup.inc:461 ../lib/modules/posixAccount.inc:387 msgid "" "Magic number will set a fixed value that must match your server " "configuration." @@ -8183,27 +8188,31 @@ msgstr "邮件别名" msgid "Mail domains" msgstr "邮箱域" +#: ../templates/config/mainmanage.php:497 +msgid "Mail options" +msgstr "邮箱选项" + #: ../lib/modules/inetLocalMailRecipient.inc:68 msgid "Mail routing" msgstr "邮件路由" #: ../lib/modules/selfRegistration.inc:756 -#: ../lib/modules/selfRegistration.inc:776 -#: ../lib/modules/passwordSelfReset.inc:1818 -#: ../lib/modules/passwordSelfReset.inc:1833 -#: ../lib/modules/passwordSelfReset.inc:1866 +#: ../lib/modules/selfRegistration.inc:775 +#: ../lib/modules/passwordSelfReset.inc:1817 +#: ../lib/modules/passwordSelfReset.inc:1832 +#: ../lib/modules/passwordSelfReset.inc:1864 msgid "Mail sending failed." msgstr "邮件发送失败." -#: ../lib/modules/bindDLZ.inc:148 ../lib/modules/bindDLZ.inc:152 -#: ../lib/modules/bindDLZ.inc:326 ../lib/modules/bindDLZ.inc:590 -#: ../lib/modules/bindDLZ.inc:1155 ../lib/modules/bindDLZ.inc:1849 -#: ../lib/modules/inetLocalMailRecipient.inc:90 +#: ../templates/config/mainmanage.php:498 ../lib/modules/bindDLZ.inc:148 +#: ../lib/modules/bindDLZ.inc:152 ../lib/modules/bindDLZ.inc:326 +#: ../lib/modules/bindDLZ.inc:590 ../lib/modules/bindDLZ.inc:1155 +#: ../lib/modules/bindDLZ.inc:1849 ../lib/modules/inetLocalMailRecipient.inc:90 #: ../lib/modules/inetLocalMailRecipient.inc:98 #: ../lib/modules/inetLocalMailRecipient.inc:127 #: ../lib/modules/inetLocalMailRecipient.inc:136 #: ../lib/modules/inetLocalMailRecipient.inc:185 -#: ../lib/modules/inetLocalMailRecipient.inc:306 +#: ../lib/modules/inetLocalMailRecipient.inc:306 ../help/help.inc:182 msgid "Mail server" msgstr "邮件服务器" @@ -8219,7 +8228,7 @@ msgstr "邮件服务 (\"MX\" 记录)" msgid "Mail source" msgstr "邮件源" -#: ../lib/account.inc:1287 +#: ../lib/account.inc:1289 #, php-format msgid "Mail successfully sent to %s." msgstr "邮件已经成功发送到%s." @@ -8286,11 +8295,11 @@ msgstr "邮件转发." msgid "Main" msgstr "主要设置" -#: ../templates/selfService/adminMain.php:584 ../help/help.inc:286 +#: ../templates/selfService/adminMain.php:584 ../help/help.inc:296 msgid "Main page caption" msgstr "主页标题" -#: ../templates/selfService/adminMain.php:589 ../help/help.inc:330 +#: ../templates/selfService/adminMain.php:589 ../help/help.inc:340 msgid "Main page footer" msgstr "主页的页脚" @@ -8354,8 +8363,8 @@ msgstr "管理后缀" #: ../lib/modules/windowsUser.inc:2888 ../lib/modules/windowsUser.inc:3718 #: ../lib/modules/inetOrgPerson.inc:291 ../lib/modules/inetOrgPerson.inc:546 #: ../lib/modules/inetOrgPerson.inc:590 ../lib/modules/inetOrgPerson.inc:594 -#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1969 -#: ../lib/modules/inetOrgPerson.inc:4095 ../lib/modules/inetOrgPerson.inc:4133 +#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1967 +#: ../lib/modules/inetOrgPerson.inc:4092 ../lib/modules/inetOrgPerson.inc:4130 msgid "Manager" msgstr "管理员" @@ -8434,22 +8443,22 @@ msgstr "最大的文件描述符" msgid "Maximum" msgstr "最大" -#: ../lib/modules/posixGroup.inc:571 ../lib/modules/posixGroup.inc:706 -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:572 ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number" msgstr "最大GID号" -#: ../lib/modules/posixGroup.inc:706 +#: ../lib/modules/posixGroup.inc:707 msgid "Maximum GID number is invalid or empty!" msgstr "最大的GID非法或为空!" -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number must be greater than minimum GID number!" msgstr "最大GID必须大于最小GID!" #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:86 #: ../lib/modules/posixAccount.inc:87 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2208 ../lib/modules/posixAccount.inc:2279 +#: ../lib/modules/posixAccount.inc:2262 ../lib/modules/posixAccount.inc:2333 msgid "Maximum UID number" msgstr "最大UID号" @@ -8474,8 +8483,8 @@ msgid "Maximum file size" msgstr "最大文件大小" #: ../lib/modules/windowsLDSUser.inc:2209 ../lib/modules/windowsUser.inc:3742 -#: ../lib/modules/inetOrgPerson.inc:2526 ../lib/modules/inetOrgPerson.inc:2550 -#: ../lib/modules/inetOrgPerson.inc:4149 +#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2548 +#: ../lib/modules/inetOrgPerson.inc:4146 msgid "Maximum file size (kB)" msgstr "最大文件大小(kB)" @@ -8484,8 +8493,8 @@ msgid "Maximum file size must be a number. Please enter 0 for no limit." msgstr "文件大小的最大值必须是一个数字. 输入0表示无限制." #: ../lib/modules/windowsLDSUser.inc:2208 ../lib/modules/windowsUser.inc:3741 -#: ../lib/modules/inetOrgPerson.inc:2525 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:4148 +#: ../lib/modules/inetOrgPerson.inc:2523 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:4145 msgid "Maximum height (px)" msgstr "最大高度(px)" @@ -8498,7 +8507,7 @@ msgstr "最大的任务量" #: ../lib/modules/dhcp_settings.inc:155 ../lib/modules/dhcp_settings.inc:217 #: ../lib/modules/dhcp_settings.inc:233 ../lib/modules/dhcp_settings.inc:271 -#: ../lib/modules/dhcp_settings.inc:594 ../lib/modules/dhcp_settings.inc:710 +#: ../lib/modules/dhcp_settings.inc:586 ../lib/modules/dhcp_settings.inc:702 msgid "Maximum lease time" msgstr "最大释放时间" @@ -8506,7 +8515,7 @@ msgstr "最大释放时间" msgid "Maximum length" msgstr "最大长度" -#: ../lib/lists.inc:1199 ../help/help.inc:101 +#: ../lib/lists.inc:1198 ../help/help.inc:101 msgid "Maximum list entries" msgstr "最大列表条目" @@ -8530,8 +8539,8 @@ msgid "Maximum password age" msgstr "密码最长生命" #: ../lib/modules/windowsLDSUser.inc:2207 ../lib/modules/windowsUser.inc:3740 -#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2544 -#: ../lib/modules/inetOrgPerson.inc:4147 +#: ../lib/modules/inetOrgPerson.inc:2522 ../lib/modules/inetOrgPerson.inc:2542 +#: ../lib/modules/inetOrgPerson.inc:4144 msgid "Maximum width (px)" msgstr "最大宽度(px)" @@ -8652,16 +8661,16 @@ msgstr "最短密码长度" msgid "Minimum" msgstr "最小" -#: ../lib/modules/posixGroup.inc:568 ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:569 ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number" msgstr "最小GID号" -#: ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number is invalid or empty!" msgstr "最小GID错误或为空!" #: ../lib/modules/posixAccount.inc:83 ../lib/modules/posixAccount.inc:85 -#: ../lib/modules/posixAccount.inc:2205 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2259 ../lib/modules/posixAccount.inc:2330 msgid "Minimum UID number" msgstr "最小UID号" @@ -8674,15 +8683,15 @@ msgstr "最小UID非法!" msgid "Minimum answer length" msgstr "最短答案的长度" -#: ../templates/config/mainmanage.php:389 +#: ../templates/config/mainmanage.php:429 msgid "Minimum character classes" msgstr "最少字符类别" -#: ../templates/config/mainmanage.php:385 +#: ../templates/config/mainmanage.php:425 msgid "Minimum lowercase characters" msgstr "最小的小写字母字符数" -#: ../templates/config/mainmanage.php:387 +#: ../templates/config/mainmanage.php:427 msgid "Minimum numeric characters" msgstr "最小的数字字符数" @@ -8698,14 +8707,14 @@ msgstr "最小的数字字符数" msgid "Minimum password age" msgstr "密码最短生命" -#: ../templates/config/mainmanage.php:383 ../lib/types/ppolicyType.inc:90 +#: ../templates/config/mainmanage.php:423 ../lib/types/ppolicyType.inc:90 #: ../lib/modules/ppolicy.inc:120 ../lib/modules/ppolicy.inc:151 #: ../lib/modules/ppolicy.inc:180 ../lib/modules/ppolicy.inc:246 #: ../lib/modules/ppolicy.inc:484 msgid "Minimum password length" msgstr "最短密码长度" -#: ../templates/config/mainmanage.php:388 +#: ../templates/config/mainmanage.php:428 msgid "Minimum symbolic characters" msgstr "最少标点符号字符数" @@ -8715,7 +8724,7 @@ msgstr "最少标点符号字符数" msgid "Minimum time" msgstr "最小时间" -#: ../templates/config/mainmanage.php:386 +#: ../templates/config/mainmanage.php:426 msgid "Minimum uppercase characters" msgstr "最少的大字字母字符数" @@ -8741,12 +8750,12 @@ msgstr "手机号码" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:363 #: ../lib/modules/inetOrgPerson.inc:516 ../lib/modules/inetOrgPerson.inc:638 #: ../lib/modules/inetOrgPerson.inc:642 ../lib/modules/inetOrgPerson.inc:1417 -#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1979 -#: ../lib/modules/inetOrgPerson.inc:4086 ../lib/modules/inetOrgPerson.inc:4128 +#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1977 +#: ../lib/modules/inetOrgPerson.inc:4083 ../lib/modules/inetOrgPerson.inc:4125 msgid "Mobile number" msgstr "手机号码" -#: ../lib/modules/inetOrgPerson.inc:2659 +#: ../lib/modules/inetOrgPerson.inc:2657 msgid "Mobile telephone number" msgstr "手机号码" @@ -8829,8 +8838,8 @@ msgstr "模块" msgid "Monday" msgstr "星期一" -#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:711 ../lib/modules/systemQuotas.inc:99 +#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:774 ../lib/modules/systemQuotas.inc:99 #: ../lib/modules/systemQuotas.inc:124 ../lib/modules/systemQuotas.inc:370 msgid "Mountpoint" msgstr "挂接点" @@ -8843,7 +8852,7 @@ msgstr "装配点包含非法字符." msgid "Mountpoint of device with enabled quotas." msgstr "可限制配额设备挂接点." -#: ../lib/passwordExpirationJob.inc:486 +#: ../lib/passwordExpirationJob.inc:484 msgid "Move" msgstr "移动" @@ -9054,8 +9063,8 @@ msgstr "NS条目" #: ../lib/modules/dynamicList.inc:122 ../lib/modules/dynamicList.inc:207 #: ../lib/modules/device.inc:64 ../lib/modules/device.inc:156 #: ../lib/modules/device.inc:334 ../lib/modules/device.inc:414 -#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:120 -#: ../lib/modules/range.inc:141 ../lib/modules/range.inc:547 +#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:119 +#: ../lib/modules/range.inc:140 ../lib/modules/range.inc:546 #: ../lib/modules/nisObject.inc:61 ../lib/modules/nisObject.inc:81 #: ../lib/modules/nisObject.inc:111 ../lib/modules/nisObject.inc:137 #: ../lib/modules/nisObject.inc:205 ../lib/modules/ppolicy.inc:80 @@ -9108,7 +9117,7 @@ msgstr "域名服务器" msgid "Name servers (\"NS\" records)" msgstr "DNS服务器 (\"NS\" 记录)" -#: ../help/help.inc:243 +#: ../help/help.inc:253 msgid "" "Name under which the profile will be saved. If a profile with the same name " "exists, it will be overwritten." @@ -9119,7 +9128,7 @@ msgid "Named object" msgstr "已命名对象" #: ../lib/modules/dhcp_settings.inc:191 ../lib/modules/dhcp_settings.inc:223 -#: ../lib/modules/dhcp_settings.inc:648 ../lib/modules/dhcp_settings.inc:720 +#: ../lib/modules/dhcp_settings.inc:640 ../lib/modules/dhcp_settings.inc:712 #: ../lib/modules/freeRadius.inc:91 ../lib/modules/freeRadius.inc:133 #: ../lib/modules/freeRadius.inc:212 ../lib/modules/freeRadius.inc:256 #: ../lib/modules/freeRadius.inc:303 ../lib/modules/freeRadius.inc:355 @@ -9129,13 +9138,13 @@ msgstr "子网掩码" #: ../lib/modules/dhcp_settings.inc:167 ../lib/modules/dhcp_settings.inc:220 #: ../lib/modules/dhcp_settings.inc:237 ../lib/modules/dhcp_settings.inc:295 -#: ../lib/modules/dhcp_settings.inc:610 ../lib/modules/dhcp_settings.inc:714 +#: ../lib/modules/dhcp_settings.inc:602 ../lib/modules/dhcp_settings.inc:706 msgid "Netbios name servers" msgstr "Netbios命名服务器" #: ../lib/modules/dhcp_settings.inc:171 ../lib/modules/dhcp_settings.inc:221 #: ../lib/modules/dhcp_settings.inc:239 ../lib/modules/dhcp_settings.inc:301 -#: ../lib/modules/dhcp_settings.inc:620 ../lib/modules/dhcp_settings.inc:715 +#: ../lib/modules/dhcp_settings.inc:612 ../lib/modules/dhcp_settings.inc:707 msgid "Netbios node type" msgstr "Netbios 节点类型" @@ -9231,7 +9240,7 @@ msgstr "新主机" msgid "New import" msgstr "新的导入" -#: ../templates/config/mainmanage.php:491 +#: ../templates/config/mainmanage.php:531 msgid "New master password" msgstr "新管理员密码" @@ -9243,12 +9252,12 @@ msgstr "新管理员密码设置成功." msgid "New object" msgstr "新对象" -#: ../templates/tools/ou_edit.php:205 ../help/help.inc:353 +#: ../templates/tools/ou_edit.php:205 ../help/help.inc:363 msgid "New organisational unit" msgstr "新组织单元" #: ../templates/config/confmain.php:520 ../lib/modules/sambaSamAccount.inc:2351 -#: ../lib/modules/posixAccount.inc:3172 ../lib/modules/windowsUser.inc:3055 +#: ../lib/modules/posixAccount.inc:3226 ../lib/modules/windowsUser.inc:3055 #: ../lib/modules/passwordSelfReset.inc:1294 msgid "New password" msgstr "新密码" @@ -9261,7 +9270,7 @@ msgstr "新密码设置成功." msgid "New policy" msgstr "新策略" -#: ../lib/modules/range.inc:116 ../lib/modules/range.inc:621 +#: ../lib/modules/range.inc:115 ../lib/modules/range.inc:620 msgid "New pool" msgstr "新地址池" @@ -9275,8 +9284,8 @@ msgstr "新打印机" msgid "New profile name" msgstr "新配置文件名" -#: ../lib/modules/range.inc:112 ../lib/modules/range.inc:139 -#: ../lib/modules/range.inc:536 ../lib/modules/range.inc:610 +#: ../lib/modules/range.inc:111 ../lib/modules/range.inc:138 +#: ../lib/modules/range.inc:535 ../lib/modules/range.inc:609 msgid "New range" msgstr "新范围" @@ -9313,7 +9322,7 @@ msgstr "新建文本区域" msgid "New user" msgstr "新用户" -#: ../lib/modules/inetOrgPerson.inc:1882 +#: ../lib/modules/inetOrgPerson.inc:1880 msgid "New user certificate" msgstr "新用户认证" @@ -9374,7 +9383,7 @@ msgstr "下一个用户的RID不是数字!" #: ../lib/modules/eduPerson.inc:100 ../lib/modules/eduPerson.inc:187 #: ../lib/modules/eduPerson.inc:225 ../lib/modules/eduPerson.inc:338 -#: ../lib/modules/eduPerson.inc:549 +#: ../lib/modules/eduPerson.inc:543 msgid "Nick names" msgstr "昵称" @@ -9418,7 +9427,7 @@ msgstr "没有选中RDN属性." msgid "No Samba 3 domains found in LDAP! Please create one first." msgstr "在LDAP中没有发现Samba域,请先建立一个." -#: ../lib/modules/posixAccount.inc:495 ../lib/modules/posixAccount.inc:1541 +#: ../lib/modules/posixAccount.inc:494 ../lib/modules/posixAccount.inc:1587 msgid "No Unix groups found in LDAP! Please create one first." msgstr "在LDAP中没有发现Unix组,请先建立一个." @@ -9474,7 +9483,7 @@ msgstr "没有发现设备。" msgid "No domains found!" msgstr "没有发现域!" -#: ../lib/modules/passwordSelfReset.inc:1818 +#: ../lib/modules/passwordSelfReset.inc:1817 msgid "No email address found." msgstr "没有发现邮件地址." @@ -9487,12 +9496,12 @@ msgstr "未发现相关条目!" msgid "No entry was selected to delete" msgstr "没有选中要删除的条目" -#: ../lib/modules/ldapPublicKey.inc:578 ../lib/modules/inetOrgPerson.inc:3760 -#: ../lib/modules/inetOrgPerson.inc:3797 ../lib/modules/customFields.inc:4599 +#: ../lib/modules/ldapPublicKey.inc:576 ../lib/modules/inetOrgPerson.inc:3757 +#: ../lib/modules/inetOrgPerson.inc:3794 ../lib/modules/customFields.inc:4599 msgid "No file received." msgstr "没有收到文件." -#: ../templates/config/mainmanage.php:204 ../lib/modules/windowsLDSUser.inc:792 +#: ../templates/config/mainmanage.php:215 ../lib/modules/windowsLDSUser.inc:792 #: ../lib/modules/windowsUser.inc:1078 ../lib/modules/ldapPublicKey.inc:129 #: ../lib/modules/inetOrgPerson.inc:104 ../lib/modules/customFields.inc:4535 msgid "No file selected." @@ -9502,7 +9511,7 @@ msgstr "没有选择文件." msgid "No forwarding" msgstr "不能转发" -#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:94 +#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixAccount.inc:94 msgid "No free ID-Number!" msgstr "没有可用的ID号!" @@ -9545,7 +9554,7 @@ msgstr "没有设置lamdaemon服务器,请先设置LAM配置." msgid "No local delivery" msgstr "没有本地发送" -#: ../templates/config/mainmanage.php:411 +#: ../templates/config/mainmanage.php:451 msgid "No logging" msgstr "无日志" @@ -9557,7 +9566,7 @@ msgstr "无标志" msgid "No new attributes available for this entry" msgstr "本条目没有新的可用属性" -#: ../templates/config/conftypes.php:284 ../help/help.inc:190 +#: ../templates/config/conftypes.php:284 ../help/help.inc:194 msgid "No new entries" msgstr "没有新条目" @@ -9652,11 +9661,7 @@ msgstr "未发现用户!" msgid "No views found!" msgstr "没有发现视图!" -#: ../templates/config/mainmanage.php:460 -msgid "Non-standard (\\n)" -msgstr "非标准 (\\n)" - -#: ../templates/config/confmain.php:465 +#: ../templates/config/mainmanage.php:325 ../templates/config/confmain.php:465 #: ../templates/selfService/adminMain.php:488 ../lib/modules/qmailUser.inc:58 msgid "None" msgstr "无" @@ -9693,17 +9698,17 @@ msgstr "备注" msgid "Nothing to export" msgstr "导出结果为空" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 msgid "Notice" msgstr "注意" #: ../lib/passwordExpirationJob.inc:90 ../lib/passwordExpirationJob.inc:144 -#: ../help/help.inc:398 +#: ../help/help.inc:408 msgid "Notification period" msgstr "提示周期" #: ../lib/modules/qmailUser.inc:1161 ../lib/modules/windowsUser.inc:4088 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/freeRadius.inc:884 msgid "Notify users about account expiration" msgstr "提示用户帐号过期" @@ -9762,7 +9767,7 @@ msgstr "问题的数量" msgid "Number of rows in text area." msgstr "文本区中行的数量." -#: ../templates/config/mainmanage.php:392 ../help/help.inc:170 +#: ../templates/config/mainmanage.php:432 ../help/help.inc:168 msgid "Number of rules that must match" msgstr "必须匹配的规则数量" @@ -9799,7 +9804,7 @@ msgstr "OU无效!" msgid "OU is not empty or invalid!" msgstr "OU不为空或非法!" -#: ../help/help.inc:353 ../help/help.inc:355 +#: ../help/help.inc:363 ../help/help.inc:365 msgid "OU-Editor" msgstr "OU编辑器" @@ -9844,9 +9849,9 @@ msgstr "关闭" #: ../lib/modules/inetOrgPerson.inc:469 ../lib/modules/inetOrgPerson.inc:504 #: ../lib/modules/inetOrgPerson.inc:737 ../lib/modules/inetOrgPerson.inc:741 #: ../lib/modules/inetOrgPerson.inc:1378 ../lib/modules/inetOrgPerson.inc:1381 -#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2048 -#: ../lib/modules/inetOrgPerson.inc:2815 ../lib/modules/inetOrgPerson.inc:4082 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1987 ../lib/modules/inetOrgPerson.inc:2046 +#: ../lib/modules/inetOrgPerson.inc:2813 ../lib/modules/inetOrgPerson.inc:4079 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Office name" msgstr "办公室名" @@ -9863,7 +9868,7 @@ msgstr "办公室名" #: ../templates/config/profmanage.php:269 #: ../templates/config/profmanage.php:280 #: ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:503 ../templates/config/jobList.php:155 +#: ../templates/config/mainmanage.php:543 ../templates/config/jobList.php:155 #: ../templates/config/conflogin.php:126 ../templates/config/mainlogin.php:145 #: ../templates/selfService/profManage.php:196 #: ../templates/selfService/profManage.php:213 @@ -9875,7 +9880,7 @@ msgstr "办公室名" #: ../templates/profedit/profilemain.php:235 #: ../templates/profedit/profilemain.php:242 ../lib/types/automountType.inc:213 #: ../lib/types/user.inc:357 ../lib/types/bind.inc:157 ../lib/html.inc:610 -#: ../lib/2factor.inc:571 ../lib/modules/selfRegistration.inc:462 +#: ../lib/2factor.inc:569 ../lib/modules/selfRegistration.inc:462 #: ../lib/modules/zarafaContact.inc:471 ../lib/modules/zarafaGroup.inc:486 #: ../lib/modules/device.inc:292 ../lib/modules/kopanoGroup.inc:438 #: ../lib/modules/sambaSamAccount.inc:1437 @@ -9892,12 +9897,12 @@ msgstr "办公室名" #: ../lib/modules/passwordSelfReset.inc:1327 #: ../lib/modules/windowsGroup.inc:705 ../lib/modules/groupOfNames.inc:421 #: ../lib/modules/groupOfNames.inc:570 ../lib/modules/nisMailAlias.inc:388 -#: ../lib/lists.inc:806 ../lib/lists.inc:891 ../lib/modules.inc:1007 +#: ../lib/lists.inc:805 ../lib/lists.inc:890 ../lib/modules.inc:1007 #: ../lib/modules.inc:1311 msgid "Ok" msgstr "确定" -#: ../lib/modules/posixAccount.inc:3168 +#: ../lib/modules/posixAccount.inc:3222 msgid "Old password" msgstr "旧密码" @@ -9925,8 +9930,8 @@ msgstr "中断或超时连接" msgid "One (one level beneath base)" msgstr "One (基类下第一层)" -#: ../lib/modules/range.inc:138 ../lib/modules/fixed_ip.inc:132 -msgid "One or more errors occured. The invalid fields are marked." +#: ../lib/modules/range.inc:137 ../lib/modules/fixed_ip.inc:132 +msgid "One or more errors occurred. The invalid fields are marked." msgstr "发生了错误,非法域已经被标记." #: ../templates/3rdParty/pla/htdocs/copy.php:98 @@ -9945,12 +9950,12 @@ msgstr "操作统计" msgid "Operation successful. DN %s has been created." msgstr "操作成功. DN %s 已经建立." -#: ../templates/tools/multiEdit.php:141 ../help/help.inc:363 +#: ../templates/tools/multiEdit.php:141 ../help/help.inc:373 msgid "Operations" msgstr "操作者" #: ../templates/config/confmain.php:510 -#: ../templates/selfService/adminMain.php:531 ../help/help.inc:314 +#: ../templates/selfService/adminMain.php:531 ../help/help.inc:324 msgid "Optional" msgstr "可选的" @@ -9965,9 +9970,9 @@ msgstr "PC的描述(可选)." #: ../lib/types/sudo.inc:86 ../lib/modules/mitKerberos.inc:405 #: ../lib/modules/zarafaDynamicGroup.inc:251 -#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:528 +#: ../lib/modules/zarafaContact.inc:255 ../lib/modules/posixGroup.inc:529 #: ../lib/modules/zarafaGroup.inc:259 ../lib/modules/kopanoGroup.inc:238 -#: ../lib/modules/posixAccount.inc:2299 ../lib/modules/zarafaUser.inc:601 +#: ../lib/modules/posixAccount.inc:2353 ../lib/modules/zarafaUser.inc:601 #: ../lib/modules/kopanoContact.inc:240 ../lib/modules/kolabUser.inc:331 #: ../lib/modules/kopanoDynamicGroup.inc:214 ../lib/modules/sudoRole.inc:93 #: ../lib/modules/sudoRole.inc:122 ../lib/modules/sudoRole.inc:188 @@ -10025,7 +10030,7 @@ msgstr "排序" #: ../lib/modules/windowsLDSUser.inc:2203 ../lib/modules/eduPerson.inc:125 #: ../lib/modules/eduPerson.inc:199 ../lib/modules/eduPerson.inc:226 #: ../lib/modules/eduPerson.inc:244 ../lib/modules/eduPerson.inc:342 -#: ../lib/modules/eduPerson.inc:552 ../lib/modules/windowsUser.inc:348 +#: ../lib/modules/eduPerson.inc:546 ../lib/modules/windowsUser.inc:348 #: ../lib/modules/windowsUser.inc:352 ../lib/modules/windowsUser.inc:756 #: ../lib/modules/windowsUser.inc:809 ../lib/modules/windowsUser.inc:952 #: ../lib/modules/windowsUser.inc:1233 ../lib/modules/windowsUser.inc:2887 @@ -10033,9 +10038,9 @@ msgstr "排序" #: ../lib/modules/inetOrgPerson.inc:437 ../lib/modules/inetOrgPerson.inc:549 #: ../lib/modules/inetOrgPerson.inc:770 ../lib/modules/inetOrgPerson.inc:774 #: ../lib/modules/inetOrgPerson.inc:1523 ../lib/modules/inetOrgPerson.inc:1526 -#: ../lib/modules/inetOrgPerson.inc:1994 ../lib/modules/inetOrgPerson.inc:2072 -#: ../lib/modules/inetOrgPerson.inc:2946 ../lib/modules/inetOrgPerson.inc:4097 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:2070 +#: ../lib/modules/inetOrgPerson.inc:2944 ../lib/modules/inetOrgPerson.inc:4094 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisation" msgstr "组织" @@ -10052,15 +10057,15 @@ msgstr "组织" #: ../lib/modules/inetOrgPerson.inc:429 ../lib/modules/inetOrgPerson.inc:552 #: ../lib/modules/inetOrgPerson.inc:762 ../lib/modules/inetOrgPerson.inc:766 #: ../lib/modules/inetOrgPerson.inc:1514 ../lib/modules/inetOrgPerson.inc:1517 -#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2069 -#: ../lib/modules/inetOrgPerson.inc:2984 ../lib/modules/inetOrgPerson.inc:4096 -#: ../lib/modules/inetOrgPerson.inc:4134 +#: ../lib/modules/inetOrgPerson.inc:1991 ../lib/modules/inetOrgPerson.inc:2067 +#: ../lib/modules/inetOrgPerson.inc:2982 ../lib/modules/inetOrgPerson.inc:4093 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisational unit" msgstr "组织单元" #: ../lib/modules/eduPerson.inc:133 ../lib/modules/eduPerson.inc:137 #: ../lib/modules/eduPerson.inc:211 ../lib/modules/eduPerson.inc:227 -#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:554 +#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:548 msgid "Organisational units" msgstr "组织单元" @@ -10121,7 +10126,7 @@ msgstr "其他web网站" msgid "Output may contain HTML" msgstr "输出可以包含HTML语句" -#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:568 +#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:556 #, php-format msgid "Output of command \"%s\" with return code %s" msgstr "\"%s\"命令的输出和返回值%s" @@ -10147,7 +10152,7 @@ msgstr "覆盖物" msgid "Override default quota settings." msgstr "覆盖缺少的限制设置." -#: ../templates/upload/masscreate.php:372 ../help/help.inc:240 +#: ../templates/upload/masscreate.php:372 ../help/help.inc:250 msgid "Overwrite" msgstr "覆盖" @@ -10175,8 +10180,8 @@ msgstr "拥有者" msgid "P-Node (0x02)" msgstr "P-节点 (0x02)" -#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:421 -#: ../lib/modules/fixed_ip.inc:760 +#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:419 +#: ../lib/modules/fixed_ip.inc:758 msgid "PC name" msgstr "PC机器名" @@ -10189,8 +10194,8 @@ msgstr "PC01" msgid "PDF editor" msgstr "PDF编辑器" -#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:778 -#: ../help/help.inc:260 +#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:777 +#: ../help/help.inc:270 msgid "PDF structure" msgstr "PDF架构" @@ -10210,11 +10215,11 @@ msgstr "PDF架构" msgid "PDUs sent" msgstr "个PDU被发送" -#: ../templates/config/mainmanage.php:451 ../help/help.inc:166 +#: ../templates/config/mainmanage.php:491 ../help/help.inc:164 msgid "PHP error reporting" msgstr "PHP错误报告" -#: ../templates/config/mainmanage.php:447 +#: ../templates/config/mainmanage.php:487 msgid "PHP system setting" msgstr "PHP系统设置" @@ -10262,7 +10267,7 @@ msgstr "" msgid "Page count" msgstr "页数总和" -#: ../templates/selfService/adminMain.php:594 ../help/help.inc:292 +#: ../templates/selfService/adminMain.php:594 ../help/help.inc:302 msgid "Page header" msgstr "页首" @@ -10270,7 +10275,7 @@ msgstr "页首" msgid "Page layout" msgstr "页布局" -#: ../templates/config/confmain.php:233 ../help/help.inc:198 +#: ../templates/config/confmain.php:233 ../help/help.inc:202 msgid "Paged results" msgstr "分页结果" @@ -10285,8 +10290,8 @@ msgstr "分页结果" #: ../lib/modules/inetOrgPerson.inc:379 ../lib/modules/inetOrgPerson.inc:522 #: ../lib/modules/inetOrgPerson.inc:654 ../lib/modules/inetOrgPerson.inc:658 #: ../lib/modules/inetOrgPerson.inc:1433 ../lib/modules/inetOrgPerson.inc:1436 -#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2685 -#: ../lib/modules/inetOrgPerson.inc:4088 ../lib/modules/inetOrgPerson.inc:4129 +#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2683 +#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4126 #: ../lib/modules/asteriskVoicemail.inc:110 #: ../lib/modules/asteriskVoicemail.inc:140 #: ../lib/modules/asteriskVoicemail.inc:183 @@ -10333,8 +10338,8 @@ msgid "Passthrough" msgstr "Passthrough" #: ../templates/lists/changePassword.php:360 ../templates/login.php:359 -#: ../templates/config/conflogin.php:121 -#: ../templates/selfService/selfServiceLogin.php:283 +#: ../templates/config/mainmanage.php:502 ../templates/config/conflogin.php:121 +#: ../templates/selfService/selfServiceLogin.php:284 #: ../templates/selfService/adminLogin.php:117 ../lib/selfService.inc:497 #: ../lib/modules/mitKerberos.inc:155 ../lib/modules/mitKerberos.inc:241 #: ../lib/modules/mitKerberos.inc:256 ../lib/modules/mitKerberos.inc:834 @@ -10348,22 +10353,22 @@ msgstr "Passthrough" #: ../lib/modules/windowsLDSUser.inc:1866 #: ../lib/modules/asteriskAccount.inc:114 #: ../lib/modules/asteriskAccount.inc:323 ../lib/modules/posixGroup.inc:219 -#: ../lib/modules/posixGroup.inc:700 ../lib/modules/sambaSamAccount.inc:105 +#: ../lib/modules/posixGroup.inc:701 ../lib/modules/sambaSamAccount.inc:105 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:252 #: ../lib/modules/sambaSamAccount.inc:433 ../lib/modules/posixAccount.inc:99 #: ../lib/modules/posixAccount.inc:100 ../lib/modules/posixAccount.inc:174 #: ../lib/modules/posixAccount.inc:307 ../lib/modules/posixAccount.inc:427 -#: ../lib/modules/posixAccount.inc:1684 ../lib/modules/posixAccount.inc:2134 -#: ../lib/modules/posixAccount.inc:2137 ../lib/modules/posixAccount.inc:2224 -#: ../lib/modules/posixAccount.inc:2409 ../lib/modules/windowsUser.inc:245 +#: ../lib/modules/posixAccount.inc:1739 ../lib/modules/posixAccount.inc:2188 +#: ../lib/modules/posixAccount.inc:2191 ../lib/modules/posixAccount.inc:2277 +#: ../lib/modules/posixAccount.inc:2463 ../lib/modules/windowsUser.inc:245 #: ../lib/modules/windowsUser.inc:428 ../lib/modules/windowsUser.inc:898 #: ../lib/modules/windowsUser.inc:987 ../lib/modules/windowsUser.inc:1062 #: ../lib/modules/windowsUser.inc:1063 ../lib/modules/windowsUser.inc:2922 #: ../lib/modules/windowsUser.inc:2925 ../lib/modules/inetOrgPerson.inc:786 -#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1949 -#: ../lib/modules/inetOrgPerson.inc:2000 ../lib/modules/inetOrgPerson.inc:2003 -#: ../lib/modules/inetOrgPerson.inc:2211 ../lib/modules/inetOrgPerson.inc:4136 +#: ../lib/modules/inetOrgPerson.inc:1576 ../lib/modules/inetOrgPerson.inc:1947 +#: ../lib/modules/inetOrgPerson.inc:1998 ../lib/modules/inetOrgPerson.inc:2001 +#: ../lib/modules/inetOrgPerson.inc:2209 ../lib/modules/inetOrgPerson.inc:4133 #: ../lib/modules/asteriskVoicemail.inc:98 #: ../lib/modules/asteriskVoicemail.inc:164 #: ../lib/modules/customFields.inc:3020 ../lib/modules/heimdalKerberos.inc:123 @@ -10371,7 +10376,7 @@ msgstr "Passthrough" #: ../lib/modules/heimdalKerberos.inc:222 #: ../lib/modules/heimdalKerberos.inc:718 #: ../lib/modules/heimdalKerberos.inc:721 ../lib/modules.inc:1114 -#: ../help/help.inc:258 +#: ../help/help.inc:186 ../help/help.inc:268 msgid "Password" msgstr "密码" @@ -10382,7 +10387,7 @@ msgstr "密码" msgid "Password change at next login" msgstr "下次登录时修改密码" -#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1223 +#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1219 #: ../lib/modules/heimdalKerberos.inc:117 #: ../lib/modules/heimdalKerberos.inc:1056 msgid "Password change command" @@ -10413,7 +10418,7 @@ msgstr "密码修改服务" msgid "Password change with old password" msgstr "修改密码时需要旧密码" -#: ../lib/modules/posixAccount.inc:3358 +#: ../lib/modules/posixAccount.inc:3412 msgid "Password changed." msgstr "密码已更改。" @@ -10427,7 +10432,7 @@ msgid "Password check module" msgstr "密码检查模块" #: ../lib/modules/mitKerberos.inc:288 ../lib/modules/selfRegistration.inc:583 -#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/posixGroup.inc:700 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/posixGroup.inc:701 #: ../lib/modules/sambaSamAccount.inc:106 #: ../lib/modules/sambaSamAccount.inc:107 ../lib/modules/posixAccount.inc:100 #: ../lib/modules/posixAccount.inc:101 ../lib/modules/windowsUser.inc:1063 @@ -10463,7 +10468,7 @@ msgstr "密码超期必须是自然数或-1." msgid "Password expired" msgstr "密码已过期" -#: ../templates/selfService/adminMain.php:571 ../help/help.inc:296 +#: ../templates/selfService/adminMain.php:571 ../help/help.inc:306 msgid "Password field label" msgstr "密码文本框标签" @@ -10471,10 +10476,10 @@ msgstr "密码文本框标签" msgid "Password for voicemail mailbox." msgstr "语音邮箱的密码." -#: ../lib/modules/posixGroup.inc:442 ../lib/modules/posixGroup.inc:535 +#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixGroup.inc:536 #: ../lib/modules/posixAccount.inc:185 ../lib/modules/posixAccount.inc:340 -#: ../lib/modules/posixAccount.inc:2301 ../lib/modules/inetOrgPerson.inc:757 -#: ../lib/modules/inetOrgPerson.inc:4066 ../lib/modules/customFields.inc:149 +#: ../lib/modules/posixAccount.inc:2355 ../lib/modules/inetOrgPerson.inc:757 +#: ../lib/modules/inetOrgPerson.inc:4063 ../lib/modules/customFields.inc:149 #: ../lib/modules/customFields.inc:3036 msgid "Password hash type" msgstr "密码哈希类型" @@ -10516,11 +10521,11 @@ msgstr "密码最长生命期必须大于最短生命期." msgid "Password minimum age must be are natural number." msgstr "密码最短生命期必须是自然数." -#: ../templates/config/mainmanage.php:398 ../help/help.inc:174 +#: ../templates/config/mainmanage.php:438 ../help/help.inc:172 msgid "Password must not contain part of user/first/last name" msgstr "密码不允许包含姓名或姓名的一部分" -#: ../templates/config/mainmanage.php:396 ../help/help.inc:172 +#: ../templates/config/mainmanage.php:436 ../help/help.inc:170 msgid "Password must not contain user name" msgstr "密码不允许包含用户名" @@ -10536,7 +10541,7 @@ msgstr "密码策略" msgid "Password policies (ppolicy)" msgstr "密码策略 (ppolicy)" -#: ../templates/config/mainmanage.php:380 ../lib/types/user.inc:319 +#: ../templates/config/mainmanage.php:420 ../lib/types/user.inc:319 #: ../lib/types/user.inc:1103 ../lib/modules/ppolicyUser.inc:44 #: ../lib/modules/ppolicyUser.inc:55 ../lib/modules/ppolicyUser.inc:71 #: ../lib/modules/ppolicyUser.inc:87 ../lib/modules/ppolicyUser.inc:127 @@ -10570,11 +10575,11 @@ msgstr "密码重置页面设置" msgid "Password self reset" msgstr "密码复位" -#: ../lib/modules/passwordSelfReset.inc:1879 +#: ../lib/modules/passwordSelfReset.inc:1877 msgid "Password successfully reset." msgstr "密码被成功复位." -#: ../help/help.inc:233 +#: ../help/help.inc:237 msgid "Password to unlock SSH key file." msgstr "用来解锁SSH密钥文件的密码." @@ -10589,7 +10594,7 @@ msgstr "密码提醒日期" msgid "Password warning must be are natural number." msgstr "密码提醒日期必须是自然数." -#: ../templates/config/confmain.php:756 +#: ../templates/config/confmain.php:758 #: ../templates/3rdParty/pla/htdocs/password_checker.php:61 #: ../lib/modules/passwordSelfReset.inc:1425 ../lib/modules.inc:1211 msgid "Passwords are different!" @@ -10623,7 +10628,7 @@ msgstr "" msgid "Path separator" msgstr "路径分隔符" -#: ../help/help.inc:231 +#: ../help/help.inc:235 msgid "" "Path to SSH key file to connect to lamdaemon server. If empty then password " "authentication with the person's password who is logged into LAM will be " @@ -10636,7 +10641,7 @@ msgstr "" msgid "Path to external script" msgstr "外部脚本路径" -#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:369 +#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:365 msgid "Path to key for DNS updates" msgstr "DNS更新的KEY文件所有路径" @@ -10702,14 +10707,14 @@ msgstr "个人数据" #: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2193 #: ../lib/modules/windowsLDSUser.inc:2206 ../lib/modules/windowsUser.inc:3707 #: ../lib/modules/windowsUser.inc:3739 ../lib/modules/inetOrgPerson.inc:161 -#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2523 -#: ../lib/modules/inetOrgPerson.inc:2841 ../lib/modules/inetOrgPerson.inc:4102 -#: ../lib/modules/inetOrgPerson.inc:4136 ../lib/modules/inetOrgPerson.inc:4146 +#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2521 +#: ../lib/modules/inetOrgPerson.inc:2839 ../lib/modules/inetOrgPerson.inc:4099 +#: ../lib/modules/inetOrgPerson.inc:4133 ../lib/modules/inetOrgPerson.inc:4143 msgid "Photo" msgstr "照片" #: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2021 -#: ../lib/modules/inetOrgPerson.inc:1707 +#: ../lib/modules/inetOrgPerson.inc:1705 msgid "Photo file" msgstr "照片文件" @@ -10750,7 +10755,7 @@ msgstr "如果你的脚本中会生成HTML输出,请激活这个选项.如果不 msgid "Please add at least one extension owner." msgstr "至少需要增加一个扩展属主." -#: ../help/help.inc:211 +#: ../help/help.inc:215 msgid "Please add this line to your webserver's crontab." msgstr "请在WEB服务器的crontab文件中增加这样一行." @@ -10758,12 +10763,6 @@ msgstr "请在WEB服务器的crontab文件中增加这样一行." msgid "Please authenticate with your security device." msgstr "请用你的安全设备进行认证。" -#: ../help/help.inc:165 -msgid "" -"Please change this setting only if you experience problems in receiving " -"emails from LAM. This defines the line ending of emails." -msgstr "如果从LAM中接收邮件时发生了问题,请修改这个选项。 这定义了邮件的末尾。" - #: ../lib/modules/qmailGroup.inc:296 msgid "Please check if this email should be sent." msgstr "如果这封邮件必须要发送请检查." @@ -10792,7 +10791,7 @@ msgstr "点击以锁定/解锁此账号." msgid "Please create a profile by clicking on the link below." msgstr "请点击如下链接来建立配置文件。" -#: ../lib/lists.inc:1263 +#: ../lib/lists.inc:1262 msgid "" "Please do not edit multiple accounts in parallel in multiple browser tabs." msgstr "请不要在多个浏览器标签页上并行编辑多个账号." @@ -10825,7 +10824,7 @@ msgstr "请输入RID或特殊账号名!" msgid "Please enter a caller ID." msgstr "请输入一个拨号ID." -#: ../help/help.inc:374 +#: ../help/help.inc:384 msgid "" "Please enter a comma separated list of attributes to export. Using \"*\" " "will export all attributes." @@ -10949,7 +10948,7 @@ msgstr "请输入磁盘限额." #: ../templates/lib/141_jquery-validationEngine-lang.php:53 #: ../templates/lib/141_jquery-validationEngine-lang.php:57 -#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:527 +#: ../lib/passwordExpirationJob.inc:144 ../lib/passwordExpirationJob.inc:525 #: ../lib/modules/mitKerberos.inc:289 ../lib/modules/zarafaUser.inc:431 #: ../lib/modules/zarafaUser.inc:432 ../lib/modules/zarafaUser.inc:433 #: ../lib/modules/zarafaUser.inc:434 ../lib/modules/zarafaUser.inc:435 @@ -10958,8 +10957,8 @@ msgstr "请输入磁盘限额." #: ../lib/modules/bindDLZXfr.inc:94 ../lib/modules/courierMailAccount.inc:212 #: ../lib/modules/bindDLZ.inc:561 ../lib/modules/windowsUser.inc:1069 #: ../lib/modules/kolabUser.inc:221 ../lib/modules/kolabUser.inc:222 -#: ../lib/modules/inetOrgPerson.inc:2544 ../lib/modules/inetOrgPerson.inc:2547 -#: ../lib/modules/inetOrgPerson.inc:2550 ../lib/modules/sudoRole.inc:284 +#: ../lib/modules/inetOrgPerson.inc:2542 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:2548 ../lib/modules/sudoRole.inc:284 #: ../lib/modules/sudoRole.inc:285 ../lib/modules/kopanoUser.inc:431 #: ../lib/modules/kopanoUser.inc:432 ../lib/modules/kopanoUser.inc:433 #: ../lib/modules/kopanoUser.inc:434 ../lib/modules/kopanoUser.inc:435 @@ -11000,11 +10999,11 @@ msgstr "请为密码最小长度输入一个数值." msgid "Please enter a numeric value for the password history length." msgstr "请为密码历史长度输入一个数值." -#: ../help/help.inc:183 +#: ../help/help.inc:181 msgid "Please enter a part of the user's DN to search for registered devices." msgstr "请输入用户DN的一部分来搜索注册设备。" -#: ../lib/modules/range.inc:141 +#: ../lib/modules/range.inc:140 msgid "Please enter a pool name." msgstr "请输入地址池名." @@ -11080,7 +11079,7 @@ msgstr "请输入有效的用户状态." msgid "Please enter a valid admin email address." msgstr "请输入有效的管理员邮件地址." -#: ../templates/config/confmain.php:649 +#: ../templates/config/confmain.php:651 msgid "Please enter a valid bind user." msgstr "请输入有效的绑定账号." @@ -11148,10 +11147,11 @@ msgstr "请输入有效的显示名!" msgid "Please enter a valid drive letter." msgstr "请输入有效的盘符." -#: ../lib/passwordExpirationJob.inc:122 ../lib/passwordExpirationJob.inc:128 -#: ../lib/passwordExpirationJob.inc:134 ../lib/passwordExpirationJob.inc:140 -#: ../lib/modules/kolabGroup.inc:155 ../lib/modules/kolabGroup.inc:156 -#: ../lib/modules/selfRegistration.inc:125 +#: ../templates/config/mainmanage.php:114 +#: ../templates/config/mainmanage.php:118 ../lib/passwordExpirationJob.inc:122 +#: ../lib/passwordExpirationJob.inc:128 ../lib/passwordExpirationJob.inc:134 +#: ../lib/passwordExpirationJob.inc:140 ../lib/modules/kolabGroup.inc:155 +#: ../lib/modules/kolabGroup.inc:156 ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:500 #: ../lib/modules/windowsLDSUser.inc:779 ../lib/modules/windowsLDSUser.inc:780 #: ../lib/modules/zarafaDynamicGroup.inc:184 @@ -11309,7 +11309,7 @@ msgid "Please enter a valid number (e.g. \"1.5\")." msgstr "请输入有效的数字 (比如 \"1.5\")." #: ../lib/modules/pykotaPrinter.inc:212 ../lib/modules/pykotaPrinter.inc:213 -#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:717 +#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:718 #: ../lib/modules/customFields.inc:2316 ../lib/modules/customFields.inc:2325 #: ../lib/modules/customFields.inc:3888 ../lib/modules/customFields.inc:3892 msgid "Please enter a valid number." @@ -11371,7 +11371,7 @@ msgstr "请输入有效的接收者表达式。" msgid "Please enter a valid registered address." msgstr "请输入有效的注册地址." -#: ../templates/config/mainmanage.php:177 +#: ../templates/config/mainmanage.php:188 msgid "Please enter a valid remote server in format \"server:port\"." msgstr "请输入一个有效的远程服务器,格式:“服务器:端口”。" @@ -11418,8 +11418,8 @@ msgstr "请输入有效的电话号码!" msgid "Please enter a valid user name or email address." msgstr "请输入有效的用户名或邮件地址." -#: ../lib/modules/posixGroup.inc:851 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixGroup.inc:852 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 #, php-format msgid "Please enter a value between %s and %s!" msgstr "请输入有效值(介于%s和%s之间)!" @@ -11440,9 +11440,9 @@ msgstr "请输入一个值加上去." msgid "Please enter a value to modify." msgstr "请输入修改后的值." -#: ../help/help.inc:372 -msgid "Please enter an LDAP filter to specifiy the exported entries." -msgstr "请输入 LDAP 筛选器以指定导出的条目。" +#: ../help/help.inc:382 +msgid "Please enter an LDAP filter to specify the exported entries." +msgstr "请为导出的条目输入 LDAP 过滤条件。" #: ../lib/modules/customFields.inc:82 msgid "Please enter an alias for this group." @@ -11470,7 +11470,7 @@ msgstr "请在本页面输入用户名:%s" msgid "Please enter at least %s values." msgstr "请至少输入%s个值." -#: ../lib/modules/range.inc:142 +#: ../lib/modules/range.inc:141 #, php-format msgid "Please enter at least one range for pool \"%s\"." msgstr "请为 \"%s\".地址池至少输入一个地址范围." @@ -11521,17 +11521,17 @@ msgid "" "account." msgstr "请输入管理员级密码自助复位的帐号和密码." -#: ../help/help.inc:207 +#: ../help/help.inc:211 msgid "Please enter the DN and password to use for all jobs." msgstr "请输入所有工作使用的DN和密码." -#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixAccount.inc:395 +#: ../lib/modules/posixGroup.inc:469 ../lib/modules/posixAccount.inc:395 msgid "" "Please enter the DN of the LDAP entry with object class \"msSFU30DomainInfo" "\"." msgstr "请输入对象类\"sambaUnixIdPool\"的 LDAP 条目的DN。" -#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixAccount.inc:391 +#: ../lib/modules/posixGroup.inc:465 ../lib/modules/posixAccount.inc:391 msgid "" "Please enter the DN of the LDAP entry with object class \"sambaUnixIdPool\"." msgstr "请输入对象类为\"sambaUnixIdPool\"的 LDAP 条目的DN。" @@ -11585,7 +11585,7 @@ msgid "" "Please enter the LDAP suffix where your Samba domain entries are stored." msgstr "请输入保存Samba域名录的LDAP后缀)." -#: ../help/help.inc:335 +#: ../help/help.inc:345 msgid "" "Please enter the WebAuthn domain. This is the public domain of the webserver " "(e.g. \"example.com\"). Do not include protocol or port." @@ -11700,10 +11700,14 @@ msgid "" "following format: [action] [script and arguments]" msgstr "请输入运行的脚本列表。每一行遵循如下格式:[动作] [脚本和参数]" -#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixAccount.inc:399 +#: ../lib/modules/posixGroup.inc:490 ../lib/modules/posixAccount.inc:399 msgid "Please enter the magic number you configured on server side." msgstr "请输入服务器端配置的魔法号。" +#: ../templates/config/mainmanage.php:263 +msgid "Please enter the mail server with host name and port." +msgstr "请输入邮件服务器的主机名和端口号." + #: ../lib/modules/nisObject.inc:66 msgid "" "Please enter the mapping entry (e.g. \"-fstype=nfs,rw server:/projects\")." @@ -11747,7 +11751,7 @@ msgid "" "numbers and -/_." msgstr "請輸入新的設定檔名稱.可以包含字母,數字和 -/_ ." -#: ../help/help.inc:399 +#: ../help/help.inc:409 msgid "" "Please enter the number of days before password expiration to send out the " "email." @@ -11776,7 +11780,7 @@ msgstr "请输入管理DN的密码.请注意密码将在自助服务配置中以 msgid "Please enter the password which you want to set for this account." msgstr "请输入这个帐号的密码." -#: ../help/help.inc:259 +#: ../help/help.inc:269 msgid "" "Please enter the password which you want to set for this account. You may " "also generate a random password (12 characters) which will be displayed on " @@ -11849,11 +11853,20 @@ msgstr "在两个密码输入框请输入相同的密码." msgid "Please enter the security question for the password self reset." msgstr "请为密码自复位输入安全提问." -#: ../help/help.inc:319 +#: ../help/help.inc:183 +msgid "" +"Please enter the server name and port of your SMTP server (e.g. " +"localhost:25). If this setting is left empty then LAM will try to use a " +"locally installed mail server. The server must support TLS." +msgstr "" +"请输入SMTP服务器名和端口号(比如localhost:25).如果留空,LAM会尝试使用本机安装" +"的邮件服务。SMTP服务器必须支持TLS。" + +#: ../help/help.inc:329 msgid "Please enter the site and secret key you got from Google reCAPTCHA." msgstr "请输入从 Google reCAPTCHA 获得的站点和密钥." -#: ../help/help.inc:181 +#: ../help/help.inc:179 msgid "Please enter the syslog remote server in format \"server:port\"." msgstr "请输入一个有效的远程日志服务器,格式:“服务器:端口”。" @@ -11861,7 +11874,7 @@ msgstr "请输入一个有效的远程日志服务器,格式:“服务器: msgid "Please enter the time limit in minutes. 0 means unlimited." msgstr "请输入时间限制(分钟)。0代表不限制。" -#: ../help/help.inc:217 +#: ../help/help.inc:221 msgid "Please enter the user name and password to connect to the database." msgstr "请输入连接数据库使用的用户名和密码." @@ -11885,11 +11898,11 @@ msgid "" "Please enter your Puppet variables for this node (e.g. config_exim=true)." msgstr "请为本节点输入您的Puppet变量(比如:config_exim=true)." -#: ../help/help.inc:325 +#: ../help/help.inc:335 msgid "Please enter your client id for the verification API." msgstr "请为认证API转入客户端ID。" -#: ../help/help.inc:235 +#: ../help/help.inc:239 msgid "Please enter your licence key." msgstr "请输入您的许可密钥." @@ -11907,11 +11920,11 @@ msgstr "改变服务器配置,请输入密码:" msgid "Please enter your public SSH key." msgstr "请输入您的SSH公钥." -#: ../help/help.inc:327 +#: ../help/help.inc:337 msgid "Please enter your secret key for the verification API." msgstr "请为认证API转入加密密钥。" -#: ../lib/modules/range.inc:483 ../lib/modules/fixed_ip.inc:407 +#: ../lib/modules/range.inc:482 ../lib/modules/fixed_ip.inc:405 msgid "Please fill out the DHCP settings first." msgstr "请先填写DHCP设置." @@ -11929,12 +11942,12 @@ msgstr "请安装并激活PHP中的PDO扩展模块." #: ../templates/upload/masscreate.php:275 msgid "" -"Please provide a CSV formated file with your account data. The cells in the " +"Please provide a CSV formatted file with your account data. The cells in the " "first row must be filled with the column identifiers. The following rows " "represent one account for each row." -msgstr "请提供帐号数据CSV格式文件.第一行必须为栏目标识,以下每行表示一个帐号." +msgstr "请提供帐号数据CSV格式文件.第一行必须为列标识,以下每行表示一个帐号." -#: ../lib/config.inc:2920 +#: ../lib/config.inc:2973 msgid "Please provide a file in DER or PEM format." msgstr "请提供 DER 或 PEM 格式的文件。" @@ -11953,11 +11966,15 @@ msgid "" "Please select an image file to upload. It must be in JPG format (.jpg/.jpeg)." msgstr "请选择图像文件上传,必须是JPG格式(.jpg/.jpeg)." +#: ../help/help.inc:241 +msgid "Please select how to be warned before your licence expires." +msgstr "请选择在许可证过期前的提醒方式。" + #: ../lib/modules/customFields.inc:106 msgid "Please select the field type (e.g. text field)." msgstr "请输入域的类型(比如:文本框)." -#: ../help/help.inc:273 +#: ../help/help.inc:283 msgid "" "Please select the font for the PDF file. Dejavu will work on all systems but " "does not support e.g. Chinese and Japanese. The other fonts require that an " @@ -11966,11 +11983,11 @@ msgstr "" "请为PDF文件选择字体.Dejavu可以运行在所有系统上,但不支持类似中文和日语等.在" "PDF打开的时候需要在系统上安装有适当的字体库." -#: ../help/help.inc:360 +#: ../help/help.inc:370 msgid "Please select the suffix where changes should be done." msgstr "请选择修改的后缀." -#: ../help/help.inc:201 +#: ../help/help.inc:205 msgid "" "Please select the template for the new server profile. You can either select " "an existing server profile or use one of the built-in templates." @@ -11978,7 +11995,7 @@ msgstr "" "请为新服务器配置选择模板. 也可以选择一个已存在的服务器配置,或者使用一个内置模" "板." -#: ../help/help.inc:209 +#: ../help/help.inc:213 msgid "Please select the type of database to use for job data." msgstr "请选择工作数据所用的数据库类型." @@ -11988,7 +12005,7 @@ msgstr "请选择当地时区." #: ../help/help.inc:157 msgid "" -"Please select your prefered log level. Messages with a lower level will not " +"Please select your preferred log level. Messages with a lower level will not " "be logged." msgstr "请选择日志等级,在此等级以下的日志不会被记录." @@ -12009,7 +12026,7 @@ msgstr "请在页面%s上输入必须的属性" msgid "Please set up your master configuration file (config/config.cfg) first!" msgstr "请先主配置文件(config/config.cfg)!" -#: ../lib/modules/dhcp_settings.inc:573 ../lib/modules/ddns.inc:362 +#: ../lib/modules/dhcp_settings.inc:566 ../lib/modules/ddns.inc:358 msgid "" "Please set your LDAP suffix to an LDAP entry with object class \"dhcpService" "\" or \"dhcpServer\"." @@ -12028,7 +12045,7 @@ msgstr "请至少指定一个操作." msgid "Please specify how your users need to identify themselves." msgstr "请指定你的用户需要怎样标识自己." -#: ../help/help.inc:177 +#: ../help/help.inc:175 msgid "" "Please specify the URL (e.g. \"https://api.pwnedpasswords.com/range/" "{SHA1PREFIX}\") of your external password check." @@ -12046,7 +12063,7 @@ msgid "" "descriptive label that is displayed to the user." msgstr "请指定这个域的可能的值.每个值有一个显示给用户的描述标签." -#: ../help/help.inc:364 +#: ../help/help.inc:374 msgid "" "Please specify which attributes should be changed. The modify operation will " "also add an value if the attribute does not yet exist. To delete all values " @@ -12072,7 +12089,7 @@ msgstr "策略总计: %s" msgid "Policy list has invalid format!" msgstr "策略列表含有非法格式!" -#: ../lib/modules/range.inc:544 +#: ../lib/modules/range.inc:543 msgid "Pools" msgstr "地址池" @@ -12123,18 +12140,18 @@ msgstr "可能的通配符是: \"*\" = 任意字符, \"^\" = 行的开头, \"$\" #: ../lib/modules/inetOrgPerson.inc:339 ../lib/modules/inetOrgPerson.inc:486 #: ../lib/modules/inetOrgPerson.inc:606 ../lib/modules/inetOrgPerson.inc:610 #: ../lib/modules/inetOrgPerson.inc:1268 ../lib/modules/inetOrgPerson.inc:1271 -#: ../lib/modules/inetOrgPerson.inc:1971 ../lib/modules/inetOrgPerson.inc:2030 -#: ../lib/modules/inetOrgPerson.inc:2750 ../lib/modules/inetOrgPerson.inc:4076 -#: ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1969 ../lib/modules/inetOrgPerson.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:2748 ../lib/modules/inetOrgPerson.inc:4073 +#: ../lib/modules/inetOrgPerson.inc:4120 msgid "Post office box" msgstr "邮政信箱" #: ../lib/modules/inetOrgPerson.inc:88 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:323 ../lib/modules/inetOrgPerson.inc:498 #: ../lib/modules/inetOrgPerson.inc:622 ../lib/modules/inetOrgPerson.inc:1312 -#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2042 -#: ../lib/modules/inetOrgPerson.inc:2711 ../lib/modules/inetOrgPerson.inc:4080 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1972 ../lib/modules/inetOrgPerson.inc:2040 +#: ../lib/modules/inetOrgPerson.inc:2709 ../lib/modules/inetOrgPerson.inc:4077 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Postal address" msgstr "邮政地址" @@ -12153,9 +12170,9 @@ msgstr "邮政地址,城市" #: ../lib/modules/inetOrgPerson.inc:161 ../lib/modules/inetOrgPerson.inc:315 #: ../lib/modules/inetOrgPerson.inc:489 ../lib/modules/inetOrgPerson.inc:614 #: ../lib/modules/inetOrgPerson.inc:618 ../lib/modules/inetOrgPerson.inc:1277 -#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1972 -#: ../lib/modules/inetOrgPerson.inc:2033 ../lib/modules/inetOrgPerson.inc:2737 -#: ../lib/modules/inetOrgPerson.inc:4077 ../lib/modules/inetOrgPerson.inc:4123 +#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1970 +#: ../lib/modules/inetOrgPerson.inc:2031 ../lib/modules/inetOrgPerson.inc:2735 +#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4120 msgid "Postal code" msgstr "邮政编码" @@ -12211,15 +12228,15 @@ msgstr "每页价格" #: ../lib/modules/eduPerson.inc:87 ../lib/modules/eduPerson.inc:167 #: ../lib/modules/eduPerson.inc:228 ../lib/modules/eduPerson.inc:282 -#: ../lib/modules/eduPerson.inc:546 +#: ../lib/modules/eduPerson.inc:540 msgid "Primary affiliation" msgstr "主要联系" #: ../lib/modules/posixAccount.inc:224 ../lib/modules/posixAccount.inc:286 #: ../lib/modules/posixAccount.inc:303 ../lib/modules/posixAccount.inc:349 #: ../lib/modules/posixAccount.inc:423 ../lib/modules/posixAccount.inc:461 -#: ../lib/modules/posixAccount.inc:1634 ../lib/modules/posixAccount.inc:1975 -#: ../lib/modules/posixAccount.inc:2015 ../lib/modules/posixAccount.inc:2111 +#: ../lib/modules/posixAccount.inc:1680 ../lib/modules/posixAccount.inc:2030 +#: ../lib/modules/posixAccount.inc:2070 ../lib/modules/posixAccount.inc:2165 msgid "Primary group" msgstr "主要组" @@ -12235,13 +12252,13 @@ msgstr "主DNS服务器" #: ../lib/modules/eduPerson.inc:129 ../lib/modules/eduPerson.inc:205 #: ../lib/modules/eduPerson.inc:231 ../lib/modules/eduPerson.inc:246 -#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:553 +#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:547 msgid "Primary organisational unit" msgstr "主要组织单元" #: ../lib/modules/eduPerson.inc:113 ../lib/modules/eduPerson.inc:160 #: ../lib/modules/eduPerson.inc:229 ../lib/modules/eduPerson.inc:276 -#: ../lib/modules/eduPerson.inc:548 +#: ../lib/modules/eduPerson.inc:542 msgid "Principal name" msgstr "主要的名字" @@ -12354,7 +12371,7 @@ msgstr "配置文件管理" #: ../templates/selfService/profManage.php:221 #: ../templates/selfService/adminLogin.php:111 #: ../templates/profedit/profilepage.php:190 -#: ../templates/profedit/profilemain.php:357 ../help/help.inc:242 +#: ../templates/profedit/profilemain.php:357 ../help/help.inc:252 msgid "Profile name" msgstr "配置文件名" @@ -12415,7 +12432,7 @@ msgstr "所有收件要运行的程序." msgid "Progress" msgstr "处理" -#: ../help/help.inc:321 +#: ../help/help.inc:331 msgid "Protect the self service login with a captcha." msgstr "用验证码来保护自助服务登录。" @@ -12557,7 +12574,7 @@ msgstr "提问" msgid "Quota" msgstr "配额" -#: ../lib/modules/quota.inc:781 +#: ../lib/modules/quota.inc:844 #, php-format msgid "Quota for %s on %s" msgstr "%s 在 %s 的硬盘配额" @@ -12625,7 +12642,7 @@ msgstr "限制告警点" #: ../templates/profedit/profilepage.php:216 ../lib/modules/dynamicList.inc:58 #: ../lib/modules/dynamicList.inc:245 ../lib/modules/selfRegistration.inc:97 #: ../lib/modules/selfRegistration.inc:200 ../lib/modules.inc:1075 -#: ../help/help.inc:238 ../help/help.inc:252 +#: ../help/help.inc:248 ../help/help.inc:262 msgid "RDN identifier" msgstr "RDN标志" @@ -12669,18 +12686,18 @@ msgstr "单选按钮" msgid "Radius profile for this user." msgstr "该用户的Radius配置." -#: ../lib/modules/range.inc:100 ../lib/modules/range.inc:508 -#: ../lib/modules/range.inc:568 +#: ../lib/modules/range.inc:99 ../lib/modules/range.inc:507 +#: ../lib/modules/range.inc:567 msgid "Range from" msgstr "范围起始自" -#: ../lib/modules/range.inc:104 ../lib/modules/range.inc:521 -#: ../lib/modules/range.inc:570 +#: ../lib/modules/range.inc:103 ../lib/modules/range.inc:520 +#: ../lib/modules/range.inc:569 msgid "Range to" msgstr "范围到" -#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:82 -#: ../lib/modules/range.inc:130 ../lib/modules/range.inc:764 +#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:81 +#: ../lib/modules/range.inc:129 ../lib/modules/range.inc:763 msgid "Ranges" msgstr "范围" @@ -12690,11 +12707,11 @@ msgstr "读" #: ../templates/config/confmain.php:217 ../templates/config/conftypes.php:268 #: ../lib/modules/customFields.inc:109 ../lib/modules/customFields.inc:1978 -#: ../help/help.inc:196 +#: ../help/help.inc:200 msgid "Read-only" msgstr "只读" -#: ../lib/modules/inetOrgPerson.inc:4119 +#: ../lib/modules/inetOrgPerson.inc:4116 msgid "Read-only fields" msgstr "只读域" @@ -12782,14 +12799,14 @@ msgstr "此对象的所有子集递归拷贝完毕." #: ../templates/config/profmanage.php:207 #: ../templates/config/profmanage.php:262 -#: ../templates/config/mainmanage.php:494 ../templates/config/confmain.php:522 +#: ../templates/config/mainmanage.php:534 ../templates/config/confmain.php:522 #: ../lib/modules/selfRegistration.inc:417 -#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3175 +#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3229 #: ../lib/modules/windowsUser.inc:3059 msgid "Reenter password" msgstr "再次输入密码" -#: ../templates/config/confmain.php:236 ../help/help.inc:204 +#: ../templates/config/confmain.php:236 ../help/help.inc:208 msgid "Referential integrity overlay" msgstr "参照完整性覆盖" @@ -12802,7 +12819,7 @@ msgstr "转交" #: ../templates/3rdParty/pla/lib/TemplateRender.php:984 #: ../templates/3rdParty/pla/lib/TemplateRender.php:985 #: ../templates/3rdParty/pla/lib/HTMLTree.php:237 -#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:888 +#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:887 msgid "Refresh" msgstr "刷新" @@ -12836,9 +12853,9 @@ msgstr "注册新密钥" #: ../lib/modules/inetOrgPerson.inc:90 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:331 ../lib/modules/inetOrgPerson.inc:501 #: ../lib/modules/inetOrgPerson.inc:626 ../lib/modules/inetOrgPerson.inc:1349 -#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2045 -#: ../lib/modules/inetOrgPerson.inc:2724 ../lib/modules/inetOrgPerson.inc:4081 -#: ../lib/modules/inetOrgPerson.inc:4125 +#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2043 +#: ../lib/modules/inetOrgPerson.inc:2722 ../lib/modules/inetOrgPerson.inc:4078 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Registered address" msgstr "注册地址" @@ -12894,11 +12911,11 @@ msgstr "重新载入" msgid "Remember user name" msgstr "记住用户的名字" -#: ../templates/config/mainmanage.php:414 +#: ../templates/config/mainmanage.php:454 msgid "Remote" msgstr "远程" -#: ../templates/config/mainmanage.php:445 ../help/help.inc:180 +#: ../templates/config/mainmanage.php:485 ../help/help.inc:178 msgid "Remote server" msgstr "远程服务器" @@ -12907,7 +12924,7 @@ msgstr "远程服务器" #: ../lib/modules/windowsLDSUser.inc:1423 ../lib/modules/qmailUser.inc:721 #: ../lib/modules/windowsHost.inc:201 ../lib/modules/sambaSamAccount.inc:1496 #: ../lib/modules/windowsUser.inc:1735 ../lib/modules/windowsUser.inc:2151 -#: ../lib/modules/kolabUser.inc:723 ../lib/modules/shadowAccount.inc:506 +#: ../lib/modules/kolabUser.inc:722 ../lib/modules/shadowAccount.inc:506 #: ../lib/modules/shadowAccount.inc:572 ../lib/modules/freeRadius.inc:565 #: ../lib/modules/windowsLDSGroup.inc:184 #: ../lib/modules/heimdalKerberos.inc:613 ../lib/modules/windowsGroup.inc:358 @@ -12968,7 +12985,7 @@ msgstr "删除 Samba 3 扩展" msgid "Remove Shadow account extension" msgstr "删除 Shadow 帐号扩展" -#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1698 +#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1753 msgid "Remove Unix extension" msgstr "删除 Unix 扩展" @@ -13006,7 +13023,7 @@ msgstr "删除主机扩展" msgid "Remove mail routing extension" msgstr "删除邮件路由扩展" -#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1692 +#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1747 #: ../lib/modules/inetOrgPerson.inc:1585 msgid "Remove password" msgstr "删除密码" @@ -13023,7 +13040,7 @@ msgstr "删除Qmail扩展" #: ../lib/modules/zarafaContact.inc:450 ../lib/modules/zarafaGroup.inc:464 #: ../lib/modules/device.inc:273 ../lib/modules/kopanoGroup.inc:415 #: ../lib/modules/zarafaUser.inc:953 ../lib/modules/kopanoContact.inc:401 -#: ../lib/modules/inetOrgPerson.inc:1796 ../lib/modules/kopanoUser.inc:875 +#: ../lib/modules/inetOrgPerson.inc:1794 ../lib/modules/kopanoUser.inc:875 #: ../lib/modules/windowsLDSGroup.inc:462 ../lib/modules/qmailGroup.inc:670 #: ../lib/modules/organizationalRole.inc:371 #: ../lib/modules/windowsGroup.inc:685 ../lib/modules/groupOfNames.inc:400 @@ -13040,7 +13057,7 @@ msgstr "删除这个帐号类型" msgid "Remove user from alias entry." msgstr "从别名条目删除用户。" -#: ../lib/modules/posixGroup.inc:1007 ../lib/modules/posixGroup.inc:1050 +#: ../lib/modules/posixGroup.inc:1008 ../lib/modules/posixGroup.inc:1051 msgid "Removed users" msgstr "已删除的用户" @@ -13115,12 +13132,12 @@ msgid "Replaced $user or $group in homedir." msgstr "在homedir中已更改$user和$group." #: ../templates/config/confmain.php:360 ../lib/passwordExpirationJob.inc:84 -#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:347 -#: ../help/help.inc:384 +#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:357 +#: ../help/help.inc:394 msgid "Reply-to address" msgstr "回复地址" -#: ../templates/config/confmain.php:618 +#: ../templates/config/confmain.php:620 msgid "Reply-to address for password mails is invalid." msgstr "密码邮件的回复地址非法." @@ -13233,8 +13250,8 @@ msgid "Reverse DNS entries (\"PTR\" records)" msgstr "反DNS条目Reverse DNS entries (\"PTR\" 记录)" #: ../lib/modules/ddns.inc:105 ../lib/modules/ddns.inc:113 -#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:395 -#: ../lib/modules/ddns.inc:423 +#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:391 +#: ../lib/modules/ddns.inc:419 msgid "Reverse zone name" msgstr "反向区域名" @@ -13281,9 +13298,9 @@ msgstr "房间" #: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:413 #: ../lib/modules/inetOrgPerson.inc:507 ../lib/modules/inetOrgPerson.inc:705 #: ../lib/modules/inetOrgPerson.inc:1386 ../lib/modules/inetOrgPerson.inc:1389 -#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2051 -#: ../lib/modules/inetOrgPerson.inc:2763 ../lib/modules/inetOrgPerson.inc:4083 -#: ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2049 +#: ../lib/modules/inetOrgPerson.inc:2761 ../lib/modules/inetOrgPerson.inc:4080 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Room number" msgstr "房间号" @@ -13352,6 +13369,14 @@ msgstr "实时端的SIP URI." msgid "SIP user agent identification." msgstr "SIP用户代理标识." +#: ../help/help.inc:187 +msgid "SMTP password" +msgstr "SMTP密码" + +#: ../help/help.inc:185 +msgid "SMTP user name" +msgstr "SMTP 用户名" + #: ../lib/modules/bindDLZ.inc:369 ../lib/modules/bindDLZ.inc:375 #: ../lib/modules/bindDLZ.inc:381 ../lib/modules/bindDLZ.inc:387 #: ../lib/modules/bindDLZ.inc:393 ../lib/modules/bindDLZ.inc:400 @@ -13392,12 +13417,12 @@ msgstr "SSH连接" msgid "SSH connection established." msgstr "SSH连接已经建立." -#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:718 -#: ../help/help.inc:230 +#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:720 +#: ../help/help.inc:234 msgid "SSH key file" msgstr "SSH密钥文件" -#: ../templates/config/confmain.php:287 ../help/help.inc:232 +#: ../templates/config/confmain.php:287 ../help/help.inc:236 msgid "SSH key password" msgstr "SSH密钥密码" @@ -13416,7 +13441,7 @@ msgstr "SSH公钥" msgid "SSL certificate" msgstr "SSL 数字证书" -#: ../templates/config/mainmanage.php:323 +#: ../templates/config/mainmanage.php:363 msgid "SSL certificates" msgstr "SSL 数字证书" @@ -13449,14 +13474,14 @@ msgstr "Samba 3 域SID非法!" msgid "Samba 3 domain entries" msgstr "Samba 3 域条目" -#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2152 +#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2206 msgid "Samba ID pool" msgstr "Samba ID 池" -#: ../lib/modules/posixGroup.inc:463 ../lib/modules/posixGroup.inc:574 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixAccount.inc:121 -#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2199 -#: ../lib/modules/posixAccount.inc:2270 +#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixGroup.inc:575 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:121 +#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2253 +#: ../lib/modules/posixAccount.inc:2324 msgid "Samba ID pool DN" msgstr "Samba ID 池的DN" @@ -13525,7 +13550,7 @@ msgstr "星期六" #: ../templates/profedit/profilepage.php:242 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1120 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1124 -#: ../lib/modules/inetOrgPerson.inc:3172 ../lib/modules/customFields.inc:4409 +#: ../lib/modules/inetOrgPerson.inc:3170 ../lib/modules/customFields.inc:4409 #: ../lib/modules.inc:1293 msgid "Save" msgstr "保存" @@ -13564,23 +13589,27 @@ msgstr "Schema测试" #: ../lib/modules/eduPerson.inc:91 ../lib/modules/eduPerson.inc:95 #: ../lib/modules/eduPerson.inc:174 ../lib/modules/eduPerson.inc:232 -#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:547 +#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:541 msgid "Scoped affiliations" msgstr "作用域关系" +#: ../templates/config/mainmanage.php:322 +msgid "Screen" +msgstr "屏幕" + #: ../help/help.inc:105 msgid "Script path" msgstr "脚本路径" -#: ../templates/config/confmain.php:669 +#: ../templates/config/confmain.php:671 msgid "Script path is invalid!" msgstr "脚本路径非法!" -#: ../templates/config/confmain.php:706 +#: ../templates/config/confmain.php:708 msgid "Script rights are invalid!" msgstr "脚本权限非法!" -#: ../templates/config/confmain.php:672 +#: ../templates/config/confmain.php:674 msgid "Script server is invalid!" msgstr "脚本服务器非法!" @@ -13589,7 +13618,7 @@ msgid "Script servers" msgstr "脚本服务器" #: ../templates/tools/serverInfo.php:272 ../templates/tools/serverInfo.php:348 -#: ../templates/config/mainmanage.php:479 +#: ../templates/config/mainmanage.php:519 #: ../templates/3rdParty/pla/lib/QueryRender.php:60 #: ../templates/3rdParty/pla/lib/QueryRender.php:165 #: ../templates/3rdParty/pla/lib/ds_ldap_pla.php:577 @@ -13604,8 +13633,8 @@ msgstr "搜索结果" #: ../lib/modules/dhcp_settings.inc:203 ../lib/modules/dhcp_settings.inc:207 #: ../lib/modules/dhcp_settings.inc:226 ../lib/modules/dhcp_settings.inc:235 -#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:606 -#: ../lib/modules/dhcp_settings.inc:712 +#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:598 +#: ../lib/modules/dhcp_settings.inc:704 msgid "Search domains" msgstr "搜索域" @@ -13613,7 +13642,7 @@ msgstr "搜索域" #: ../templates/3rdParty/pla/lib/QueryRender.php:135 #: ../templates/3rdParty/pla/lib/export_functions.php:201 #: ../templates/3rdParty/pla/htdocs/export_form.php:81 ../lib/export.inc:256 -#: ../help/help.inc:371 +#: ../help/help.inc:381 msgid "Search filter" msgstr "搜索过滤器" @@ -13633,11 +13662,11 @@ msgid "Search tree suffix for users" msgstr "查询用户的树后缀" #: ../templates/config/confmain.php:504 -#: ../templates/selfService/adminMain.php:525 ../help/help.inc:326 +#: ../templates/selfService/adminMain.php:525 ../help/help.inc:336 msgid "Secret key" msgstr "加密密钥" -#: ../templates/selfService/adminMain.php:560 ../help/help.inc:320 +#: ../templates/selfService/adminMain.php:560 ../help/help.inc:330 msgid "Secure login" msgstr "安全登录" @@ -13674,7 +13703,7 @@ msgstr "安全组用于权限管理,分发组用于email用户列表." msgid "Security questions" msgstr "安全提问" -#: ../templates/config/mainmanage.php:310 ../templates/config/confmain.php:421 +#: ../templates/config/mainmanage.php:350 ../templates/config/confmain.php:421 msgid "Security settings" msgstr "安全设定" @@ -13682,7 +13711,7 @@ msgstr "安全设定" msgid "See also" msgstr "同时参考" -#: ../lib/account.inc:1005 +#: ../lib/account.inc:1009 msgid "See the manual for instructions to solve this problem." msgstr "参考手册来解决本问题." @@ -13719,10 +13748,10 @@ msgstr "从列表中选择一个或多个别名条目加入到接收列表中." msgid "Select user" msgstr "选择用户" -#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1781 -#: ../lib/modules/posixAccount.inc:1812 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1836 +#: ../lib/modules/posixAccount.inc:1867 ../lib/modules/windowsUser.inc:1840 #: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Selected groups" msgstr "已选择的组" @@ -13735,7 +13764,7 @@ msgstr "已选择的模块" msgid "Selected roles" msgstr "已选中的角色" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Selected users" msgstr "已选择的用户" @@ -13778,7 +13807,7 @@ msgstr "通过邮件发送密码" #: ../templates/lists/changePassword.php:324 #: ../templates/lists/changePassword.php:368 #: ../templates/config/confmain.php:345 ../lib/modules.inc:1144 -#: ../help/help.inc:264 +#: ../help/help.inc:274 msgid "Send via mail" msgstr "通过邮件发送" @@ -13819,13 +13848,13 @@ msgid "" "new password." msgstr "当用户设置新密码时同时发送旧密码." -#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:265 +#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:275 msgid "" "Sends the password to the user via mail. Please edit your LAM server profile " "to setup the mail settings." msgstr "把密码通过邮件发送给用户。请编辑LAM服务器配置文件来设定邮件的配置." -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/selfService2Factor.php:168 #: ../templates/login2Factor.php:154 ../lib/types/host.inc:102 #: ../lib/env.inc:157 ../lib/modules/device.inc:68 ../lib/modules/device.inc:91 @@ -13859,7 +13888,7 @@ msgstr "服务器" msgid "Server address" msgstr "服务器地址" -#: ../templates/config/confmain.php:564 +#: ../templates/config/confmain.php:563 #: ../templates/selfService/adminMain.php:246 msgid "Server address is invalid!" msgstr "服务器地址非法!" @@ -13902,7 +13931,7 @@ msgstr "服务名(比如:sshd,imap,ftp).每个条目输入一个服务." msgid "Services (\"SRV\" records)" msgstr "服务 (\"SRV\" 记录)" -#: ../templates/config/mainmanage.php:312 ../help/help.inc:154 +#: ../templates/config/mainmanage.php:352 ../help/help.inc:154 msgid "Session timeout" msgstr "会话超时" @@ -13938,7 +13967,7 @@ msgstr "同时也为Windows设置" msgid "Set password" msgstr "设置密码" -#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2303 +#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2357 msgid "Set primary group as memberUid" msgstr "为主组设置memberUid" @@ -13974,7 +14003,7 @@ msgstr "仅在LDAP模板允许组不含组员时再设置(比如使用OpenDJ)." msgid "Set to \"true\" to create the mailbox." msgstr "设置为 \"真\" 以创建邮箱。" -#: ../help/help.inc:241 +#: ../help/help.inc:251 msgid "Set to true to overwrite an existing LDAP entry." msgstr "设置为 true 可覆盖现有 LDAP 项." @@ -13998,7 +14027,7 @@ msgstr "如果在没有明确的超时值时,缺省的超时(秒数)." msgid "Sets the delivery mode (e.g. disable mail forwarding)." msgstr "设置发送模式(比如 关闭邮件转发)." -#: ../lib/modules/posixGroup.inc:435 +#: ../lib/modules/posixGroup.inc:436 msgid "Sets the group password." msgstr "设置组密码." @@ -14007,7 +14036,7 @@ msgid "" "Sets the preference for the mail server. Lower values have higher priority." msgstr "设置邮件服务器的优先级,越小的值具备更高的优先级." -#: ../help/help.inc:197 +#: ../help/help.inc:201 msgid "Sets this account type to read-only." msgstr "将此账号类型设为只读。" @@ -14034,7 +14063,7 @@ msgstr "这个设置将不允许用户看到共享文件夹。" #: ../lib/types/user.inc:366 ../lib/types/user.inc:369 #: ../lib/types/user.inc:1076 ../lib/types/user.inc:1079 #: ../lib/modules/shadowAccount.inc:90 ../lib/modules/shadowAccount.inc:875 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/shadowAccount.inc:1072 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/shadowAccount.inc:1071 msgid "Shadow" msgstr "Shadow" @@ -14128,16 +14157,16 @@ msgstr "单封邮件的大小限额(字节数).更大的邮件会被退回." #: ../templates/3rdParty/pla/htdocs/update_confirm.php:55 #: ../templates/3rdParty/pla/htdocs/create_confirm.php:81 -#: ../lib/2factor.inc:565 +#: ../lib/2factor.inc:564 msgid "Skip" msgstr "跳过" -#: ../lib/modules/quota.inc:712 ../lib/modules/systemQuotas.inc:371 +#: ../lib/modules/quota.inc:775 ../lib/modules/systemQuotas.inc:371 msgid "Soft block" msgstr "软块" -#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:564 ../lib/modules/systemQuotas.inc:126 +#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:624 ../lib/modules/systemQuotas.inc:126 msgid "Soft block limit" msgstr "软块限制" @@ -14145,7 +14174,7 @@ msgstr "软块限制" msgid "Soft block limit." msgstr "软块限制." -#: ../lib/modules/quota.inc:714 ../lib/modules/systemQuotas.inc:373 +#: ../lib/modules/quota.inc:777 ../lib/modules/systemQuotas.inc:373 msgid "Soft inode" msgstr "软节点" @@ -14153,8 +14182,8 @@ msgstr "软节点" msgid "Soft inode (files) limit." msgstr "软节点限制." -#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:570 ../lib/modules/systemQuotas.inc:130 +#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:630 ../lib/modules/systemQuotas.inc:130 msgid "Soft inode limit" msgstr "软节点限制" @@ -14188,7 +14217,7 @@ msgstr "" msgid "Sorry this help number ({bold}%s{endbold}) is not available." msgstr "对不起,本帮助号({bold}%s{endbold})并不存在." -#: ../lib/lists.inc:420 +#: ../lib/lists.inc:419 msgid "Sort sequence" msgstr "排序顺序" @@ -14233,23 +14262,23 @@ msgid "" msgstr "" "指定LAM是否自动追随引荐的LDAP服务器.如果在LDAP目录中使用了引荐功能请打开此项." -#: ../help/help.inc:350 +#: ../help/help.inc:360 msgid "" "Specifies if password mails may be sent to mail addresses other than the " "user's LDAP mail address." msgstr "指定密码邮件是否发送到邮箱地址而不是用户LDAP中的邮箱地址." -#: ../help/help.inc:346 +#: ../help/help.inc:356 msgid "Specifies if the mail should be sent as text or HTML." msgstr "指定发送邮件用文本方式还是HTML方式." -#: ../help/help.inc:175 +#: ../help/help.inc:173 msgid "" "Specifies if the password must not contain 3 or more characters of the user/" "first/last name." msgstr "指定是否密码不允许包含姓名中3个或更多的字符。" -#: ../help/help.inc:173 +#: ../help/help.inc:171 msgid "Specifies if the password must not contain the user name." msgstr "指定密码不允许包含用户姓名." @@ -14343,7 +14372,7 @@ msgid "" "password." msgstr "指定在密码中的字符的最少个数." -#: ../help/help.inc:171 +#: ../help/help.inc:169 msgid "Specifies the number of above password rules that must be fulfilled." msgstr "指定上述密码规则必须满足的数量." @@ -14451,9 +14480,9 @@ msgstr "开始时间" #: ../lib/modules/inetOrgPerson.inc:453 ../lib/modules/inetOrgPerson.inc:495 #: ../lib/modules/inetOrgPerson.inc:725 ../lib/modules/inetOrgPerson.inc:729 #: ../lib/modules/inetOrgPerson.inc:1295 ../lib/modules/inetOrgPerson.inc:1298 -#: ../lib/modules/inetOrgPerson.inc:1988 ../lib/modules/inetOrgPerson.inc:2039 -#: ../lib/modules/inetOrgPerson.inc:2789 ../lib/modules/inetOrgPerson.inc:4079 -#: ../lib/modules/inetOrgPerson.inc:4124 +#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2037 +#: ../lib/modules/inetOrgPerson.inc:2787 ../lib/modules/inetOrgPerson.inc:4076 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "State" msgstr "地点" @@ -14483,15 +14512,15 @@ msgid "Steve" msgstr "Steve" #: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:369 -#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2427 +#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2481 #: ../lib/modules/windowsUser.inc:448 ../lib/modules/windowsUser.inc:454 -#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2196 -#: ../lib/modules/inetOrgPerson.inc:2221 +#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2194 +#: ../lib/modules/inetOrgPerson.inc:2219 #: ../lib/modules/asteriskVoicemail.inc:173 msgid "Steve Miller" msgstr "Steve Miller" -#: ../lib/modules/posixAccount.inc:2435 +#: ../lib/modules/posixAccount.inc:2489 msgid "Steve Miller,Room 2.14,123-123-1234,123-123-1234" msgstr "Steve Miller,Room 2.14,123-123-1234,123-123-1234" @@ -14516,9 +14545,9 @@ msgstr "可以将密码存放在服务器配置文件中,但不推荐这么做." #: ../lib/modules/inetOrgPerson.inc:307 ../lib/modules/inetOrgPerson.inc:483 #: ../lib/modules/inetOrgPerson.inc:598 ../lib/modules/inetOrgPerson.inc:602 #: ../lib/modules/inetOrgPerson.inc:1259 ../lib/modules/inetOrgPerson.inc:1262 -#: ../lib/modules/inetOrgPerson.inc:1970 ../lib/modules/inetOrgPerson.inc:2027 -#: ../lib/modules/inetOrgPerson.inc:2698 ../lib/modules/inetOrgPerson.inc:4075 -#: ../lib/modules/inetOrgPerson.inc:4121 +#: ../lib/modules/inetOrgPerson.inc:1968 ../lib/modules/inetOrgPerson.inc:2025 +#: ../lib/modules/inetOrgPerson.inc:2696 ../lib/modules/inetOrgPerson.inc:4072 +#: ../lib/modules/inetOrgPerson.inc:4118 msgid "Street" msgstr "街道" @@ -14544,8 +14573,8 @@ msgstr "分组" #: ../lib/modules/selfRegistration.inc:218 #: ../lib/modules/passwordSelfReset.inc:123 #: ../lib/modules/passwordSelfReset.inc:664 -#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:338 -#: ../help/help.inc:388 +#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:348 +#: ../help/help.inc:398 msgid "Subject" msgstr "标题" @@ -14558,14 +14587,14 @@ msgstr "提交" #: ../lib/types/dhcp.inc:97 ../lib/modules/dhcp_settings.inc:147 #: ../lib/modules/dhcp_settings.inc:214 ../lib/modules/dhcp_settings.inc:230 -#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:583 -#: ../lib/modules/dhcp_settings.inc:719 +#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:575 +#: ../lib/modules/dhcp_settings.inc:711 msgid "Subnet" msgstr "子网" #: ../lib/modules/dhcp_settings.inc:187 ../lib/modules/dhcp_settings.inc:222 #: ../lib/modules/dhcp_settings.inc:242 ../lib/modules/dhcp_settings.inc:315 -#: ../lib/modules/dhcp_settings.inc:635 ../lib/modules/dhcp_settings.inc:716 +#: ../lib/modules/dhcp_settings.inc:627 ../lib/modules/dhcp_settings.inc:708 msgid "Subnet mask" msgstr "子网掩码" @@ -14611,12 +14640,12 @@ msgstr "如果多角色匹配,就使用更高排序的Sudo角色." msgid "Suffix" msgstr "后缀" -#: ../lib/modules/posixGroup.inc:454 ../lib/modules/posixGroup.inc:583 +#: ../lib/modules/posixGroup.inc:455 ../lib/modules/posixGroup.inc:584 msgid "Suffix for GID/group name check" msgstr "GID/组名的后缀检查" -#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2214 -#: ../lib/modules/posixAccount.inc:2285 +#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2268 +#: ../lib/modules/posixAccount.inc:2339 msgid "Suffix for UID/user name check" msgstr "UID/用户名的后缀检查" @@ -14677,11 +14706,11 @@ msgstr "用windows密码同步Unix密码" msgid "Sync Unix to Windows" msgstr "把Unix 密码同步到 Windows" -#: ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:1921 msgid "Sync Unix to group of names" msgstr "将 Unix 同步到名称组" -#: ../lib/modules/posixAccount.inc:1880 +#: ../lib/modules/posixAccount.inc:1935 msgid "Sync Windows to Unix" msgstr "同步Windows 到 Unix" @@ -14689,12 +14718,12 @@ msgstr "同步Windows 到 Unix" msgid "Sync fields with page layout" msgstr "页面布局的同步域" -#: ../lib/modules/posixGroup.inc:331 ../lib/modules/posixGroup.inc:340 +#: ../lib/modules/posixGroup.inc:332 ../lib/modules/posixGroup.inc:341 #, php-format msgid "Sync from %s" msgstr "从%s同步" -#: ../lib/modules/posixAccount.inc:1870 +#: ../lib/modules/posixAccount.inc:1925 msgid "Sync group of names to Unix" msgstr "将名称组同步到Unix" @@ -14702,7 +14731,7 @@ msgstr "将名称组同步到Unix" msgid "Sync group of names to Windows" msgstr "把组名同步到 Windows" -#: ../lib/modules/posixAccount.inc:1861 ../lib/modules/posixAccount.inc:2229 +#: ../lib/modules/posixAccount.inc:1916 ../lib/modules/posixAccount.inc:2283 #: ../lib/modules/windowsUser.inc:1863 ../lib/modules/windowsUser.inc:3732 msgid "Sync groups" msgstr "同步组" @@ -14725,7 +14754,7 @@ msgstr "语法" msgid "System administrator" msgstr "系统管理员" -#: ../templates/config/mainmanage.php:412 +#: ../templates/config/mainmanage.php:452 msgid "System logging" msgstr "系统日志" @@ -14733,6 +14762,11 @@ msgstr "系统日志" msgid "TLS cannot be combined with ldaps://." msgstr "TLS不能与ldaps://结合." +#: ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:342 ../help/help.inc:244 +msgid "TO address" +msgstr "抄送地址" + #: ../lib/modules/bindDLZ.inc:130 ../lib/modules/bindDLZ.inc:442 #: ../lib/modules/bindDLZ.inc:447 ../lib/modules/bindDLZ.inc:454 #: ../lib/modules/bindDLZ.inc:578 @@ -14744,8 +14778,8 @@ msgstr "TXT记录" msgid "TXT records" msgstr "TXT记录" -#: ../lib/passwordExpirationJob.inc:498 ../lib/passwordExpirationJob.inc:532 -#: ../help/help.inc:418 +#: ../lib/passwordExpirationJob.inc:496 ../lib/passwordExpirationJob.inc:530 +#: ../help/help.inc:428 msgid "Target DN" msgstr "目标DN" @@ -14783,9 +14817,9 @@ msgstr "技术名字" #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:347 #: ../lib/modules/inetOrgPerson.inc:510 ../lib/modules/inetOrgPerson.inc:630 #: ../lib/modules/inetOrgPerson.inc:634 ../lib/modules/inetOrgPerson.inc:1401 -#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1977 -#: ../lib/modules/inetOrgPerson.inc:2054 ../lib/modules/inetOrgPerson.inc:2633 -#: ../lib/modules/inetOrgPerson.inc:4084 ../lib/modules/inetOrgPerson.inc:4127 +#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1975 +#: ../lib/modules/inetOrgPerson.inc:2052 ../lib/modules/inetOrgPerson.inc:2631 +#: ../lib/modules/inetOrgPerson.inc:4081 ../lib/modules/inetOrgPerson.inc:4124 msgid "Telephone number" msgstr "电话号码" @@ -14800,7 +14834,7 @@ msgid "Temp, contract till December" msgstr "临时, 合同到12月份" #: ../templates/config/profmanage.php:223 -#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:200 +#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:204 msgid "Template" msgstr "模板" @@ -14830,8 +14864,8 @@ msgstr "测试" #: ../lib/modules/passwordSelfReset.inc:127 #: ../lib/modules/passwordSelfReset.inc:137 #: ../lib/modules/passwordSelfReset.inc:666 -#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:340 -#: ../help/help.inc:392 +#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:350 +#: ../help/help.inc:402 msgid "Text" msgstr "文本" @@ -14881,7 +14915,7 @@ msgid "" "units." msgstr "代表用户组织单元的目录条目的DN." -#: ../lib/modules/posixGroup.inc:451 +#: ../lib/modules/posixGroup.inc:452 msgid "" "The ID of this group was changed. You can update all user and host entries " "to the new group ID." @@ -14891,18 +14925,18 @@ msgstr "组ID已经改变.你可以更新所有的用户和主机条目到新的 msgid "The IMAP admin password is empty." msgstr "IMAP管理密码为空." -#: ../templates/config/mainmanage.php:126 -#: ../templates/config/mainmanage.php:149 ../lib/modules/bindDLZ.inc:582 +#: ../templates/config/mainmanage.php:137 +#: ../templates/config/mainmanage.php:160 ../lib/modules/bindDLZ.inc:582 #: ../lib/modules/bindDLZ.inc:583 #, php-format msgid "The IP address %s is invalid!" msgstr "IP地址 %s非法 !" -#: ../lib/modules/fixed_ip.inc:475 +#: ../lib/modules/fixed_ip.inc:473 msgid "The IP address does not match the subnet." msgstr "IP地址与子网不匹配." -#: ../lib/modules/fixed_ip.inc:478 +#: ../lib/modules/fixed_ip.inc:476 msgid "The IP address is already in use." msgstr "IP地址已被使用." @@ -14910,10 +14944,10 @@ msgstr "IP地址已被使用." #: ../lib/modules/asteriskAccount.inc:572 #: ../lib/modules/asteriskAccount.inc:573 ../lib/modules/ppolicyUser.inc:100 #: ../lib/modules/bindDLZXfr.inc:95 ../lib/modules/bindDLZXfr.inc:96 -#: ../lib/modules/range.inc:499 ../lib/modules/range.inc:516 -#: ../lib/modules/range.inc:576 ../lib/modules/range.inc:593 +#: ../lib/modules/range.inc:498 ../lib/modules/range.inc:515 +#: ../lib/modules/range.inc:575 ../lib/modules/range.inc:592 #: ../lib/modules/freeRadius.inc:317 ../lib/modules/freeRadius.inc:318 -#: ../lib/modules/fixed_ip.inc:470 +#: ../lib/modules/fixed_ip.inc:468 msgid "The IP address is invalid." msgstr "IP地址非法." @@ -14933,8 +14967,8 @@ msgid "" "123.123.123.124\")." msgstr "Netbios命名服务器的IP地址(比如: \"123.123.123.123, 123.123.123.124\")." -#: ../lib/modules/range.inc:503 ../lib/modules/range.inc:518 -#: ../lib/modules/range.inc:582 ../lib/modules/range.inc:596 +#: ../lib/modules/range.inc:502 ../lib/modules/range.inc:517 +#: ../lib/modules/range.inc:581 ../lib/modules/range.inc:595 msgid "The IP does not match the subnet." msgstr "IP与子网掩码不匹配." @@ -14954,19 +14988,19 @@ msgstr "PC机的 MAC 地址.比如: 11:22:33:44:55:aa" msgid "The Netbios server is invalid." msgstr "Netbios服务器非法." -#: ../lib/modules/fixed_ip.inc:440 +#: ../lib/modules/fixed_ip.inc:438 msgid "The PC name may not be longer than 20 characters." msgstr "PC机器名的长度不能超过20个字符." -#: ../lib/modules/fixed_ip.inc:449 +#: ../lib/modules/fixed_ip.inc:447 msgid "The PC name may only contain A-Z, a-z and 0-9." msgstr "PC机的机器名只能包含 A-Z, a-z 和 0-9." -#: ../lib/modules/fixed_ip.inc:443 +#: ../lib/modules/fixed_ip.inc:441 msgid "The PC name needs to be at least 2 characters long." msgstr "PC机器名的长度最短需要两个字符." -#: ../help/help.inc:261 +#: ../help/help.inc:271 msgid "" "The PDF structure defines what information is exported as PDF file and how " "the pages are structured. You can manage the PDF structures in the PDF " @@ -14998,7 +15032,7 @@ msgstr "" "用户UID范围与主机帐号重叠,因为LAM用户使用最高UID+1做为新帐号的UID.请将最小的" "UID设为相等或使用独立的范围." -#: ../templates/config/mainmanage.php:199 +#: ../templates/config/mainmanage.php:210 msgid "The URL for the external password check is invalid." msgstr "外部密码检查的URL不合法." @@ -15034,7 +15068,7 @@ msgstr "账号类型非法." msgid "The account will be locked after this date." msgstr "帐号将在这一天之后锁定." -#: ../help/help.inc:245 ../help/help.inc:253 +#: ../help/help.inc:255 ../help/help.inc:263 msgid "The account will be saved under this LDAP suffix." msgstr "帐号将会保存在此后缀下." @@ -15069,7 +15103,7 @@ msgid "" "server." msgstr "在你的LDAP服务器中%s属性(属于%s对象类)不被支持。" -#: ../help/help.inc:333 +#: ../help/help.inc:343 msgid "" "The attribute (e.g. \"uid\") that contains the user name for the 2-factor " "service." @@ -15089,7 +15123,7 @@ msgstr "属性值不存在" msgid "The caller ID format is invalid." msgstr "拨号ID格式不合法." -#: ../templates/selfService/selfServiceLogin.php:116 +#: ../templates/selfService/selfServiceLogin.php:117 #: ../lib/modules/selfRegistration.inc:529 #: ../lib/modules/passwordSelfReset.inc:1139 msgid "The captcha was wrong." @@ -15103,7 +15137,8 @@ msgstr "类的名字包含非法值." msgid "The class names may only contain ASCII characters." msgstr "类名仅包含ASCII字符." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "The config file is not writable." msgstr "配置文件不可写." @@ -15163,7 +15198,7 @@ msgstr "域名的子网掩码." msgid "The email address is invalid." msgstr "邮件地址非法." -#: ../lib/modules/range.inc:105 +#: ../lib/modules/range.inc:104 msgid "The ending IP address of the range." msgstr "范围的最高IP地址." @@ -15206,7 +15241,7 @@ msgstr "条目名." msgid "The environment name may only contain ASCII characters." msgstr "环境名仅包含ASCII字符." -#: ../help/help.inc:395 +#: ../help/help.inc:405 msgid "" "The expiration date can be added with @@EXPIRE_DATE_DDMMYYYY@@ or " "@@EXPIRE_DATE_YYYYMMDD@@." @@ -15227,11 +15262,11 @@ msgstr "过期日期的格式为 DD.MM.YYYY HH:MM." msgid "The expiration time \"%s\" must be a number." msgstr "过期时间 \"%s\" 必须是数字." -#: ../help/help.inc:419 +#: ../help/help.inc:429 msgid "The expired accounts will be moved to this DN." msgstr "过期帐号将移动到这个DN." -#: ../help/help.inc:370 +#: ../help/help.inc:380 msgid "The export will read entries of this DN." msgstr "导出将读取此 DN 的条目。" @@ -15264,7 +15299,7 @@ msgid "" "setting" msgstr "您上传的文件太大,请检查PHP.INI文件中upload_max_size的设置" -#: ../lib/modules/posixGroup.inc:473 +#: ../lib/modules/posixGroup.inc:474 msgid "" "The filter can be any regular expression, e.g. \".*\" = any characters, \"^" "\" = line start, \"$\" = line end." @@ -15318,7 +15353,7 @@ msgstr "在拷贝源条目时建立的新条目的全DN" msgid "The full name is invalid." msgstr "全名非法." -#: ../templates/login.php:527 +#: ../templates/login.php:537 msgid "The given user name matches multiple LDAP entries." msgstr "给定的用户名匹配了多条LDAP条目." @@ -15374,7 +15409,7 @@ msgstr "主机名非法." msgid "The initials of the user's first names." msgstr "用户名字的初始化值." -#: ../help/help.inc:368 +#: ../help/help.inc:378 msgid "The input data must be formatted in LDIF format." msgstr "输入数据必须使用 LDIF 格式." @@ -15439,7 +15474,7 @@ msgstr "用户列表的邮件地址." msgid "The listed IPs were found in DHCP by matching the host's MAC address." msgstr "列出的IP列表是DHCP中发现的与主机MAC地址匹配的列表。" -#: ../templates/config/mainmanage.php:183 +#: ../templates/config/mainmanage.php:194 msgid "" "The log file is empty or contains invalid characters! Valid characters are: " "a-z, A-Z, 0-9, /, \\, ., :, _ and -." @@ -15472,11 +15507,11 @@ msgid "" "The mail text for confirmation mails must include the wildcard @@resetLink@@." msgstr "确认信的文本必须包含通配符 @@resetLink@@." -#: ../help/help.inc:393 +#: ../help/help.inc:403 msgid "The mail text of all mails." msgstr "所有邮件的文本." -#: ../help/help.inc:341 +#: ../help/help.inc:351 msgid "The mail text of all password mails." msgstr "密码邮寄时的邮件文本." @@ -15619,7 +15654,7 @@ msgstr "在你的LDAP服务器中对象类%s不被支持。" msgid "The office name of the user (e.g. YourCompany, Human Resources)." msgstr "用户的办公室名(比如:某某公司,人力资源部)." -#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1935 +#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1933 msgid "The operation was stopped because of the above errors." msgstr "由于发生了以上错误,操作中止." @@ -15728,11 +15763,11 @@ msgstr "IMAP管理员用户的密码.IMAP管理员用户登录名保存在LAM服 msgid "The password was set to:" msgstr "密码被设置为:" -#: ../lib/modules/range.inc:125 +#: ../lib/modules/range.inc:124 msgid "The pool's failover peer." msgstr "地址池的失效恢复节点." -#: ../lib/modules/range.inc:121 +#: ../lib/modules/range.inc:120 msgid "The pool's name." msgstr "地址池名." @@ -15794,11 +15829,11 @@ msgstr "" msgid "The quota must be entered as a floating point number." msgstr "输入的限额必须是浮点数." -#: ../lib/modules/range.inc:505 ../lib/modules/range.inc:585 +#: ../lib/modules/range.inc:504 ../lib/modules/range.inc:584 msgid "The range conflicts with another range." msgstr "此范围与其它范围冲突." -#: ../lib/modules/range.inc:501 ../lib/modules/range.inc:579 +#: ../lib/modules/range.inc:500 ../lib/modules/range.inc:578 msgid "The range end needs to be greater than the range start." msgstr "范围的终止地址需要大于起始地址." @@ -15862,7 +15897,7 @@ msgstr "服务器名 \"%s\"非法." msgid "The source and destination DN are the same." msgstr "源DN与目标DN相同." -#: ../lib/modules/range.inc:101 +#: ../lib/modules/range.inc:100 msgid "The starting IP address of the range." msgstr "范围的起始IP地址." @@ -15884,11 +15919,11 @@ msgstr "用户地址的街道名." msgid "The structural object class of the entries." msgstr "条目的结构化对象类." -#: ../help/help.inc:389 +#: ../help/help.inc:399 msgid "The subject of all mails." msgstr "所有邮件的主题." -#: ../help/help.inc:339 +#: ../help/help.inc:349 msgid "The subject of all password mails." msgstr "密码邮件的主题." @@ -16094,7 +16129,7 @@ msgstr "没有被标记为RDN的属性." msgid "The wildcard for the account creation link is @@creationLink@@." msgstr "账号建立连接的通配符 @@resetLink@@." -#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:344 +#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:354 msgid "The wildcard for the new password is @@newPassword@@." msgstr "新密码的通配符为@@newPassword@@." @@ -16107,7 +16142,7 @@ msgstr "复位连接的通配符 @@resetLink@@." msgid "There are %s members in group %s:" msgstr "共有%s个用户中在组%s中:" -#: ../lib/modules/posixGroup.inc:714 ../lib/modules/sambaGroupMapping.inc:576 +#: ../lib/modules/posixGroup.inc:715 ../lib/modules/sambaGroupMapping.inc:576 msgid "There are still users who have this group as their primary group." msgstr "仍有用户的主组为本组." @@ -16123,7 +16158,7 @@ msgstr "已经有其他的帐号使用这个拨号ID." msgid "There is already another user with this mailbox name." msgstr "已经有其他的帐号使用这个邮箱名." -#: ../lib/upload.inc:219 +#: ../lib/upload.inc:218 msgid "There were errors while uploading:" msgstr "上传时发生错误:" @@ -16132,7 +16167,7 @@ msgstr "上传时发生错误:" msgid "There will be %s updates done with this mass update" msgstr "在这次批量更新中将有%s个更新" -#: ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:440 msgid "" "These are the minimum and maximum numbers to use for group IDs when creating " "new group accounts. New group accounts will always get the highest number in " @@ -16199,7 +16234,7 @@ msgid "" "This GID number is invalid! Please provide either a number or a group name." msgstr "GID号非法!请提供新号或组名." -#: ../help/help.inc:293 +#: ../help/help.inc:303 msgid "" "This HTML code will be placed on top of all self service pages. E.g. you can " "use this to place your custom logo. Any HTML code is permitted." @@ -16211,12 +16246,12 @@ msgstr "" msgid "This MAC address is already in use." msgstr "MAC地址已被使用." -#: ../lib/modules/fixed_ip.inc:452 +#: ../lib/modules/fixed_ip.inc:450 #, php-format msgid "This PC name already exists in %s. Use e.g. %s." msgstr "%s 中已存在此 pc 名称。例如,使用 %s." -#: ../lib/modules/fixed_ip.inc:446 +#: ../lib/modules/fixed_ip.inc:444 msgid "This PC name already exists." msgstr "PC机器名已经存在." @@ -16326,32 +16361,28 @@ msgstr "描述用户所在地点." msgid "This document was automatically created by LDAP Account Manager" msgstr "本文件由本系统自动产生" -#: ../help/help.inc:407 +#: ../help/help.inc:417 msgid "This email address will be set as BCC address of all mails." msgstr "这个邮件地址会被设定为所有邮件的秘密抄送地址." -#: ../help/help.inc:403 +#: ../help/help.inc:413 msgid "This email address will be set as CC address of all mails." msgstr "这个邮件地址会被设定为所有邮件的抄送地址." -#: ../help/help.inc:385 +#: ../help/help.inc:245 +msgid "This email address will be set as TO address for the mails." +msgstr "这个邮件地址会被设定为邮件的抄送地址." + +#: ../help/help.inc:395 msgid "This email address will be set as reply-to address of all mails." msgstr "这个邮件地址会被设定为所有邮件的回复地址." -#: ../help/help.inc:348 +#: ../help/help.inc:358 msgid "" "This email address will be set as reply-to address of all password mails." msgstr "这个邮件地址会被设定为密码邮件的发件人地址." -#: ../help/help.inc:381 -msgid "" -"This email address will be set as sender address of all mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"这个邮件地址会被设定为所有邮件的发件人地址.如果为空,则使用phi.ini指定的缺省" -"值." - -#: ../help/help.inc:337 +#: ../help/help.inc:347 msgid "" "This email address will be set as sender address of all password mails. If " "empty the system default (php.ini) will be used." @@ -16360,12 +16391,10 @@ msgstr "" "值." #: ../lib/modules/selfRegistration.inc:90 -#: ../lib/modules/passwordSelfReset.inc:120 -msgid "" -"This email address will be set as sender address of the mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"这个邮件地址会被设定为邮件的发件人地址.如果为空,则使用phi.ini指定的缺省值." +#: ../lib/modules/passwordSelfReset.inc:120 ../help/help.inc:243 +#: ../help/help.inc:391 +msgid "This email address will be set as sender address of the mails." +msgstr "这个邮件地址会被设定为发件人地址。" #: ../lib/modules/passwordSelfReset.inc:100 msgid "This enables the password self reset function." @@ -16507,7 +16536,7 @@ msgstr "这是一个分号分隔的委托列表。" msgid "This is a structural ObjectClass and cannot be removed." msgstr "这是一个不能被删除的结构化对象类." -#: ../help/help.inc:199 +#: ../help/help.inc:203 msgid "" "This is a workaround for Active Directory. Enable it if you get messages " "about size limit exceeded." @@ -16518,7 +16547,7 @@ msgstr "这是活动目录的替代方案。如果你得到大小超限的消息 msgid "This is an optional description for this entry." msgstr "可以输入此条目的描述(可选)." -#: ../help/help.inc:281 +#: ../help/help.inc:291 msgid "" "This is needed to find the LDAP DNs of your user accounts. E.g. if you use " "\"uid\" and your user inputs \"miller\" then LAM will search for an account " @@ -16527,9 +16556,9 @@ msgstr "" "用于搜索用户帐号的LDAP DN.比如您输入\"uid\" 而用户输入\"miller\" ,LAM会使用" "uid=miller这个条件来搜索帐号." -#: ../lib/passwordExpirationJob.inc:532 ../lib/modules/windowsLDSUser.inc:791 +#: ../lib/passwordExpirationJob.inc:530 ../lib/modules/windowsLDSUser.inc:791 #: ../lib/modules/zarafaDynamicGroup.inc:183 ../lib/modules/ipHost.inc:125 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixGroup.inc:716 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixGroup.inc:717 #: ../lib/modules/device.inc:128 ../lib/modules/eduPerson.inc:245 #: ../lib/modules/eduPerson.inc:247 ../lib/modules/zarafaAddressList.inc:155 #: ../lib/modules/posixAccount.inc:121 ../lib/modules/posixAccount.inc:122 @@ -16651,7 +16680,7 @@ msgid "" "password." msgstr "用户的安全提问,用于用户复位密码." -#: ../help/help.inc:219 +#: ../help/help.inc:223 msgid "This is the database name on the server." msgstr "这是服务器上的数据名." @@ -16691,7 +16720,7 @@ msgstr "显示在Windows系统中的组名." msgid "This is the host's location (e.g. Munich, server room 3)." msgstr "这是主机的放置地点(比如慕尼黑,服务器室3号)." -#: ../help/help.inc:239 ../help/help.inc:253 +#: ../help/help.inc:249 ../help/help.inc:263 msgid "" "This is the identifier for the relative DN value. It must be one of the " "given allowed LDAP attributes (e.g. user accounts usually use \"uid\" while " @@ -16784,7 +16813,7 @@ msgstr "在帐号被锁定前失败的登录次数(0-999),0代表不限制。" #: ../lib/modules/windowsHost.inc:100 msgid "This is the number of logins performed by this account." -msgstr "本帐号登录次数" +msgstr "本帐号登录次数。" #: ../lib/modules/sambaDomain.inc:105 msgid "" @@ -16853,10 +16882,10 @@ msgstr "LDAP树状显示的后缀." msgid "" "This is the suffix of the LDAP tree from where to search for LDAP entries. " "Only entries in this subtree will be displayed in the account list. When " -"creating a new accont this will be the DN where it is saved." +"creating a new account this will be the DN where it is saved." msgstr "" -"搜索LDAP时的LDAP树后缀.只有在这个子树下的条目被显示.当建立一个新帐号时,这是新" -"帐号存在的DN位置." +"搜索LDAP时的LDAP后缀名.列出的条目被会显示.当建立一个新帐号时,这是新帐号保存的" +"DN位置." #: ../lib/modules/inetLocalMailRecipient.inc:79 msgid "This is the target email address for the user's mails." @@ -16918,12 +16947,12 @@ msgid "This is used to mark this account as resource." msgstr "用来标识此账号是一个资源." #: ../lib/modules/qmailUser.inc:1100 ../lib/modules/windowsUser.inc:4188 -#: ../lib/modules/shadowAccount.inc:1081 ../lib/modules/freeRadius.inc:825 +#: ../lib/modules/shadowAccount.inc:1080 ../lib/modules/freeRadius.inc:825 msgid "This job deletes or moves user accounts when they expire." msgstr "这项工作会删除或移动过期账号." #: ../lib/modules/qmailUser.inc:1169 ../lib/modules/windowsUser.inc:4096 -#: ../lib/modules/shadowAccount.inc:986 ../lib/modules/freeRadius.inc:893 +#: ../lib/modules/shadowAccount.inc:985 ../lib/modules/freeRadius.inc:892 msgid "" "This job sends out emails to inform your users that their account will " "expire soon." @@ -16953,7 +16982,7 @@ msgid "" "expression." msgstr "域值与检验表达式不匹配时显示这条消息." -#: ../help/help.inc:203 +#: ../help/help.inc:207 msgid "" "This name is shown on the login page as server name. Defaults to server " "address if empty." @@ -17028,39 +17057,39 @@ msgstr "" msgid "This specifies what to do when the client connection is broken." msgstr "这里指定客户连接中断的动作。" -#: ../help/help.inc:329 +#: ../help/help.inc:339 msgid "This text is displayed as footer on the self service login page." msgstr "这些文本显示在自助服务登录面的页脚处。" -#: ../help/help.inc:331 +#: ../help/help.inc:341 msgid "This text is displayed as footer on the self service main page." msgstr "这些文本显示在自助服务主页的页脚处。" -#: ../help/help.inc:313 +#: ../help/help.inc:323 msgid "" "This text is displayed on top of the 2-factor page. You can also input HTML " "code here." msgstr "这些文本显示在双重认证页面的上端.你可以在此输入HTML代码." -#: ../help/help.inc:285 +#: ../help/help.inc:295 msgid "" "This text is displayed on top of the self service login page. You can also " "input HTML code here." msgstr "这些文本显示在自助服务登录面的上端.你可以在此输入HTML代码." -#: ../help/help.inc:287 +#: ../help/help.inc:297 msgid "" "This text is displayed on top of the self service main page. You can also " "input HTML code here." msgstr "这些文本显示在自助服务主页的上端,可以在此输入HTML代码." -#: ../help/help.inc:297 +#: ../help/help.inc:307 msgid "" "This text is placed as label for the password field on the login page. LAM " "will use \"Password\" if you do not enter any text." msgstr "在登录界面将做为密码输入框的标记. 如果没有输入,LAM使用\"Password\"." -#: ../help/help.inc:283 +#: ../help/help.inc:293 msgid "" "This text should shortly describe your selected LDAP search attribute (e.g. " "email or user name)." @@ -17133,11 +17162,11 @@ msgstr "此值只能设为 \"true\" 或 \"false\"." msgid "This value can only be \"true\", \"false\" or \"system\"." msgstr "此值只能设为\"true\", \"false\" or \"system\"." -#: ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 msgid "This value must be a list of user names separated by semicolons." msgstr "此值必须是用分号分开的用户名列表." -#: ../help/help.inc:354 +#: ../help/help.inc:364 msgid "This will create a new organisational unit under the selected one." msgstr "在所选的节点下建立新的组织单元." @@ -17145,7 +17174,7 @@ msgstr "在所选的节点下建立新的组织单元." msgid "This will create the user's home directory on the specified server." msgstr "将在指定的服务器上建立用户的主目录." -#: ../help/help.inc:356 +#: ../help/help.inc:366 msgid "" "This will delete the selected organisational unit. The OU has to be empty." msgstr "将删除所选的组织单元.组织单元必须为空." @@ -17154,7 +17183,7 @@ msgstr "将删除所选的组织单元.组织单元必须为空." msgid "This will delete the selected profile." msgstr "将删除所选的配置文件." -#: ../help/help.inc:309 +#: ../help/help.inc:319 msgid "" "This will disable the check of the SSL certificates for the 2-factor " "authentication service. Not recommended for production usage." @@ -17162,7 +17191,7 @@ msgstr "这将关闭双重认证服务的SSL证书检查.在生产环境中不 #: ../lib/modules/kolabGroup.inc:109 ../lib/modules/puppetClient.inc:116 #: ../lib/modules/qmailUser.inc:230 ../lib/modules/zarafaContact.inc:91 -#: ../lib/modules/posixGroup.inc:481 ../lib/modules/eduPerson.inc:150 +#: ../lib/modules/posixGroup.inc:482 ../lib/modules/eduPerson.inc:150 #: ../lib/modules/pykotaGroup.inc:124 ../lib/modules/sambaSamAccount.inc:405 #: ../lib/modules/posixAccount.inc:316 ../lib/modules/zarafaUser.inc:155 #: ../lib/modules/kopanoContact.inc:91 @@ -17174,7 +17203,7 @@ msgstr "这将关闭双重认证服务的SSL证书检查.在生产环境中不 msgid "This will enable the extension automatically if this profile is loaded." msgstr "在配置文件调入时,将自动打开扩展项。" -#: ../lib/modules/posixGroup.inc:485 +#: ../lib/modules/posixGroup.inc:486 msgid "This will force syncing with group of names members of the same group." msgstr "将强制同步同一组中组成员名字." @@ -17199,7 +17228,7 @@ msgid "" "the user via mail." msgstr "将会生成一个随机的密码并在屏幕上显示或通过邮件发送给用户." -#: ../help/help.inc:317 +#: ../help/help.inc:327 msgid "" "This will set a random password and display it on the screen or send it to " "the user via mail. Please edit your LAM server profile to setup the mail " @@ -17347,7 +17376,7 @@ msgstr "树状结构后缀" msgid "Tree view" msgstr "树状结构" -#: ../templates/config/confmain.php:662 +#: ../templates/config/confmain.php:664 msgid "TreeSuffix is invalid!" msgstr "树状结构后缀非法!" @@ -17377,8 +17406,8 @@ msgstr "类型" msgid "UID" msgstr "UID" -#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2180 -#: ../lib/modules/posixAccount.inc:2251 +#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2234 +#: ../lib/modules/posixAccount.inc:2305 msgid "UID generator" msgstr "UID生成器" @@ -17408,7 +17437,7 @@ msgstr "UID必须是一个数字,必须在配置文件中所定的UID范围内." #: ../lib/modules/posixAccount.inc:218 ../lib/modules/posixAccount.inc:280 #: ../lib/modules/posixAccount.inc:301 ../lib/modules/posixAccount.inc:332 #: ../lib/modules/posixAccount.inc:336 ../lib/modules/posixAccount.inc:345 -#: ../lib/modules/posixAccount.inc:1619 ../lib/modules/posixAccount.inc:2116 +#: ../lib/modules/posixAccount.inc:1665 ../lib/modules/posixAccount.inc:2170 #: ../lib/modules/kopanoContact.inc:117 ../lib/modules/kopanoContact.inc:182 #: ../lib/modules/kopanoContact.inc:183 ../lib/modules/kopanoContact.inc:217 #: ../lib/modules/kopanoContact.inc:463 ../lib/modules/kopanoContact.inc:575 @@ -17456,11 +17485,11 @@ msgstr "表示指定资源的权限集的URI(或是URN,或是URL)." msgid "URL" msgstr "URL" -#: ../help/help.inc:305 +#: ../help/help.inc:315 msgid "URL of external 2-factor authentication service." msgstr "外部双重认证服务的URL." -#: ../help/help.inc:307 +#: ../help/help.inc:317 msgid "URLs of external 2-factor authentication service. Enter one per line." msgstr "外部双因子认证服务的URL。每行输入一个URL。" @@ -17473,7 +17502,7 @@ msgstr "无法加入DNS记录." msgid "Unable to change ACL on IMAP server for mailbox deletion." msgstr "在邮箱删除时无法改变IMAP服务器的ACL." -#: ../lib/modules/mitKerberos.inc:1182 ../lib/modules/mitKerberos.inc:1186 +#: ../lib/modules/mitKerberos.inc:1178 ../lib/modules/mitKerberos.inc:1182 #: ../lib/modules/heimdalKerberos.inc:1031 msgid "Unable to change Kerberos password." msgstr "无法修改kerberos密码." @@ -17506,13 +17535,13 @@ msgstr "无法连接到数据库." msgid "Unable to connect to remote server!" msgstr "无法连接远端服务器 !" -#: ../lib/upload.inc:294 +#: ../lib/upload.inc:293 msgid "Unable to create ZIP file for PDF export." msgstr "无法为PDF导出工作建立ZIP文件." #: ../lib/modules/selfRegistration.inc:647 -#: ../lib/modules/selfRegistration.inc:839 -#: ../lib/modules/selfRegistration.inc:843 +#: ../lib/modules/selfRegistration.inc:838 +#: ../lib/modules/selfRegistration.inc:842 msgid "Unable to create account." msgstr "无法建立新账号." @@ -17528,6 +17557,10 @@ msgstr "无法建立新OU!" msgid "Unable to create new automount map." msgstr "无法建立新的自动映射." +#: ../lib/modules/posixAccount.inc:1231 +msgid "Unable to create new group." +msgstr "无法建立新组." + #: ../templates/selfService/profManage.php:61 ../lib/config.inc:222 msgid "Unable to create new profile!" msgstr "无法建立新的配置文件!" @@ -17579,9 +17612,9 @@ msgstr "无法删除配置文件!" msgid "Unable to find a printer with name \"%s\"." msgstr "找不到打印机: \"%s\"." -#: ../lib/modules/posixAccount.inc:2574 ../lib/modules/posixAccount.inc:2583 -#: ../lib/modules/posixAccount.inc:2885 ../lib/modules/nisNetGroupUser.inc:512 -#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:390 +#: ../lib/modules/posixAccount.inc:2628 ../lib/modules/posixAccount.inc:2637 +#: ../lib/modules/posixAccount.inc:2939 ../lib/modules/nisNetGroupUser.inc:512 +#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:391 msgid "Unable to find group in LDAP." msgstr "LDAP中找不到组." @@ -17598,7 +17631,7 @@ msgstr "找不到这个帐号的密码安全提问." msgid "Unable to find role in LDAP." msgstr "LDAP中找不到角色." -#: ../templates/login.php:535 ../templates/login.php:543 +#: ../templates/login.php:545 ../templates/login.php:553 msgid "Unable to find the user name in LDAP." msgstr "LDAP中找不到用户名." @@ -17607,7 +17640,7 @@ msgstr "LDAP中找不到用户名." msgid "Unable to find user account." msgstr "找不到用户账号." -#: ../templates/config/mainmanage.php:234 +#: ../templates/config/mainmanage.php:245 msgid "Unable to import server certificate. Please use the upload function." msgstr "不能导入服务器证书. 请使用上传功能." @@ -17653,7 +17686,7 @@ msgstr "无法读取PDF结构." msgid "Unable to read file." msgstr "无法读入文件." -#: ../lib/modules/selfRegistration.inc:832 +#: ../lib/modules/selfRegistration.inc:831 msgid "Unable to register your new account. Please try again." msgstr "无法注册新帐号, 请重试." @@ -17679,7 +17712,7 @@ msgstr "无法获取schema!" msgid "Unable to save profile!" msgstr "无法存储配置文件!" -#: ../lib/account.inc:1254 ../lib/account.inc:1293 +#: ../lib/account.inc:1258 ../lib/account.inc:1295 msgid "Unable to send mail!" msgstr "无法发送邮件!" @@ -17688,17 +17721,21 @@ msgstr "无法发送邮件!" msgid "Unable to set deletion date on %s." msgstr "无法在%s 上设置删除日期。" -#: ../lib/modules/posixAccount.inc:880 ../lib/modules/posixAccount.inc:2972 -#: ../lib/modules/posixAccount.inc:3355 ../lib/modules/inetOrgPerson.inc:966 -#: ../lib/modules/inetOrgPerson.inc:2488 +#: ../lib/modules/posixAccount.inc:879 ../lib/modules/posixAccount.inc:3026 +#: ../lib/modules/posixAccount.inc:3409 ../lib/modules/inetOrgPerson.inc:966 +#: ../lib/modules/inetOrgPerson.inc:2486 msgid "Unable to set password" msgstr "无法设置密码" -#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:109 +#: ../lib/modules/quota.inc:354 +msgid "Unable to set quota." +msgstr "无法设置限额。" + +#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:110 msgid "Unable to start 2-factor authentication because no tokens were found." msgstr "因为没有找到令牌,所以无法开启双重认证." -#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:106 +#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:107 msgid "Unable to start 2-factor authentication." msgstr "无法开始双重认证." @@ -17716,7 +17753,7 @@ msgstr "无法上传徽标文件." msgid "Unable to verify your password reset request. Please try again." msgstr "无法确认您的密码复位请求,请重试." -#: ../lib/modules/selfRegistration.inc:869 +#: ../lib/modules/selfRegistration.inc:868 msgid "Unable to verify your user creation request. Please try again." msgstr "无法确认您的用户建立请求,请重试." @@ -17731,7 +17768,7 @@ msgstr "通用的" #: ../templates/lists/changePassword.php:410 #: ../templates/lists/changePassword.php:447 ../lib/types/user.inc:303 #: ../lib/types/user.inc:457 ../lib/types/user.inc:496 -#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:379 +#: ../lib/types/user.inc:1087 ../lib/modules/posixGroup.inc:380 #: ../lib/modules/posixAccount.inc:159 msgid "Unix" msgstr "Unix" @@ -17740,13 +17777,13 @@ msgstr "Unix" msgid "Unix account" msgstr "Unix帐号" -#: ../lib/modules/posixAccount.inc:1773 ../lib/modules/posixAccount.inc:2228 +#: ../lib/modules/posixAccount.inc:1828 ../lib/modules/posixAccount.inc:2282 msgid "Unix groups" msgstr "Unix组" #: ../lib/modules/dhcp_settings.inc:199 ../lib/modules/dhcp_settings.inc:225 -#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:631 -#: ../lib/modules/dhcp_settings.inc:717 +#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:623 +#: ../lib/modules/dhcp_settings.inc:709 msgid "Unknown clients" msgstr "未知的客户端" @@ -17780,7 +17817,7 @@ msgstr "解锁账号" msgid "Unlock account?" msgstr "解锁账号?" -#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1690 +#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1745 #: ../lib/modules/inetOrgPerson.inc:1582 msgid "Unlock password" msgstr "解除密码锁定" @@ -17826,14 +17863,14 @@ msgstr "修改值" msgid "Updating object" msgstr "对象升级中" -#: ../templates/config/mainmanage.php:345 ../templates/pdfedit/pdfmain.php:293 +#: ../templates/config/mainmanage.php:385 ../templates/pdfedit/pdfmain.php:293 #: ../lib/modules/windowsLDSUser.inc:1296 ../lib/modules/windowsUser.inc:2024 -#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1710 -#: ../lib/modules/inetOrgPerson.inc:1884 +#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1708 +#: ../lib/modules/inetOrgPerson.inc:1882 msgid "Upload" msgstr "上传" -#: ../templates/config/mainmanage.php:347 +#: ../templates/config/mainmanage.php:387 msgid "Upload CA certificate in DER/PEM format." msgstr "上传DEF/PEM格式的CA证书." @@ -17854,12 +17891,12 @@ msgstr "上传文件" msgid "Upload file and create accounts" msgstr "开始上传,建立帐号" -#: ../lib/upload.inc:218 ../lib/lists.inc:1257 +#: ../lib/upload.inc:217 ../lib/lists.inc:1256 msgid "Upload has finished" msgstr "上传完毕" #: ../lib/modules/windowsLDSUser.inc:1292 ../lib/modules/windowsUser.inc:2020 -#: ../lib/modules/inetOrgPerson.inc:1706 +#: ../lib/modules/inetOrgPerson.inc:1704 msgid "Upload image" msgstr "上传图片" @@ -17903,7 +17940,7 @@ msgstr "使用unix的密码" msgid "Use captcha" msgstr "使用验证码" -#: ../templates/selfService/adminMain.php:443 ../help/help.inc:300 +#: ../templates/selfService/adminMain.php:443 ../help/help.inc:310 msgid "Use for all operations" msgstr "用于所有操作" @@ -17922,7 +17959,7 @@ msgid "" "\"." msgstr "使用\"smtp:user@domain.com\"格式来输入附加的邮件地址." -#: ../help/help.inc:362 +#: ../help/help.inc:372 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of entries to modify." @@ -17930,7 +17967,7 @@ msgstr "" "在这儿输入一个附加的LDAP过滤表达式(比如 \"(cn!=admin)\") 来减少被修改条目的" "数量." -#: ../help/help.inc:185 +#: ../help/help.inc:189 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of visible elements for this account type." @@ -17938,7 +17975,7 @@ msgstr "" "在这儿输入一个附加的LDAP过滤表达式( \"(cn!=admin)\") 来减少这个账号类型的可" "显示元素数量." -#: ../help/help.inc:299 +#: ../help/help.inc:309 msgid "" "Use this to enter an additional LDAP filter (e.g. " "\"(objectClass=passwordSelfReset)\") to reduce the number of accounts who " @@ -17959,7 +17996,7 @@ msgstr "使用此项来隐藏呼叫者ID." msgid "Use this to hide this entry from the address book." msgstr "使用此项来隐藏地址簿的条目." -#: ../help/help.inc:311 +#: ../help/help.inc:321 msgid "" "Use this to overwrite the default label for the 2-factor input field. " "Default is \"PIN+Token\"." @@ -17985,7 +18022,7 @@ msgstr "使用$uid$ 这样的通配符,表示当前LAM管理用户的LDAP属性. msgid "Used balance for the billing code." msgstr "帐单号的使用额度." -#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:524 msgid "Used blocks" msgstr "已使用的块数" @@ -18009,7 +18046,7 @@ msgstr "用来从UID/GID计算RID,不确定的话请不用修改." msgid "Used for registration context." msgstr "在注册语境中使用." -#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:525 msgid "Used inodes" msgstr "已经使用的节点" @@ -18037,7 +18074,7 @@ msgstr "用来定期检查一个设备是否在线." msgid "User" msgstr "用户" -#: ../templates/config/mainmanage.php:476 ../help/help.inc:182 +#: ../templates/config/mainmanage.php:516 ../help/help.inc:180 msgid "User DN" msgstr "用户DN" @@ -18060,8 +18097,8 @@ msgid "User can change password" msgstr "用户可以修改密码" #: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:790 -#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2908 -#: ../lib/modules/inetOrgPerson.inc:4101 +#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2906 +#: ../lib/modules/inetOrgPerson.inc:4098 msgid "User certificates" msgstr "用户数字证书" @@ -18104,12 +18141,12 @@ msgid "User must change password" msgstr "用户必须修改密码" #: ../templates/lists/changePassword.php:277 ../templates/login.php:313 -#: ../templates/config/confmain.php:285 ../lib/types/alias.inc:94 -#: ../lib/types/user.inc:118 ../lib/types/user.inc:120 -#: ../lib/selfService.inc:489 ../lib/modules/mitKerberos.inc:115 -#: ../lib/modules/mitKerberos.inc:210 ../lib/modules/mitKerberos.inc:248 -#: ../lib/modules/mitKerberos.inc:334 ../lib/modules/mitKerberos.inc:805 -#: ../lib/modules/selfRegistration.inc:392 +#: ../templates/config/mainmanage.php:500 ../templates/config/confmain.php:285 +#: ../lib/types/alias.inc:94 ../lib/types/user.inc:118 +#: ../lib/types/user.inc:120 ../lib/selfService.inc:489 +#: ../lib/modules/mitKerberos.inc:115 ../lib/modules/mitKerberos.inc:210 +#: ../lib/modules/mitKerberos.inc:248 ../lib/modules/mitKerberos.inc:334 +#: ../lib/modules/mitKerberos.inc:805 ../lib/modules/selfRegistration.inc:392 #: ../lib/modules/selfRegistration.inc:486 #: ../lib/modules/selfRegistration.inc:493 #: ../lib/modules/windowsLDSUser.inc:117 ../lib/modules/windowsLDSUser.inc:335 @@ -18117,8 +18154,8 @@ msgstr "用户必须修改密码" #: ../lib/modules/windowsLDSUser.inc:860 ../lib/modules/windowsLDSUser.inc:1821 #: ../lib/modules/account.inc:94 ../lib/modules/account.inc:129 #: ../lib/modules/account.inc:131 ../lib/modules/account.inc:132 -#: ../lib/modules/account.inc:214 ../lib/modules/account.inc:233 -#: ../lib/modules/account.inc:245 ../lib/modules/account.inc:258 +#: ../lib/modules/account.inc:211 ../lib/modules/account.inc:230 +#: ../lib/modules/account.inc:242 ../lib/modules/account.inc:255 #: ../lib/modules/uidObject.inc:44 ../lib/modules/uidObject.inc:66 #: ../lib/modules/uidObject.inc:75 ../lib/modules/uidObject.inc:84 #: ../lib/modules/uidObject.inc:95 ../lib/modules/uidObject.inc:150 @@ -18127,8 +18164,8 @@ msgstr "用户必须修改密码" #: ../lib/modules/nisNetGroupHost.inc:260 ../lib/modules/posixAccount.inc:103 #: ../lib/modules/posixAccount.inc:104 ../lib/modules/posixAccount.inc:107 #: ../lib/modules/posixAccount.inc:210 ../lib/modules/posixAccount.inc:298 -#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1604 -#: ../lib/modules/posixAccount.inc:2098 ../lib/modules/windowsUser.inc:131 +#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1650 +#: ../lib/modules/posixAccount.inc:2152 ../lib/modules/windowsUser.inc:131 #: ../lib/modules/windowsUser.inc:420 ../lib/modules/windowsUser.inc:872 #: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1151 #: ../lib/modules/windowsUser.inc:2850 ../lib/modules/pykotaUser.inc:115 @@ -18138,17 +18175,18 @@ msgstr "用户必须修改密码" #: ../lib/modules/nisnetgroup.inc:154 ../lib/modules/nisnetgroup.inc:483 #: ../lib/modules/inetOrgPerson.inc:100 ../lib/modules/inetOrgPerson.inc:166 #: ../lib/modules/inetOrgPerson.inc:689 ../lib/modules/inetOrgPerson.inc:1196 -#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1946 -#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2202 -#: ../lib/modules/inetOrgPerson.inc:3012 ../lib/modules/inetOrgPerson.inc:4110 -#: ../lib/modules/inetOrgPerson.inc:4139 +#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1944 +#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2200 +#: ../lib/modules/inetOrgPerson.inc:3010 ../lib/modules/inetOrgPerson.inc:4107 +#: ../lib/modules/inetOrgPerson.inc:4136 #: ../lib/modules/passwordSelfReset.inc:627 #: ../lib/modules/passwordSelfReset.inc:1022 #: ../lib/modules/passwordSelfReset.inc:1253 #: ../lib/modules/heimdalKerberos.inc:93 ../lib/modules/heimdalKerberos.inc:179 #: ../lib/modules/heimdalKerberos.inc:217 #: ../lib/modules/heimdalKerberos.inc:285 -#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:228 +#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:184 +#: ../help/help.inc:232 msgid "User name" msgstr "用户名" @@ -18174,7 +18212,7 @@ msgstr "用户名和用户的电子邮件地址" #: ../templates/config/confmain.php:494 #: ../templates/selfService/adminMain.php:515 ../lib/modules/imapAccess.inc:107 -#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:332 +#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:342 msgid "User name attribute" msgstr "用户名属性" @@ -18209,7 +18247,7 @@ msgstr "用户名包含非法字符,只能使用a-z,A-Z,0-9,和 .-_!" msgid "User name for NIS." msgstr "NIS中的用户名." -#: ../help/help.inc:229 +#: ../help/help.inc:233 msgid "" "User name for SSH connection to lamdaemon server. If empty the user name of " "the person who is logged into LAM will be used." @@ -18243,7 +18281,7 @@ msgstr "" msgid "User name or email address" msgstr "用户名或用户邮件地址" -#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2215 +#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2269 msgid "User name suggestion" msgstr "用户名建议" @@ -18271,7 +18309,7 @@ msgstr "用户服务器" #: ../lib/types/user.inc:55 ../lib/modules/posixAccount.inc:83 #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:87 -#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/zarafaUser.inc:1803 +#: ../lib/modules/posixAccount.inc:2223 ../lib/modules/zarafaUser.inc:1803 #: ../lib/modules/sudoRole.inc:73 ../lib/modules/sudoRole.inc:97 #: ../lib/modules/sudoRole.inc:158 ../lib/modules/sudoRole.inc:215 #: ../lib/modules/sudoRole.inc:227 ../lib/modules/sudoRole.inc:300 @@ -18285,13 +18323,13 @@ msgstr "用户" msgid "Users or groups that may directly send email as this user." msgstr "可以用这个用户直接发送邮件的用户或组." -#: ../lib/modules/posixGroup.inc:427 +#: ../lib/modules/posixGroup.inc:428 msgid "" "Users who are member of the current group. Users who have set their primary " "group to this group will not be shown." msgstr "当前组成员,这里不会显示将此组设为主要组的用户." -#: ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:432 msgid "" "Users who will become member of the current group. User names are separated " "by semicolons." @@ -18320,7 +18358,7 @@ msgstr "" msgid "VCARD 2.1 Export" msgstr "VCARD 2.1 导出" -#: ../templates/config/mainmanage.php:361 +#: ../templates/config/mainmanage.php:401 msgid "Valid to" msgstr "下列是有效的" @@ -18431,33 +18469,33 @@ msgstr "此帐号的语音邮箱." msgid "Want more features? Get LAM Pro!" msgstr "需要更多的功能吗? 参见LAM专业版!" -#: ../templates/config/mainmanage.php:406 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/page.php:70 msgid "Warning" msgstr "警告" #: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1470 -#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:841 +#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:840 #: ../lib/modules/organizationalRoleUser.inc:197 #: ../lib/modules/organizationalRoleUser.inc:214 #: ../lib/modules/windowsUser.inc:2315 ../lib/modules/windowsLDSGroup.inc:713 -#: ../lib/modules/groupOfNamesUser.inc:224 -#: ../lib/modules/groupOfNamesUser.inc:269 ../lib/modules/windowsGroup.inc:1025 -#: ../lib/modules.inc:2033 +#: ../lib/modules/groupOfNamesUser.inc:225 +#: ../lib/modules/groupOfNamesUser.inc:270 ../lib/modules/windowsGroup.inc:1025 +#: ../lib/modules.inc:2031 #, php-format msgid "Was unable to add attributes to DN: %s." msgstr "无法为DN: %s增加属性." -#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:659 -#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2473 +#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:658 +#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2471 #: ../lib/import.inc:461 ../lib/import.inc:618 ../lib/import.inc:680 -#: ../lib/import.inc:743 ../lib/modules.inc:1995 +#: ../lib/import.inc:743 ../lib/modules.inc:1993 #, php-format msgid "Was unable to create DN: %s." msgstr "无法创建DN: %s." -#: ../lib/account.inc:972 ../lib/account.inc:980 -#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:726 +#: ../lib/account.inc:976 ../lib/account.inc:984 +#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:725 #, php-format msgid "Was unable to delete DN: %s." msgstr "无法删除DN: %s." @@ -18469,32 +18507,32 @@ msgstr "无法删除DN: %s." msgid "Was unable to modify attributes from DN: %s." msgstr "无法修改DN: %s的属性." -#: ../lib/modules/posixAccount.inc:825 ../lib/modules/windowsUser.inc:2341 -#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:703 +#: ../lib/modules/posixAccount.inc:824 ../lib/modules/windowsUser.inc:2341 +#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:702 #: ../lib/modules/nisNetGroupUser.inc:355 #: ../lib/modules/nisNetGroupUser.inc:372 #: ../lib/modules/nisNetGroupUser.inc:407 #: ../lib/modules/nisNetGroupUser.inc:419 #: ../lib/modules/nisNetGroupUser.inc:566 -#: ../lib/modules/groupOfNamesUser.inc:254 ../lib/modules/customFields.inc:4826 -#: ../lib/modules.inc:2015 +#: ../lib/modules/groupOfNamesUser.inc:255 ../lib/modules/customFields.inc:4826 +#: ../lib/modules.inc:2013 #, php-format msgid "Was unable to modify attributes of DN: %s." msgstr "不能修改DN: %s的属性." #: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1483 -#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:858 +#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:857 #: ../lib/modules/organizationalRoleUser.inc:202 #: ../lib/modules/organizationalRoleUser.inc:225 #: ../lib/modules/windowsUser.inc:2328 ../lib/modules/windowsLDSGroup.inc:726 -#: ../lib/modules/groupOfNamesUser.inc:219 -#: ../lib/modules/groupOfNamesUser.inc:283 ../lib/modules/windowsGroup.inc:1038 -#: ../lib/modules.inc:2046 +#: ../lib/modules/groupOfNamesUser.inc:220 +#: ../lib/modules/groupOfNamesUser.inc:284 ../lib/modules/windowsGroup.inc:1038 +#: ../lib/modules.inc:2044 #, php-format msgid "Was unable to remove attributes from DN: %s." msgstr "无法删除DN: %s的属性." -#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1975 +#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1973 #, php-format msgid "Was unable to rename DN: %s." msgstr "无法重命名DN: %s." @@ -18508,18 +18546,18 @@ msgstr "无法重命名DN: %s." #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:405 #: ../lib/modules/inetOrgPerson.inc:528 ../lib/modules/inetOrgPerson.inc:673 #: ../lib/modules/inetOrgPerson.inc:677 ../lib/modules/inetOrgPerson.inc:1449 -#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1996 -#: ../lib/modules/inetOrgPerson.inc:2063 ../lib/modules/inetOrgPerson.inc:2620 -#: ../lib/modules/inetOrgPerson.inc:4100 ../lib/modules/inetOrgPerson.inc:4130 +#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1994 +#: ../lib/modules/inetOrgPerson.inc:2061 ../lib/modules/inetOrgPerson.inc:2618 +#: ../lib/modules/inetOrgPerson.inc:4097 ../lib/modules/inetOrgPerson.inc:4127 msgid "Web site" msgstr "网站" -#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:475 +#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:515 #: ../lib/tools/webauthn.inc:46 ../lib/modules/webauthn.inc:69 msgid "Webauthn devices" msgstr "Webauthn设备" -#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:572 +#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:570 #: ../lib/modules/webauthn.inc:137 msgid "Webauthn failed" msgstr "Webauthn失败" @@ -18573,14 +18611,14 @@ msgstr "当使用ldaps://或TLS协议时确认在证书中使用相同的ip/doma msgid "Windows" msgstr "Windows" -#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2153 +#: ../lib/modules/posixGroup.inc:551 ../lib/modules/posixAccount.inc:2207 msgid "Windows domain info" msgstr "Windows域信息" -#: ../lib/modules/posixGroup.inc:467 ../lib/modules/posixGroup.inc:577 -#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:122 -#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2202 -#: ../lib/modules/posixAccount.inc:2273 +#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixGroup.inc:578 +#: ../lib/modules/posixGroup.inc:717 ../lib/modules/posixAccount.inc:122 +#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2256 +#: ../lib/modules/posixAccount.inc:2327 msgid "Windows domain info DN" msgstr "Windows域信息DN" @@ -18665,9 +18703,9 @@ msgstr "写入" msgid "Write access" msgstr "写权限" -#: ../templates/login.php:523 ../templates/login.php:588 -#: ../templates/selfService/selfServiceLogin.php:155 -#: ../templates/selfService/selfServiceLogin.php:191 +#: ../templates/login.php:533 ../templates/login.php:598 +#: ../templates/selfService/selfServiceLogin.php:156 +#: ../templates/selfService/selfServiceLogin.php:192 msgid "Wrong password/user name combination. Please try again." msgstr "错误的密码和用户组合,请重试." @@ -18698,25 +18736,25 @@ msgstr "不允许修改密码." msgid "You are reusing an old password. Please choose a different password." msgstr "重复使用了旧密码. 请输入与原来密码不同的新密码." -#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:709 +#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:710 #: ../lib/modules/posixAccount.inc:103 ../lib/modules/posixAccount.inc:105 msgid "" "You are using capital letters. This can cause problems because Windows is " "not case-sensitive." msgstr "您正在使用大写字符,这会造成一些问题,因为windows大小写不敏感." -#: ../help/help.inc:415 +#: ../help/help.inc:425 msgid "You can delete or move expired accounts." msgstr "您可以删除和移走过期的账号." -#: ../lib/lists.inc:1259 +#: ../lib/lists.inc:1258 #, php-format msgid "" "You can download your PDF files {link=%s}{color=#d2131a}here{endcolor}" "{endlink}." msgstr "你可以下载你的PDF文件 {link=%s}{color=#d2131a}这里{endcolor}{endlink}." -#: ../help/help.inc:303 +#: ../help/help.inc:313 msgid "You can enable 2-factor authentication here (e.g. via mobile device)." msgstr "在此打开双重认证(比如通过移动设备)." @@ -18738,7 +18776,7 @@ msgid "" "read access." msgstr "您可以指定LAM是否允许全部权限,只能更改密码,或是只读." -#: ../help/help.inc:186 +#: ../help/help.inc:190 msgid "" "You can use the wildcard @@LOGIN_DN@@ which will be substituted with the DN " "of the user who is currently logged in to LAM." @@ -18757,8 +18795,8 @@ msgid "You can use this to temporarily deactivate the Zarafa extension." msgstr "可以使用它来临时解除Zarafa扩展项." #: ../lib/modules/passwordSelfReset.inc:129 -#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:343 -#: ../help/help.inc:394 +#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:353 +#: ../help/help.inc:404 msgid "" "You can use wildcards for LDAP attributes in the form @@attribute@@ (e.g. " "@@uid@@ for the user name)." @@ -18792,7 +18830,7 @@ msgstr "在服务器只读方式下不能更新" msgid "You cannot rename an entry which has child entries." msgstr "不能为一个有子条目的条目重新命名." -#: ../templates/config/confmain.php:569 +#: ../templates/config/confmain.php:568 msgid "" "You cannot use SSL and TLS encryption at the same time. Please use either " "\"ldaps://\" or TLS." @@ -18833,9 +18871,9 @@ msgstr "%s是必填属性,您留下了空白." msgid "You made no changes" msgstr "您没有做任何修改" -#: ../templates/config/mainmanage.php:213 -#: ../templates/config/mainmanage.php:219 -#: ../templates/config/mainmanage.php:231 +#: ../templates/config/mainmanage.php:224 +#: ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:242 msgid "You might need to restart your webserver for changes to take effect." msgstr "必须要重启WEB服务器,以使修改生效." @@ -18888,14 +18926,15 @@ msgid "" "PHP." msgstr "您的PHP.INI没有file_uploads = on,在PHP中打开文件上传." -#: ../templates/config/confmain.php:165 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 #: ../templates/selfService/adminMain.php:376 msgid "" "Your changes cannot be saved until you make the file writable for the " "webserver user." msgstr "你的修改只能在web服务器有权写文件的条件下保存." -#: ../templates/login.php:456 ../templates/selfService/selfServiceLogin.php:380 +#: ../templates/login.php:459 ../templates/selfService/selfServiceLogin.php:384 #, php-format msgid "" "Your licence expires on %s. You need to purchase a new licence to be able to " @@ -18903,19 +18942,19 @@ msgid "" msgstr "" "您的许可证在%s 到期。您需要购买新的许可证, 才能在此日期之后使用LAM Pro." -#: ../lib/modules/selfRegistration.inc:863 +#: ../lib/modules/selfRegistration.inc:862 msgid "" "Your new account was created but post processing failed. Please contact your " "local administrator." msgstr "您的新帐号已经建立, 但后续处理工作失败. 请联系本地管理员." -#: ../lib/modules/selfRegistration.inc:860 +#: ../lib/modules/selfRegistration.inc:859 msgid "" "Your new account was successfully created. Please return to login to change " "your user data." msgstr "你的新账号已经成功建立.请返回后登录并修改用户数据." -#: ../lib/account.inc:1505 ../lib/modules/windowsUser.inc:3218 +#: ../lib/account.inc:1488 ../lib/modules/windowsUser.inc:3218 msgid "" "Your password does not meet the password strength qualifications. Please " "retry with another one." @@ -18933,7 +18972,7 @@ msgstr "你选中的密码是不安全的." msgid "Your session expired, click here to go back to the login page." msgstr "超时,请点此外返回到登录界面." -#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:102 +#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:103 msgid "Your session expired, please log in again." msgstr "超时,请重新登录." @@ -19004,7 +19043,7 @@ msgstr "将在这些服务器上建立用户的归档." #: ../lib/types/bind.inc:81 ../lib/modules/ddns.inc:101 #: ../lib/modules/ddns.inc:112 ../lib/modules/ddns.inc:127 -#: ../lib/modules/ddns.inc:392 ../lib/modules/ddns.inc:422 +#: ../lib/modules/ddns.inc:388 ../lib/modules/ddns.inc:418 msgid "Zone name" msgstr "区域名" @@ -19037,8 +19076,8 @@ msgstr "增加值" msgid "adminstrators" msgstr "管理员" -#: ../templates/config/mainmanage.php:391 -#: ../templates/config/mainmanage.php:449 ../templates/schema/schema.php:187 +#: ../templates/config/mainmanage.php:431 +#: ../templates/config/mainmanage.php:489 ../templates/schema/schema.php:187 #: ../templates/schema/schema.php:283 msgid "all" msgstr "所有" @@ -19078,7 +19117,7 @@ msgstr "确认" msgid "dc=yourcompany,dc=com" msgstr "dc=yourcompany,dc=com" -#: ../templates/config/mainmanage.php:448 ../lib/modules/ppolicyUser.inc:126 +#: ../templates/config/mainmanage.php:488 ../lib/modules/ppolicyUser.inc:126 msgid "default" msgstr "缺省" @@ -19181,7 +19220,7 @@ msgstr "groupr@company.com" msgid "hint" msgstr "提示" -#: ../lib/modules/quota.inc:214 ../lib/modules/quota.inc:220 +#: ../lib/modules/quota.inc:218 ../lib/modules/quota.inc:224 msgid "hours" msgstr "小时" @@ -19302,7 +19341,7 @@ msgstr "新" #: ../lib/modules/generalInformation.inc:101 #: ../lib/modules/kopanoAddressList.inc:296 #: ../lib/modules/kopanoAddressList.inc:299 ../lib/modules/zarafaServer.inc:331 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:772 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 msgid "no" msgstr "否" @@ -19347,7 +19386,7 @@ msgstr "ou=accounts,dc=yourdomain,dc=org" msgid "pc01$" msgstr "pc01$" -#: ../lib/modules/posixAccount.inc:2443 +#: ../lib/modules/posixAccount.inc:2497 msgid "pc01,Room 2.34" msgstr "pc01,Room 2.34" @@ -19411,9 +19450,9 @@ msgid "seconds" msgstr "秒" #: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:345 -#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:412 -#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2411 -#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2213 +#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:413 +#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2465 +#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2211 #: ../lib/modules/asteriskVoicemail.inc:166 #: ../lib/modules/heimdalKerberos.inc:212 msgid "secret" @@ -19427,7 +19466,7 @@ msgstr "选择RDN属性" #: ../lib/modules/uidObject.inc:68 ../lib/modules/posixAccount.inc:212 #: ../lib/modules/windowsUser.inc:422 ../lib/modules/windowsUser.inc:669 #: ../lib/modules/windowsUser.inc:678 ../lib/modules/pykotaUser.inc:195 -#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2204 +#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2202 #: ../lib/modules/heimdalKerberos.inc:181 ../lib/modules/nisMailAlias.inc:109 msgid "smiller" msgstr "smiller" @@ -19475,11 +19514,11 @@ msgstr "true" msgid "uid=smiller,ou=People,dc=company,dc=com" msgstr "uid=smiller,ou=People,dc=company,dc=com" -#: ../templates/config/mainmanage.php:327 +#: ../templates/config/mainmanage.php:367 msgid "use custom CA certificates" msgstr "使用自定义 CA 数字证书" -#: ../templates/config/mainmanage.php:324 +#: ../templates/config/mainmanage.php:364 msgid "use system certificates" msgstr "使用系统的数字证书" @@ -19546,7 +19585,7 @@ msgstr "和 " #: ../lib/modules/generalInformation.inc:103 #: ../lib/modules/kopanoAddressList.inc:294 #: ../lib/modules/kopanoAddressList.inc:301 ../lib/modules/zarafaServer.inc:333 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:768 msgid "yes" msgstr "是" @@ -19560,6 +19599,37 @@ msgstr "是-升序" msgid "yes - ordered descending" msgstr "是-降序" +#~ msgid "Additional options" +#~ msgstr "附加选项" + +#~ msgid "Default (\\r\\n)" +#~ msgstr "缺省 (\\r\\n)" + +#~ msgid "Email format" +#~ msgstr "邮件格式" + +#~ msgid "Non-standard (\\n)" +#~ msgstr "非标准 (\\n)" + +#~ msgid "" +#~ "Please change this setting only if you experience problems in receiving " +#~ "emails from LAM. This defines the line ending of emails." +#~ msgstr "" +#~ "如果从LAM中接收邮件时发生了问题,请修改这个选项。 这定义了邮件的末尾。" + +#~ msgid "" +#~ "This email address will be set as sender address of all mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "这个邮件地址会被设定为所有邮件的发件人地址.如果为空,则使用phi.ini指定的缺" +#~ "省值." + +#~ msgid "" +#~ "This email address will be set as sender address of the mails. If empty " +#~ "the system default (php.ini) will be used." +#~ msgstr "" +#~ "这个邮件地址会被设定为邮件的发件人地址.如果为空,则使用phi.ini指定的缺省值." + #~ msgid "Mailbox already exists on IMAP server." #~ msgstr "在IMAP服务器上这个邮箱已经存在。" From df189f69e7409e8717e81895d5b7ef816d975f4a Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Wed, 22 Apr 2020 20:20:52 +0200 Subject: [PATCH 09/11] 7.2 --- lam-packaging/debian/changelog | 6 ++++++ lam-packaging/docker/Dockerfile | 2 +- lam-packaging/docker/docker-compose.yml | 2 +- lam/VERSION | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lam-packaging/debian/changelog b/lam-packaging/debian/changelog index 91984863..64baf2c2 100644 --- a/lam-packaging/debian/changelog +++ b/lam-packaging/debian/changelog @@ -1,3 +1,9 @@ +ldap-account-manager (7.2.RC1-1) unstable; urgency=medium + + * new upstream release + + -- Roland Gruber Wed, 22 Apr 2020 20:12:31 +0200 + ldap-account-manager (7.1-1) unstable; urgency=medium * new upstream release diff --git a/lam-packaging/docker/Dockerfile b/lam-packaging/docker/Dockerfile index 5cf4b270..b2fdc13d 100644 --- a/lam-packaging/docker/Dockerfile +++ b/lam-packaging/docker/Dockerfile @@ -29,7 +29,7 @@ FROM debian:buster-slim LABEL maintainer="Roland Gruber " -ARG LAM_RELEASE=7.1 +ARG LAM_RELEASE=7.2.RC1 EXPOSE 80 ENV \ diff --git a/lam-packaging/docker/docker-compose.yml b/lam-packaging/docker/docker-compose.yml index a5909c8c..6f72640b 100644 --- a/lam-packaging/docker/docker-compose.yml +++ b/lam-packaging/docker/docker-compose.yml @@ -4,7 +4,7 @@ services: build: context: . args: - - LAM_RELEASE=7.1 + - LAM_RELEASE=7.2.RC1 image: ldapaccountmanager/lam:latest restart: unless-stopped ports: diff --git a/lam/VERSION b/lam/VERSION index 610207b4..a50da158 100644 --- a/lam/VERSION +++ b/lam/VERSION @@ -1 +1 @@ -7.2.DEV +7.2.RC1 From 2331e42e3491bf5eed4cbb144000f4d56aec638e Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 23 Apr 2020 21:18:27 +0200 Subject: [PATCH 10/11] fixed text alignment --- lam/style/500_layout.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lam/style/500_layout.css b/lam/style/500_layout.css index 114a243d..1c7e962d 100644 --- a/lam/style/500_layout.css +++ b/lam/style/500_layout.css @@ -283,6 +283,11 @@ table.collapse { .rightToLeftText { text-align: right; + text-align-last: right; +} + +.rightToLeftText option { + direction: rtl; } .text-left { From d0e88cf80b58b74d26007c58ba378025d9f11eff Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 25 Apr 2020 20:34:47 +0200 Subject: [PATCH 11/11] i18n --- lam/locale/nl_NL/LC_MESSAGES/messages.mo | Bin 345353 -> 348646 bytes lam/locale/nl_NL/LC_MESSAGES/messages.po | 4496 ++++++++++++---------- 2 files changed, 2497 insertions(+), 1999 deletions(-) diff --git a/lam/locale/nl_NL/LC_MESSAGES/messages.mo b/lam/locale/nl_NL/LC_MESSAGES/messages.mo index 80a446e6c6fae7a5b08ae5038ae476ee17633c83..fb9568bfc7bf179c380b928255de92d486208717 100644 GIT binary patch delta 77315 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

CPiY(`@FbP8jN8um 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 Y#-2ifiH$ue1A`lThO#&p8+)q$e`aRh0{{R3 delta 74671 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\n" "Language-Team: German \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2.3\n" +"X-Generator: Poedit 2.2.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../lib/modules/quota.inc:106 @@ -21,7 +21,7 @@ msgid "" " Symbols k, m, g and t can be appended to numeric value to express multiples " "of 10^3, 10^6, 10^9 and 10^12 inodes." msgstr "" -"Symbolen k, m, g en t kunnen worden toegevoegd aan de numerieke waarde om " +" Symbolen k, m, g en t kunnen worden toegevoegd aan de numerieke waarde om " "veelvouden van 10^3, 10^6, 10^9 en 10^12 inodes uit te drukken." #: ../lib/modules/zarafaContact.inc:98 ../lib/modules/zarafaContact.inc:101 @@ -80,32 +80,36 @@ msgstr "/home/smiller" msgid "123-123-1234" msgstr "123-123-1234" -#: ../lib/modules/windowsUser.inc:635 ../lib/modules/windowsUser.inc:643 +#: ../lib/modules/windowsLDSUser.inc:492 ../lib/modules/windowsLDSUser.inc:500 +#: ../lib/modules/windowsUser.inc:645 ../lib/modules/windowsUser.inc:653 #: ../lib/modules/inetOrgPerson.inc:365 msgid "123-123-1235" msgstr "123-123-1235" -#: ../lib/modules/windowsUser.inc:611 ../lib/modules/windowsUser.inc:619 -#: ../lib/modules/windowsUser.inc:627 ../lib/modules/inetOrgPerson.inc:373 -#: ../lib/modules/inetOrgPerson.inc:381 +#: ../lib/modules/windowsLDSUser.inc:468 ../lib/modules/windowsLDSUser.inc:476 +#: ../lib/modules/windowsLDSUser.inc:484 ../lib/modules/windowsUser.inc:621 +#: ../lib/modules/windowsUser.inc:629 ../lib/modules/windowsUser.inc:637 +#: ../lib/modules/inetOrgPerson.inc:373 ../lib/modules/inetOrgPerson.inc:381 msgid "123-123-1236" msgstr "123-123-1236" -#: ../lib/modules/windowsUser.inc:510 ../lib/modules/windowsUser.inc:516 +#: ../lib/modules/windowsLDSUser.inc:429 ../lib/modules/windowsLDSUser.inc:435 +#: ../lib/modules/windowsUser.inc:520 ../lib/modules/windowsUser.inc:526 #: ../lib/modules/inetOrgPerson.inc:357 msgid "123-124-1234" msgstr "123-124-1234" -#: ../lib/modules/windowsUser.inc:468 ../lib/modules/inetOrgPerson.inc:341 +#: ../lib/modules/windowsLDSUser.inc:393 ../lib/modules/windowsUser.inc:478 +#: ../lib/modules/inetOrgPerson.inc:341 msgid "12345" msgstr "12345" #: ../templates/config/confmain.php:463 -#: ../templates/selfService/adminMain.php:484 ../help/help.inc:300 +#: ../templates/selfService/adminMain.php:485 ../help/help.inc:312 msgid "2-factor authentication" msgstr "2-factor authenticatie" -#: ../templates/selfService/adminMain.php:534 +#: ../templates/selfService/adminMain.php:538 msgid "2-factor authentication requires PHP curl extension." msgstr "2-factor verificatie vereist de PHP curl extensie." @@ -181,8 +185,8 @@ msgstr "" msgid "A SOA record requires that the host name is set to \"@\"." msgstr "Een SOA record vereist dat de hostnaam is ingesteld op \"@\"." -#: ../lib/modules/selfRegistration.inc:757 -#: ../lib/modules/passwordSelfReset.inc:1862 +#: ../lib/modules/selfRegistration.inc:771 +#: ../lib/modules/passwordSelfReset.inc:1860 msgid "" "A confirmation mail was sent. Please click on the link in the mail to proceed." msgstr "" @@ -265,7 +269,7 @@ msgstr "AMA vlaggen" msgid "Abandon" msgstr "Verlaten" -#: ../templates/lists/changePassword.php:752 +#: ../templates/lists/changePassword.php:756 msgid "Aborted password change." msgstr "Wachtwoord verandering afgebroken." @@ -273,7 +277,8 @@ msgstr "Wachtwoord verandering afgebroken." msgid "Access level" msgstr "Toegangsniveau" -#: ../lib/modules/account.inc:61 ../lib/modules/windowsUser.inc:1210 +#: ../lib/modules/windowsLDSUser.inc:954 ../lib/modules/account.inc:61 +#: ../lib/modules/windowsUser.inc:1248 msgid "Account" msgstr "Account" @@ -286,7 +291,18 @@ msgstr "Account" #: ../lib/modules/pykotaPrinter.inc:219 ../lib/modules/mitKerberos.inc:281 #: ../lib/modules/mitKerberos.inc:282 ../lib/modules/mitKerberos.inc:283 #: ../lib/modules/mitKerberos.inc:285 ../lib/modules/mitKerberos.inc:287 -#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/kopanoServer.inc:150 +#: ../lib/modules/mitKerberos.inc:288 ../lib/modules/windowsLDSUser.inc:750 +#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/windowsLDSUser.inc:754 +#: ../lib/modules/windowsLDSUser.inc:756 ../lib/modules/windowsLDSUser.inc:758 +#: ../lib/modules/windowsLDSUser.inc:760 ../lib/modules/windowsLDSUser.inc:762 +#: ../lib/modules/windowsLDSUser.inc:764 ../lib/modules/windowsLDSUser.inc:766 +#: ../lib/modules/windowsLDSUser.inc:768 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:772 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:776 ../lib/modules/windowsLDSUser.inc:778 +#: ../lib/modules/windowsLDSUser.inc:780 ../lib/modules/windowsLDSUser.inc:782 +#: ../lib/modules/windowsLDSUser.inc:786 ../lib/modules/windowsLDSUser.inc:788 +#: ../lib/modules/windowsLDSUser.inc:790 ../lib/modules/windowsLDSUser.inc:791 +#: ../lib/modules/windowsLDSUser.inc:1660 ../lib/modules/kopanoServer.inc:150 #: ../lib/modules/kopanoServer.inc:152 ../lib/modules/kopanoServer.inc:154 #: ../lib/modules/kopanoServer.inc:155 ../lib/modules/autoDelete.inc:103 #: ../lib/modules/zarafaDynamicGroup.inc:181 @@ -313,8 +329,8 @@ msgstr "Account" #: ../lib/modules/zarafaContact.inc:177 ../lib/modules/zarafaContact.inc:179 #: ../lib/modules/zarafaContact.inc:180 ../lib/modules/zarafaContact.inc:181 #: ../lib/modules/zarafaContact.inc:184 ../lib/modules/zarafaContact.inc:185 -#: ../lib/modules/windowsHost.inc:131 ../lib/modules/posixGroup.inc:708 -#: ../lib/modules/posixGroup.inc:712 ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/windowsHost.inc:145 ../lib/modules/posixGroup.inc:709 +#: ../lib/modules/posixGroup.inc:713 ../lib/modules/posixGroup.inc:714 #: ../lib/modules/zarafaGroup.inc:190 ../lib/modules/zarafaGroup.inc:192 #: ../lib/modules/zarafaGroup.inc:193 ../lib/modules/zarafaGroup.inc:194 #: ../lib/modules/zarafaGroup.inc:195 ../lib/modules/zarafaGroup.inc:197 @@ -387,29 +403,29 @@ msgstr "Account" #: ../lib/modules/bindDLZ.inc:612 ../lib/modules/bindDLZ.inc:614 #: ../lib/modules/bindDLZ.inc:616 ../lib/modules/bindDLZ.inc:618 #: ../lib/modules/bindDLZ.inc:620 ../lib/modules/bindDLZ.inc:622 -#: ../lib/modules/bindDLZ.inc:623 ../lib/modules/windowsUser.inc:983 -#: ../lib/modules/windowsUser.inc:985 ../lib/modules/windowsUser.inc:987 -#: ../lib/modules/windowsUser.inc:989 ../lib/modules/windowsUser.inc:991 -#: ../lib/modules/windowsUser.inc:993 ../lib/modules/windowsUser.inc:995 -#: ../lib/modules/windowsUser.inc:997 ../lib/modules/windowsUser.inc:999 -#: ../lib/modules/windowsUser.inc:1001 ../lib/modules/windowsUser.inc:1003 -#: ../lib/modules/windowsUser.inc:1005 ../lib/modules/windowsUser.inc:1007 -#: ../lib/modules/windowsUser.inc:1009 ../lib/modules/windowsUser.inc:1011 -#: ../lib/modules/windowsUser.inc:1013 ../lib/modules/windowsUser.inc:1015 -#: ../lib/modules/windowsUser.inc:1017 ../lib/modules/windowsUser.inc:1019 +#: ../lib/modules/bindDLZ.inc:623 ../lib/modules/windowsUser.inc:1019 #: ../lib/modules/windowsUser.inc:1021 ../lib/modules/windowsUser.inc:1023 -#: ../lib/modules/windowsUser.inc:1025 ../lib/modules/windowsUser.inc:1028 -#: ../lib/modules/windowsUser.inc:1030 ../lib/modules/windowsUser.inc:1032 -#: ../lib/modules/windowsUser.inc:1034 ../lib/modules/windowsUser.inc:1036 -#: ../lib/modules/windowsUser.inc:1038 ../lib/modules/windowsUser.inc:1040 -#: ../lib/modules/windowsUser.inc:1041 ../lib/modules/windowsUser.inc:2389 -#: ../lib/modules/windowsUser.inc:2398 ../lib/modules/windowsUser.inc:2419 -#: ../lib/modules/windowsUser.inc:2430 ../lib/modules/windowsUser.inc:2487 -#: ../lib/modules/kolabUser.inc:213 ../lib/modules/kolabUser.inc:215 -#: ../lib/modules/kolabUser.inc:216 ../lib/modules/kolabUser.inc:218 -#: ../lib/modules/kolabUser.inc:220 ../lib/modules/kolabUser.inc:222 -#: ../lib/modules/ddns.inc:151 ../lib/modules/nisObject.inc:124 -#: ../lib/modules/sambaGroupMapping.inc:574 +#: ../lib/modules/windowsUser.inc:1025 ../lib/modules/windowsUser.inc:1027 +#: ../lib/modules/windowsUser.inc:1029 ../lib/modules/windowsUser.inc:1031 +#: ../lib/modules/windowsUser.inc:1033 ../lib/modules/windowsUser.inc:1035 +#: ../lib/modules/windowsUser.inc:1037 ../lib/modules/windowsUser.inc:1039 +#: ../lib/modules/windowsUser.inc:1041 ../lib/modules/windowsUser.inc:1043 +#: ../lib/modules/windowsUser.inc:1045 ../lib/modules/windowsUser.inc:1047 +#: ../lib/modules/windowsUser.inc:1049 ../lib/modules/windowsUser.inc:1051 +#: ../lib/modules/windowsUser.inc:1053 ../lib/modules/windowsUser.inc:1055 +#: ../lib/modules/windowsUser.inc:1057 ../lib/modules/windowsUser.inc:1059 +#: ../lib/modules/windowsUser.inc:1061 ../lib/modules/windowsUser.inc:1064 +#: ../lib/modules/windowsUser.inc:1066 ../lib/modules/windowsUser.inc:1068 +#: ../lib/modules/windowsUser.inc:1070 ../lib/modules/windowsUser.inc:1072 +#: ../lib/modules/windowsUser.inc:1074 ../lib/modules/windowsUser.inc:1076 +#: ../lib/modules/windowsUser.inc:1077 ../lib/modules/windowsUser.inc:1083 +#: ../lib/modules/windowsUser.inc:2552 ../lib/modules/windowsUser.inc:2561 +#: ../lib/modules/windowsUser.inc:2582 ../lib/modules/windowsUser.inc:2593 +#: ../lib/modules/windowsUser.inc:2653 ../lib/modules/kolabUser.inc:213 +#: ../lib/modules/kolabUser.inc:215 ../lib/modules/kolabUser.inc:216 +#: ../lib/modules/kolabUser.inc:218 ../lib/modules/kolabUser.inc:220 +#: ../lib/modules/kolabUser.inc:222 ../lib/modules/ddns.inc:151 +#: ../lib/modules/nisObject.inc:124 ../lib/modules/sambaGroupMapping.inc:574 #: ../lib/modules/sambaGroupMapping.inc:575 ../lib/modules/pykotaUser.inc:275 #: ../lib/modules/pykotaUser.inc:277 ../lib/modules/pykotaUser.inc:279 #: ../lib/modules/pykotaUser.inc:281 ../lib/modules/pykotaUser.inc:283 @@ -461,6 +477,7 @@ msgstr "Account" #: ../lib/modules/kolabSharedFolder.inc:218 #: ../lib/modules/kolabSharedFolder.inc:219 #: ../lib/modules/kolabSharedFolder.inc:221 +#: ../lib/modules/windowsLDSGroup.inc:157 #: ../lib/modules/kopanoAddressList.inc:156 #: ../lib/modules/kopanoAddressList.inc:157 #: ../lib/modules/kopanoAddressList.inc:158 ../lib/modules/zarafaServer.inc:151 @@ -487,7 +504,7 @@ msgstr "Account" #: ../lib/modules/qmailGroup.inc:397 ../lib/modules/qmailGroup.inc:398 #: ../lib/modules/qmailGroup.inc:399 ../lib/modules/qmailGroup.inc:400 #: ../lib/modules/qmailGroup.inc:401 ../lib/modules/qmailGroup.inc:402 -#: ../lib/modules/imapAccess.inc:165 ../lib/modules/imapAccess.inc:166 +#: ../lib/modules/imapAccess.inc:165 ../lib/modules/imapAccess.inc:167 #: ../lib/modules/authorizedServiceObject.inc:125 #: ../lib/modules/passwordSelfReset.inc:283 #: ../lib/modules/heimdalKerberos.inc:246 ../lib/modules/heimdalKerberos.inc:247 @@ -538,13 +555,13 @@ msgstr "Account aanmaken via upload van bestand" msgid "Account deactivated" msgstr "Account op nonactief gezet" -#: ../templates/lists/changePassword.php:272 +#: ../templates/lists/changePassword.php:276 msgid "Account details" msgstr "Account details" #: ../lib/types/user.inc:366 ../lib/types/user.inc:376 ../lib/types/user.inc:1076 -#: ../lib/types/user.inc:1113 ../lib/modules/windowsUser.inc:294 -#: ../lib/modules/windowsUser.inc:771 ../lib/modules/windowsUser.inc:1033 +#: ../lib/types/user.inc:1113 ../lib/modules/windowsUser.inc:296 +#: ../lib/modules/windowsUser.inc:795 ../lib/modules/windowsUser.inc:1069 msgid "Account expiration" msgstr "Account vervaldatum" @@ -556,11 +573,11 @@ msgstr "Account vervaldatum" #: ../lib/modules/sambaSamAccount.inc:1169 #: ../lib/modules/sambaSamAccount.inc:1450 #: ../lib/modules/sambaSamAccount.inc:1754 -#: ../lib/modules/sambaSamAccount.inc:1977 ../lib/modules/windowsUser.inc:286 -#: ../lib/modules/windowsUser.inc:290 ../lib/modules/windowsUser.inc:548 -#: ../lib/modules/windowsUser.inc:868 ../lib/modules/windowsUser.inc:1227 -#: ../lib/modules/windowsUser.inc:1644 ../lib/modules/windowsUser.inc:2733 -#: ../lib/modules/windowsUser.inc:2919 ../lib/modules/shadowAccount.inc:129 +#: ../lib/modules/sambaSamAccount.inc:1977 ../lib/modules/windowsUser.inc:288 +#: ../lib/modules/windowsUser.inc:292 ../lib/modules/windowsUser.inc:558 +#: ../lib/modules/windowsUser.inc:901 ../lib/modules/windowsUser.inc:1265 +#: ../lib/modules/windowsUser.inc:1690 ../lib/modules/windowsUser.inc:2900 +#: ../lib/modules/windowsUser.inc:3090 ../lib/modules/shadowAccount.inc:129 #: ../lib/modules/shadowAccount.inc:171 ../lib/modules/shadowAccount.inc:194 #: ../lib/modules/shadowAccount.inc:234 ../lib/modules/shadowAccount.inc:358 #: ../lib/modules/shadowAccount.inc:473 ../lib/modules/shadowAccount.inc:598 @@ -571,7 +588,7 @@ msgstr "Account vervaldatum" msgid "Account expiration date" msgstr "Verloopdatum account" -#: ../lib/modules/windowsUser.inc:953 ../lib/modules/shadowAccount.inc:242 +#: ../lib/modules/windowsUser.inc:989 ../lib/modules/shadowAccount.inc:242 msgid "Account expiration date (read-only)" msgstr "Account vervaldatum (alleen lezen)" @@ -581,9 +598,9 @@ msgstr "Niet actief account" #: ../lib/modules/sambaSamAccount.inc:287 ../lib/modules/sambaSamAccount.inc:293 #: ../lib/modules/sambaSamAccount.inc:463 ../lib/modules/sambaSamAccount.inc:1130 -#: ../lib/modules/sambaSamAccount.inc:1750 ../lib/modules/windowsUser.inc:217 -#: ../lib/modules/windowsUser.inc:532 ../lib/modules/windowsUser.inc:858 -#: ../lib/modules/windowsUser.inc:1219 ../lib/modules/windowsUser.inc:2727 +#: ../lib/modules/sambaSamAccount.inc:1750 ../lib/modules/windowsUser.inc:219 +#: ../lib/modules/windowsUser.inc:542 ../lib/modules/windowsUser.inc:891 +#: ../lib/modules/windowsUser.inc:1257 ../lib/modules/windowsUser.inc:2894 msgid "Account is deactivated" msgstr "Account is gedeactiveerd" @@ -591,7 +608,7 @@ msgstr "Account is gedeactiveerd" msgid "Account is locked" msgstr "Account is geblokkeerd" -#: ../templates/lists/changePassword.php:418 ../lib/modules/locking389ds.inc:57 +#: ../templates/lists/changePassword.php:422 ../lib/modules/locking389ds.inc:57 msgid "Account locking" msgstr "Account vergrendeling" @@ -636,13 +653,13 @@ msgstr "" msgid "Account was created successfully." msgstr "Account is aangemaakt." -#: ../templates/lists/changePassword.php:782 -#: ../templates/lists/changePassword.php:893 -#: ../templates/lists/changePassword.php:943 ../lib/modules.inc:1399 +#: ../templates/lists/changePassword.php:786 +#: ../templates/lists/changePassword.php:897 +#: ../templates/lists/changePassword.php:947 ../lib/modules.inc:1399 msgid "Account was modified successfully." msgstr "Account is met succes aangepast." -#: ../lib/passwordExpirationJob.inc:486 ../help/help.inc:412 +#: ../lib/passwordExpirationJob.inc:486 ../help/help.inc:424 msgid "Action" msgstr "Actie" @@ -654,20 +671,20 @@ msgstr "Type actie" msgid "Actions" msgstr "Acties" -#: ../templates/lists/changePassword.php:415 ../lib/types/user.inc:508 +#: ../templates/lists/changePassword.php:419 ../lib/types/user.inc:508 msgid "Activate" msgstr "Activeer" -#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:366 +#: ../lib/modules/ddns.inc:80 ../lib/modules/ddns.inc:362 msgid "Activate DynDNS" msgstr "Activeer DynDNS" #: ../templates/config/confmain.php:198 -#: ../templates/selfService/adminMain.php:428 +#: ../templates/selfService/adminMain.php:429 msgid "Activate TLS" msgstr "Activeer TLS" -#: ../help/help.inc:203 +#: ../help/help.inc:209 msgid "" "Activate this checkbox if you have any server side extension for referential " "integrity in place. LAM will then skip cleanup tasks like deletion of group " @@ -706,7 +723,7 @@ msgstr "" "Activeer deze checkbox op de client's printer als standaardprinter in te " "stellen." -#: ../help/help.inc:374 +#: ../help/help.inc:386 msgid "" "Activate this option to export internal attributes that are not visible by " "default." @@ -755,7 +772,7 @@ msgstr "" #: ../lib/modules/kopanoAddressList.inc:141 #: ../lib/modules/kopanoAddressList.inc:185 #: ../lib/modules/kopanoAddressList.inc:298 ../lib/modules/fixed_ip.inc:119 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:763 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:761 msgid "Active" msgstr "Actief" @@ -767,8 +784,8 @@ msgstr "Actieve account types" #: ../templates/tools/multiEdit.php:150 ../templates/config/profmanage.php:228 #: ../templates/config/conftypes.php:169 #: ../templates/selfService/profManage.php:194 -#: ../templates/selfService/adminMain.php:696 -#: ../templates/selfService/adminMain.php:754 +#: ../templates/selfService/adminMain.php:700 +#: ../templates/selfService/adminMain.php:758 #: ../templates/pdfedit/pdfpage.php:402 ../templates/pdfedit/pdfpage.php:417 #: ../templates/pdfedit/pdfpage.php:429 ../templates/pdfedit/pdfpage.php:442 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1093 @@ -787,19 +804,19 @@ msgstr "Actieve account types" #: ../lib/modules/bindDLZ.inc:995 ../lib/modules/bindDLZ.inc:1083 #: ../lib/modules/bindDLZ.inc:1197 ../lib/modules/bindDLZ.inc:1327 #: ../lib/modules/bindDLZ.inc:1493 ../lib/modules/bindDLZ.inc:1602 -#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:687 -#: ../lib/modules/kolabUser.inc:735 ../lib/modules/sambaGroupMapping.inc:372 +#: ../lib/modules/bindDLZ.inc:1719 ../lib/modules/kolabUser.inc:686 +#: ../lib/modules/kolabUser.inc:734 ../lib/modules/sambaGroupMapping.inc:372 #: ../lib/modules/sambaGroupMapping.inc:465 ../lib/modules/pykotaUser.inc:373 #: ../lib/modules/ldapPublicKey.inc:355 ../lib/modules/ldapPublicKey.inc:364 #: ../lib/modules/nisNetGroupUser.inc:219 ../lib/modules/yubiKeyUser.inc:322 #: ../lib/modules/yubiKeyUser.inc:323 ../lib/modules/nisnetgroup.inc:301 -#: ../lib/modules/inetOrgPerson.inc:1754 ../lib/modules/kopanoUser.inc:843 +#: ../lib/modules/inetOrgPerson.inc:1766 ../lib/modules/kopanoUser.inc:843 #: ../lib/modules/kopanoUser.inc:1416 ../lib/modules/kopanoUser.inc:1447 -#: ../lib/modules/customFields.inc:1243 ../lib/modules/customFields.inc:2569 -#: ../lib/modules/customFields.inc:2587 ../lib/modules/qmailGroup.inc:642 -#: ../lib/modules/organizationalRole.inc:304 ../lib/modules/fixed_ip.inc:608 -#: ../lib/modules/windowsGroup.inc:656 ../lib/modules/groupOfNames.inc:354 -#: ../lib/modules/groupOfNames.inc:503 +#: ../lib/modules/windowsLDSGroup.inc:423 ../lib/modules/customFields.inc:1243 +#: ../lib/modules/customFields.inc:2569 ../lib/modules/customFields.inc:2587 +#: ../lib/modules/qmailGroup.inc:642 ../lib/modules/organizationalRole.inc:304 +#: ../lib/modules/fixed_ip.inc:606 ../lib/modules/windowsGroup.inc:656 +#: ../lib/modules/groupOfNames.inc:354 ../lib/modules/groupOfNames.inc:503 msgid "Add" msgstr "Toevoegen" @@ -872,7 +889,7 @@ msgstr "Voeg de Samba 3 extensie toe" msgid "Add Shadow account extension" msgstr "Voeg de Shadow account extensie toe" -#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1704 +#: ../lib/modules/posixGroup.inc:271 ../lib/modules/posixAccount.inc:1759 msgid "Add Unix extension" msgstr "Voeg de Unix extensie toe" @@ -891,7 +908,7 @@ msgstr "Voeg de Zarafa contact extensie toe" msgid "Add Zarafa extension" msgstr "Voeg de Zarafa extensie toe" -#: ../lib/modules/inetOrgPerson.inc:794 ../lib/modules/inetOrgPerson.inc:3900 +#: ../lib/modules/inetOrgPerson.inc:798 ../lib/modules/inetOrgPerson.inc:4115 msgid "Add addressbook (ou=addressbook)" msgstr "Adresboek toevoegen (ou=addressbook)" @@ -912,9 +929,9 @@ msgstr "Voeg een extra waarde toe aan attribuut" msgid "Add another rule" msgstr "Nog een regel toevoegen" -#: ../lib/modules/inetOrgPerson.inc:1788 ../lib/modules/qmailGroup.inc:683 -#: ../lib/modules/organizationalRole.inc:309 ../lib/modules/groupOfNames.inc:406 -#: ../lib/modules/groupOfNames.inc:555 +#: ../lib/modules/inetOrgPerson.inc:1800 ../lib/modules/windowsLDSGroup.inc:476 +#: ../lib/modules/qmailGroup.inc:683 ../lib/modules/organizationalRole.inc:309 +#: ../lib/modules/groupOfNames.inc:406 ../lib/modules/groupOfNames.inc:555 msgid "Add entries" msgstr "Items toevoegen" @@ -922,13 +939,13 @@ msgstr "Items toevoegen" #: ../lib/modules/device.inc:287 ../lib/modules/kopanoGroup.inc:433 #: ../lib/modules/zarafaUser.inc:971 ../lib/modules/kopanoContact.inc:418 #: ../lib/modules/sambaGroupMapping.inc:478 ../lib/modules/kopanoUser.inc:893 -#: ../lib/modules/qmailGroup.inc:684 ../lib/modules/organizationalRole.inc:321 -#: ../lib/modules/windowsGroup.inc:700 ../lib/modules/groupOfNames.inc:408 -#: ../lib/modules/groupOfNames.inc:565 +#: ../lib/modules/windowsLDSGroup.inc:477 ../lib/modules/qmailGroup.inc:684 +#: ../lib/modules/organizationalRole.inc:321 ../lib/modules/windowsGroup.inc:700 +#: ../lib/modules/groupOfNames.inc:408 ../lib/modules/groupOfNames.inc:565 msgid "Add entries of this type:" msgstr "Voeg items van dit type toe:" -#: ../lib/modules/fixed_ip.inc:520 +#: ../lib/modules/fixed_ip.inc:518 msgid "Add existing host" msgstr "Voeg bestaande host toe" @@ -936,7 +953,7 @@ msgstr "Voeg bestaande host toe" msgid "Add extension" msgstr "Voeg extensie toe" -#: ../lib/modules/ddns.inc:367 +#: ../lib/modules/ddns.inc:363 msgid "Add fix IP addresses to DNS" msgstr "Voeg vaste IP-adressen toe aan DNS" @@ -944,7 +961,7 @@ msgstr "Voeg vaste IP-adressen toe aan DNS" msgid "Add host extension" msgstr "Voeg host extensie toe" -#: ../templates/selfService/adminMain.php:703 ../help/help.inc:288 +#: ../templates/selfService/adminMain.php:707 ../help/help.inc:300 msgid "Add input field" msgstr "Voeg invoerveld toe" @@ -990,7 +1007,7 @@ msgstr "Toevoegen nieuw binair attribuut" msgid "Add new field" msgstr "Voeg nieuwe veld toe" -#: ../templates/selfService/adminMain.php:691 ../help/help.inc:286 +#: ../templates/selfService/adminMain.php:695 ../help/help.inc:298 msgid "Add new group" msgstr "Nieuwe groep toevoegen" @@ -1011,9 +1028,10 @@ msgstr "Voeg object-klasse en attributen toe" msgid "Add password self reset extension" msgstr "Voeg password zelf reset extensie toe" -#: ../lib/modules/windowsUser.inc:298 ../lib/modules/windowsUser.inc:398 -#: ../lib/modules/windowsUser.inc:1304 ../lib/modules/inetOrgPerson.inc:689 -#: ../lib/modules/inetOrgPerson.inc:1595 +#: ../lib/modules/windowsLDSUser.inc:227 ../lib/modules/windowsLDSUser.inc:327 +#: ../lib/modules/windowsLDSUser.inc:994 ../lib/modules/windowsUser.inc:300 +#: ../lib/modules/windowsUser.inc:400 ../lib/modules/windowsUser.inc:1350 +#: ../lib/modules/inetOrgPerson.inc:693 ../lib/modules/inetOrgPerson.inc:1609 msgid "Add photo" msgstr "Voeg foto toe" @@ -1039,7 +1057,7 @@ msgstr "Toevoegen aan bestaande alias" msgid "Add value" msgstr "Waarde toevoegen" -#: ../lib/modules/posixGroup.inc:1002 ../lib/modules/posixGroup.inc:1045 +#: ../lib/modules/posixGroup.inc:1003 ../lib/modules/posixGroup.inc:1046 msgid "Added users" msgstr "Toegevoegd gebruikers" @@ -1047,17 +1065,17 @@ msgstr "Toegevoegd gebruikers" msgid "Adding" msgstr "Het toevoegen van" -#: ../lib/modules/range.inc:139 -msgid "Adding the range failed because errors occured." +#: ../lib/modules/range.inc:138 +msgid "Adding the range failed because errors occurred." msgstr "Het toevoegen van de range is mislukt omdat fouten zijn opgetreden." -#: ../templates/selfService/adminMain.php:597 ../help/help.inc:292 +#: ../templates/selfService/adminMain.php:601 ../help/help.inc:304 msgid "Additional CSS links" msgstr "Additionele CSS links" #: ../templates/config/conftypes.php:245 -#: ../templates/selfService/adminMain.php:446 ../help/help.inc:182 -#: ../help/help.inc:296 +#: ../templates/selfService/adminMain.php:447 ../help/help.inc:188 +#: ../help/help.inc:308 msgid "Additional LDAP filter" msgstr "Extra LDAP filter" @@ -1072,8 +1090,8 @@ msgstr "Extra e-mailadressen voor dit item." #: ../lib/modules/posixAccount.inc:231 ../lib/modules/posixAccount.inc:304 #: ../lib/modules/posixAccount.inc:353 ../lib/modules/posixAccount.inc:439 -#: ../lib/modules/posixAccount.inc:1641 ../lib/modules/posixAccount.inc:1977 -#: ../lib/modules/posixAccount.inc:2103 +#: ../lib/modules/posixAccount.inc:1696 ../lib/modules/posixAccount.inc:2032 +#: ../lib/modules/posixAccount.inc:2167 msgid "Additional groups" msgstr "Additionele groepen" @@ -1081,15 +1099,12 @@ msgstr "Additionele groepen" msgid "Additional notes to describe this entry." msgstr "Aanvullende toelichting op dit item te beschrijven." -#: ../templates/config/mainmanage.php:468 -msgid "Additional options" -msgstr "Meer opties" - -#: ../lib/upload.inc:257 +#: ../lib/upload.inc:256 msgid "Additional tasks for module:" msgstr "Additionele taken voor module:" -#: ../lib/modules/windowsUser.inc:1131 ../lib/modules/inetOrgPerson.inc:1239 +#: ../lib/modules/windowsLDSUser.inc:875 ../lib/modules/windowsUser.inc:1169 +#: ../lib/modules/inetOrgPerson.inc:1253 msgid "Address" msgstr "Adres" @@ -1103,7 +1118,7 @@ msgstr "Adressenlijst aantal: %s" msgid "Address of IMAP server (e.g. mail.example.org)." msgstr "Adres van de IMAP-server (bijv. mail.example.org)." -#: ../help/help.inc:287 +#: ../help/help.inc:299 msgid "" "Adds a new group element to the list of self service options. Use this to " "structure the input fields." @@ -1111,20 +1126,20 @@ msgstr "" "Voegt een nieuwe groep element toe aan de lijst van zelf service " "mogelijkheden. Gebruik dit om de invoervelden te structuren." -#: ../lib/modules/range.inc:117 +#: ../lib/modules/range.inc:116 msgid "Adds a new range pool." msgstr "Voegt een reeks poel toe." -#: ../help/help.inc:289 +#: ../help/help.inc:301 msgid "Adds a new self service option to the selected group element." msgstr "" "Voegt een nieuwe zelf-service optie toe aan het geselecteerde groep element." -#: ../lib/modules/inetOrgPerson.inc:795 +#: ../lib/modules/inetOrgPerson.inc:799 msgid "Adds an \"ou=addressbook\" subentry to each user." msgstr "Voegt een \"ou=addressbook \" subentry toe voor elke gebruiker." -#: ../lib/modules/range.inc:113 +#: ../lib/modules/range.inc:112 msgid "Adds input fields for a new IP range." msgstr "Voegt invoervelden toe voor een nieuwe IP range." @@ -1136,7 +1151,7 @@ msgstr "" #: ../lib/modules/kolabGroup.inc:113 msgid "Adds this Kolab extension." -msgstr "Voeg deze Kolab extensie toe" +msgstr "Voegt deze Kolab-extensie toe." #: ../lib/modules/zarafaUser.inc:126 ../lib/modules/zarafaUser.inc:287 #: ../lib/modules/zarafaUser.inc:393 ../lib/modules/zarafaUser.inc:634 @@ -1160,14 +1175,16 @@ msgid "Admin email" msgstr "Admin email" #: ../lib/modules/selfRegistration.inc:64 ../lib/modules/selfRegistration.inc:195 -#: ../lib/modules/imapAccess.inc:527 ../lib/modules/passwordSelfReset.inc:111 +#: ../lib/modules/imapAccess.inc:535 ../lib/modules/passwordSelfReset.inc:111 #: ../lib/modules/passwordSelfReset.inc:646 msgid "Admin password" msgstr "Admin wachtwoord" -#: ../lib/modules/windowsUser.inc:716 ../lib/modules/windowsUser.inc:724 -#: ../lib/modules/windowsUser.inc:740 ../lib/modules/inetOrgPerson.inc:301 -#: ../lib/modules/inetOrgPerson.inc:423 ../lib/modules/inetOrgPerson.inc:431 +#: ../lib/modules/windowsLDSUser.inc:547 ../lib/modules/windowsLDSUser.inc:555 +#: ../lib/modules/windowsLDSUser.inc:571 ../lib/modules/windowsUser.inc:726 +#: ../lib/modules/windowsUser.inc:734 ../lib/modules/windowsUser.inc:750 +#: ../lib/modules/inetOrgPerson.inc:301 ../lib/modules/inetOrgPerson.inc:423 +#: ../lib/modules/inetOrgPerson.inc:431 msgid "Administration" msgstr "Beheerder" @@ -1177,14 +1194,14 @@ msgstr "Beheerder" msgid "Administrators group" msgstr "Administratorgroep" -#: ../templates/config/confmain.php:239 ../lib/modules/windowsUser.inc:3648 -#: ../lib/modules/inetOrgPerson.inc:3932 +#: ../templates/config/confmain.php:239 ../lib/modules/windowsLDSUser.inc:2210 +#: ../lib/modules/windowsUser.inc:3743 ../lib/modules/inetOrgPerson.inc:4147 msgid "Advanced options" msgstr "Geavanceerde opties" #: ../lib/modules/eduPerson.inc:104 ../lib/modules/eduPerson.inc:108 #: ../lib/modules/eduPerson.inc:180 ../lib/modules/eduPerson.inc:224 -#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:550 +#: ../lib/modules/eduPerson.inc:332 ../lib/modules/eduPerson.inc:544 msgid "Affiliations" msgstr "Lidmaatschap" @@ -1265,10 +1282,10 @@ msgid "Alias timeout" msgstr "Alias tijdslimiet" #: ../lib/types/alias.inc:95 ../lib/modules/customScripts.inc:51 -#: ../lib/modules/uidObject.inc:58 ../lib/modules/aliasEntry.inc:61 -#: ../lib/modules/aliasEntry.inc:69 ../lib/modules/aliasEntry.inc:77 -#: ../lib/modules/aliasEntry.inc:98 ../lib/modules/aliasEntry.inc:111 -#: ../lib/modules/aliasEntry.inc:237 +#: ../lib/modules/uidObject.inc:58 ../lib/modules/webauthn.inc:62 +#: ../lib/modules/aliasEntry.inc:61 ../lib/modules/aliasEntry.inc:69 +#: ../lib/modules/aliasEntry.inc:77 ../lib/modules/aliasEntry.inc:98 +#: ../lib/modules/aliasEntry.inc:111 ../lib/modules/aliasEntry.inc:237 msgid "Aliased entry" msgstr "Gealiast item" @@ -1286,7 +1303,7 @@ msgstr "Aliassen voor e-mail" msgid "Aliases for user name" msgstr "Aliassen voor gebruikersnaam" -#: ../lib/lists.inc:798 +#: ../lib/lists.inc:797 #, php-format msgid "All accounts (%s)" msgstr "Alle accounts (%s):" @@ -1295,7 +1312,7 @@ msgstr "Alle accounts (%s):" msgid "All changes were successful." msgstr "Alle veranderingen zijn uitgevoerd." -#: ../lib/lists.inc:797 +#: ../lib/lists.inc:796 #, php-format msgid "All selected accounts (%s)" msgstr "Alle geselecteerde accounts (%s):" @@ -1304,7 +1321,7 @@ msgstr "Alle geselecteerde accounts (%s):" msgid "Allow" msgstr "Toestaan" -#: ../templates/config/confmain.php:376 ../help/help.inc:347 +#: ../templates/config/confmain.php:376 ../help/help.inc:359 msgid "Allow alternate address" msgstr "Sta alternatief adres toe" @@ -1312,7 +1329,7 @@ msgstr "Sta alternatief adres toe" #: ../lib/modules/passwordSelfReset.inc:298 #: ../lib/modules/passwordSelfReset.inc:651 msgid "Allow custom security questions" -msgstr "Sta aangepaste beveiliging vragen toe." +msgstr "Sta aangepaste beveiliging vragen toe" #: ../lib/modules/sambaDomain.inc:116 ../lib/modules/sambaDomain.inc:193 #: ../lib/modules/sambaDomain.inc:301 ../lib/modules/sambaDomain.inc:617 @@ -1327,13 +1344,13 @@ msgstr "Sta machine wachtwoord wijzigen toe" msgid "Allow multiple values" msgstr "Sta meerdere waarden toe" -#: ../lib/types/ppolicyType.inc:93 ../lib/modules/ppolicy.inc:131 -#: ../lib/modules/ppolicy.inc:154 ../lib/modules/ppolicy.inc:282 -#: ../lib/modules/ppolicy.inc:497 +#: ../lib/types/ppolicyType.inc:93 ../lib/modules/ppolicy.inc:132 +#: ../lib/modules/ppolicy.inc:159 ../lib/modules/ppolicy.inc:288 +#: ../lib/modules/ppolicy.inc:510 msgid "Allow password change" msgstr "Sta wachtwoord wijzigen toe" -#: ../templates/config/confmain.php:329 ../help/help.inc:218 +#: ../templates/config/confmain.php:329 ../help/help.inc:224 msgid "Allow setting specific passwords" msgstr "Sta instelling specifieke wachtwoorden toe" @@ -1343,7 +1360,7 @@ msgstr "Sta instelling specifieke wachtwoorden toe" msgid "Allow terminal server login" msgstr "Sta terminal server inloggen toe" -#: ../templates/config/confmain.php:335 ../help/help.inc:220 +#: ../templates/config/confmain.php:335 ../help/help.inc:226 msgid "Allow to display password on screen" msgstr "Toestaan het wachtwoord op het scherm weer te geven" @@ -1351,7 +1368,7 @@ msgstr "Toestaan het wachtwoord op het scherm weer te geven" msgid "Allow to enter custom security questions." msgstr "Sta het invoeren van aangepaste beveiliging vragen toe." -#: ../templates/selfService/adminMain.php:656 +#: ../templates/selfService/adminMain.php:660 msgid "Allow user input for this field." msgstr "Laat input van de gebruiker toe voor dit veld." @@ -1362,12 +1379,12 @@ msgstr "Laat input van de gebruiker toe voor dit veld." msgid "Allowed codec" msgstr "Toegestane codec" -#: ../templates/config/mainmanage.php:322 ../lib/types/user.inc:104 +#: ../templates/config/mainmanage.php:353 ../lib/types/user.inc:104 #: ../help/help.inc:160 msgid "Allowed hosts" msgstr "Toegestane hosts" -#: ../templates/config/mainmanage.php:324 +#: ../templates/config/mainmanage.php:355 msgid "Allowed hosts (self service)" msgstr "Toegestane hosts (zelf service)" @@ -1406,11 +1423,12 @@ msgid "Allowed senders" msgstr "Toegestane verzenders" #: ../lib/modules/sambaSamAccount.inc:1358 -#: ../lib/modules/sambaSamAccount.inc:1368 +#: ../lib/modules/sambaSamAccount.inc:1368 ../lib/modules/windowsUser.inc:2200 +#: ../lib/modules/windowsUser.inc:2210 msgid "Allowed workstations" msgstr "Toegestane werkstations" -#: ../help/help.inc:221 +#: ../help/help.inc:227 msgid "Allows to display a randomly generated password on screen." msgstr "" "Maakt het mogelijk om een willekeurig gegenereerd wachtwoord op het scherm " @@ -1425,13 +1443,13 @@ msgstr "" msgid "Allows to select multiple values from the list." msgstr "Maakt het mogelijk om meerdere waarden te selecteren uit de lijst." -#: ../help/help.inc:219 +#: ../help/help.inc:225 msgid "Allows to set a specific password via input field." msgstr "" "Maakt het mogelijk om een specifiek wachtwoord via invoerveld in te stellen." -#: ../templates/lists/changePassword.php:334 -#: ../templates/lists/changePassword.php:370 ../lib/modules/qmailUser.inc:169 +#: ../templates/lists/changePassword.php:338 +#: ../templates/lists/changePassword.php:374 ../lib/modules/qmailUser.inc:169 #: ../lib/modules/qmailUser.inc:237 ../lib/modules/qmailUser.inc:357 #: ../lib/modules/qmailUser.inc:404 ../lib/modules/qmailUser.inc:451 #: ../lib/modules/qmailUser.inc:931 ../lib/modules/qmailGroup.inc:96 @@ -1441,7 +1459,7 @@ msgstr "" msgid "Alternate address" msgstr "Alternatief adres" -#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:268 +#: ../lib/modules.inc:1157 ../lib/modules.inc:1256 ../help/help.inc:280 msgid "Alternate recipient" msgstr "Alternatieve ontvanger" @@ -1490,16 +1508,18 @@ msgstr "Een sudo rol met deze naam bestaat reeds. Kies een andere naam." msgid "Answer" msgstr "Antwoord" -#: ../lib/modules/windowsUser.inc:379 ../lib/modules/windowsUser.inc:383 +#: ../lib/modules/windowsLDSUser.inc:308 ../lib/modules/windowsLDSUser.inc:312 +#: ../lib/modules/windowsUser.inc:381 ../lib/modules/windowsUser.inc:385 msgid "Any secondary mobile numbers." msgstr "Elke secundaire mobiele nummers." -#: ../lib/modules/windowsUser.inc:367 ../lib/modules/windowsUser.inc:371 +#: ../lib/modules/windowsLDSUser.inc:296 ../lib/modules/windowsLDSUser.inc:300 +#: ../lib/modules/windowsUser.inc:369 ../lib/modules/windowsUser.inc:373 msgid "Any secondary pager numbers." msgstr "Elke secundaire pager nummers." #: ../lib/modules/kolabUser.inc:279 ../lib/modules/kolabUser.inc:604 -#: ../lib/modules/kolabUser.inc:710 ../lib/modules/kolabUser.inc:713 +#: ../lib/modules/kolabUser.inc:709 ../lib/modules/kolabUser.inc:712 msgid "Anyone" msgstr "Willekeurig wie" @@ -1550,13 +1570,13 @@ msgstr "Bent u zeker dat u deze obecten permanent wilt verwijderen?" msgid "Are you sure you want to permanently delete this object?" msgstr "Bent u zeker dat u dit obect permanent wilt verwijderen?" -#: ../lib/modules/imapAccess.inc:520 +#: ../lib/modules/imapAccess.inc:528 msgid "Ask" msgstr "Vraag" #: ../lib/modules/eduPerson.inc:141 ../lib/modules/eduPerson.inc:145 #: ../lib/modules/eduPerson.inc:217 ../lib/modules/eduPerson.inc:233 -#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:555 +#: ../lib/modules/eduPerson.inc:348 ../lib/modules/eduPerson.inc:549 msgid "Assurance profiles" msgstr "Assurance profielen" @@ -1640,7 +1660,7 @@ msgid "Attribute types" msgstr "Attribuuttypen" #: ../templates/tools/importexport.php:279 ../lib/modules/selfRegistration.inc:77 -#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:371 +#: ../lib/modules/selfRegistration.inc:207 ../help/help.inc:383 msgid "Attributes" msgstr "Attributen" @@ -1699,11 +1719,11 @@ msgstr "Automatische scripts" #: ../lib/modules/puppetClient.inc:115 ../lib/modules/puppetClient.inc:172 #: ../lib/modules/qmailUser.inc:98 ../lib/modules/qmailUser.inc:229 #: ../lib/modules/zarafaContact.inc:90 ../lib/modules/zarafaContact.inc:651 -#: ../lib/modules/posixGroup.inc:393 ../lib/modules/posixGroup.inc:480 +#: ../lib/modules/posixGroup.inc:394 ../lib/modules/posixGroup.inc:481 #: ../lib/modules/eduPerson.inc:149 ../lib/modules/eduPerson.inc:154 #: ../lib/modules/pykotaGroup.inc:123 ../lib/modules/pykotaGroup.inc:134 #: ../lib/modules/sambaSamAccount.inc:165 ../lib/modules/sambaSamAccount.inc:404 -#: ../lib/modules/posixAccount.inc:315 ../lib/modules/posixAccount.inc:2014 +#: ../lib/modules/posixAccount.inc:315 ../lib/modules/posixAccount.inc:2073 #: ../lib/modules/zarafaUser.inc:154 ../lib/modules/zarafaUser.inc:1345 #: ../lib/modules/kopanoContact.inc:90 ../lib/modules/kopanoContact.inc:603 #: ../lib/modules/courierMailAccount.inc:132 @@ -1771,9 +1791,10 @@ msgstr "Beschikbare accounttypes" msgid "Available actions" msgstr "Beschikbare acties" -#: ../lib/modules/posixAccount.inc:1783 ../lib/modules/posixAccount.inc:1814 -#: ../lib/modules/windowsUser.inc:1794 ../lib/modules/nisnetgroup.inc:411 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1838 +#: ../lib/modules/posixAccount.inc:1869 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Available groups" msgstr "Beschikbare groepen" @@ -1790,11 +1811,11 @@ msgstr "Beschikbare modules" msgid "Available roles" msgstr "Beschikbare rollen" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Available users" msgstr "Beschikbare gebruikers" -#: ../lib/modules/sambaSamAccount.inc:1368 +#: ../lib/modules/sambaSamAccount.inc:1368 ../lib/modules/windowsUser.inc:2210 msgid "Available workstations" msgstr "Beschikbare werkstations" @@ -1803,24 +1824,27 @@ msgid "B-Node (0x01)" msgstr "B-Node (0x01)" #: ../lib/passwordExpirationJob.inc:86 ../lib/passwordExpirationJob.inc:140 -#: ../help/help.inc:404 +#: ../help/help.inc:416 msgid "BCC address" msgstr "BCC adres" #: ../templates/config/jobList.php:174 #: ../templates/upload/massBuildAccounts.php:292 -#: ../lib/modules/zarafaContact.inc:474 ../lib/modules/posixGroup.inc:349 +#: ../lib/modules/windowsLDSUser.inc:1262 ../lib/modules/windowsLDSUser.inc:1297 +#: ../lib/modules/zarafaContact.inc:474 ../lib/modules/posixGroup.inc:350 #: ../lib/modules/zarafaGroup.inc:489 ../lib/modules/device.inc:295 #: ../lib/modules/kopanoGroup.inc:440 ../lib/modules/sambaSamAccount.inc:1372 -#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1888 -#: ../lib/modules/posixAccount.inc:1956 ../lib/modules/zarafaUser.inc:978 +#: ../lib/modules/sambaSamAccount.inc:1651 ../lib/modules/posixAccount.inc:1943 +#: ../lib/modules/posixAccount.inc:2011 ../lib/modules/zarafaUser.inc:978 #: ../lib/modules/zarafaUser.inc:1027 ../lib/modules/kopanoContact.inc:424 -#: ../lib/modules/windowsUser.inc:1835 ../lib/modules/windowsUser.inc:1979 -#: ../lib/modules/sambaGroupMapping.inc:485 ../lib/modules/pykotaUser.inc:581 -#: ../lib/modules/pykotaUser.inc:624 ../lib/modules/nisnetgroup.inc:414 -#: ../lib/modules/inetOrgPerson.inc:1697 ../lib/modules/inetOrgPerson.inc:1789 -#: ../lib/modules/inetOrgPerson.inc:1874 ../lib/modules/kopanoUser.inc:899 -#: ../lib/modules/kopanoUser.inc:947 ../lib/modules/qmailGroup.inc:690 +#: ../lib/modules/windowsUser.inc:1881 ../lib/modules/windowsUser.inc:2025 +#: ../lib/modules/windowsUser.inc:2214 ../lib/modules/sambaGroupMapping.inc:485 +#: ../lib/modules/pykotaUser.inc:581 ../lib/modules/pykotaUser.inc:624 +#: ../lib/modules/nisnetgroup.inc:414 ../lib/modules/inetOrgPerson.inc:1709 +#: ../lib/modules/inetOrgPerson.inc:1801 ../lib/modules/inetOrgPerson.inc:1886 +#: ../lib/modules/kopanoUser.inc:899 ../lib/modules/kopanoUser.inc:947 +#: ../lib/modules/windowsLDSGroup.inc:298 ../lib/modules/windowsLDSGroup.inc:484 +#: ../lib/modules/windowsLDSGroup.inc:541 ../lib/modules/qmailGroup.inc:690 #: ../lib/modules/organizationalRole.inc:377 #: ../lib/modules/organizationalRole.inc:439 ../lib/modules/windowsGroup.inc:532 #: ../lib/modules/windowsGroup.inc:707 ../lib/modules/windowsGroup.inc:764 @@ -1841,7 +1865,7 @@ msgstr "Terug naar DNS lijst" msgid "Back to NIS object list" msgstr "Terug naar lijst met NIS objecten" -#: ../lib/baseType.inc:56 +#: ../lib/baseType.inc:55 msgid "Back to account list" msgstr "Terug naar lijst met accounts" @@ -1888,7 +1912,7 @@ msgstr "Terug naar host lijst" msgid "Back to list" msgstr "Terug naar lijst" -#: ../templates/config/index.php:119 ../templates/config/conflogin.php:142 +#: ../templates/config/index.php:123 ../templates/config/conflogin.php:142 #: ../templates/config/mainlogin.php:161 #: ../templates/selfService/selfServiceSP.php:112 #: ../templates/selfService/adminLogin.php:141 @@ -1936,11 +1960,11 @@ msgstr "Terug" msgid "Backends" msgstr "Backends" -#: ../help/help.inc:321 +#: ../help/help.inc:333 msgid "Background color for self service pages." msgstr "Achtergrondkleur voor zelfservicepagina's." -#: ../templates/lists/changePassword.php:283 +#: ../templates/lists/changePassword.php:287 #: ../lib/modules/passwordSelfReset.inc:91 #: ../lib/modules/passwordSelfReset.inc:241 #: ../lib/modules/passwordSelfReset.inc:259 @@ -2030,23 +2054,23 @@ msgstr "Base (uitsluitend basis DN)" #: ../templates/3rdParty/pla/lib/QueryRender.php:106 #: ../templates/3rdParty/pla/lib/QueryRender.php:479 #: ../templates/3rdParty/pla/htdocs/export_form.php:59 ../lib/export.inc:127 -#: ../lib/export.inc:254 ../help/help.inc:367 +#: ../lib/export.inc:254 ../help/help.inc:379 msgid "Base DN" msgstr "Basis DN" #: ../templates/config/confmain.php:496 -#: ../templates/selfService/adminMain.php:479 -#: ../templates/selfService/adminMain.php:515 ../help/help.inc:136 -#: ../help/help.inc:302 +#: ../templates/selfService/adminMain.php:480 +#: ../templates/selfService/adminMain.php:517 ../help/help.inc:136 +#: ../help/help.inc:314 msgid "Base URL" msgstr "Basis URL" #: ../templates/config/confmain.php:499 -#: ../templates/selfService/adminMain.php:518 ../help/help.inc:304 +#: ../templates/selfService/adminMain.php:520 ../help/help.inc:316 msgid "Base URLs" msgstr "Basis-URL's" -#: ../templates/selfService/adminMain.php:595 ../help/help.inc:320 +#: ../templates/selfService/adminMain.php:599 ../help/help.inc:332 msgid "Base color" msgstr "Basis kleur" @@ -2085,7 +2109,7 @@ msgstr "Billing code aantal: %s" #: ../lib/modules/pykotaBillingCode.inc:81 msgid "Billing code description." -msgstr "Billing code omschrijving" +msgstr "Billing code omschrijving." #: ../lib/modules/pykotaBillingCode.inc:77 msgid "" @@ -2124,7 +2148,7 @@ msgstr "Bind wachtwoord" msgid "Bind user" msgstr "Bind gebruiker" -#: ../help/help.inc:134 ../help/help.inc:204 +#: ../help/help.inc:134 ../help/help.inc:210 msgid "Bind user and password" msgstr "Bind gebruiker en wachtwoord" @@ -2159,7 +2183,8 @@ msgstr "" msgid "Block soft quota must be smaller than block hard quota." msgstr "Zachte blok quotum dient kleiner te zijn dat het uiterste blokquotum." -#: ../templates/lists/changePassword.php:326 ../templates/config/confmain.php:346 +#: ../templates/lists/changePassword.php:330 +#: ../templates/config/mainmanage.php:324 ../templates/config/confmain.php:346 msgid "Both" msgstr "Beiden" @@ -2190,33 +2215,39 @@ msgstr "Bulk bewerken van de volgende DNs" msgid "Bulk update the following DNs" msgstr "Bulk-update de volgende DNs" -#: ../lib/modules/windowsUser.inc:318 ../lib/modules/windowsUser.inc:322 -#: ../lib/modules/windowsUser.inc:714 ../lib/modules/windowsUser.inc:794 -#: ../lib/modules/windowsUser.inc:904 ../lib/modules/windowsUser.inc:1039 -#: ../lib/modules/windowsUser.inc:1180 ../lib/modules/windowsUser.inc:2717 -#: ../lib/modules/windowsUser.inc:3617 ../lib/modules/inetOrgPerson.inc:107 -#: ../lib/modules/inetOrgPerson.inc:163 ../lib/modules/inetOrgPerson.inc:299 -#: ../lib/modules/inetOrgPerson.inc:540 ../lib/modules/inetOrgPerson.inc:705 -#: ../lib/modules/inetOrgPerson.inc:709 ../lib/modules/inetOrgPerson.inc:1483 -#: ../lib/modules/inetOrgPerson.inc:1486 ../lib/modules/inetOrgPerson.inc:1966 -#: ../lib/modules/inetOrgPerson.inc:2061 ../lib/modules/inetOrgPerson.inc:2758 -#: ../lib/modules/inetOrgPerson.inc:3878 ../lib/modules/inetOrgPerson.inc:3914 +#: ../lib/modules/windowsLDSUser.inc:247 ../lib/modules/windowsLDSUser.inc:251 +#: ../lib/modules/windowsLDSUser.inc:545 ../lib/modules/windowsLDSUser.inc:617 +#: ../lib/modules/windowsLDSUser.inc:698 ../lib/modules/windowsLDSUser.inc:789 +#: ../lib/modules/windowsLDSUser.inc:923 ../lib/modules/windowsLDSUser.inc:1850 +#: ../lib/modules/windowsLDSUser.inc:2198 ../lib/modules/windowsUser.inc:320 +#: ../lib/modules/windowsUser.inc:324 ../lib/modules/windowsUser.inc:724 +#: ../lib/modules/windowsUser.inc:818 ../lib/modules/windowsUser.inc:940 +#: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1218 +#: ../lib/modules/windowsUser.inc:2883 ../lib/modules/windowsUser.inc:3712 +#: ../lib/modules/inetOrgPerson.inc:107 ../lib/modules/inetOrgPerson.inc:163 +#: ../lib/modules/inetOrgPerson.inc:299 ../lib/modules/inetOrgPerson.inc:540 +#: ../lib/modules/inetOrgPerson.inc:709 ../lib/modules/inetOrgPerson.inc:713 +#: ../lib/modules/inetOrgPerson.inc:1497 ../lib/modules/inetOrgPerson.inc:1500 +#: ../lib/modules/inetOrgPerson.inc:1983 ../lib/modules/inetOrgPerson.inc:2079 +#: ../lib/modules/inetOrgPerson.inc:2826 ../lib/modules/inetOrgPerson.inc:4090 +#: ../lib/modules/inetOrgPerson.inc:4129 msgid "Business category" msgstr "Zakelijke categorie" -#: ../lib/modules/windowsUser.inc:319 ../lib/modules/windowsUser.inc:323 -#: ../lib/modules/inetOrgPerson.inc:706 ../lib/modules/inetOrgPerson.inc:710 -msgid "Business category (e.g. Administration, IT-Services, Manangement, ...)" +#: ../lib/modules/windowsLDSUser.inc:248 ../lib/modules/windowsLDSUser.inc:252 +#: ../lib/modules/windowsUser.inc:321 ../lib/modules/windowsUser.inc:325 +#: ../lib/modules/inetOrgPerson.inc:710 ../lib/modules/inetOrgPerson.inc:714 +msgid "Business category (e.g. Administration, IT-Services, Management, ...)" msgstr "Zakelijke categorie (bv Administratie, Beheer, Management, ...)" -#: ../help/help.inc:185 +#: ../help/help.inc:191 msgid "" "By default LAM will show all accounts that match the selected account modules." msgstr "" "LAM toont standaard alle accounts die bij de geselecteerde account modules " "passen." -#: ../help/help.inc:299 +#: ../help/help.inc:311 msgid "" "By default all modifications are done as the user that authenticated in self " "service. If active then LAM will use the connection user for all LDAP " @@ -2248,7 +2279,7 @@ msgid "Bytes sent" msgstr "Verzonden bytes" #: ../lib/passwordExpirationJob.inc:85 ../lib/passwordExpirationJob.inc:134 -#: ../help/help.inc:400 +#: ../help/help.inc:412 msgid "CC address" msgstr "CC adres" @@ -2287,10 +2318,11 @@ msgstr "Beller ID" #: ../lib/modules/sambaSamAccount.inc:314 ../lib/modules/sambaSamAccount.inc:320 #: ../lib/modules/posixAccount.inc:440 #: ../lib/modules/organizationalRoleUser.inc:61 -#: ../lib/modules/windowsUser.inc:227 ../lib/modules/windowsUser.inc:231 -#: ../lib/modules/sambaGroupMapping.inc:159 ../lib/modules/shadowAccount.inc:179 -#: ../lib/modules/shadowAccount.inc:183 ../lib/modules/shadowAccount.inc:187 -#: ../lib/modules/shadowAccount.inc:191 ../lib/modules/groupOfNamesUser.inc:61 +#: ../lib/modules/windowsUser.inc:229 ../lib/modules/windowsUser.inc:233 +#: ../lib/modules/windowsUser.inc:413 ../lib/modules/sambaGroupMapping.inc:159 +#: ../lib/modules/shadowAccount.inc:179 ../lib/modules/shadowAccount.inc:183 +#: ../lib/modules/shadowAccount.inc:187 ../lib/modules/shadowAccount.inc:191 +#: ../lib/modules/groupOfNamesUser.inc:61 msgid "Can be left empty." msgstr "Kan leeg gelaten worden." @@ -2301,24 +2333,25 @@ msgstr "Kan leeg gelaten worden." msgid "Can call forward" msgstr "Kunnen doorschakelen" -#: ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 ../templates/tools/ou_edit.php:137 +#: ../templates/misc/ajax.php:288 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 ../templates/tools/ou_edit.php:137 #: ../templates/tools/importexport.php:209 -#: ../templates/tools/importexport.php:367 ../templates/config/profmanage.php:230 -#: ../templates/config/profmanage.php:242 ../templates/config/profmanage.php:252 -#: ../templates/config/profmanage.php:269 ../templates/config/profmanage.php:282 -#: ../templates/config/mainmanage.php:495 ../templates/config/confmodules.php:153 -#: ../templates/config/jobList.php:185 ../templates/config/jobs.php:273 -#: ../templates/config/jobs.php:316 ../templates/config/confmain.php:539 +#: ../templates/tools/importexport.php:367 ../templates/tools/webauthn.php:117 +#: ../templates/config/profmanage.php:230 ../templates/config/profmanage.php:242 +#: ../templates/config/profmanage.php:252 ../templates/config/profmanage.php:269 +#: ../templates/config/profmanage.php:282 ../templates/config/mainmanage.php:545 +#: ../templates/config/confmodules.php:153 ../templates/config/jobList.php:185 +#: ../templates/config/jobs.php:273 ../templates/config/jobs.php:316 +#: ../templates/config/confmain.php:539 #: ../templates/config/moduleSettings.php:187 #: ../templates/config/conftypes.php:316 #: ../templates/selfService/profManage.php:196 #: ../templates/selfService/profManage.php:213 #: ../templates/selfService/profManage.php:228 #: ../templates/selfService/selfService2Factor.php:188 -#: ../templates/selfService/adminMain.php:824 +#: ../templates/selfService/adminMain.php:828 #: ../templates/pdfedit/pdfpage.php:450 ../templates/pdfedit/pdfmain.php:249 #: ../templates/pdfedit/pdfmain.php:258 ../templates/pdfedit/pdfmain.php:266 #: ../templates/delete.php:155 ../templates/profedit/profilepage.php:245 @@ -2334,46 +2367,53 @@ msgstr "Kunnen doorschakelen" #: ../lib/types/automountType.inc:213 ../lib/types/user.inc:357 #: ../lib/types/bind.inc:157 ../lib/html.inc:610 #: ../lib/modules/locking389ds.inc:185 ../lib/modules/pykotaPrinter.inc:422 -#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/nisMailAliasUser.inc:389 -#: ../lib/modules/autoDelete.inc:211 ../lib/modules/qmailUser.inc:724 -#: ../lib/modules/zarafaContact.inc:423 ../lib/modules/windowsHost.inc:229 -#: ../lib/modules/zarafaGroup.inc:437 ../lib/modules/device.inc:245 -#: ../lib/modules/kopanoGroup.inc:389 ../lib/modules/sambaSamAccount.inc:1438 +#: ../lib/modules/mitKerberos.inc:717 ../lib/modules/windowsLDSUser.inc:1425 +#: ../lib/modules/nisMailAliasUser.inc:389 ../lib/modules/autoDelete.inc:211 +#: ../lib/modules/qmailUser.inc:724 ../lib/modules/zarafaContact.inc:423 +#: ../lib/modules/windowsHost.inc:270 ../lib/modules/zarafaGroup.inc:437 +#: ../lib/modules/device.inc:245 ../lib/modules/kopanoGroup.inc:389 +#: ../lib/modules/sambaSamAccount.inc:1438 #: ../lib/modules/sambaSamAccount.inc:1499 #: ../lib/modules/sambaSamAccount.inc:1585 ../lib/modules/zarafaUser.inc:921 -#: ../lib/modules/kopanoContact.inc:375 ../lib/modules/windowsUser.inc:1692 -#: ../lib/modules/windowsUser.inc:2107 ../lib/modules/sambaGroupMapping.inc:466 +#: ../lib/modules/kopanoContact.inc:375 ../lib/modules/windowsUser.inc:1738 +#: ../lib/modules/windowsUser.inc:2153 ../lib/modules/sambaGroupMapping.inc:466 #: ../lib/modules/shadowAccount.inc:509 ../lib/modules/shadowAccount.inc:575 -#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1755 +#: ../lib/modules/nisnetgroup.inc:493 ../lib/modules/inetOrgPerson.inc:1767 #: ../lib/modules/freeRadius.inc:568 ../lib/modules/kopanoUser.inc:844 -#: ../lib/modules/customFields.inc:1244 ../lib/modules/aliasEntry.inc:157 -#: ../lib/modules/aliasEntry.inc:180 ../lib/modules/qmailGroup.inc:643 -#: ../lib/modules/organizationalRole.inc:305 ../lib/modules/fixed_ip.inc:609 -#: ../lib/modules/heimdalKerberos.inc:615 ../lib/modules/windowsGroup.inc:591 -#: ../lib/modules/windowsGroup.inc:657 ../lib/modules/groupOfNames.inc:355 -#: ../lib/modules/groupOfNames.inc:504 ../lib/modules/nisMailAlias.inc:389 -#: ../lib/lists.inc:808 ../lib/lists.inc:891 ../lib/modules.inc:1312 +#: ../lib/modules/windowsLDSGroup.inc:357 ../lib/modules/windowsLDSGroup.inc:424 +#: ../lib/modules/webauthn.inc:175 ../lib/modules/customFields.inc:1244 +#: ../lib/modules/aliasEntry.inc:157 ../lib/modules/aliasEntry.inc:180 +#: ../lib/modules/qmailGroup.inc:643 ../lib/modules/organizationalRole.inc:305 +#: ../lib/modules/fixed_ip.inc:607 ../lib/modules/heimdalKerberos.inc:615 +#: ../lib/modules/windowsGroup.inc:591 ../lib/modules/windowsGroup.inc:657 +#: ../lib/modules/groupOfNames.inc:355 ../lib/modules/groupOfNames.inc:504 +#: ../lib/modules/nisMailAlias.inc:389 ../lib/lists.inc:807 ../lib/lists.inc:890 +#: ../lib/modules.inc:1312 msgid "Cancel" msgstr "Afbreken" -#: ../templates/login.php:513 ../templates/login.php:583 +#: ../templates/login.php:523 ../templates/login.php:593 #: ../templates/config/jobs.php:429 -#: ../templates/selfService/selfServiceLogin.php:196 -#: ../templates/selfService/selfServiceLogin.php:202 +#: ../templates/selfService/selfServiceLogin.php:197 +#: ../templates/selfService/selfServiceLogin.php:203 #: ../templates/selfService/selfServiceMain.php:171 -#: ../lib/modules/selfRegistration.inc:824 +#: ../lib/modules/selfRegistration.inc:838 msgid "Cannot connect to specified LDAP server. Please try again." msgstr "Kan de opgegeven LDAP server niet bereiken. S.v.p. opnieuw proberen." -#: ../templates/login.php:281 ../lib/config.inc:2784 +#: ../templates/login.php:281 ../lib/config.inc:2837 msgid "Cannot open config file!" msgstr "Kan configuratiefile niet openen!" +#: ../lib/modules/imapAccess.inc:166 +msgid "Cannot read quota." +msgstr "Kan quota niet lezen." + #: ../lib/modules/imapAccess.inc:163 msgid "Cannot update quota." msgstr "Quota kan niet bijgewerkt worden." -#: ../lib/config.inc:2796 ../lib/config.inc:2804 +#: ../lib/config.inc:2849 ../lib/config.inc:2857 msgid "" "Cannot write certificate file. Please check the permissions of config/" "serverCerts.pem." @@ -2391,10 +2431,10 @@ msgstr "" msgid "Capacity" msgstr "Capaciteit" -#: ../templates/selfService/selfServiceLogin.php:116 -#: ../templates/selfService/selfServiceLogin.php:303 -#: ../templates/selfService/adminMain.php:540 -#: ../templates/selfService/adminMain.php:545 +#: ../templates/selfService/selfServiceLogin.php:117 +#: ../templates/selfService/selfServiceLogin.php:304 +#: ../templates/selfService/adminMain.php:544 +#: ../templates/selfService/adminMain.php:549 #: ../lib/modules/selfRegistration.inc:126 #: ../lib/modules/selfRegistration.inc:227 #: ../lib/modules/selfRegistration.inc:455 @@ -2407,43 +2447,48 @@ msgid "Captcha" msgstr "Captcha" #: ../templates/config/confmain.php:512 -#: ../templates/selfService/adminMain.php:529 ../help/help.inc:310 +#: ../templates/selfService/adminMain.php:533 ../help/help.inc:322 msgid "Caption" msgstr "Caption" -#: ../templates/selfService/adminMain.php:561 +#: ../templates/selfService/adminMain.php:565 msgid "Captions and labels" msgstr "Bijschriften en labels" -#: ../lib/modules/windowsUser.inc:306 ../lib/modules/windowsUser.inc:690 -#: ../lib/modules/windowsUser.inc:895 ../lib/modules/windowsUser.inc:1171 -#: ../lib/modules/windowsUser.inc:2714 ../lib/modules/windowsUser.inc:3614 +#: ../lib/modules/windowsLDSUser.inc:235 ../lib/modules/windowsLDSUser.inc:521 +#: ../lib/modules/windowsLDSUser.inc:689 ../lib/modules/windowsLDSUser.inc:914 +#: ../lib/modules/windowsLDSUser.inc:1847 ../lib/modules/windowsLDSUser.inc:2195 +#: ../lib/modules/windowsUser.inc:308 ../lib/modules/windowsUser.inc:700 +#: ../lib/modules/windowsUser.inc:931 ../lib/modules/windowsUser.inc:1209 +#: ../lib/modules/windowsUser.inc:2880 ../lib/modules/windowsUser.inc:3709 #: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:461 -#: ../lib/modules/inetOrgPerson.inc:534 ../lib/modules/inetOrgPerson.inc:729 -#: ../lib/modules/inetOrgPerson.inc:1459 ../lib/modules/inetOrgPerson.inc:1462 -#: ../lib/modules/inetOrgPerson.inc:1968 ../lib/modules/inetOrgPerson.inc:2736 -#: ../lib/modules/inetOrgPerson.inc:3876 ../lib/modules/inetOrgPerson.inc:3913 +#: ../lib/modules/inetOrgPerson.inc:534 ../lib/modules/inetOrgPerson.inc:733 +#: ../lib/modules/inetOrgPerson.inc:1473 ../lib/modules/inetOrgPerson.inc:1476 +#: ../lib/modules/inetOrgPerson.inc:1985 ../lib/modules/inetOrgPerson.inc:2800 +#: ../lib/modules/inetOrgPerson.inc:4088 ../lib/modules/inetOrgPerson.inc:4128 msgid "Car license" msgstr "Rijbewijs" -#: ../templates/selfService/adminMain.php:613 ../lib/modules/locking389ds.inc:84 +#: ../templates/selfService/adminMain.php:617 ../lib/modules/locking389ds.inc:84 #: ../lib/modules/locking389ds.inc:179 ../lib/modules/mitKerberos.inc:369 #: ../lib/modules/mitKerberos.inc:381 ../lib/modules/mitKerberos.inc:711 +#: ../lib/modules/windowsLDSUser.inc:946 ../lib/modules/windowsLDSUser.inc:1421 #: ../lib/modules/autoDelete.inc:129 ../lib/modules/autoDelete.inc:210 #: ../lib/modules/qmailUser.inc:516 ../lib/modules/qmailUser.inc:718 -#: ../lib/modules/zarafaContact.inc:243 ../lib/modules/windowsHost.inc:157 -#: ../lib/modules/windowsHost.inc:228 ../lib/modules/zarafaGroup.inc:242 +#: ../lib/modules/zarafaContact.inc:243 ../lib/modules/windowsHost.inc:198 +#: ../lib/modules/windowsHost.inc:269 ../lib/modules/zarafaGroup.inc:242 #: ../lib/modules/device.inc:167 ../lib/modules/kopanoGroup.inc:221 #: ../lib/modules/sambaSamAccount.inc:1173 #: ../lib/modules/sambaSamAccount.inc:1493 ../lib/modules/zarafaUser.inc:491 #: ../lib/modules/zarafaUser.inc:587 ../lib/modules/kopanoContact.inc:227 -#: ../lib/modules/windowsUser.inc:1203 ../lib/modules/windowsUser.inc:1231 -#: ../lib/modules/windowsUser.inc:1686 ../lib/modules/windowsUser.inc:2103 +#: ../lib/modules/windowsUser.inc:1241 ../lib/modules/windowsUser.inc:1269 +#: ../lib/modules/windowsUser.inc:1732 ../lib/modules/windowsUser.inc:2149 #: ../lib/modules/shadowAccount.inc:361 ../lib/modules/shadowAccount.inc:374 #: ../lib/modules/shadowAccount.inc:503 ../lib/modules/shadowAccount.inc:569 -#: ../lib/modules/inetOrgPerson.inc:1538 ../lib/modules/freeRadius.inc:371 +#: ../lib/modules/inetOrgPerson.inc:1552 ../lib/modules/freeRadius.inc:371 #: ../lib/modules/freeRadius.inc:562 ../lib/modules/kopanoUser.inc:474 #: ../lib/modules/kopanoUser.inc:551 ../lib/modules/asteriskExtension.inc:248 +#: ../lib/modules/windowsLDSGroup.inc:181 ../lib/modules/windowsLDSGroup.inc:355 #: ../lib/modules/aliasEntry.inc:101 ../lib/modules/qmailGroup.inc:451 #: ../lib/modules/organizationalRole.inc:176 #: ../lib/modules/passwordSelfReset.inc:360 @@ -2454,36 +2499,36 @@ msgstr "Rijbewijs" msgid "Change" msgstr "Verander" -#: ../templates/lists/changePassword.php:223 +#: ../templates/lists/changePassword.php:227 msgid "Change Asterisk password" msgstr "Verander Asterisk wachtwoord" -#: ../templates/lists/changePassword.php:226 +#: ../templates/lists/changePassword.php:230 msgid "Change Asterisk voicemail password" msgstr "Wijzig Asterisk wachtwoord voor voicemail" -#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:450 +#: ../lib/modules/posixGroup.inc:232 ../lib/modules/posixGroup.inc:451 msgid "Change GID number of users and hosts" msgstr "Verander GID nummer van gebruikers en hosts" -#: ../templates/lists/changePassword.php:229 -#: ../templates/lists/changePassword.php:232 +#: ../templates/lists/changePassword.php:233 +#: ../templates/lists/changePassword.php:236 msgid "Change Kerberos password" msgstr "Verander Kerberos wachtwoord" -#: ../templates/lists/changePassword.php:216 +#: ../templates/lists/changePassword.php:220 msgid "Change Samba LM password" msgstr "Verander Samba LM wachtwoord" -#: ../templates/lists/changePassword.php:214 +#: ../templates/lists/changePassword.php:218 msgid "Change Samba NT password" msgstr "Verander Samba NT wachtwoord" -#: ../templates/lists/changePassword.php:208 +#: ../templates/lists/changePassword.php:212 msgid "Change Unix password" msgstr "Verander Unix wachtwoord" -#: ../templates/lists/changePassword.php:235 +#: ../templates/lists/changePassword.php:239 msgid "Change Windows password" msgstr "Verander Windows wachtwoord" @@ -2496,30 +2541,30 @@ msgstr "Wijzig account status" msgid "Change default profile" msgstr "Verander default profiel" -#: ../templates/selfService/adminMain.php:668 +#: ../templates/selfService/adminMain.php:672 msgid "Change field label." msgstr "Wijzig het veld label." -#: ../lib/lists.inc:891 +#: ../lib/lists.inc:890 msgid "Change list settings" msgstr "Verander lijst instellingen" -#: ../templates/config/mainmanage.php:480 ../help/help.inc:148 +#: ../templates/config/mainmanage.php:530 ../help/help.inc:148 msgid "Change master password" msgstr "Verander master wachtwoord" -#: ../templates/lists/changePassword.php:211 -#: ../templates/lists/changePassword.php:256 -#: ../templates/lists/changePassword.php:337 -#: ../templates/lists/changePassword.php:339 -#: ../templates/lists/changePassword.php:374 -#: ../templates/lists/changePassword.php:376 ../lib/types/user.inc:810 +#: ../templates/lists/changePassword.php:215 +#: ../templates/lists/changePassword.php:260 +#: ../templates/lists/changePassword.php:341 +#: ../templates/lists/changePassword.php:343 +#: ../templates/lists/changePassword.php:378 +#: ../templates/lists/changePassword.php:380 ../lib/types/user.inc:810 #: ../help/help.inc:109 msgid "Change password" msgstr "Verander wachtwoord" -#: ../templates/lists/changePassword.php:263 -#: ../templates/lists/changePassword.php:264 +#: ../templates/lists/changePassword.php:267 +#: ../templates/lists/changePassword.php:268 msgid "Change password now?" msgstr "Verander wachtwoord nu?" @@ -2527,11 +2572,11 @@ msgstr "Verander wachtwoord nu?" msgid "Change passwords" msgstr "Wijzig wachtwoorden" -#: ../lib/lists.inc:892 +#: ../lib/lists.inc:891 msgid "Change settings" msgstr "Instellingen wijzigen" -#: ../lib/modules/posixAccount.inc:1190 +#: ../lib/modules/posixAccount.inc:1189 msgid "Changed value because only ASCII characters are allowed." msgstr "Waarde is veranderd omdat alleen ASCII tekens toegestaan zijn." @@ -2541,9 +2586,9 @@ msgstr "Waarde is veranderd omdat alleen ASCII tekens toegestaan zijn." msgid "Charlie" msgstr "Charlie" -#: ../lib/modules/posixAccount.inc:1671 +#: ../lib/modules/posixAccount.inc:1726 msgid "Check home directories" -msgstr "Controleer home directories " +msgstr "Controleer home directories" #: ../templates/tests/index.php:58 ../lib/tools/tests.inc:113 msgid "Check if quotas and homedirectories can be managed." @@ -2587,7 +2632,7 @@ msgstr "Versimpeld Chinees" #: ../lib/pdfstruct.inc:738 msgid "Chinese Traditional" -msgstr "Traditioneel Chinese " +msgstr "Traditioneel Chinese" #: ../templates/3rdParty/pla/htdocs/entry_chooser.php:23 ../lib/html.inc:608 #: ../lib/html.inc:609 @@ -2611,12 +2656,12 @@ msgstr "" msgid "Classes" msgstr "Klassen" -#: ../lib/modules/qmailUser.inc:1091 ../lib/modules/windowsUser.inc:4084 -#: ../lib/modules/shadowAccount.inc:1072 ../lib/modules/freeRadius.inc:816 +#: ../lib/modules/qmailUser.inc:1091 ../lib/modules/windowsUser.inc:4179 +#: ../lib/modules/shadowAccount.inc:1071 ../lib/modules/freeRadius.inc:816 msgid "Cleanup expired user accounts" msgstr "Opruimen verlopen gebruikersaccounts" -#: ../lib/lists.inc:462 +#: ../lib/lists.inc:461 msgid "Clear filter" msgstr "Wis filter" @@ -2634,7 +2679,7 @@ msgstr "Klik hier om dit uw standaardprofiel te maken." #: ../templates/3rdParty/pla/lib/TemplateRender.php:2118 msgid "Click to popup a dialog to select a date graphically" -msgstr "Klik om een popup dialoog te tonen om grafisch een ​​datum te selecteren " +msgstr "Klik om een popup dialoog te tonen om grafisch een ​​datum te selecteren" #: ../templates/3rdParty/pla/lib/functions.php:2205 msgid "Click to popup a dialog to select an entry (DN) graphically" @@ -2642,7 +2687,7 @@ msgstr "" "Klik om een popup dialoog te tonen om grafisch een item (DN) te selecteren" #: ../templates/config/confmain.php:502 -#: ../templates/selfService/adminMain.php:521 ../help/help.inc:322 +#: ../templates/selfService/adminMain.php:523 ../help/help.inc:334 msgid "Client id" msgstr "Klant identificatie" @@ -2677,6 +2722,14 @@ msgstr "" msgid "Comma separated list of services (e.g. sshd, imap, ftp)." msgstr "Komma gescheiden lijst van diensten (bv sshd, imap ftp)." +#: ../lib/modules/windowsUser.inc:413 +msgid "" +"Comma separated list of workstations the user is allowed to login. Empty means " +"every workstation." +msgstr "" +"Door komma's gescheiden lijst met werkstations waar de gebruiker zich op mag " +"aanmelden. Leeg betekent elke werkplek." + #: ../lib/types/sudo.inc:83 ../lib/modules/customScripts.inc:155 msgid "Command" msgstr "Opdracht" @@ -2705,30 +2758,35 @@ msgstr "Bevestig" msgid "Common examples are \"@givenname@%sn%\" or \"%givenname%.%sn%\"." msgstr "Voorbeelden zijn \"@givenname@%sn%\" of \"%givenname%.%sn%\"." -#: ../templates/config/mainmanage.php:370 ../lib/types/host.inc:96 +#: ../templates/config/mainmanage.php:401 ../lib/types/host.inc:96 #: ../lib/types/user.inc:95 ../lib/types/customType.inc:71 -#: ../lib/modules/pykotaGroup.inc:107 ../lib/modules/pykotaGroup.inc:385 -#: ../lib/modules/pykotaGroup.inc:475 ../lib/modules/pykotaGroup.inc:487 -#: ../lib/modules/posixAccount.inc:119 ../lib/modules/posixAccount.inc:175 -#: ../lib/modules/posixAccount.inc:443 ../lib/modules/posixAccount.inc:469 -#: ../lib/modules/posixAccount.inc:1613 ../lib/modules/posixAccount.inc:2077 -#: ../lib/modules/posixAccount.inc:2105 ../lib/modules/posixAccount.inc:2415 -#: ../lib/modules/posixAccount.inc:3184 ../lib/modules/windowsUser.inc:125 -#: ../lib/modules/windowsUser.inc:436 ../lib/modules/windowsUser.inc:761 -#: ../lib/modules/windowsUser.inc:840 ../lib/modules/windowsUser.inc:986 -#: ../lib/modules/windowsUser.inc:1126 ../lib/modules/windowsUser.inc:2685 +#: ../lib/modules/windowsLDSUser.inc:113 ../lib/modules/windowsLDSUser.inc:361 +#: ../lib/modules/windowsLDSUser.inc:592 ../lib/modules/windowsLDSUser.inc:653 +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:870 +#: ../lib/modules/windowsLDSUser.inc:1822 ../lib/modules/pykotaGroup.inc:107 +#: ../lib/modules/pykotaGroup.inc:385 ../lib/modules/pykotaGroup.inc:475 +#: ../lib/modules/pykotaGroup.inc:487 ../lib/modules/posixAccount.inc:119 +#: ../lib/modules/posixAccount.inc:175 ../lib/modules/posixAccount.inc:443 +#: ../lib/modules/posixAccount.inc:469 ../lib/modules/posixAccount.inc:1659 +#: ../lib/modules/posixAccount.inc:2051 ../lib/modules/posixAccount.inc:2139 +#: ../lib/modules/posixAccount.inc:2169 ../lib/modules/posixAccount.inc:2479 +#: ../lib/modules/posixAccount.inc:3248 ../lib/modules/windowsUser.inc:127 +#: ../lib/modules/windowsUser.inc:446 ../lib/modules/windowsUser.inc:779 +#: ../lib/modules/windowsUser.inc:873 ../lib/modules/windowsUser.inc:1022 +#: ../lib/modules/windowsUser.inc:1164 ../lib/modules/windowsUser.inc:2851 #: ../lib/modules/pykotaUser.inc:111 ../lib/modules/pykotaUser.inc:202 #: ../lib/modules/pykotaUser.inc:245 ../lib/modules/pykotaUser.inc:357 #: ../lib/modules/pykotaUser.inc:886 ../lib/modules/inetOrgPerson.inc:98 -#: ../lib/modules/inetOrgPerson.inc:681 ../lib/modules/inetOrgPerson.inc:1218 -#: ../lib/modules/inetOrgPerson.inc:1221 ../lib/modules/inetOrgPerson.inc:1934 -#: ../lib/modules/inetOrgPerson.inc:1963 ../lib/modules/inetOrgPerson.inc:1998 -#: ../lib/modules/inetOrgPerson.inc:2174 ../lib/modules/inetOrgPerson.inc:3922 +#: ../lib/modules/inetOrgPerson.inc:681 ../lib/modules/inetOrgPerson.inc:1228 +#: ../lib/modules/inetOrgPerson.inc:1231 ../lib/modules/inetOrgPerson.inc:1946 +#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:2016 +#: ../lib/modules/inetOrgPerson.inc:2192 ../lib/modules/inetOrgPerson.inc:4137 #: ../lib/modules/asteriskExtension.inc:119 msgid "Common name" msgstr "Algemene naam" -#: ../lib/modules/windowsUser.inc:988 ../lib/modules/windowsUser.inc:989 +#: ../lib/modules/windowsLDSUser.inc:755 ../lib/modules/windowsLDSUser.inc:756 +#: ../lib/modules/windowsUser.inc:1024 ../lib/modules/windowsUser.inc:1025 msgid "Common name already exists." msgstr "Algemene naam bestaat al." @@ -2736,10 +2794,14 @@ msgstr "Algemene naam bestaat al." msgid "Common name of the Asterisk extension." msgstr "Gebruikelijke naam van de Asterisk extensie." -#: ../lib/types/user.inc:96 ../lib/modules/windowsUser.inc:358 -#: ../lib/modules/windowsUser.inc:649 ../lib/modules/windowsUser.inc:773 -#: ../lib/modules/windowsUser.inc:922 ../lib/modules/windowsUser.inc:1183 -#: ../lib/modules/windowsUser.inc:2703 ../lib/modules/windowsUser.inc:3618 +#: ../lib/types/user.inc:96 ../lib/modules/windowsLDSUser.inc:287 +#: ../lib/modules/windowsLDSUser.inc:506 ../lib/modules/windowsLDSUser.inc:596 +#: ../lib/modules/windowsLDSUser.inc:716 ../lib/modules/windowsLDSUser.inc:926 +#: ../lib/modules/windowsLDSUser.inc:1838 ../lib/modules/windowsLDSUser.inc:2199 +#: ../lib/modules/windowsUser.inc:360 ../lib/modules/windowsUser.inc:659 +#: ../lib/modules/windowsUser.inc:797 ../lib/modules/windowsUser.inc:958 +#: ../lib/modules/windowsUser.inc:1221 ../lib/modules/windowsUser.inc:2869 +#: ../lib/modules/windowsUser.inc:3713 msgid "Company" msgstr "Bedrijf" @@ -2801,6 +2863,7 @@ msgstr "Configuratie type" msgid "Confirm sender" msgstr "Bevestig afzender" +#: ../lib/modules/selfRegistration.inc:125 #: ../lib/modules/selfRegistration.inc:215 msgid "Confirmation mail settings" msgstr "Bevestigings e-mail instellingen" @@ -2860,7 +2923,8 @@ msgstr "Constant" msgid "Contact address for this zone (e.g. \"root.example.com.\")." msgstr "Contactadres voor deze zone (bijv. \"root.example.com.\")." -#: ../lib/modules/windowsUser.inc:1139 ../lib/modules/inetOrgPerson.inc:1382 +#: ../lib/modules/windowsLDSUser.inc:883 ../lib/modules/windowsUser.inc:1177 +#: ../lib/modules/inetOrgPerson.inc:1396 msgid "Contact data" msgstr "Contactgegevens" @@ -2883,14 +2947,14 @@ msgstr "Kopieer" #: ../templates/3rdParty/pla/htdocs/copy_form.php:32 #, php-format msgid "Copy %s to a new object." -msgstr "Kopieer %s naar een nieuw object" +msgstr "Kopieer %s naar een nieuw object." #: ../templates/3rdParty/pla/lib/TemplateRender.php:1015 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1016 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1019 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1020 msgid "Copy or move this entry" -msgstr "Kopieer of verplaats dit item " +msgstr "Kopieer of verplaats dit item" #: ../templates/3rdParty/pla/htdocs/copy.php:127 #, php-format @@ -2943,7 +3007,7 @@ msgstr "Kon object niet aanpassen" #: ../templates/3rdParty/pla/lib/ds_ldap_pla.php:492 msgid "Could not perform ldap_modify operation." -msgstr "ldap_modificatie kan niet worden uitgevoerd." +msgstr "Ldap_modificatie kan niet worden uitgevoerd." #: ../templates/config/profmanage.php:102 #: ../templates/selfService/profManage.php:80 @@ -2969,16 +3033,16 @@ msgstr "Courier" #: ../templates/3rdParty/pla/lib/TemplateRender.php:1077 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1081 #: ../templates/initsuff.php:201 ../lib/modules/nisMailAliasUser.inc:364 -#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1937 +#: ../lib/modules/sambaSamAccount.inc:1632 ../lib/modules/posixAccount.inc:1992 msgid "Create" msgstr "Aanmaken" -#: ../lib/lists.inc:571 ../lib/lists.inc:776 ../lib/modules.inc:1430 -#: ../help/help.inc:254 +#: ../lib/lists.inc:570 ../lib/lists.inc:775 ../lib/modules.inc:1430 +#: ../help/help.inc:266 msgid "Create PDF file" msgstr "PDF bestand maken" -#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:220 +#: ../templates/upload/masscreate.php:294 ../lib/upload.inc:219 msgid "Create PDF files" msgstr "PDF bestanden maken" @@ -3008,7 +3072,7 @@ msgstr "Maak nog een DNS entry" msgid "Create another NIS object" msgstr "Maak nog een NIS object" -#: ../lib/baseType.inc:55 +#: ../lib/baseType.inc:54 msgid "Create another account" msgstr "Ander account maken" @@ -3083,17 +3147,21 @@ msgstr "Maak nog een gebruiker" msgid "Create another view" msgstr "Creëer nog een view" -#: ../lib/lists.inc:787 +#: ../lib/lists.inc:786 msgid "Create for" msgstr "Creëren voor" -#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1656 -#: ../lib/modules/posixAccount.inc:2000 +#: ../lib/modules/posixAccount.inc:1692 ../lib/modules/posixAccount.inc:2281 +msgid "Create group with same name" +msgstr "Maak een groep met dezelfde naam" + +#: ../lib/modules/posixAccount.inc:244 ../lib/modules/posixAccount.inc:1711 +#: ../lib/modules/posixAccount.inc:2059 msgid "Create home directory" msgstr "Home directory maken" #: ../lib/modules/imapAccess.inc:122 ../lib/modules/imapAccess.inc:268 -#: ../lib/modules/imapAccess.inc:758 +#: ../lib/modules/imapAccess.inc:785 msgid "Create mailbox" msgstr "Maak mailbox" @@ -3128,10 +3196,14 @@ msgstr "Gemaakt door" msgid "Created new automount map." msgstr "Nieuwe automount map aangemaakt." +#: ../lib/modules/posixAccount.inc:1226 +msgid "Created new group." +msgstr "Nieuwe groep gemaakt." + #: ../templates/config/profmanage.php:77 #: ../templates/selfService/profManage.php:56 msgid "Created new profile." -msgstr "Nieuw profiel maken" +msgstr "Nieuw profiel maken." #: ../lib/types/bind.inc:224 msgid "Created new zone." @@ -3146,7 +3218,7 @@ msgstr "" "een container voor objectklassen en attributen." #: ../lib/tools/fileUpload.inc:54 -msgid "Creates accounts by uploading a CSV formated file." +msgid "Creates accounts by uploading a CSV formatted file." msgstr "Accounts maken middels het uploaden van bestand in CSV formaat." #: ../templates/3rdParty/pla/htdocs/create.php:77 @@ -3158,11 +3230,12 @@ msgstr "Creatie succesvol. DN %s is gecreëerd." msgid "Creation time" msgstr "Creatie tijd" -#: ../templates/config/jobs.php:224 ../help/help.inc:208 +#: ../templates/config/jobs.php:224 ../help/help.inc:214 msgid "Cron configuration" msgstr "Cron configuratie" -#: ../lib/modules/windowsUser.inc:1982 ../lib/modules/inetOrgPerson.inc:1700 +#: ../lib/modules/windowsLDSUser.inc:1300 ../lib/modules/windowsUser.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:1712 msgid "Crop image" msgstr "Image bijsnijden" @@ -3179,7 +3252,7 @@ msgstr "Huidige verbindingen" msgid "Current list of %s values for attribute %s:" msgstr "Huidige lijst van %s waarden voor attribuut %s:" -#: ../lib/modules/imapAccess.inc:317 +#: ../lib/modules/imapAccess.inc:320 msgid "Current usage (kB)" msgstr "Huidig gebruik(kB)" @@ -3196,7 +3269,7 @@ msgid "Custom icon" msgstr "Custom icon" #: ../templates/config/conftypes.php:238 ../lib/modules/customFields.inc:181 -#: ../help/help.inc:192 +#: ../help/help.inc:198 msgid "Custom label" msgstr "Custom label" @@ -3223,8 +3296,8 @@ msgstr "Knip" msgid "DDNS" msgstr "DDNS" -#: ../lib/modules/ddns.inc:375 -msgid "DDNS ist not activated. You can activate it in the DHCP settings (DDNS)." +#: ../lib/modules/ddns.inc:371 +msgid "DDNS is not activated. You can activate it in the DHCP settings (DDNS)." msgstr "" "DDNS is niet geactiveerd. Het kan geactiveerd worden in de DHCP instellingen " "(DDNS)" @@ -3240,7 +3313,7 @@ msgstr "DHCP-administratie" #: ../lib/types/dhcp.inc:173 #, php-format msgid "DHCP count: %s" -msgstr "DHCP aantal: %s:" +msgstr "DHCP aantal: %s" #: ../lib/types/dhcp.inc:176 ../lib/modules/dhcp_settings.inc:125 msgid "DHCP settings" @@ -3255,7 +3328,7 @@ msgstr "DHCP instellingen" #: ../templates/3rdParty/pla/htdocs/delete_form.php:35 #: ../templates/3rdParty/pla/htdocs/delete_form.php:112 #: ../templates/3rdParty/pla/htdocs/mass_delete.php:57 ../lib/modules.inc:443 -#: ../lib/modules.inc:2105 +#: ../lib/modules.inc:2103 msgid "DN" msgstr "DN" @@ -3269,8 +3342,8 @@ msgstr "DN bestaat niet" msgid "DN settings" msgstr "DN instellingen" -#: ../templates/upload/masscreate.php:334 ../help/help.inc:242 -#: ../help/help.inc:250 +#: ../templates/upload/masscreate.php:334 ../help/help.inc:254 +#: ../help/help.inc:262 msgid "DN suffix" msgstr "DN achtervoegsel" @@ -3290,8 +3363,8 @@ msgid "DNAME records" msgstr "DNAME records" #: ../lib/modules/dhcp_settings.inc:218 ../lib/modules/dhcp_settings.inc:234 -#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:598 -#: ../lib/modules/dhcp_settings.inc:711 +#: ../lib/modules/dhcp_settings.inc:277 ../lib/modules/dhcp_settings.inc:590 +#: ../lib/modules/dhcp_settings.inc:703 msgid "DNS" msgstr "DNS" @@ -3346,11 +3419,11 @@ msgstr "Database verbinding ok." msgid "Database count: %s" msgstr "Database aantal:%s" -#: ../templates/config/jobs.php:198 ../help/help.inc:210 +#: ../templates/config/jobs.php:198 ../help/help.inc:216 msgid "Database host" msgstr "Database host" -#: ../templates/config/jobs.php:203 ../help/help.inc:216 +#: ../templates/config/jobs.php:203 ../help/help.inc:222 msgid "Database name" msgstr "Database naam" @@ -3358,11 +3431,11 @@ msgstr "Database naam" msgid "Database password" msgstr "Database wachtwoord" -#: ../templates/config/jobs.php:201 ../help/help.inc:212 +#: ../templates/config/jobs.php:201 ../help/help.inc:218 msgid "Database port" msgstr "Database poort" -#: ../templates/config/jobs.php:158 ../help/help.inc:206 +#: ../templates/config/jobs.php:158 ../help/help.inc:212 msgid "Database type" msgstr "Database type" @@ -3370,7 +3443,7 @@ msgstr "Database type" msgid "Database user" msgstr "Database user" -#: ../help/help.inc:214 +#: ../help/help.inc:220 msgid "Database user and password" msgstr "Database gebruiker en wachtwoord" @@ -3402,15 +3475,15 @@ msgstr "" msgid "Days to delete" msgstr "Dagen tot verwijderen" -#: ../templates/lists/changePassword.php:452 ../lib/types/user.inc:469 +#: ../templates/lists/changePassword.php:456 ../lib/types/user.inc:469 msgid "Deactivate" msgstr "Deactiveer" #: ../lib/types/user.inc:338 ../lib/types/user.inc:1125 msgid "Deactivated" -msgstr "gedeactiveerd" +msgstr "Gedeactiveerd" -#: ../templates/config/mainmanage.php:415 +#: ../templates/config/mainmanage.php:446 msgid "Debug" msgstr "Debug" @@ -3421,26 +3494,22 @@ msgstr "Debug" msgid "Default" msgstr "Default waarde" -#: ../templates/config/mainmanage.php:470 -msgid "Default (\\r\\n)" -msgstr "Default (\\r\\n)" - #: ../lib/modules/dhcp_settings.inc:163 ../lib/modules/dhcp_settings.inc:219 #: ../lib/modules/dhcp_settings.inc:236 ../lib/modules/dhcp_settings.inc:289 -#: ../lib/modules/dhcp_settings.inc:608 ../lib/modules/dhcp_settings.inc:713 +#: ../lib/modules/dhcp_settings.inc:600 ../lib/modules/dhcp_settings.inc:705 msgid "Default gateway" msgstr "Default gateway" #: ../templates/config/confmain.php:257 -#: ../templates/selfService/adminMain.php:460 ../help/help.inc:103 +#: ../templates/selfService/adminMain.php:461 ../help/help.inc:103 msgid "Default language" msgstr "Default taal" -#: ../help/help.inc:223 +#: ../help/help.inc:229 msgid "Default method to output a random password." msgstr "Standaard methode voor het creëren van een willekeurig wachtwoord." -#: ../templates/config/confmain.php:348 ../help/help.inc:222 +#: ../templates/config/confmain.php:348 ../help/help.inc:228 msgid "Default password output" msgstr "Standaard wachtwoord uitgang" @@ -3461,7 +3530,7 @@ msgstr "Default gebruiker" msgid "Default value" msgstr "Default waarde" -#: ../help/help.inc:167 +#: ../help/help.inc:165 msgid "" "Defines if the PHP error reporting setting from php.ini is used or the setting " "preferred by LAM (\"E_ALL & ~E_NOTICE\"). If you do not develop LAM modules " @@ -3484,11 +3553,11 @@ msgid "" msgstr "Definieert de mailbox voor Message Waiting indicatie (MWI)." #: ../lib/passwordExpirationJob.inc:478 ../lib/passwordExpirationJob.inc:525 -#: ../help/help.inc:408 +#: ../help/help.inc:420 msgid "Delay" msgstr "Vertraging" -#: ../help/help.inc:409 +#: ../help/help.inc:421 msgid "Delay this action by a number of days after account expiry." msgstr "" "Vertraag deze actie met een aantal dagen na het verstrijken van het account." @@ -3497,7 +3566,7 @@ msgstr "" #: ../lib/modules/kolabUser.inc:119 ../lib/modules/kolabUser.inc:123 #: ../lib/modules/kolabUser.inc:179 ../lib/modules/kolabUser.inc:201 #: ../lib/modules/kolabUser.inc:308 ../lib/modules/kolabUser.inc:617 -#: ../lib/modules/kolabUser.inc:689 ../lib/modules/kolabSharedFolder.inc:116 +#: ../lib/modules/kolabUser.inc:688 ../lib/modules/kolabSharedFolder.inc:116 #: ../lib/modules/kolabSharedFolder.inc:120 #: ../lib/modules/kolabSharedFolder.inc:190 #: ../lib/modules/kolabSharedFolder.inc:201 @@ -3515,9 +3584,10 @@ msgstr "" "eigenschap wordt gecontroleerd wanneer de Kolab SMTP daemon (Postfix) gebruikt " "wordt om e-mail te versturen." -#: ../templates/tools/serverInfo.php:293 ../templates/tools/serverInfo.php:355 -#: ../templates/tools/multiEdit.php:150 ../templates/tools/ou_edit.php:135 -#: ../templates/config/profmanage.php:250 ../templates/config/mainmanage.php:370 +#: ../templates/misc/ajax.php:278 ../templates/tools/serverInfo.php:293 +#: ../templates/tools/serverInfo.php:355 ../templates/tools/multiEdit.php:150 +#: ../templates/tools/ou_edit.php:135 ../templates/tools/webauthn.php:107 +#: ../templates/config/profmanage.php:250 ../templates/config/mainmanage.php:401 #: ../templates/selfService/profManage.php:226 #: ../templates/pdfedit/pdfmain.php:247 ../templates/pdfedit/pdfmain.php:248 #: ../templates/pdfedit/pdfmain.php:288 ../templates/delete.php:151 @@ -3527,16 +3597,16 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/delete_form.php:124 #: ../lib/passwordExpirationJob.inc:483 ../lib/modules/pykotaPrinter.inc:277 #: ../lib/modules/nisNetGroupHost.inc:109 ../lib/modules/sambaSamAccount.inc:1624 -#: ../lib/modules/posixAccount.inc:1929 ../lib/modules/zarafaUser.inc:1468 +#: ../lib/modules/posixAccount.inc:1984 ../lib/modules/zarafaUser.inc:1468 #: ../lib/modules/zarafaUser.inc:1519 ../lib/modules/bindDLZ.inc:1322 -#: ../lib/modules/bindDLZ.inc:1713 ../lib/modules/kolabUser.inc:676 +#: ../lib/modules/bindDLZ.inc:1713 ../lib/modules/kolabUser.inc:675 #: ../lib/modules/sambaGroupMapping.inc:386 ../lib/modules/ldapPublicKey.inc:350 #: ../lib/modules/nisNetGroupUser.inc:193 ../lib/modules/yubiKeyUser.inc:315 -#: ../lib/modules/nisnetgroup.inc:261 ../lib/modules/inetOrgPerson.inc:2958 -#: ../lib/modules/inetOrgPerson.inc:3079 ../lib/modules/kopanoUser.inc:1388 -#: ../lib/modules/kopanoUser.inc:1439 ../lib/modules/customFields.inc:2563 -#: ../lib/modules/customFields.inc:4415 ../lib/lists.inc:565 -#: ../lib/modules.inc:1319 +#: ../lib/modules/nisnetgroup.inc:261 ../lib/modules/inetOrgPerson.inc:3053 +#: ../lib/modules/inetOrgPerson.inc:3174 ../lib/modules/kopanoUser.inc:1388 +#: ../lib/modules/kopanoUser.inc:1439 ../lib/modules/webauthn.inc:160 +#: ../lib/modules/customFields.inc:2563 ../lib/modules/customFields.inc:4415 +#: ../lib/lists.inc:564 ../lib/modules.inc:1319 msgid "Delete" msgstr "Verwijderen" @@ -3559,7 +3629,7 @@ msgstr "Verwijder na kopieren(verplaats):" msgid "Delete all %s objects" msgstr "Verwijder alle %s objecten" -#: ../templates/config/mainmanage.php:348 +#: ../templates/config/mainmanage.php:379 msgid "Delete all CA certificates" msgstr "Verwijder alle CA-certificaten" @@ -3567,7 +3637,7 @@ msgstr "Verwijder alle CA-certificaten" msgid "Delete group" msgstr "Verwijder groep" -#: ../lib/modules/posixAccount.inc:1736 +#: ../lib/modules/posixAccount.inc:1791 msgid "Delete home directory" msgstr "Verwijder homedirectory" @@ -3575,21 +3645,22 @@ msgstr "Verwijder homedirectory" msgid "Delete mailbox" msgstr "Verwijder mailbox" -#: ../lib/modules/posixGroup.inc:335 ../lib/modules/posixGroup.inc:344 -#: ../lib/modules/posixAccount.inc:1862 ../lib/modules/windowsUser.inc:1818 +#: ../lib/modules/posixGroup.inc:336 ../lib/modules/posixGroup.inc:345 +#: ../lib/modules/posixAccount.inc:1917 ../lib/modules/windowsUser.inc:1864 msgid "Delete non-matching entries" msgstr "Verwijder niet-overeenkomende items" -#: ../templates/tools/ou_edit.php:218 ../help/help.inc:353 +#: ../templates/tools/ou_edit.php:218 ../help/help.inc:365 msgid "Delete organisational unit" msgstr "Verwijder organizational unit" #: ../templates/3rdParty/pla/lib/functions.php:1923 -#: ../lib/modules/windowsUser.inc:1307 ../lib/modules/inetOrgPerson.inc:1598 +#: ../lib/modules/windowsLDSUser.inc:997 ../lib/modules/windowsUser.inc:1353 +#: ../lib/modules/inetOrgPerson.inc:1612 msgid "Delete photo" msgstr "Verwijder foto" -#: ../lib/modules/range.inc:550 +#: ../lib/modules/range.inc:549 msgid "Delete pool" msgstr "Verwijder poel" @@ -3599,8 +3670,8 @@ msgstr "Verwijder poel" msgid "Delete profile" msgstr "Verwijder profiel" -#: ../lib/modules/range.inc:108 ../lib/modules/range.inc:140 -#: ../lib/modules/range.inc:526 ../lib/modules/range.inc:601 +#: ../lib/modules/range.inc:107 ../lib/modules/range.inc:139 +#: ../lib/modules/range.inc:525 ../lib/modules/range.inc:600 msgid "Delete range" msgstr "Verwijder range" @@ -3701,7 +3772,7 @@ msgstr "Verwijder geselecteerde views" msgid "Delete successful: %s" msgstr "Verwijderen succesvol: %s" -#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1741 +#: ../lib/modules/posixAccount.inc:373 ../lib/modules/posixAccount.inc:1796 msgid "Delete sudo rights" msgstr "Verwijder sudo rechten" @@ -3737,7 +3808,7 @@ msgstr "Verwijderde PDF structuur." msgid "Deleted profile." msgstr "Verwijderde profiel." -#: ../lib/modules/range.inc:109 +#: ../lib/modules/range.inc:108 msgid "Deletes an IP range." msgstr "Verwijder een IP range." @@ -3766,11 +3837,11 @@ msgstr "Schrappingsdatum" #: ../lib/modules/autoDelete.inc:65 ../lib/modules/autoDelete.inc:77 #: ../lib/modules/autoDelete.inc:84 ../lib/modules/autoDelete.inc:117 #: ../lib/modules/autoDelete.inc:152 ../lib/modules/autoDelete.inc:385 -#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:106 +#: ../lib/modules/autoDelete.inc:389 ../lib/baseType.inc:105 msgid "Deletion time" msgstr "Verwijdertijd" -#: ../lib/lists.inc:1248 +#: ../lib/lists.inc:1253 msgid "Deletion was successful." msgstr "Verwijdering is gelukt." @@ -3798,25 +3869,33 @@ msgstr "Weigeren" msgid "Deny printing" msgstr "Weigeren printen" -#: ../lib/types/user.inc:97 ../lib/modules/windowsUser.inc:326 -#: ../lib/modules/windowsUser.inc:722 ../lib/modules/windowsUser.inc:776 -#: ../lib/modules/windowsUser.inc:907 ../lib/modules/windowsUser.inc:954 -#: ../lib/modules/windowsUser.inc:1186 ../lib/modules/windowsUser.inc:2718 -#: ../lib/modules/windowsUser.inc:2910 ../lib/modules/windowsUser.inc:3619 -#: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:421 -#: ../lib/modules/inetOrgPerson.inc:543 ../lib/modules/inetOrgPerson.inc:741 -#: ../lib/modules/inetOrgPerson.inc:745 ../lib/modules/inetOrgPerson.inc:1491 -#: ../lib/modules/inetOrgPerson.inc:1494 ../lib/modules/inetOrgPerson.inc:1978 -#: ../lib/modules/inetOrgPerson.inc:2046 ../lib/modules/inetOrgPerson.inc:2784 -#: ../lib/modules/inetOrgPerson.inc:3879 ../lib/modules/inetOrgPerson.inc:3915 +#: ../lib/types/user.inc:97 ../lib/modules/windowsLDSUser.inc:255 +#: ../lib/modules/windowsLDSUser.inc:553 ../lib/modules/windowsLDSUser.inc:599 +#: ../lib/modules/windowsLDSUser.inc:701 ../lib/modules/windowsLDSUser.inc:929 +#: ../lib/modules/windowsLDSUser.inc:1851 ../lib/modules/windowsLDSUser.inc:2200 +#: ../lib/modules/windowsUser.inc:328 ../lib/modules/windowsUser.inc:732 +#: ../lib/modules/windowsUser.inc:800 ../lib/modules/windowsUser.inc:943 +#: ../lib/modules/windowsUser.inc:990 ../lib/modules/windowsUser.inc:1224 +#: ../lib/modules/windowsUser.inc:2884 ../lib/modules/windowsUser.inc:3081 +#: ../lib/modules/windowsUser.inc:3714 ../lib/modules/inetOrgPerson.inc:164 +#: ../lib/modules/inetOrgPerson.inc:421 ../lib/modules/inetOrgPerson.inc:543 +#: ../lib/modules/inetOrgPerson.inc:745 ../lib/modules/inetOrgPerson.inc:749 +#: ../lib/modules/inetOrgPerson.inc:1505 ../lib/modules/inetOrgPerson.inc:1508 +#: ../lib/modules/inetOrgPerson.inc:1995 ../lib/modules/inetOrgPerson.inc:2064 +#: ../lib/modules/inetOrgPerson.inc:2854 ../lib/modules/inetOrgPerson.inc:4091 +#: ../lib/modules/inetOrgPerson.inc:4130 msgid "Department" msgstr "Afdeling" -#: ../lib/modules/windowsUser.inc:330 ../lib/modules/windowsUser.inc:334 -#: ../lib/modules/windowsUser.inc:730 ../lib/modules/windowsUser.inc:779 -#: ../lib/modules/windowsUser.inc:910 ../lib/modules/windowsUser.inc:955 -#: ../lib/modules/windowsUser.inc:1189 ../lib/modules/windowsUser.inc:2719 -#: ../lib/modules/windowsUser.inc:2911 ../lib/modules/windowsUser.inc:3620 +#: ../lib/modules/windowsLDSUser.inc:259 ../lib/modules/windowsLDSUser.inc:263 +#: ../lib/modules/windowsLDSUser.inc:561 ../lib/modules/windowsLDSUser.inc:602 +#: ../lib/modules/windowsLDSUser.inc:704 ../lib/modules/windowsLDSUser.inc:932 +#: ../lib/modules/windowsLDSUser.inc:1852 ../lib/modules/windowsLDSUser.inc:2201 +#: ../lib/modules/windowsUser.inc:332 ../lib/modules/windowsUser.inc:336 +#: ../lib/modules/windowsUser.inc:740 ../lib/modules/windowsUser.inc:803 +#: ../lib/modules/windowsUser.inc:946 ../lib/modules/windowsUser.inc:991 +#: ../lib/modules/windowsUser.inc:1227 ../lib/modules/windowsUser.inc:2885 +#: ../lib/modules/windowsUser.inc:3082 ../lib/modules/windowsUser.inc:3715 msgid "Department number" msgstr "Afdelingsnummer" @@ -3852,20 +3931,23 @@ msgstr "" #: ../lib/types/dhcp.inc:99 ../lib/types/netgroup.inc:95 #: ../lib/modules/pykotaPrinter.inc:98 ../lib/modules/pykotaPrinter.inc:152 #: ../lib/modules/pykotaPrinter.inc:193 ../lib/modules/pykotaPrinter.inc:246 -#: ../lib/modules/pykotaPrinter.inc:572 ../lib/modules/account.inc:78 -#: ../lib/modules/account.inc:88 ../lib/modules/account.inc:98 -#: ../lib/modules/account.inc:106 ../lib/modules/account.inc:222 -#: ../lib/modules/account.inc:244 ../lib/modules/windowsHost.inc:77 -#: ../lib/modules/windowsHost.inc:100 ../lib/modules/windowsHost.inc:119 -#: ../lib/modules/windowsHost.inc:142 ../lib/modules/windowsHost.inc:288 -#: ../lib/modules/posixGroup.inc:215 ../lib/modules/posixGroup.inc:422 -#: ../lib/modules/posixGroup.inc:650 ../lib/modules/posixGroup.inc:668 -#: ../lib/modules/device.inc:84 ../lib/modules/device.inc:109 -#: ../lib/modules/device.inc:117 ../lib/modules/device.inc:159 -#: ../lib/modules/device.inc:428 ../lib/modules/dhcp_settings.inc:195 -#: ../lib/modules/dhcp_settings.inc:224 ../lib/modules/dhcp_settings.inc:322 -#: ../lib/modules/dhcp_settings.inc:645 ../lib/modules/dhcp_settings.inc:718 -#: ../lib/modules/courierMailAlias.inc:92 ../lib/modules/courierMailAlias.inc:101 +#: ../lib/modules/pykotaPrinter.inc:572 ../lib/modules/windowsLDSUser.inc:125 +#: ../lib/modules/windowsLDSUser.inc:379 ../lib/modules/windowsLDSUser.inc:654 +#: ../lib/modules/windowsLDSUser.inc:873 ../lib/modules/windowsLDSUser.inc:1823 +#: ../lib/modules/account.inc:78 ../lib/modules/account.inc:88 +#: ../lib/modules/account.inc:98 ../lib/modules/account.inc:106 +#: ../lib/modules/account.inc:219 ../lib/modules/account.inc:241 +#: ../lib/modules/windowsHost.inc:79 ../lib/modules/windowsHost.inc:114 +#: ../lib/modules/windowsHost.inc:133 ../lib/modules/windowsHost.inc:156 +#: ../lib/modules/windowsHost.inc:329 ../lib/modules/posixGroup.inc:215 +#: ../lib/modules/posixGroup.inc:423 ../lib/modules/posixGroup.inc:651 +#: ../lib/modules/posixGroup.inc:669 ../lib/modules/device.inc:84 +#: ../lib/modules/device.inc:109 ../lib/modules/device.inc:117 +#: ../lib/modules/device.inc:159 ../lib/modules/device.inc:428 +#: ../lib/modules/dhcp_settings.inc:195 ../lib/modules/dhcp_settings.inc:224 +#: ../lib/modules/dhcp_settings.inc:322 ../lib/modules/dhcp_settings.inc:637 +#: ../lib/modules/dhcp_settings.inc:710 ../lib/modules/courierMailAlias.inc:92 +#: ../lib/modules/courierMailAlias.inc:101 #: ../lib/modules/courierMailAlias.inc:126 #: ../lib/modules/courierMailAlias.inc:155 #: ../lib/modules/courierMailAlias.inc:192 ../lib/modules/pykotaGroup.inc:111 @@ -3883,9 +3965,9 @@ msgstr "" #: ../lib/modules/bindDLZ.inc:1809 ../lib/modules/bindDLZ.inc:1830 #: ../lib/modules/bindDLZ.inc:1852 ../lib/modules/bindDLZ.inc:1907 #: ../lib/modules/bindDLZ.inc:1919 ../lib/modules/bindDLZ.inc:1938 -#: ../lib/modules/bindDLZ.inc:1969 ../lib/modules/windowsUser.inc:141 -#: ../lib/modules/windowsUser.inc:454 ../lib/modules/windowsUser.inc:841 -#: ../lib/modules/windowsUser.inc:1129 ../lib/modules/windowsUser.inc:2687 +#: ../lib/modules/bindDLZ.inc:1969 ../lib/modules/windowsUser.inc:143 +#: ../lib/modules/windowsUser.inc:464 ../lib/modules/windowsUser.inc:874 +#: ../lib/modules/windowsUser.inc:1167 ../lib/modules/windowsUser.inc:2853 #: ../lib/modules/nisObject.inc:73 ../lib/modules/nisObject.inc:103 #: ../lib/modules/nisObject.inc:114 ../lib/modules/nisObject.inc:155 #: ../lib/modules/nisObject.inc:208 ../lib/modules/sambaGroupMapping.inc:114 @@ -3898,24 +3980,27 @@ msgstr "" #: ../lib/modules/nisnetgroup.inc:142 ../lib/modules/nisnetgroup.inc:205 #: ../lib/modules/nisnetgroup.inc:571 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:259 ../lib/modules/inetOrgPerson.inc:480 -#: ../lib/modules/inetOrgPerson.inc:566 ../lib/modules/inetOrgPerson.inc:1227 -#: ../lib/modules/inetOrgPerson.inc:1230 ../lib/modules/inetOrgPerson.inc:1946 -#: ../lib/modules/inetOrgPerson.inc:2004 ../lib/modules/inetOrgPerson.inc:2916 -#: ../lib/modules/inetOrgPerson.inc:3859 ../lib/modules/inetOrgPerson.inc:3903 +#: ../lib/modules/inetOrgPerson.inc:566 ../lib/modules/inetOrgPerson.inc:1241 +#: ../lib/modules/inetOrgPerson.inc:1244 ../lib/modules/inetOrgPerson.inc:1963 +#: ../lib/modules/inetOrgPerson.inc:2022 ../lib/modules/inetOrgPerson.inc:2996 +#: ../lib/modules/inetOrgPerson.inc:4071 ../lib/modules/inetOrgPerson.inc:4118 #: ../lib/modules/sudoRole.inc:69 ../lib/modules/sudoRole.inc:152 #: ../lib/modules/sudoRole.inc:214 ../lib/modules/sudoRole.inc:298 -#: ../lib/modules/sudoRole.inc:453 ../lib/modules/nsview.inc:62 -#: ../lib/modules/nsview.inc:75 ../lib/modules/nsview.inc:95 -#: ../lib/modules/nsview.inc:124 ../lib/modules/nsview.inc:159 -#: ../lib/modules/oracleService.inc:68 ../lib/modules/oracleService.inc:91 -#: ../lib/modules/oracleService.inc:99 ../lib/modules/oracleService.inc:121 -#: ../lib/modules/oracleService.inc:166 ../lib/modules/organizationalRole.inc:93 +#: ../lib/modules/sudoRole.inc:453 ../lib/modules/windowsLDSGroup.inc:88 +#: ../lib/modules/windowsLDSGroup.inc:124 ../lib/modules/windowsLDSGroup.inc:144 +#: ../lib/modules/windowsLDSGroup.inc:168 ../lib/modules/windowsLDSGroup.inc:596 +#: ../lib/modules/nsview.inc:62 ../lib/modules/nsview.inc:75 +#: ../lib/modules/nsview.inc:95 ../lib/modules/nsview.inc:124 +#: ../lib/modules/nsview.inc:159 ../lib/modules/oracleService.inc:68 +#: ../lib/modules/oracleService.inc:91 ../lib/modules/oracleService.inc:99 +#: ../lib/modules/oracleService.inc:121 ../lib/modules/oracleService.inc:166 +#: ../lib/modules/organizationalRole.inc:93 #: ../lib/modules/organizationalRole.inc:127 #: ../lib/modules/organizationalRole.inc:145 #: ../lib/modules/organizationalRole.inc:170 #: ../lib/modules/organizationalRole.inc:481 #: ../lib/modules/organizationalRole.inc:735 ../lib/modules/fixed_ip.inc:115 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:764 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:762 #: ../lib/modules/pykotaBillingCode.inc:80 #: ../lib/modules/pykotaBillingCode.inc:108 #: ../lib/modules/pykotaBillingCode.inc:115 @@ -3926,7 +4011,7 @@ msgstr "" #: ../lib/modules/groupOfNames.inc:92 ../lib/modules/groupOfNames.inc:138 #: ../lib/modules/groupOfNames.inc:174 ../lib/modules/groupOfNames.inc:211 #: ../lib/modules/groupOfNames.inc:734 ../lib/modules/groupOfNames.inc:1047 -#: ../lib/baseType.inc:107 +#: ../lib/baseType.inc:106 msgid "Description" msgstr "Omschrijving" @@ -3960,15 +4045,15 @@ msgid "Disable POP3 access" msgstr "Schakel POP3-toegang uit" #: ../templates/config/confmain.php:511 -#: ../templates/selfService/adminMain.php:528 ../help/help.inc:306 +#: ../templates/selfService/adminMain.php:532 ../help/help.inc:318 msgid "Disable certificate check" msgstr "Schakel certificaatcontrole uit" -#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:368 +#: ../lib/modules/ddns.inc:88 ../lib/modules/ddns.inc:364 msgid "Disable client updates" msgstr "Uitschakelen clientupdates" -#: ../lib/modules/posixGroup.inc:476 ../lib/modules/posixGroup.inc:584 +#: ../lib/modules/posixGroup.inc:477 ../lib/modules/posixGroup.inc:585 msgid "Disable membership management" msgstr "Uitschakelen ledenbeheer" @@ -3996,7 +4081,7 @@ msgstr "Uitgeschakeld" msgid "Disables the client to update DNS entries." msgstr "Uitschakelen van de cliënt om DNS-items te actualiseren." -#: ../lib/modules/posixGroup.inc:477 +#: ../lib/modules/posixGroup.inc:478 msgid "Disables the group membership management." msgstr "Schakelt groep lidmaatschapsbeheer uit." @@ -4018,7 +4103,7 @@ msgstr "Verbied TGT-gebaseerde tickets" msgid "Disallow all tickets" msgstr "Verbied ​​alle tickets" -#: ../templates/config/conftypes.php:290 ../help/help.inc:190 +#: ../templates/config/conftypes.php:290 ../help/help.inc:196 msgid "Disallow delete" msgstr "Verwijderen niet toestaan" @@ -4049,14 +4134,14 @@ msgstr "Verbied ​​service tickets" #: ../lib/modules/mitKerberos.inc:170 ../lib/modules/mitKerberos.inc:444 msgid "Disallow user-to-user authentication" -msgstr "user-to-user authenticatie niet toestaan" +msgstr "User-to-user authenticatie niet toestaan" #: ../lib/modules/asteriskAccount.inc:198 ../lib/modules/asteriskAccount.inc:286 #: ../lib/modules/asteriskAccount.inc:470 ../lib/modules/asteriskAccount.inc:707 #: ../lib/modules/asteriskAccount.inc:1004 #: ../lib/modules/asteriskAccount.inc:1248 msgid "Disallowed codec" -msgstr "Niet toegestaan ​​codecs." +msgstr "Niet toegestaan ​​codecs" #: ../lib/modules/sambaDomain.inc:112 ../lib/modules/sambaDomain.inc:192 #: ../lib/modules/sambaDomain.inc:292 ../lib/modules/sambaDomain.inc:612 @@ -4088,22 +4173,30 @@ msgid "Display multiple groups as accordion" msgstr "Toon meerdere groepen als accordeon" #: ../templates/config/confmain.php:227 ../lib/types/group.inc:111 -#: ../lib/types/user.inc:98 ../lib/modules/sambaSamAccount.inc:111 -#: ../lib/modules/sambaSamAccount.inc:210 ../lib/modules/sambaSamAccount.inc:260 -#: ../lib/modules/sambaSamAccount.inc:427 ../lib/modules/sambaSamAccount.inc:1121 +#: ../lib/types/user.inc:98 ../lib/modules/windowsLDSUser.inc:129 +#: ../lib/modules/windowsLDSUser.inc:367 ../lib/modules/windowsLDSUser.inc:593 +#: ../lib/modules/windowsLDSUser.inc:655 ../lib/modules/windowsLDSUser.inc:757 +#: ../lib/modules/windowsLDSUser.inc:871 ../lib/modules/windowsLDSUser.inc:1824 +#: ../lib/modules/sambaSamAccount.inc:111 ../lib/modules/sambaSamAccount.inc:210 +#: ../lib/modules/sambaSamAccount.inc:260 ../lib/modules/sambaSamAccount.inc:427 +#: ../lib/modules/sambaSamAccount.inc:1121 #: ../lib/modules/sambaSamAccount.inc:1746 -#: ../lib/modules/sambaSamAccount.inc:1969 ../lib/modules/windowsUser.inc:145 -#: ../lib/modules/windowsUser.inc:442 ../lib/modules/windowsUser.inc:762 -#: ../lib/modules/windowsUser.inc:842 ../lib/modules/windowsUser.inc:992 -#: ../lib/modules/windowsUser.inc:1127 ../lib/modules/windowsUser.inc:2688 +#: ../lib/modules/sambaSamAccount.inc:1969 ../lib/modules/windowsUser.inc:147 +#: ../lib/modules/windowsUser.inc:452 ../lib/modules/windowsUser.inc:780 +#: ../lib/modules/windowsUser.inc:875 ../lib/modules/windowsUser.inc:1028 +#: ../lib/modules/windowsUser.inc:1165 ../lib/modules/windowsUser.inc:2854 #: ../lib/modules/sambaGroupMapping.inc:112 #: ../lib/modules/sambaGroupMapping.inc:146 #: ../lib/modules/sambaGroupMapping.inc:336 -#: ../lib/modules/sambaGroupMapping.inc:513 ../help/help.inc:200 +#: ../lib/modules/sambaGroupMapping.inc:513 ../lib/modules/inetOrgPerson.inc:166 +#: ../lib/modules/inetOrgPerson.inc:685 ../lib/modules/inetOrgPerson.inc:1236 +#: ../lib/modules/inetOrgPerson.inc:1951 ../lib/modules/inetOrgPerson.inc:1996 +#: ../lib/modules/inetOrgPerson.inc:2217 ../lib/modules/inetOrgPerson.inc:3023 +#: ../lib/modules/inetOrgPerson.inc:4103 ../help/help.inc:206 msgid "Display name" msgstr "Display naam" -#: ../templates/lists/changePassword.php:316 ../templates/config/confmain.php:344 +#: ../templates/lists/changePassword.php:320 ../templates/config/confmain.php:344 msgid "Display on screen" msgstr "Weergave op het scherm" @@ -4127,7 +4220,7 @@ msgstr "Weergegeven attributen" msgid "Distribution" msgstr "Distributie" -#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2295 +#: ../lib/modules/posixAccount.inc:402 ../lib/modules/posixAccount.inc:2359 msgid "Do not add object class" msgstr "Objectklasse niet toevoegen" @@ -4156,6 +4249,11 @@ msgstr "Wil je echt wilt plaatsen op dit mailinglist?" msgid "Do you really want to remove the following accounts?" msgstr "Weet u zeker dat u de volgende accounts wilt verwijderen?" +#: ../templates/tools/webauthn.php:133 ../templates/config/mainmanage.php:524 +#: ../lib/modules/webauthn.inc:133 +msgid "Do you really want to remove this device?" +msgstr "Wil je dit apparaat echt verwijderen?" + #: ../templates/3rdParty/pla/htdocs/create_confirm.php:59 msgid "Do you want to create this entry?" msgstr "Wilt u dit item creëren?" @@ -4164,16 +4262,19 @@ msgstr "Wilt u dit item creëren?" msgid "Do you want to make these changes?" msgstr "Wilt u deze veranderingen maken?" -#: ../templates/config/confmain.php:506 ../lib/modules/sambaSamAccount.inc:212 -#: ../lib/modules/sambaSamAccount.inc:338 ../lib/modules/sambaSamAccount.inc:420 -#: ../lib/modules/sambaSamAccount.inc:544 ../lib/modules/sambaSamAccount.inc:1272 +#: ../templates/config/confmain.php:506 +#: ../templates/selfService/adminMain.php:527 +#: ../lib/modules/windowsLDSUser.inc:121 ../lib/modules/windowsLDSUser.inc:1883 +#: ../lib/modules/sambaSamAccount.inc:212 ../lib/modules/sambaSamAccount.inc:338 +#: ../lib/modules/sambaSamAccount.inc:420 ../lib/modules/sambaSamAccount.inc:544 +#: ../lib/modules/sambaSamAccount.inc:1272 #: ../lib/modules/sambaSamAccount.inc:1791 #: ../lib/modules/sambaSamAccount.inc:1813 -#: ../lib/modules/sambaSamAccount.inc:1975 ../lib/modules/windowsUser.inc:133 -#: ../lib/modules/windowsUser.inc:2775 ../lib/modules/sambaGroupMapping.inc:158 +#: ../lib/modules/sambaSamAccount.inc:1975 ../lib/modules/windowsUser.inc:135 +#: ../lib/modules/windowsUser.inc:2942 ../lib/modules/sambaGroupMapping.inc:158 #: ../lib/modules/sambaGroupMapping.inc:367 #: ../lib/modules/sambaGroupMapping.inc:547 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:332 +#: ../lib/modules/nisnetgroup.inc:578 ../help/help.inc:344 msgid "Domain" msgstr "Domein" @@ -4188,8 +4289,10 @@ msgstr "Domein KRBTGT" msgid "Domain SID" msgstr "Domein SID" -#: ../lib/modules/sambaGroupMapping.inc:125 ../lib/modules/windowsGroup.inc:173 -#: ../lib/modules/windowsGroup.inc:180 ../lib/modules/windowsGroup.inc:186 +#: ../lib/modules/sambaGroupMapping.inc:125 +#: ../lib/modules/windowsLDSGroup.inc:119 ../lib/modules/windowsLDSGroup.inc:126 +#: ../lib/modules/windowsGroup.inc:173 ../lib/modules/windowsGroup.inc:180 +#: ../lib/modules/windowsGroup.inc:186 msgid "Domain administrators" msgstr "Domeinbeheerders" @@ -4237,8 +4340,8 @@ msgstr "Domein lokaal" #: ../lib/types/smbDomain.inc:95 ../lib/modules/dhcp_settings.inc:143 #: ../lib/modules/dhcp_settings.inc:215 ../lib/modules/dhcp_settings.inc:231 -#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:588 -#: ../lib/modules/dhcp_settings.inc:708 ../lib/modules/nisNetGroupHost.inc:102 +#: ../lib/modules/dhcp_settings.inc:259 ../lib/modules/dhcp_settings.inc:580 +#: ../lib/modules/dhcp_settings.inc:700 ../lib/modules/nisNetGroupHost.inc:102 #: ../lib/modules/nisNetGroupHost.inc:217 ../lib/modules/nisNetGroupHost.inc:261 #: ../lib/modules/nisNetGroupUser.inc:98 ../lib/modules/nisNetGroupUser.inc:186 #: ../lib/modules/nisNetGroupUser.inc:435 ../lib/modules/nisNetGroupUser.inc:479 @@ -4271,7 +4374,8 @@ msgstr "Domein achtervoegsel" msgid "Domain users" msgstr "Domeingebruikers" -#: ../lib/modules/windowsUser.inc:259 ../lib/modules/windowsUser.inc:3596 +#: ../lib/modules/windowsLDSUser.inc:215 ../lib/modules/windowsLDSUser.inc:2180 +#: ../lib/modules/windowsUser.inc:261 ../lib/modules/windowsUser.inc:3690 msgid "Domains" msgstr "Domeinen" @@ -4280,7 +4384,8 @@ msgstr "Domeinen" msgid "Don't stop on errors" msgstr "Stop niet bij fouten" -#: ../lib/modules/windowsUser.inc:1993 ../lib/modules/inetOrgPerson.inc:1711 +#: ../lib/modules/windowsLDSUser.inc:1311 ../lib/modules/windowsUser.inc:2039 +#: ../lib/modules/inetOrgPerson.inc:1723 msgid "Done" msgstr "Afgerond" @@ -4289,7 +4394,7 @@ msgstr "Afgerond" msgid "Down" msgstr "Omlaag" -#: ../templates/config/mainmanage.php:345 +#: ../templates/config/mainmanage.php:376 msgid "Download CA certificates" msgstr "Download CA-certificaten" @@ -4331,8 +4436,9 @@ msgstr "" #: ../templates/pdfedit/pdfmain.php:244 ../templates/profedit/profilemain.php:224 #: ../lib/modules/sambaSamAccount.inc:1278 -#: ../lib/modules/sambaSamAccount.inc:1286 ../lib/modules/windowsGroup.inc:378 -#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:559 +#: ../lib/modules/sambaSamAccount.inc:1286 ../lib/modules/windowsLDSGroup.inc:192 +#: ../lib/modules/windowsLDSGroup.inc:221 ../lib/modules/windowsGroup.inc:378 +#: ../lib/modules/windowsGroup.inc:407 ../lib/lists.inc:558 msgid "Edit" msgstr "Bewerken" @@ -4340,11 +4446,12 @@ msgstr "Bewerken" msgid "Edit again" msgstr "Bewerk opnieuw" -#: ../templates/config/mainmanage.php:271 ../templates/config/index.php:75 +#: ../templates/config/mainmanage.php:278 ../templates/config/index.php:79 msgid "Edit general settings" msgstr "Bewerk algemene instellingen" -#: ../lib/modules/posixAccount.inc:1643 ../lib/modules/windowsUser.inc:1313 +#: ../lib/modules/windowsLDSUser.inc:1003 ../lib/modules/posixAccount.inc:1698 +#: ../lib/modules/windowsUser.inc:1359 msgid "Edit groups" msgstr "Bewerk groepen" @@ -4352,11 +4459,11 @@ msgstr "Bewerk groepen" msgid "Edit members" msgstr "Bewerk leden" -#: ../templates/config/index.php:101 +#: ../templates/config/index.php:105 msgid "Edit self service" msgstr "Bewerk zelf service" -#: ../templates/config/index.php:87 +#: ../templates/config/index.php:91 msgid "Edit server profiles" msgstr "Bewerk server profielen" @@ -4364,10 +4471,11 @@ msgstr "Bewerk server profielen" msgid "Edit subgroups" msgstr "Bewerk subgroepen" -#: ../lib/modules/sambaSamAccount.inc:1229 +#: ../lib/modules/sambaSamAccount.inc:1229 ../lib/modules/windowsUser.inc:1294 msgid "Edit workstations" msgstr "Bewerk werkstations" +#: ../templates/config/mainmanage.php:323 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1688 #: ../lib/types/kopanoDynamicGroupType.inc:81 #: ../lib/types/zarafaDynamicGroupType.inc:95 ../lib/types/user.inc:107 @@ -4380,20 +4488,25 @@ msgstr "Bewerk werkstations" msgid "Email" msgstr "E-mail" -#: ../lib/modules/selfRegistration.inc:520 ../lib/modules/windowsUser.inc:1016 -#: ../lib/modules/windowsUser.inc:1017 ../lib/modules/inetOrgPerson.inc:83 +#: ../lib/modules/selfRegistration.inc:520 ../lib/modules/windowsLDSUser.inc:781 +#: ../lib/modules/windowsLDSUser.inc:782 ../lib/modules/windowsUser.inc:1052 +#: ../lib/modules/windowsUser.inc:1053 ../lib/modules/inetOrgPerson.inc:83 #: ../lib/modules/inetOrgPerson.inc:84 #, php-format msgid "Email \"%s\" already in use." msgstr "E-mail \"%s\" is al in gebruik." -#: ../templates/lists/changePassword.php:279 ../lib/modules/kolabGroup.inc:82 +#: ../templates/lists/changePassword.php:283 ../lib/modules/kolabGroup.inc:82 #: ../lib/modules/kolabGroup.inc:86 ../lib/modules/kolabGroup.inc:155 #: ../lib/modules/kolabGroup.inc:157 ../lib/modules/kolabGroup.inc:175 #: ../lib/modules/kolabGroup.inc:287 ../lib/modules/kolabGroup.inc:348 #: ../lib/modules/kolabGroup.inc:359 ../lib/modules/selfRegistration.inc:401 #: ../lib/modules/selfRegistration.inc:500 -#: ../lib/modules/selfRegistration.inc:519 +#: ../lib/modules/selfRegistration.inc:519 ../lib/modules/windowsLDSUser.inc:145 +#: ../lib/modules/windowsLDSUser.inc:421 ../lib/modules/windowsLDSUser.inc:594 +#: ../lib/modules/windowsLDSUser.inc:659 ../lib/modules/windowsLDSUser.inc:779 +#: ../lib/modules/windowsLDSUser.inc:781 ../lib/modules/windowsLDSUser.inc:884 +#: ../lib/modules/windowsLDSUser.inc:1828 #: ../lib/modules/zarafaDynamicGroup.inc:66 #: ../lib/modules/zarafaDynamicGroup.inc:67 #: ../lib/modules/zarafaDynamicGroup.inc:123 @@ -4412,11 +4525,11 @@ msgstr "E-mail \"%s\" is al in gebruik." #: ../lib/modules/courierMailAlias.inc:189 ../lib/modules/kopanoGroup.inc:75 #: ../lib/modules/kopanoGroup.inc:76 ../lib/modules/kopanoGroup.inc:188 #: ../lib/modules/kopanoGroup.inc:478 ../lib/modules/kopanoGroup.inc:590 -#: ../lib/modules/kopanoGroup.inc:601 ../lib/modules/windowsUser.inc:161 -#: ../lib/modules/windowsUser.inc:496 ../lib/modules/windowsUser.inc:763 -#: ../lib/modules/windowsUser.inc:846 ../lib/modules/windowsUser.inc:1014 -#: ../lib/modules/windowsUser.inc:1016 ../lib/modules/windowsUser.inc:1140 -#: ../lib/modules/windowsUser.inc:2692 ../lib/modules/pykotaUser.inc:119 +#: ../lib/modules/kopanoGroup.inc:601 ../lib/modules/windowsUser.inc:163 +#: ../lib/modules/windowsUser.inc:506 ../lib/modules/windowsUser.inc:787 +#: ../lib/modules/windowsUser.inc:879 ../lib/modules/windowsUser.inc:1050 +#: ../lib/modules/windowsUser.inc:1052 ../lib/modules/windowsUser.inc:1178 +#: ../lib/modules/windowsUser.inc:2858 ../lib/modules/pykotaUser.inc:119 #: ../lib/modules/pykotaUser.inc:282 ../lib/modules/pykotaUser.inc:361 #: ../lib/modules/pykotaUser.inc:727 ../lib/modules/pykotaUser.inc:872 #: ../lib/modules/pykotaUser.inc:888 ../lib/modules/kopanoDynamicGroup.inc:66 @@ -4428,10 +4541,10 @@ msgstr "E-mail \"%s\" is al in gebruik." #: ../lib/modules/inetOrgPerson.inc:83 ../lib/modules/inetOrgPerson.inc:159 #: ../lib/modules/inetOrgPerson.inc:387 ../lib/modules/inetOrgPerson.inc:525 #: ../lib/modules/inetOrgPerson.inc:662 ../lib/modules/inetOrgPerson.inc:666 -#: ../lib/modules/inetOrgPerson.inc:1427 ../lib/modules/inetOrgPerson.inc:1430 -#: ../lib/modules/inetOrgPerson.inc:1962 ../lib/modules/inetOrgPerson.inc:2040 -#: ../lib/modules/inetOrgPerson.inc:2571 ../lib/modules/inetOrgPerson.inc:3874 -#: ../lib/modules/inetOrgPerson.inc:3911 ../lib/modules/kolabSharedFolder.inc:94 +#: ../lib/modules/inetOrgPerson.inc:1441 ../lib/modules/inetOrgPerson.inc:1444 +#: ../lib/modules/inetOrgPerson.inc:1979 ../lib/modules/inetOrgPerson.inc:2058 +#: ../lib/modules/inetOrgPerson.inc:2605 ../lib/modules/inetOrgPerson.inc:4086 +#: ../lib/modules/inetOrgPerson.inc:4126 ../lib/modules/kolabSharedFolder.inc:94 #: ../lib/modules/kolabSharedFolder.inc:151 #: ../lib/modules/kolabSharedFolder.inc:202 #: ../lib/modules/kolabSharedFolder.inc:220 @@ -4445,7 +4558,7 @@ msgstr "E-mail \"%s\" is al in gebruik." #: ../lib/modules/qmailGroup.inc:92 ../lib/modules/qmailGroup.inc:205 #: ../lib/modules/qmailGroup.inc:336 ../lib/modules/qmailGroup.inc:385 #: ../lib/modules/qmailGroup.inc:414 ../lib/modules/qmailGroup.inc:824 -#: ../lib/modules/imapAccess.inc:235 ../lib/modules/passwordSelfReset.inc:1032 +#: ../lib/modules/imapAccess.inc:234 ../lib/modules/passwordSelfReset.inc:1032 #: ../lib/modules/passwordSelfReset.inc:1257 ../lib/modules/windowsGroup.inc:131 #: ../lib/modules/windowsGroup.inc:214 ../lib/modules/windowsGroup.inc:261 #: ../lib/modules/windowsGroup.inc:281 ../lib/modules/windowsGroup.inc:299 @@ -4459,7 +4572,7 @@ msgstr "Dit e-mailadres is al in gebruik." #: ../lib/modules/asteriskVoicemail.inc:107 msgid "Email address for this voicemail account." -msgstr "E-mail adres voor dit voicemail account" +msgstr "E-mail adres voor dit voicemail account." #: ../lib/modules/qmailGroup.inc:186 ../lib/modules/qmailGroup.inc:190 msgid "Email addresses that are allowed to send to this list." @@ -4474,28 +4587,28 @@ msgid "Email addresses that moderate this list (e.g. approve mails)." msgstr "E-mail adressen die deze lijst moderaten (bijv. mails goedkeuren)." #: ../lib/modules/zarafaContact.inc:86 ../lib/modules/zarafaUser.inc:142 -#: ../lib/modules/kopanoContact.inc:86 ../lib/modules/windowsUser.inc:247 -#: ../lib/modules/windowsUser.inc:251 ../lib/modules/windowsUser.inc:502 -#: ../lib/modules/windowsUser.inc:764 ../lib/modules/windowsUser.inc:847 -#: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1020 -#: ../lib/modules/windowsUser.inc:1141 ../lib/modules/windowsUser.inc:2693 -#: ../lib/modules/windowsUser.inc:2940 ../lib/modules/kolabUser.inc:127 +#: ../lib/modules/kopanoContact.inc:86 ../lib/modules/windowsUser.inc:249 +#: ../lib/modules/windowsUser.inc:253 ../lib/modules/windowsUser.inc:512 +#: ../lib/modules/windowsUser.inc:788 ../lib/modules/windowsUser.inc:880 +#: ../lib/modules/windowsUser.inc:1054 ../lib/modules/windowsUser.inc:1056 +#: ../lib/modules/windowsUser.inc:1179 ../lib/modules/windowsUser.inc:2859 +#: ../lib/modules/windowsUser.inc:3111 ../lib/modules/kolabUser.inc:127 #: ../lib/modules/kopanoUser.inc:142 ../lib/modules/kolabSharedFolder.inc:124 msgid "Email alias" msgstr "E-mail alias" -#: ../lib/modules/windowsUser.inc:1020 ../lib/modules/windowsUser.inc:1021 +#: ../lib/modules/windowsUser.inc:1056 ../lib/modules/windowsUser.inc:1057 #, php-format msgid "Email alias \"%s\" already in use." msgstr "E-mail alias \"%s\" is al in gebruik." -#: ../lib/modules/windowsUser.inc:957 +#: ../lib/modules/windowsUser.inc:993 msgid "Email alias (read-only)" msgstr "E-mailalias (alleen-lezen)" #: ../lib/modules/zarafaContact.inc:87 ../lib/modules/zarafaUser.inc:143 -#: ../lib/modules/kopanoContact.inc:87 ../lib/modules/windowsUser.inc:248 -#: ../lib/modules/windowsUser.inc:252 ../lib/modules/kolabUser.inc:128 +#: ../lib/modules/kopanoContact.inc:87 ../lib/modules/windowsUser.inc:250 +#: ../lib/modules/windowsUser.inc:254 ../lib/modules/kolabUser.inc:128 #: ../lib/modules/kopanoUser.inc:143 ../lib/modules/kolabSharedFolder.inc:125 msgid "Email alias for this account." msgstr "E-mail alias voor dit account." @@ -4503,7 +4616,7 @@ msgstr "E-mail alias voor dit account." #: ../lib/modules/zarafaContact.inc:176 ../lib/modules/zarafaContact.inc:177 #: ../lib/modules/zarafaUser.inc:440 ../lib/modules/zarafaUser.inc:441 #: ../lib/modules/kopanoContact.inc:176 ../lib/modules/kopanoContact.inc:177 -#: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1019 +#: ../lib/modules/windowsUser.inc:1054 ../lib/modules/windowsUser.inc:1055 #: ../lib/modules/kolabUser.inc:214 ../lib/modules/kopanoUser.inc:440 #: ../lib/modules/kopanoUser.inc:441 ../lib/modules/kolabSharedFolder.inc:217 msgid "Email alias is invalid!" @@ -4558,41 +4671,45 @@ msgstr "E-mail alias lijst heeft ongeldig formaat!" msgid "Email aliases" msgstr "E-mail aliassen" -#: ../templates/config/mainmanage.php:473 ../help/help.inc:164 -msgid "Email format" -msgstr "Emailformaat" - -#: ../lib/types/user.inc:99 ../lib/modules/windowsUser.inc:310 -#: ../lib/modules/windowsUser.inc:698 ../lib/modules/windowsUser.inc:898 -#: ../lib/modules/windowsUser.inc:1174 ../lib/modules/windowsUser.inc:2715 -#: ../lib/modules/windowsUser.inc:3615 ../lib/modules/inetOrgPerson.inc:275 -#: ../lib/modules/inetOrgPerson.inc:555 ../lib/modules/inetOrgPerson.inc:774 -#: ../lib/modules/inetOrgPerson.inc:1467 ../lib/modules/inetOrgPerson.inc:1470 -#: ../lib/modules/inetOrgPerson.inc:1973 ../lib/modules/inetOrgPerson.inc:3883 -#: ../lib/modules/inetOrgPerson.inc:3917 ../lib/modules/passwordSelfReset.inc:631 +#: ../lib/types/user.inc:99 ../lib/modules/windowsLDSUser.inc:239 +#: ../lib/modules/windowsLDSUser.inc:529 ../lib/modules/windowsLDSUser.inc:692 +#: ../lib/modules/windowsLDSUser.inc:917 ../lib/modules/windowsLDSUser.inc:1848 +#: ../lib/modules/windowsLDSUser.inc:2196 ../lib/modules/windowsUser.inc:312 +#: ../lib/modules/windowsUser.inc:708 ../lib/modules/windowsUser.inc:934 +#: ../lib/modules/windowsUser.inc:1212 ../lib/modules/windowsUser.inc:2881 +#: ../lib/modules/windowsUser.inc:3710 ../lib/modules/inetOrgPerson.inc:275 +#: ../lib/modules/inetOrgPerson.inc:555 ../lib/modules/inetOrgPerson.inc:778 +#: ../lib/modules/inetOrgPerson.inc:1481 ../lib/modules/inetOrgPerson.inc:1484 +#: ../lib/modules/inetOrgPerson.inc:1990 ../lib/modules/inetOrgPerson.inc:4095 +#: ../lib/modules/inetOrgPerson.inc:4132 ../lib/modules/passwordSelfReset.inc:631 #: ../lib/modules/passwordSelfReset.inc:1042 #: ../lib/modules/passwordSelfReset.inc:1261 msgid "Employee number" msgstr "Personeelsnummer" -#: ../lib/modules/windowsUser.inc:314 ../lib/modules/windowsUser.inc:706 -#: ../lib/modules/windowsUser.inc:791 ../lib/modules/windowsUser.inc:901 -#: ../lib/modules/windowsUser.inc:1037 ../lib/modules/windowsUser.inc:1177 -#: ../lib/modules/windowsUser.inc:2716 ../lib/modules/windowsUser.inc:3616 +#: ../lib/modules/windowsLDSUser.inc:243 ../lib/modules/windowsLDSUser.inc:537 +#: ../lib/modules/windowsLDSUser.inc:614 ../lib/modules/windowsLDSUser.inc:695 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:920 +#: ../lib/modules/windowsLDSUser.inc:1849 ../lib/modules/windowsLDSUser.inc:2197 +#: ../lib/modules/windowsUser.inc:316 ../lib/modules/windowsUser.inc:716 +#: ../lib/modules/windowsUser.inc:815 ../lib/modules/windowsUser.inc:937 +#: ../lib/modules/windowsUser.inc:1073 ../lib/modules/windowsUser.inc:1215 +#: ../lib/modules/windowsUser.inc:2882 ../lib/modules/windowsUser.inc:3711 #: ../lib/modules/inetOrgPerson.inc:96 ../lib/modules/inetOrgPerson.inc:283 #: ../lib/modules/inetOrgPerson.inc:537 ../lib/modules/inetOrgPerson.inc:586 -#: ../lib/modules/inetOrgPerson.inc:1475 ../lib/modules/inetOrgPerson.inc:1478 -#: ../lib/modules/inetOrgPerson.inc:1971 ../lib/modules/inetOrgPerson.inc:2058 -#: ../lib/modules/inetOrgPerson.inc:3877 ../lib/modules/inetOrgPerson.inc:3913 +#: ../lib/modules/inetOrgPerson.inc:1489 ../lib/modules/inetOrgPerson.inc:1492 +#: ../lib/modules/inetOrgPerson.inc:1988 ../lib/modules/inetOrgPerson.inc:2076 +#: ../lib/modules/inetOrgPerson.inc:4089 ../lib/modules/inetOrgPerson.inc:4128 msgid "Employee type" msgstr "Type werknemer" -#: ../lib/modules/windowsUser.inc:315 ../lib/modules/inetOrgPerson.inc:587 +#: ../lib/modules/windowsLDSUser.inc:244 ../lib/modules/windowsUser.inc:317 +#: ../lib/modules/inetOrgPerson.inc:587 msgid "Employee type: Contractor, Employee, Intern, Temp, External, ..." msgstr "Type werknemer: werknemer, intern, tijdelijk, extern, ..." -#: ../templates/lists/changePassword.php:525 -#: ../templates/lists/changePassword.php:532 ../templates/login.php:489 +#: ../templates/lists/changePassword.php:529 +#: ../templates/lists/changePassword.php:536 ../templates/login.php:499 msgid "Empty password submitted. Please try again." msgstr "Leeg wachtwoord niet toegestaan. Probeer opnieuw." @@ -4630,7 +4747,7 @@ msgstr "" "juiste server-side sortering selecteren (Stel de sortering hier in als oude " "wachtwoorden niet uit de geschiedenis worden verwijderd)." -#: ../lib/modules/ppolicy.inc:96 +#: ../lib/modules/ppolicy.inc:97 msgid "" "Enables quality checking (e.g. password length) of passwords. If set to \"force" "\" then you need to disable password hashing in your LAM server profile to " @@ -4646,11 +4763,11 @@ msgstr "" msgid "Encountered an error while performing search." msgstr "Er is een fout opgetreden tijdens de zoekopdracht." -#: ../templates/config/mainmanage.php:327 ../help/help.inc:168 +#: ../templates/config/mainmanage.php:358 ../help/help.inc:166 msgid "Encrypt session" msgstr "Versleutel sessie" -#: ../lib/modules/imapAccess.inc:84 ../lib/modules/imapAccess.inc:511 +#: ../lib/modules/imapAccess.inc:84 ../lib/modules/imapAccess.inc:519 msgid "Encryption protocol" msgstr "Encryptieprotocol" @@ -4662,7 +4779,7 @@ msgstr "" "Encryptieprotocol voor het verbinden met IMAP-server. LAM vereist een " "versleutelde verbinding." -#: ../help/help.inc:169 +#: ../help/help.inc:167 msgid "" "Encrypts sensitive data like passwords in your session. This requires the PHP " "OpenSSL extension." @@ -4682,15 +4799,15 @@ msgstr "Einde van de regel" msgid "Enforce classes" msgstr "Klassen afdwingen" -#: ../templates/selfService/adminMain.php:463 ../help/help.inc:107 +#: ../templates/selfService/adminMain.php:464 ../help/help.inc:107 msgid "Enforce language" msgstr "Taal afdwingen" -#: ../help/help.inc:225 +#: ../help/help.inc:231 msgid "Enforce password change on next login by default." msgstr "Vereis wachtwoord verandering bij eerste aanmelding per default." -#: ../lib/modules/posixAccount.inc:407 ../lib/modules/windowsUser.inc:403 +#: ../lib/modules/posixAccount.inc:407 ../lib/modules/windowsUser.inc:405 msgid "Enter one group per line that should be ignored when syncing groups." msgstr "" "Voer één groep per regel in die moet worden genegeerd bij het synchroniseren " @@ -4704,11 +4821,11 @@ msgstr "" "Voer hier de basis-DN van uw groepen in. Dit is alleen nodig als u " "lidmaatschappen op de zelfbedieningspagina wilt weergeven." -#: ../help/help.inc:211 +#: ../help/help.inc:217 msgid "Enter the host name of your database server." msgstr "Voer de host naam van uw database server in." -#: ../help/help.inc:213 +#: ../help/help.inc:219 msgid "" "Enter the port number of your database server. The default port will be used " "if empty." @@ -4722,7 +4839,7 @@ msgstr "Geef de waarde die u wilt toevoegen:" #: ../lib/modules/eduPerson.inc:117 ../lib/modules/eduPerson.inc:121 #: ../lib/modules/eduPerson.inc:193 ../lib/modules/eduPerson.inc:230 -#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:551 +#: ../lib/modules/eduPerson.inc:340 ../lib/modules/eduPerson.inc:545 msgid "Entitlements" msgstr "Aanspraken" @@ -4766,7 +4883,7 @@ msgstr "Item gecreëerd" #: ../templates/3rdParty/pla/htdocs/mass_edit.php:27 #: ../templates/3rdParty/pla/htdocs/rdelete.php:24 #: ../templates/3rdParty/pla/htdocs/rdelete.php:56 -#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:954 +#: ../templates/3rdParty/pla/htdocs/mass_delete.php:33 ../lib/account.inc:959 msgid "Entry does not exist" msgstr "Item bestaat niet" @@ -4790,7 +4907,7 @@ msgstr "Apparatuur" #: ../lib/3rdParty/yubico/Yubico.php:175 ../lib/3rdParty/yubico/Yubico.php:220 #: ../lib/3rdParty/yubico/Yubico.php:229 ../lib/3rdParty/yubico/Yubico.php:240 #: ../lib/3rdParty/yubico/Yubico.php:243 ../lib/3rdParty/yubico/Yubico.php:248 -#: ../templates/config/mainmanage.php:415 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/Template.php:399 #: ../templates/3rdParty/pla/lib/Template.php:442 #: ../templates/3rdParty/pla/lib/Template.php:486 @@ -4806,7 +4923,7 @@ msgstr "Fout" msgid "Error number" msgstr "Foutnummer" -#: ../lib/modules/mitKerberos.inc:1199 ../lib/modules/heimdalKerberos.inc:1045 +#: ../lib/modules/mitKerberos.inc:1195 ../lib/modules/heimdalKerberos.inc:1045 msgid "Error while changing Kerberos password." msgstr "Fout tijdens het wijzigen van het Kerberos wachtwoord." @@ -4815,7 +4932,7 @@ msgstr "Fout tijdens het wijzigen van het Kerberos wachtwoord." msgid "Error while deleting DN: %s" msgstr "Fout tijdens verwijderen DN: %s" -#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:251 +#: ../templates/login.php:217 ../templates/selfService/selfServiceLogin.php:252 #: ../lib/env.inc:245 msgid "Evaluation Licence" msgstr "Evaluatie licentie" @@ -4845,8 +4962,8 @@ msgstr "Voorbeeld waarde" msgid "Examples" msgstr "Voorbeelden" -#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2222 -#: ../lib/modules/windowsUser.inc:402 ../lib/modules/windowsUser.inc:3641 +#: ../lib/modules/posixAccount.inc:406 ../lib/modules/posixAccount.inc:2286 +#: ../lib/modules/windowsUser.inc:404 ../lib/modules/windowsUser.inc:3736 msgid "Exclude from group sync" msgstr "Uitsluiten van groepssynchronisatie" @@ -4886,9 +5003,13 @@ msgstr "Expiratie timestamp" msgid "Expiration timestamp (\"regseconds\" option)." msgstr "Expiratie timestamp (\"regseconds\" optie)." -#: ../lib/types/ppolicyType.inc:89 ../lib/modules/ppolicy.inc:115 -#: ../lib/modules/ppolicy.inc:147 ../lib/modules/ppolicy.inc:173 -#: ../lib/modules/ppolicy.inc:205 ../lib/modules/ppolicy.inc:471 +#: ../templates/config/mainmanage.php:327 ../help/help.inc:240 +msgid "Expiration warning" +msgstr "Vervalwaarschuwing" + +#: ../lib/types/ppolicyType.inc:89 ../lib/modules/ppolicy.inc:116 +#: ../lib/modules/ppolicy.inc:152 ../lib/modules/ppolicy.inc:179 +#: ../lib/modules/ppolicy.inc:211 ../lib/modules/ppolicy.inc:483 msgid "Expire warning" msgstr "Verlopen waarschuwing" @@ -4914,7 +5035,7 @@ msgid "Export" msgstr "Uitvoer" #: ../templates/pdfedit/pdfmain.php:264 ../templates/pdfedit/pdfmain.php:265 -#: ../help/help.inc:266 +#: ../help/help.inc:278 msgid "Export PDF structure" msgstr "Exporteer PDF structuur" @@ -4924,7 +5045,7 @@ msgid "Export format" msgstr "Uitvoer formaat" #: ../templates/profedit/profilemain.php:240 -#: ../templates/profedit/profilemain.php:241 ../help/help.inc:246 +#: ../templates/profedit/profilemain.php:241 ../help/help.inc:258 msgid "Export profile" msgstr "Exporteer profiel" @@ -4969,7 +5090,7 @@ msgstr "Extensie eigenaar" msgid "Extension with this name already exists." msgstr "Extensie met deze naam bestaat reeds." -#: ../templates/config/mainmanage.php:410 ../help/help.inc:176 +#: ../templates/config/mainmanage.php:441 ../help/help.inc:174 msgid "External password check" msgstr "Externe wachtwoordcontrole" @@ -4988,33 +5109,37 @@ msgstr "Mislukte logins" #: ../lib/profiles.inc:246 ../lib/pdfstruct.inc:127 ../lib/pdfstruct.inc:137 #: ../lib/pdfstruct.inc:150 ../lib/pdfstruct.inc:159 msgid "Failed to copy" -msgstr "Mislukt om te kopiëren!" +msgstr "Mislukt om te kopiëren" #: ../templates/initsuff.php:163 msgid "Failed to create entry!" msgstr "Entree maken mislukt!" -#: ../lib/modules/range.inc:124 ../lib/modules/range.inc:561 +#: ../lib/modules/range.inc:123 ../lib/modules/range.inc:560 msgid "Failover peer" msgstr "Failover peer" -#: ../lib/types/ppolicyType.inc:88 ../lib/modules/ppolicy.inc:111 -#: ../lib/modules/ppolicy.inc:152 ../lib/modules/ppolicy.inc:172 -#: ../lib/modules/ppolicy.inc:269 ../lib/modules/ppolicy.inc:470 +#: ../lib/types/ppolicyType.inc:88 ../lib/modules/ppolicy.inc:112 +#: ../lib/modules/ppolicy.inc:157 ../lib/modules/ppolicy.inc:178 +#: ../lib/modules/ppolicy.inc:275 ../lib/modules/ppolicy.inc:482 msgid "Failure count interval" msgstr "Fout aantal interval" -#: ../lib/modules/windowsUser.inc:201 ../lib/modules/windowsUser.inc:609 -#: ../lib/modules/windowsUser.inc:874 ../lib/modules/windowsUser.inc:944 -#: ../lib/modules/windowsUser.inc:1000 ../lib/modules/windowsUser.inc:1160 -#: ../lib/modules/windowsUser.inc:2702 ../lib/modules/windowsUser.inc:2900 -#: ../lib/modules/windowsUser.inc:3602 ../lib/modules/inetOrgPerson.inc:78 -#: ../lib/modules/inetOrgPerson.inc:160 ../lib/modules/inetOrgPerson.inc:371 -#: ../lib/modules/inetOrgPerson.inc:519 ../lib/modules/inetOrgPerson.inc:646 -#: ../lib/modules/inetOrgPerson.inc:650 ../lib/modules/inetOrgPerson.inc:1411 -#: ../lib/modules/inetOrgPerson.inc:1414 ../lib/modules/inetOrgPerson.inc:1964 -#: ../lib/modules/inetOrgPerson.inc:2037 ../lib/modules/inetOrgPerson.inc:2626 -#: ../lib/modules/inetOrgPerson.inc:3872 ../lib/modules/inetOrgPerson.inc:3910 +#: ../lib/modules/windowsLDSUser.inc:185 ../lib/modules/windowsLDSUser.inc:466 +#: ../lib/modules/windowsLDSUser.inc:677 ../lib/modules/windowsLDSUser.inc:765 +#: ../lib/modules/windowsLDSUser.inc:903 ../lib/modules/windowsLDSUser.inc:1837 +#: ../lib/modules/windowsLDSUser.inc:2186 ../lib/modules/windowsUser.inc:203 +#: ../lib/modules/windowsUser.inc:619 ../lib/modules/windowsUser.inc:910 +#: ../lib/modules/windowsUser.inc:980 ../lib/modules/windowsUser.inc:1036 +#: ../lib/modules/windowsUser.inc:1198 ../lib/modules/windowsUser.inc:2868 +#: ../lib/modules/windowsUser.inc:3071 ../lib/modules/windowsUser.inc:3696 +#: ../lib/modules/inetOrgPerson.inc:78 ../lib/modules/inetOrgPerson.inc:160 +#: ../lib/modules/inetOrgPerson.inc:371 ../lib/modules/inetOrgPerson.inc:519 +#: ../lib/modules/inetOrgPerson.inc:646 ../lib/modules/inetOrgPerson.inc:650 +#: ../lib/modules/inetOrgPerson.inc:1425 ../lib/modules/inetOrgPerson.inc:1428 +#: ../lib/modules/inetOrgPerson.inc:1981 ../lib/modules/inetOrgPerson.inc:2055 +#: ../lib/modules/inetOrgPerson.inc:2670 ../lib/modules/inetOrgPerson.inc:4084 +#: ../lib/modules/inetOrgPerson.inc:4125 msgid "Fax number" msgstr "Faxnummer" @@ -5032,8 +5157,8 @@ msgid "Field" msgstr "Veld" #: ../templates/tools/importexport.php:152 -#: ../templates/tools/importexport.php:169 ../templates/config/mainmanage.php:422 -#: ../templates/config/mainmanage.php:455 +#: ../templates/tools/importexport.php:169 ../templates/config/mainmanage.php:453 +#: ../templates/config/mainmanage.php:484 #: ../templates/3rdParty/pla/lib/functions.php:526 #: ../templates/3rdParty/pla/tools/unserialize.php:14 #: ../templates/3rdParty/pla/htdocs/import.php:48 @@ -5042,18 +5167,19 @@ msgstr "Bestand" #: ../lib/pdfstruct.inc:201 msgid "File does not exist." -msgstr "Bestand bestaat niet" +msgstr "Bestand bestaat niet." #: ../lib/modules/customFields.inc:173 ../lib/modules/customFields.inc:4252 msgid "File extension" msgstr "Bestandsextensie" -#: ../lib/modules/windowsUser.inc:1045 ../lib/modules/inetOrgPerson.inc:106 +#: ../lib/modules/windowsLDSUser.inc:795 ../lib/modules/windowsUser.inc:1081 +#: ../lib/modules/inetOrgPerson.inc:106 #, php-format msgid "File is too large. Maximum allowed size is %s kB." msgstr "Bestand is te groot. Maximaal toegestane grootte is %s kB." -#: ../lib/modules/windowsUser.inc:231 +#: ../lib/modules/windowsUser.inc:233 msgid "" "File name and path relative to netlogon-share which should be executed on " "logon." @@ -5081,7 +5207,7 @@ msgstr "Bestandspad" #: ../templates/upload/masscreate.php:272 ../lib/tools/fileUpload.inc:45 #: ../lib/modules/ldapPublicKey.inc:93 ../lib/modules/customFields.inc:4238 -#: ../lib/lists.inc:875 +#: ../lib/lists.inc:874 msgid "File upload" msgstr "Bestand upload" @@ -5095,7 +5221,7 @@ msgstr "Bestand upload" #: ../lib/modules/zarafaDynamicGroup.inc:170 #: ../lib/modules/zarafaDynamicGroup.inc:223 #: ../lib/modules/zarafaDynamicGroup.inc:413 ../lib/modules/zarafaContact.inc:94 -#: ../lib/modules/posixGroup.inc:471 ../lib/modules/nisNetGroupHost.inc:119 +#: ../lib/modules/posixGroup.inc:472 ../lib/modules/nisNetGroupHost.inc:119 #: ../lib/modules/zarafaAddressList.inc:78 #: ../lib/modules/zarafaAddressList.inc:133 #: ../lib/modules/zarafaAddressList.inc:144 @@ -5110,7 +5236,8 @@ msgstr "Bestand upload" #: ../lib/modules/kopanoDynamicGroup.inc:208 #: ../lib/modules/kopanoDynamicGroup.inc:353 ../lib/modules/nisnetgroup.inc:106 #: ../lib/modules/nisnetgroup.inc:477 ../lib/modules/kopanoUser.inc:158 -#: ../lib/modules/kopanoAddressList.inc:78 +#: ../lib/modules/windowsLDSGroup.inc:108 ../lib/modules/windowsLDSGroup.inc:388 +#: ../lib/modules/windowsLDSGroup.inc:454 ../lib/modules/kopanoAddressList.inc:78 #: ../lib/modules/kopanoAddressList.inc:133 #: ../lib/modules/kopanoAddressList.inc:144 #: ../lib/modules/kopanoAddressList.inc:173 @@ -5123,8 +5250,8 @@ msgstr "Bestand upload" #: ../lib/modules/groupOfNames.inc:116 ../lib/modules/groupOfNames.inc:316 #: ../lib/modules/groupOfNames.inc:391 ../lib/modules/groupOfNames.inc:465 #: ../lib/modules/groupOfNames.inc:541 ../lib/modules/nisMailAlias.inc:92 -#: ../lib/modules/nisMailAlias.inc:374 ../lib/lists.inc:456 -#: ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 ../help/help.inc:178 +#: ../lib/modules/nisMailAlias.inc:374 ../lib/lists.inc:455 +#: ../lib/baseModule.inc:1609 ../lib/baseModule.inc:1636 ../help/help.inc:176 msgid "Filter" msgstr "Filter" @@ -5141,24 +5268,29 @@ msgid "Finished all operations." msgstr "Klaar met alle operaties." #: ../lib/types/user.inc:102 ../lib/modules/selfRegistration.inc:82 -#: ../lib/modules/selfRegistration.inc:205 ../lib/modules/windowsUser.inc:149 -#: ../lib/modules/windowsUser.inc:424 ../lib/modules/windowsUser.inc:843 -#: ../lib/modules/windowsUser.inc:994 ../lib/modules/windowsUser.inc:1124 -#: ../lib/modules/windowsUser.inc:2689 ../lib/modules/inetOrgPerson.inc:68 +#: ../lib/modules/selfRegistration.inc:205 ../lib/modules/windowsLDSUser.inc:133 +#: ../lib/modules/windowsLDSUser.inc:349 ../lib/modules/windowsLDSUser.inc:656 +#: ../lib/modules/windowsLDSUser.inc:759 ../lib/modules/windowsLDSUser.inc:868 +#: ../lib/modules/windowsLDSUser.inc:1825 ../lib/modules/windowsUser.inc:151 +#: ../lib/modules/windowsUser.inc:434 ../lib/modules/windowsUser.inc:876 +#: ../lib/modules/windowsUser.inc:1030 ../lib/modules/windowsUser.inc:1162 +#: ../lib/modules/windowsUser.inc:2855 ../lib/modules/inetOrgPerson.inc:68 #: ../lib/modules/inetOrgPerson.inc:158 ../lib/modules/inetOrgPerson.inc:236 #: ../lib/modules/inetOrgPerson.inc:476 ../lib/modules/inetOrgPerson.inc:578 -#: ../lib/modules/inetOrgPerson.inc:1194 ../lib/modules/inetOrgPerson.inc:1197 -#: ../lib/modules/inetOrgPerson.inc:1948 ../lib/modules/inetOrgPerson.inc:2549 -#: ../lib/modules/inetOrgPerson.inc:3904 +#: ../lib/modules/inetOrgPerson.inc:1204 ../lib/modules/inetOrgPerson.inc:1207 +#: ../lib/modules/inetOrgPerson.inc:1965 ../lib/modules/inetOrgPerson.inc:2579 +#: ../lib/modules/inetOrgPerson.inc:4119 msgid "First name" msgstr "Voornaam" -#: ../lib/modules/windowsUser.inc:994 ../lib/modules/windowsUser.inc:995 +#: ../lib/modules/windowsLDSUser.inc:759 ../lib/modules/windowsLDSUser.inc:760 +#: ../lib/modules/windowsUser.inc:1030 ../lib/modules/windowsUser.inc:1031 #: ../lib/modules/inetOrgPerson.inc:68 ../lib/modules/inetOrgPerson.inc:69 msgid "First name contains invalid characters!" msgstr "Voornaam bevat ongeldige tekens!" -#: ../lib/modules/windowsUser.inc:150 ../lib/modules/inetOrgPerson.inc:579 +#: ../lib/modules/windowsLDSUser.inc:134 ../lib/modules/windowsUser.inc:152 +#: ../lib/modules/inetOrgPerson.inc:579 msgid "First name of user. Only letters, - and spaces are allowed." msgstr "Voornaam van gebruiker; alleen letters, - en spaties zijn toegestaan." @@ -5170,7 +5302,7 @@ msgstr "Vaste IP-adressen" msgid "Fixed list" msgstr "Vaste lijst" -#: ../lib/modules/posixGroup.inc:548 ../lib/modules/posixAccount.inc:2141 +#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2205 msgid "Fixed range" msgstr "Vaste range" @@ -5179,18 +5311,18 @@ msgid "Folding marks" msgstr "Folding marks" #: ../templates/config/confmain.php:230 -#: ../templates/selfService/adminMain.php:430 ../help/help.inc:89 +#: ../templates/selfService/adminMain.php:431 ../help/help.inc:89 msgid "Follow referrals" msgstr "Volg verwijzingen" -#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:780 -#: ../help/help.inc:270 +#: ../templates/upload/masscreate.php:307 ../lib/lists.inc:779 +#: ../help/help.inc:282 msgid "Font" msgstr "Lettertype" #: ../lib/modules/kolabUser.inc:112 msgid "For automatic invitation handling." -msgstr "Voor automatische uitnodigingshandeling" +msgstr "Voor automatische uitnodigingshandeling." #: ../lib/modules/nisnetgroup.inc:103 msgid "" @@ -5200,19 +5332,19 @@ msgstr "" "Voor de upload geef de gegevens in het formaat \"(HOST, gebruiker, domein)\". " "Meerdere items worden gescheiden door een puntkomma." -#: ../templates/lists/changePassword.php:238 ../lib/modules/locking389ds.inc:87 +#: ../templates/lists/changePassword.php:242 ../lib/modules/locking389ds.inc:87 #: ../lib/modules/mitKerberos.inc:182 ../lib/modules/mitKerberos.inc:414 #: ../lib/modules/shadowAccount.inc:376 ../lib/modules/heimdalKerberos.inc:126 #: ../lib/modules/heimdalKerberos.inc:340 ../lib/modules.inc:1132 -#: ../help/help.inc:260 +#: ../help/help.inc:272 msgid "Force password change" msgstr "Forceer wachtwoord verandering" -#: ../templates/config/confmain.php:341 ../help/help.inc:224 +#: ../templates/config/confmain.php:341 ../help/help.inc:230 msgid "Force password change by default" msgstr "Forceer wachtwoord verandering per default" -#: ../lib/modules/posixGroup.inc:484 ../lib/modules/posixGroup.inc:531 +#: ../lib/modules/posixGroup.inc:485 ../lib/modules/posixGroup.inc:532 msgid "Force sync with group of names" msgstr "Forceert sync met de groep van namen" @@ -5220,7 +5352,7 @@ msgstr "Forceert sync met de groep van namen" msgid "Forgot password?" msgstr "Wachtwoord vergeten?" -#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:340 +#: ../templates/3rdParty/pla/lib/QueryRender.php:457 ../help/help.inc:352 msgid "Format" msgstr "Formaat" @@ -5239,7 +5371,7 @@ msgid "Free printing" msgstr "Gratis printen" #: ../lib/modules/freeRadius.inc:76 ../lib/modules/freeRadius.inc:816 -#: ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/freeRadius.inc:884 msgid "FreeRadius" msgstr "FreeRadius" @@ -5247,17 +5379,18 @@ msgstr "FreeRadius" msgid "Friday" msgstr "Vrijdag" +#: ../templates/config/mainmanage.php:114 ../templates/config/mainmanage.php:339 #: ../templates/config/confmain.php:357 ../lib/passwordExpirationJob.inc:83 #: ../lib/passwordExpirationJob.inc:122 ../lib/modules/selfRegistration.inc:89 #: ../lib/modules/selfRegistration.inc:217 #: ../lib/modules/passwordSelfReset.inc:119 #: ../lib/modules/passwordSelfReset.inc:663 -#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:334 -#: ../help/help.inc:378 +#: ../lib/modules/passwordSelfReset.inc:679 ../help/help.inc:242 +#: ../help/help.inc:346 ../help/help.inc:390 msgid "From address" msgstr "Van adres" -#: ../templates/config/confmain.php:615 +#: ../templates/config/confmain.php:614 ../templates/config/confmain.php:617 msgid "From address for password mails is invalid." msgstr "Afzender adres voor wachtwoord mails is niet geldig." @@ -5287,7 +5420,7 @@ msgstr "Van gebruiker instelling voor deze account." msgid "Full contact" msgstr "Volledige contact" -#: ../templates/lists/changePassword.php:276 +#: ../templates/lists/changePassword.php:280 #: ../lib/modules/asteriskVoicemail.inc:102 #: ../lib/modules/asteriskVoicemail.inc:138 #: ../lib/modules/asteriskVoicemail.inc:171 @@ -5305,11 +5438,12 @@ msgstr "Volledige naam voor de Asterisk voicemail mailbox." msgid "Function" msgstr "Functie" -#: ../lib/modules/windowsUser.inc:474 ../lib/modules/inetOrgPerson.inc:317 +#: ../lib/modules/windowsLDSUser.inc:399 ../lib/modules/windowsUser.inc:484 +#: ../lib/modules/inetOrgPerson.inc:317 msgid "GB-12345" msgstr "GB-12345" -#: ../lib/modules/posixGroup.inc:458 ../lib/modules/posixGroup.inc:553 +#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixGroup.inc:554 msgid "GID generator" msgstr "GID generator" @@ -5317,17 +5451,17 @@ msgstr "GID generator" #: ../lib/modules/qmailUser.inc:201 ../lib/modules/qmailUser.inc:298 #: ../lib/modules/qmailUser.inc:375 ../lib/modules/qmailUser.inc:461 #: ../lib/modules/qmailUser.inc:934 ../lib/modules/qmailUser.inc:1059 -#: ../lib/modules/posixGroup.inc:211 ../lib/modules/posixGroup.inc:398 -#: ../lib/modules/posixGroup.inc:404 ../lib/modules/posixGroup.inc:418 -#: ../lib/modules/posixGroup.inc:438 ../lib/modules/posixGroup.inc:667 -#: ../lib/modules/posixGroup.inc:701 ../lib/modules/posixAccount.inc:115 -#: ../lib/modules/posixAccount.inc:302 ../lib/modules/posixAccount.inc:2107 +#: ../lib/modules/posixGroup.inc:211 ../lib/modules/posixGroup.inc:399 +#: ../lib/modules/posixGroup.inc:405 ../lib/modules/posixGroup.inc:419 +#: ../lib/modules/posixGroup.inc:439 ../lib/modules/posixGroup.inc:668 +#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixAccount.inc:115 +#: ../lib/modules/posixAccount.inc:302 ../lib/modules/posixAccount.inc:2171 #: ../lib/modules/sambaGroupMapping.inc:110 #: ../lib/modules/sambaGroupMapping.inc:511 msgid "GID number" msgstr "GID nummer" -#: ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/posixGroup.inc:702 msgid "" "GID number has changed. Please select checkbox to change GID number of users " "and hosts." @@ -5345,7 +5479,7 @@ msgstr "" "passen voer het volgende commando als root uit: 'find / -gid %s -uid %s -exec " "chrgrp %s {} \\;'" -#: ../lib/modules/posixGroup.inc:708 +#: ../lib/modules/posixGroup.inc:709 msgid "GID number has to be a numeric value!" msgstr "GIDnummer moet een nummerieke waarde zijn!" @@ -5354,14 +5488,14 @@ msgid "GID number is already in use." msgstr "GID-nummer is al in gebruik." #: ../lib/modules/posixAccount.inc:419 ../lib/modules/posixAccount.inc:457 -#: ../lib/modules/posixAccount.inc:1628 ../lib/modules/posixAccount.inc:2080 -#: ../lib/modules/posixAccount.inc:2110 ../lib/modules/posixAccount.inc:2213 -#: ../lib/modules/posixAccount.inc:2282 ../lib/modules/posixAccount.inc:2423 -#: ../lib/modules/posixAccount.inc:2431 +#: ../lib/modules/posixAccount.inc:1674 ../lib/modules/posixAccount.inc:2142 +#: ../lib/modules/posixAccount.inc:2174 ../lib/modules/posixAccount.inc:2276 +#: ../lib/modules/posixAccount.inc:2346 ../lib/modules/posixAccount.inc:2487 +#: ../lib/modules/posixAccount.inc:2495 msgid "Gecos" msgstr "Gecos" -#: ../lib/modules/windowsUser.inc:1097 +#: ../lib/modules/windowsLDSUser.inc:844 ../lib/modules/windowsUser.inc:1135 msgid "General" msgstr "Algemeen" @@ -5369,8 +5503,8 @@ msgstr "Algemeen" msgid "General information" msgstr "Algemene informatie" -#: ../templates/config/mainmanage.php:295 -#: ../templates/selfService/adminMain.php:407 +#: ../templates/config/mainmanage.php:302 +#: ../templates/selfService/adminMain.php:408 #: ../templates/profedit/profilepage.php:189 ../lib/configPages.inc:87 msgid "General settings" msgstr "Algemene instellingen" @@ -5379,7 +5513,7 @@ msgstr "Algemene instellingen" msgid "Generate new serial number." msgstr "Genereer een nieuw serienummer." -#: ../templates/lists/changePassword.php:307 ../help/help.inc:314 +#: ../templates/lists/changePassword.php:311 ../help/help.inc:326 msgid "Generate random password" msgstr "Genereer willekeurig wachtwoord" @@ -5407,17 +5541,17 @@ msgstr "Ga terug" msgid "Go to" msgstr "Ga naar" -#: ../templates/selfService/adminMain.php:543 ../help/help.inc:316 +#: ../templates/selfService/adminMain.php:547 ../help/help.inc:328 msgid "Google reCAPTCHA" msgstr "Google reCAPTCHA" -#: ../lib/types/ppolicyType.inc:85 ../lib/modules/ppolicy.inc:99 -#: ../lib/modules/ppolicy.inc:148 ../lib/modules/ppolicy.inc:169 -#: ../lib/modules/ppolicy.inc:212 ../lib/modules/ppolicy.inc:467 +#: ../lib/types/ppolicyType.inc:85 ../lib/modules/ppolicy.inc:100 +#: ../lib/modules/ppolicy.inc:153 ../lib/modules/ppolicy.inc:175 +#: ../lib/modules/ppolicy.inc:218 ../lib/modules/ppolicy.inc:479 msgid "Grace authentication limit" msgstr "Grace authenticatie limiet" -#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:129 ../lib/modules/quota.inc:524 msgid "Grace block period" msgstr "Respijtperiode blok" @@ -5435,13 +5569,13 @@ msgstr "" "Respijtperiode inode (bestanden). Meeste bestandsystemen hanteren een " "vaststaand maximum van 7 dagen." -#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:151 ../lib/modules/quota.inc:525 msgid "Grace inode period" msgstr "Respijtperiode inode" #: ../templates/config/confmain.php:308 -#: ../templates/selfService/adminMain.php:693 -#: ../templates/selfService/adminMain.php:744 +#: ../templates/selfService/adminMain.php:697 +#: ../templates/selfService/adminMain.php:748 #: ../lib/modules/nisNetGroupHost.inc:100 ../lib/modules/nisNetGroupHost.inc:217 #: ../lib/modules/nisNetGroupHost.inc:259 ../lib/modules/nisNetGroupUser.inc:184 #: ../lib/modules/nisNetGroupUser.inc:435 ../lib/modules/nisNetGroupUser.inc:477 @@ -5471,9 +5605,9 @@ msgstr "Omschrijving groep" #: ../lib/modules/pykotaGroup.inc:112 msgid "Group description." -msgstr "Omschrijving groep" +msgstr "Omschrijving groep." -#: ../lib/modules/posixGroup.inc:423 +#: ../lib/modules/posixGroup.inc:424 msgid "Group description. If left empty group name will be used." msgstr "Omschrijving groep. Indien leeg zal naam van de groep worden gebruikt." @@ -5487,14 +5621,15 @@ msgstr "Groep lid DN's" #: ../lib/modules/pykotaPrinter.inc:122 ../lib/modules/pykotaPrinter.inc:185 #: ../lib/modules/pykotaPrinter.inc:198 ../lib/modules/pykotaPrinter.inc:262 #: ../lib/modules/pykotaPrinter.inc:594 ../lib/modules/posixGroup.inc:85 -#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:304 -#: ../lib/modules/posixGroup.inc:426 ../lib/modules/posixGroup.inc:430 -#: ../lib/modules/posixGroup.inc:653 ../lib/modules/posixGroup.inc:665 -#: ../lib/modules/posixGroup.inc:678 ../lib/modules/windowsGroup.inc:376 +#: ../lib/modules/posixGroup.inc:237 ../lib/modules/posixGroup.inc:305 +#: ../lib/modules/posixGroup.inc:427 ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:654 ../lib/modules/posixGroup.inc:666 +#: ../lib/modules/posixGroup.inc:679 ../lib/modules/windowsLDSGroup.inc:190 +#: ../lib/modules/windowsGroup.inc:376 msgid "Group members" msgstr "Groep leden" -#: ../lib/modules/posixGroup.inc:654 +#: ../lib/modules/posixGroup.inc:655 msgid "Group members (incl. primary members)" msgstr "Groepsleden (incl. Primaire leden)" @@ -5507,10 +5642,10 @@ msgstr "Groepsleden (incl. Primaire leden)" #: ../lib/modules/zarafaDynamicGroup.inc:180 #: ../lib/modules/zarafaDynamicGroup.inc:204 #: ../lib/modules/zarafaDynamicGroup.inc:410 ../lib/modules/posixGroup.inc:66 -#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:446 -#: ../lib/modules/posixGroup.inc:649 ../lib/modules/posixGroup.inc:666 -#: ../lib/modules/posixGroup.inc:709 ../lib/modules/posixGroup.inc:710 -#: ../lib/modules/posixGroup.inc:711 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/posixGroup.inc:208 ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:650 ../lib/modules/posixGroup.inc:667 +#: ../lib/modules/posixGroup.inc:710 ../lib/modules/posixGroup.inc:711 +#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:170 ../lib/modules/pykotaGroup.inc:190 #: ../lib/modules/kopanoDynamicGroup.inc:62 #: ../lib/modules/kopanoDynamicGroup.inc:119 @@ -5521,7 +5656,11 @@ msgstr "Groepsleden (incl. Primaire leden)" #: ../lib/modules/kopanoDynamicGroup.inc:350 ../lib/modules/nisnetgroup.inc:85 #: ../lib/modules/nisnetgroup.inc:114 ../lib/modules/nisnetgroup.inc:141 #: ../lib/modules/nisnetgroup.inc:153 ../lib/modules/nisnetgroup.inc:197 -#: ../lib/modules/nisnetgroup.inc:570 ../lib/modules/organizationalRole.inc:89 +#: ../lib/modules/nisnetgroup.inc:570 ../lib/modules/windowsLDSGroup.inc:84 +#: ../lib/modules/windowsLDSGroup.inc:117 ../lib/modules/windowsLDSGroup.inc:143 +#: ../lib/modules/windowsLDSGroup.inc:156 ../lib/modules/windowsLDSGroup.inc:167 +#: ../lib/modules/windowsLDSGroup.inc:595 +#: ../lib/modules/organizationalRole.inc:89 #: ../lib/modules/organizationalRole.inc:118 #: ../lib/modules/organizationalRole.inc:141 #: ../lib/modules/organizationalRole.inc:480 ../lib/modules/windowsGroup.inc:119 @@ -5536,7 +5675,7 @@ msgstr "Groep naam" #: ../lib/modules/pykotaGroup.inc:170 ../lib/modules/pykotaGroup.inc:171 #: ../lib/modules/pykotaGroup.inc:174 ../lib/modules/pykotaGroup.inc:175 msgid "Group name already exists!" -msgstr "Groepnaam wordt al gebruikt." +msgstr "Groepnaam wordt al gebruikt!" #: ../lib/modules/zarafaDynamicGroup.inc:179 #: ../lib/modules/kopanoDynamicGroup.inc:183 @@ -5544,11 +5683,12 @@ msgid "Group name already in use." msgstr "Groepnaam wordt al gebruikt." #: ../lib/modules/zarafaDynamicGroup.inc:180 -#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:711 -#: ../lib/modules/posixGroup.inc:712 ../lib/modules/pykotaGroup.inc:168 +#: ../lib/modules/zarafaDynamicGroup.inc:181 ../lib/modules/posixGroup.inc:712 +#: ../lib/modules/posixGroup.inc:713 ../lib/modules/pykotaGroup.inc:168 #: ../lib/modules/pykotaGroup.inc:169 ../lib/modules/pykotaGroup.inc:172 #: ../lib/modules/pykotaGroup.inc:173 ../lib/modules/kopanoDynamicGroup.inc:184 #: ../lib/modules/kopanoDynamicGroup.inc:185 ../lib/modules/nisnetgroup.inc:153 +#: ../lib/modules/windowsLDSGroup.inc:156 ../lib/modules/windowsLDSGroup.inc:157 #: ../lib/modules/windowsGroup.inc:279 ../lib/modules/windowsGroup.inc:280 msgid "" "Group name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 " @@ -5560,7 +5700,7 @@ msgstr "" msgid "Group name for NIS." msgstr "Groepsnaam voor NIS." -#: ../lib/modules/posixGroup.inc:710 +#: ../lib/modules/posixGroup.inc:711 msgid "Group name in use. Selected next free group name." msgstr "Groep naam is in gebruik. Kies een volgende vrije groep naam." @@ -5573,7 +5713,7 @@ msgstr "" "Groep naam van de groep die aangemaakt moet worden. Geldige karakters zijn: a-" "z, A-Z, 0-9 en .-_ ." -#: ../lib/modules/posixGroup.inc:447 +#: ../lib/modules/posixGroup.inc:448 msgid "" "Group name of the group which should be created. Valid characters are: a-z, A-" "Z, 0-9 and .-_ . If group name is already used group name will be expanded " @@ -5611,7 +5751,7 @@ msgstr "Groep van namen accounts" msgid "Group of unique names" msgstr "Groep van unieke namen" -#: ../lib/modules/posixGroup.inc:410 ../lib/modules/posixGroup.inc:434 +#: ../lib/modules/posixGroup.inc:411 ../lib/modules/posixGroup.inc:435 msgid "Group password" msgstr "Groep wachtwoord" @@ -5627,14 +5767,19 @@ msgstr "Groep scope" msgid "Group type" msgstr "Groep type" -#: ../lib/types/group.inc:69 ../lib/modules/posixGroup.inc:505 +#: ../lib/types/group.inc:69 ../lib/modules/windowsLDSUser.inc:201 +#: ../lib/modules/windowsLDSUser.inc:204 ../lib/modules/windowsLDSUser.inc:451 +#: ../lib/modules/windowsLDSUser.inc:670 ../lib/modules/windowsLDSUser.inc:1002 +#: ../lib/modules/windowsLDSUser.inc:1239 ../lib/modules/windowsLDSUser.inc:1860 +#: ../lib/modules/windowsLDSUser.inc:1890 ../lib/modules/posixGroup.inc:506 #: ../lib/modules/zarafaGroup.inc:737 ../lib/modules/kopanoGroup.inc:698 -#: ../lib/modules/posixAccount.inc:3217 ../lib/modules/windowsUser.inc:237 -#: ../lib/modules/windowsUser.inc:240 ../lib/modules/windowsUser.inc:594 -#: ../lib/modules/windowsUser.inc:864 ../lib/modules/windowsUser.inc:1312 -#: ../lib/modules/windowsUser.inc:1774 ../lib/modules/windowsUser.inc:2752 -#: ../lib/modules/windowsUser.inc:2782 ../lib/modules/generalInformation.inc:111 -#: ../lib/modules/groupOfNamesUser.inc:537 ../lib/modules/windowsGroup.inc:505 +#: ../lib/modules/posixAccount.inc:3281 ../lib/modules/windowsUser.inc:239 +#: ../lib/modules/windowsUser.inc:242 ../lib/modules/windowsUser.inc:604 +#: ../lib/modules/windowsUser.inc:897 ../lib/modules/windowsUser.inc:1358 +#: ../lib/modules/windowsUser.inc:1820 ../lib/modules/windowsUser.inc:2919 +#: ../lib/modules/windowsUser.inc:2949 ../lib/modules/windowsLDSGroup.inc:271 +#: ../lib/modules/generalInformation.inc:111 +#: ../lib/modules/groupOfNamesUser.inc:538 ../lib/modules/windowsGroup.inc:505 msgid "Groups" msgstr "Groepen" @@ -5643,13 +5788,13 @@ msgid "Groups (read-only)" msgstr "Groepen (alleen-lezen)" #: ../lib/types/gon.inc:54 ../lib/modules/posixAccount.inc:261 -#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1811 -#: ../lib/modules/posixAccount.inc:1988 ../lib/modules/posixAccount.inc:2121 -#: ../lib/modules/posixAccount.inc:2217 ../lib/modules/groupOfNamesUser.inc:54 +#: ../lib/modules/posixAccount.inc:310 ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:2043 ../lib/modules/posixAccount.inc:2185 +#: ../lib/modules/posixAccount.inc:2280 ../lib/modules/groupOfNamesUser.inc:54 #: ../lib/modules/groupOfNamesUser.inc:56 ../lib/modules/groupOfNamesUser.inc:60 #: ../lib/modules/groupOfNamesUser.inc:64 ../lib/modules/groupOfNamesUser.inc:75 -#: ../lib/modules/groupOfNamesUser.inc:329 -#: ../lib/modules/groupOfNamesUser.inc:367 +#: ../lib/modules/groupOfNamesUser.inc:330 +#: ../lib/modules/groupOfNamesUser.inc:368 msgid "Groups of names" msgstr "Groepen van namen" @@ -5660,12 +5805,12 @@ msgstr "H-Node (0x08)" #: ../templates/config/confmain.php:370 ../lib/passwordExpirationJob.inc:88 #: ../lib/modules/selfRegistration.inc:221 #: ../lib/modules/passwordSelfReset.inc:665 -#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:343 +#: ../lib/modules/passwordSelfReset.inc:681 ../help/help.inc:355 msgid "HTML format" msgstr "HTML formaat" #: ../templates/config/confmain.php:458 -#: ../templates/selfService/adminMain.php:448 ../help/help.inc:132 +#: ../templates/selfService/adminMain.php:449 ../help/help.inc:132 msgid "HTTP authentication" msgstr "HTTP authenticatie" @@ -5678,17 +5823,17 @@ msgstr "HTTP authenticatie" msgid "HTTP port" msgstr "HTTP poort" -#: ../lib/modules/quota.inc:713 ../lib/modules/systemQuotas.inc:372 +#: ../lib/modules/quota.inc:776 ../lib/modules/systemQuotas.inc:372 msgid "Hard block" msgstr "Uiterste blok" #: ../lib/modules/quota.inc:123 ../lib/modules/quota.inc:124 -#: ../lib/modules/quota.inc:467 ../lib/modules/quota.inc:567 +#: ../lib/modules/quota.inc:524 ../lib/modules/quota.inc:627 #: ../lib/modules/systemQuotas.inc:128 msgid "Hard block limit" msgstr "Uiterste blok limiet" -#: ../lib/modules/quota.inc:715 ../lib/modules/systemQuotas.inc:374 +#: ../lib/modules/quota.inc:778 ../lib/modules/systemQuotas.inc:374 msgid "Hard inode" msgstr "Uiterste inode" @@ -5696,8 +5841,8 @@ msgstr "Uiterste inode" msgid "Hard inode (files) limit" msgstr "Uiterste inode (bestands) limiet" -#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:573 ../lib/modules/systemQuotas.inc:132 +#: ../lib/modules/quota.inc:145 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:633 ../lib/modules/systemQuotas.inc:132 msgid "Hard inode limit" msgstr "Uiterste inode limiet" @@ -5737,7 +5882,7 @@ msgstr "Hier kunnen de LDAP objectclasses en -attributen doorgebladerd worden." msgid "Here you can change the settings for the terminal server access." msgstr "Hier kunt u de instellingen voor de terminal server toegang aanpassen." -#: ../lib/selfService.inc:490 +#: ../lib/selfService.inc:491 msgid "Here you can change your personal settings." msgstr "Hier kunt u uw persoonlijke instellingen beheren." @@ -5759,9 +5904,10 @@ msgid "Here you can enter a description for this role." msgstr "Hier kunt u een beschrijving opgeven voor deze rol." #: ../lib/modules/pykotaPrinter.inc:128 ../lib/modules/zarafaContact.inc:95 -#: ../lib/modules/posixGroup.inc:472 ../lib/modules/zarafaUser.inc:159 +#: ../lib/modules/posixGroup.inc:473 ../lib/modules/zarafaUser.inc:159 #: ../lib/modules/kopanoContact.inc:95 ../lib/modules/sambaGroupMapping.inc:171 #: ../lib/modules/nisnetgroup.inc:107 ../lib/modules/kopanoUser.inc:159 +#: ../lib/modules/windowsLDSGroup.inc:109 #: ../lib/modules/organizationalRole.inc:106 ../lib/modules/groupOfNames.inc:117 #: ../lib/modules/nisMailAlias.inc:93 msgid "" @@ -5799,11 +5945,12 @@ msgstr "" msgid "Here you can enter a serial number for this device." msgstr "Hier kunt u een serienummer voor dit apparaat invoeren." -#: ../lib/modules/windowsUser.inc:206 ../lib/modules/windowsUser.inc:210 +#: ../lib/modules/windowsLDSUser.inc:190 ../lib/modules/windowsLDSUser.inc:194 +#: ../lib/modules/windowsUser.inc:208 ../lib/modules/windowsUser.inc:212 msgid "Here you can enter additional web sites for the user." msgstr "Hier kunt u extra websites opgeven voor de gebruiker." -#: ../help/help.inc:269 +#: ../help/help.inc:281 msgid "" "Here you can enter an alternative mail address for the password. To use the " "user's primary email address please leave the field blank." @@ -5824,12 +5971,13 @@ msgstr "" "Hiermee kunt u groep attributen toevoegen of verwijderen met inbegrip van hun " "objectklassen." -#: ../lib/modules/windowsUser.inc:331 ../lib/modules/windowsUser.inc:335 +#: ../lib/modules/windowsLDSUser.inc:260 ../lib/modules/windowsLDSUser.inc:264 +#: ../lib/modules/windowsUser.inc:333 ../lib/modules/windowsUser.inc:337 msgid "Here you can enter the user's department number." msgstr "Hier kunt u het afdelingsnummer van de gebruiker invoeren." -#: ../lib/modules/windowsUser.inc:327 ../lib/modules/inetOrgPerson.inc:742 -#: ../lib/modules/inetOrgPerson.inc:746 +#: ../lib/modules/windowsLDSUser.inc:256 ../lib/modules/windowsUser.inc:329 +#: ../lib/modules/inetOrgPerson.inc:746 ../lib/modules/inetOrgPerson.inc:750 msgid "Here you can enter the user's department." msgstr "Hier kunt u de gebruikers afdeling opgeven." @@ -5843,7 +5991,7 @@ msgid "Here you can explicitly enable and disable Zarafa features." msgstr "" "Hier kunnen Zarafa features expliciet geactiveerd en gedeactiveerd worden." -#: ../help/help.inc:267 +#: ../help/help.inc:279 msgid "" "Here you can export PDF structures to other server profiles (overwrite " "existing). You may also export a structure to the global templates. In this " @@ -5855,7 +6003,7 @@ msgstr "" "sjablonen. In dit geval zal het altijd worden gekopieerd naar alle server " "profielen die nog niet beschikken over een structuur met deze naam." -#: ../help/help.inc:247 +#: ../help/help.inc:259 msgid "" "Here you can export account profiles to other server profiles (overwrite " "existing). You may also export a profile to the global templates. In this case " @@ -5867,7 +6015,7 @@ msgstr "" "globale sjablonen. In dit geval zal het altijd worden gekopieerd naar alle " "server profielen die nog niet beschikken over een profiel met deze naam." -#: ../help/help.inc:265 +#: ../help/help.inc:277 msgid "" "Here you can import PDF structures from other server profiles (overwrite " "existing)." @@ -5875,7 +6023,7 @@ msgstr "" "Hier kunt u PDF structuren importeren van andere server profielen (bestaande " "worden overschreven)." -#: ../help/help.inc:245 +#: ../help/help.inc:257 msgid "" "Here you can import account profiles from other server profiles (overwrite " "existing)." @@ -5883,7 +6031,7 @@ msgstr "" "Hier u kunt account profielen importeren van andere server profielen " "(bestaande worden overschreven)." -#: ../lib/lists.inc:458 ../help/help.inc:179 +#: ../lib/lists.inc:457 ../help/help.inc:177 msgid "" "Here you can input simple filter expressions (e.g. 'value' or 'v*'). The " "filter is case-insensitive." @@ -5891,7 +6039,7 @@ msgstr "" "Hier kunt u eenvoudige filteruitdrukkingen invoeren (bijvoorbeeld 'waarde' of " "'v*'). Het filter is niet hoofdlettergevoelig." -#: ../help/help.inc:253 +#: ../help/help.inc:265 msgid "" "Here you can load an account profile to set default settings for your account. " "The \"default\" profile is automatically loaded for new accounts." @@ -5904,11 +6052,15 @@ msgstr "" msgid "Here you can manage your account profiles." msgstr "Hier kunt u uw account profielen beheren." -#: ../help/help.inc:193 +#: ../lib/tools/webauthn.inc:55 +msgid "Here you can manage your webauthn devices." +msgstr "Hier kunt u uw webauthn-apparaten beheren." + +#: ../help/help.inc:199 msgid "Here you can overwrite the display name for this account type." msgstr "Hier kunt u de weergavenaam overschrijven voor dit type account." -#: ../help/help.inc:255 +#: ../help/help.inc:267 msgid "Here you can select a PDF structure and export the account to a PDF file." msgstr "" "Hier kunt u een PDF struktuur selecteren en een account uitvoeren naar een PDF " @@ -5950,9 +6102,9 @@ msgstr "" #: ../lib/modules/customFields.inc:186 msgid "Here you can set the URL to a custom icon (32x32px) for this module." -msgstr "URL voor custom module icon(32x32px) " +msgstr "URL voor custom module icon(32x32px)." -#: ../help/help.inc:293 +#: ../help/help.inc:305 msgid "" "Here you can specify additional CSS links to change the layout of the self " "service pages. This is useful to adapt them to your corporate design. Please " @@ -5967,8 +6119,8 @@ msgid "" "Here you can specify minimum requirements for passwords. The character classes " "are: lowercase, uppercase, numeric and symbols." msgstr "" -"Hier kunt u minimumeisen voor wachtwoorden opgeven. De character typen " -"zijnkleine letters, hoofdletters, cijfers en symbolen. " +"Hier kunt u minimumeisen voor wachtwoorden opgeven. De character typen zijn " +"kleine letters, hoofdletters, cijfers en symbolen." #: ../lib/modules/nisnetgroup.inc:94 msgid "" @@ -6004,7 +6156,7 @@ msgid "" "Here you can specify the minimum number of characters for a user password." msgstr "Hier kunt u het minimum aantal tekens voor een wachtwoord opgeven." -#: ../templates/lists/changePassword.php:352 +#: ../templates/lists/changePassword.php:356 msgid "Here you can specify the new password yourself." msgstr "Hier kunt u zelf een nieuw wachtwoord opgeven." @@ -6058,11 +6210,11 @@ msgstr "Hier kunt u een nieuw bestand uploaden." #: ../lib/modules/kopanoAddressList.inc:111 #: ../lib/modules/kopanoAddressList.inc:142 #: ../lib/modules/kopanoAddressList.inc:179 -#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:186 +#: ../lib/modules/kopanoAddressList.inc:303 ../help/help.inc:192 msgid "Hidden" msgstr "Verborgen" -#: ../help/help.inc:187 +#: ../help/help.inc:193 msgid "" "Hidden account types will not show up in LAM. This is useful if you want to " "display e.g. only groups but still need to manage their members." @@ -6070,6 +6222,7 @@ msgstr "" "Verborgen account soorten zijn niet te zien in LAM. Dit is handig als u bijv. " "alleen groepen wilt tonen maar ook de leden van de groep wilt beheren." +#: ../lib/modules/windowsLDSUser.inc:211 ../lib/modules/windowsLDSUser.inc:2182 #: ../lib/modules/kopanoServer.inc:87 ../lib/modules/kopanoServer.inc:373 #: ../lib/modules/nisMailAliasUser.inc:104 #: ../lib/modules/nisMailAliasUser.inc:558 ../lib/modules/asteriskAccount.inc:242 @@ -6078,15 +6231,15 @@ msgstr "" #: ../lib/modules/zarafaGroup.inc:761 ../lib/modules/kopanoGroup.inc:114 #: ../lib/modules/kopanoGroup.inc:722 ../lib/modules/sambaSamAccount.inc:401 #: ../lib/modules/sambaSamAccount.inc:1946 ../lib/modules/posixAccount.inc:324 -#: ../lib/modules/posixAccount.inc:2208 ../lib/modules/posixAccount.inc:2277 +#: ../lib/modules/posixAccount.inc:2272 ../lib/modules/posixAccount.inc:2341 #: ../lib/modules/zarafaUser.inc:150 ../lib/modules/zarafaUser.inc:1816 -#: ../lib/modules/windowsUser.inc:255 ../lib/modules/windowsUser.inc:3598 -#: ../lib/modules/inetOrgPerson.inc:749 ../lib/modules/inetOrgPerson.inc:3856 +#: ../lib/modules/windowsUser.inc:257 ../lib/modules/windowsUser.inc:3692 +#: ../lib/modules/inetOrgPerson.inc:753 ../lib/modules/inetOrgPerson.inc:4068 #: ../lib/modules/freeRadius.inc:127 ../lib/modules/freeRadius.inc:298 #: ../lib/modules/kopanoUser.inc:150 ../lib/modules/kopanoUser.inc:1746 -#: ../lib/modules/zarafaServer.inc:88 ../lib/modules/zarafaServer.inc:394 -#: ../lib/modules/qmailGroup.inc:84 ../lib/modules/qmailGroup.inc:861 -#: ../lib/modules/organizationalRole.inc:85 +#: ../lib/modules/windowsLDSGroup.inc:80 ../lib/modules/zarafaServer.inc:88 +#: ../lib/modules/zarafaServer.inc:394 ../lib/modules/qmailGroup.inc:84 +#: ../lib/modules/qmailGroup.inc:861 ../lib/modules/organizationalRole.inc:85 #: ../lib/modules/organizationalRole.inc:732 #: ../lib/modules/passwordSelfReset.inc:163 #: ../lib/modules/passwordSelfReset.inc:301 ../lib/modules/windowsGroup.inc:115 @@ -6129,8 +6282,8 @@ msgid "" "Hint: Format all cells as text in your spreadsheet program and turn off auto " "correction." msgstr "" -"Tip: Formatteer alle cellen als tekt in uw spreadsheet en zet auto correctie " -"uit. " +"Tip: Formatteer alle cellen als tekst in uw spreadsheet en zet auto correctie " +"uit." #: ../templates/3rdParty/pla/lib/TemplateRender.php:955 msgid "Hint: To delete an attribute, empty the text field and click save." @@ -6142,8 +6295,8 @@ msgid "" "Hint: You must choose exactly one structural object class (shown in bold above)" msgstr "Tip: Kies precies een structural object class (getoond in vet boven)" -#: ../lib/modules/posixAccount.inc:440 ../lib/modules/windowsUser.inc:238 -#: ../lib/modules/groupOfNamesUser.inc:61 +#: ../lib/modules/windowsLDSUser.inc:202 ../lib/modules/posixAccount.inc:440 +#: ../lib/modules/windowsUser.inc:240 ../lib/modules/groupOfNamesUser.inc:61 msgid "Hold the CTRL-key to (de)select multiple groups." msgstr "Om meerdere groepen te (de)selecteren, houdt de CTRL-knop ingedrukt." @@ -6158,16 +6311,16 @@ msgstr "Om meerdere rollen te (de)selecteren, houdt de CTRL-toets ingedrukt." #: ../lib/modules/posixAccount.inc:237 ../lib/modules/posixAccount.inc:305 #: ../lib/modules/posixAccount.inc:357 ../lib/modules/posixAccount.inc:361 #: ../lib/modules/posixAccount.inc:365 ../lib/modules/posixAccount.inc:369 -#: ../lib/modules/posixAccount.inc:1649 ../lib/modules/posixAccount.inc:1902 -#: ../lib/modules/posixAccount.inc:1995 ../lib/modules/posixAccount.inc:2108 +#: ../lib/modules/posixAccount.inc:1704 ../lib/modules/posixAccount.inc:1957 +#: ../lib/modules/posixAccount.inc:2054 ../lib/modules/posixAccount.inc:2172 #: ../lib/modules/courierMailAccount.inc:136 #: ../lib/modules/courierMailAccount.inc:244 #: ../lib/modules/courierMailAccount.inc:423 #: ../lib/modules/courierMailAccount.inc:435 -#: ../lib/modules/courierMailAccount.inc:474 ../lib/modules/windowsUser.inc:266 -#: ../lib/modules/windowsUser.inc:588 ../lib/modules/windowsUser.inc:767 -#: ../lib/modules/windowsUser.inc:867 ../lib/modules/windowsUser.inc:1029 -#: ../lib/modules/windowsUser.inc:1272 ../lib/modules/windowsUser.inc:2746 +#: ../lib/modules/courierMailAccount.inc:474 ../lib/modules/windowsUser.inc:268 +#: ../lib/modules/windowsUser.inc:598 ../lib/modules/windowsUser.inc:791 +#: ../lib/modules/windowsUser.inc:900 ../lib/modules/windowsUser.inc:1065 +#: ../lib/modules/windowsUser.inc:1318 ../lib/modules/windowsUser.inc:2913 msgid "Home directory" msgstr "Homedirectory" @@ -6187,10 +6340,10 @@ msgstr "" #: ../lib/modules/sambaSamAccount.inc:1767 #: ../lib/modules/sambaSamAccount.inc:1950 #: ../lib/modules/sambaSamAccount.inc:1971 -#: ../lib/modules/sambaSamAccount.inc:1988 ../lib/modules/windowsUser.inc:263 -#: ../lib/modules/windowsUser.inc:582 ../lib/modules/windowsUser.inc:866 -#: ../lib/modules/windowsUser.inc:1270 ../lib/modules/windowsUser.inc:2747 -#: ../lib/modules/windowsUser.inc:2791 +#: ../lib/modules/sambaSamAccount.inc:1988 ../lib/modules/windowsUser.inc:265 +#: ../lib/modules/windowsUser.inc:592 ../lib/modules/windowsUser.inc:899 +#: ../lib/modules/windowsUser.inc:1316 ../lib/modules/windowsUser.inc:2914 +#: ../lib/modules/windowsUser.inc:2958 msgid "Home drive" msgstr "Home station" @@ -6213,17 +6366,17 @@ msgstr "Thuis server voor de gebruiker." #: ../lib/modules/inetOrgPerson.inc:74 ../lib/modules/inetOrgPerson.inc:162 #: ../lib/modules/inetOrgPerson.inc:355 ../lib/modules/inetOrgPerson.inc:513 -#: ../lib/modules/inetOrgPerson.inc:693 ../lib/modules/inetOrgPerson.inc:697 -#: ../lib/modules/inetOrgPerson.inc:1395 ../lib/modules/inetOrgPerson.inc:1398 -#: ../lib/modules/inetOrgPerson.inc:1959 ../lib/modules/inetOrgPerson.inc:2604 -#: ../lib/modules/inetOrgPerson.inc:3870 ../lib/modules/inetOrgPerson.inc:3909 +#: ../lib/modules/inetOrgPerson.inc:697 ../lib/modules/inetOrgPerson.inc:701 +#: ../lib/modules/inetOrgPerson.inc:1409 ../lib/modules/inetOrgPerson.inc:1412 +#: ../lib/modules/inetOrgPerson.inc:1976 ../lib/modules/inetOrgPerson.inc:2644 +#: ../lib/modules/inetOrgPerson.inc:4082 ../lib/modules/inetOrgPerson.inc:4124 msgid "Home telephone number" msgstr "Thuis telefoonnummer" #: ../lib/modules/posixAccount.inc:90 ../lib/modules/posixAccount.inc:92 #: ../lib/modules/courierMailAccount.inc:213 -#: ../lib/modules/courierMailAccount.inc:214 ../lib/modules/windowsUser.inc:1029 -#: ../lib/modules/windowsUser.inc:1030 +#: ../lib/modules/courierMailAccount.inc:214 ../lib/modules/windowsUser.inc:1065 +#: ../lib/modules/windowsUser.inc:1066 msgid "Homedirectory contains invalid characters." msgstr "Home directory bevat ongeldige tekens." @@ -6231,7 +6384,7 @@ msgstr "Home directory bevat ongeldige tekens." #: ../lib/modules/asteriskAccount.inc:252 ../lib/modules/asteriskAccount.inc:266 #: ../lib/modules/asteriskAccount.inc:316 ../lib/modules/asteriskAccount.inc:589 #: ../lib/modules/asteriskAccount.inc:984 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:604 +#: ../lib/modules/nisnetgroup.inc:576 ../lib/modules/fixed_ip.inc:602 #: ../lib/modules/hostObject.inc:144 msgid "Host" msgstr "Host" @@ -6260,14 +6413,14 @@ msgid "Host list" msgstr "Host lijst" #: ../lib/types/host.inc:95 ../lib/types/bind.inc:80 -#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:216 -#: ../lib/modules/windowsHost.inc:73 ../lib/modules/windowsHost.inc:93 -#: ../lib/modules/windowsHost.inc:118 ../lib/modules/windowsHost.inc:130 -#: ../lib/modules/windowsHost.inc:141 ../lib/modules/windowsHost.inc:287 +#: ../lib/modules/account.inc:84 ../lib/modules/account.inc:213 +#: ../lib/modules/windowsHost.inc:75 ../lib/modules/windowsHost.inc:107 +#: ../lib/modules/windowsHost.inc:132 ../lib/modules/windowsHost.inc:144 +#: ../lib/modules/windowsHost.inc:155 ../lib/modules/windowsHost.inc:328 #: ../lib/modules/posixAccount.inc:105 ../lib/modules/posixAccount.inc:106 #: ../lib/modules/posixAccount.inc:108 ../lib/modules/posixAccount.inc:272 #: ../lib/modules/posixAccount.inc:295 ../lib/modules/posixAccount.inc:453 -#: ../lib/modules/posixAccount.inc:1606 ../lib/modules/posixAccount.inc:2092 +#: ../lib/modules/posixAccount.inc:1652 ../lib/modules/posixAccount.inc:2154 #: ../lib/modules/bindDLZ.inc:93 ../lib/modules/bindDLZ.inc:156 #: ../lib/modules/bindDLZ.inc:160 ../lib/modules/bindDLZ.inc:264 #: ../lib/modules/bindDLZ.inc:351 ../lib/modules/bindDLZ.inc:492 @@ -6285,7 +6438,7 @@ msgstr "Host naam" msgid "Host name already exists!" msgstr "Host naam bestaat al!" -#: ../lib/modules/windowsHost.inc:130 ../lib/modules/windowsHost.inc:131 +#: ../lib/modules/windowsHost.inc:144 ../lib/modules/windowsHost.inc:145 #: ../lib/modules/posixAccount.inc:106 ../lib/modules/posixAccount.inc:110 #: ../lib/modules/nisNetGroupUser.inc:97 ../lib/modules/nisnetgroup.inc:155 msgid "" @@ -6318,7 +6471,7 @@ msgstr "" #: ../lib/types/host.inc:55 ../lib/modules/posixAccount.inc:85 #: ../lib/modules/posixAccount.inc:86 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2230 ../lib/modules/sudoRole.inc:77 +#: ../lib/modules/posixAccount.inc:2294 ../lib/modules/sudoRole.inc:77 #: ../lib/modules/sudoRole.inc:102 ../lib/modules/sudoRole.inc:164 #: ../lib/modules/sudoRole.inc:216 ../lib/modules/sudoRole.inc:228 #: ../lib/modules/sudoRole.inc:302 ../lib/modules/sudoRole.inc:455 @@ -6331,16 +6484,16 @@ msgstr "Hosts" msgid "I am out of office." msgstr "Ik ben niet op kantoor." -#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/zarafaContact.inc:183 ../lib/modules/posixGroup.inc:705 #: ../lib/modules/posixAccount.inc:96 ../lib/modules/kopanoContact.inc:183 msgid "ID is already in use" msgstr "ID wordt al gebruikt" -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixGroup.inc:703 -#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixGroup.inc:851 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixGroup.inc:704 +#: ../lib/modules/posixGroup.inc:705 ../lib/modules/posixGroup.inc:852 #: ../lib/modules/posixAccount.inc:94 ../lib/modules/posixAccount.inc:95 -#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixAccount.inc:96 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 msgid "ID-Number" msgstr "ID-nummer" @@ -6350,11 +6503,11 @@ msgstr "ID-nummer" msgid "IMAP" msgstr "IMAP" -#: ../lib/modules/imapAccess.inc:90 ../lib/modules/imapAccess.inc:515 +#: ../lib/modules/imapAccess.inc:90 ../lib/modules/imapAccess.inc:523 msgid "IMAP admin user" msgstr "IMAP admin gebruiker" -#: ../lib/modules/imapAccess.inc:93 ../lib/modules/imapAccess.inc:522 +#: ../lib/modules/imapAccess.inc:93 ../lib/modules/imapAccess.inc:530 msgid "IMAP password input" msgstr "IMAP wachtwoord invoer" @@ -6373,13 +6526,13 @@ msgstr "IMAP wachtwoord invoer" #: ../lib/modules/freeRadius.inc:204 ../lib/modules/freeRadius.inc:253 #: ../lib/modules/freeRadius.inc:302 ../lib/modules/freeRadius.inc:351 #: ../lib/modules/freeRadius.inc:689 ../lib/modules/fixed_ip.inc:111 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:761 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:759 msgid "IP address" msgstr "IP adres" #: ../lib/modules/ddns.inc:97 ../lib/modules/ddns.inc:111 -#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:379 -#: ../lib/modules/ddns.inc:421 +#: ../lib/modules/ddns.inc:120 ../lib/modules/ddns.inc:375 +#: ../lib/modules/ddns.inc:417 msgid "IP address of the DNS server" msgstr "IP adres van de DNS server" @@ -6475,7 +6628,7 @@ msgstr "" msgid "If checked no password will be used." msgstr "Indien aangevinkt zal geen wachtwoord gebruikt worden." -#: ../lib/modules/windowsUser.inc:221 +#: ../lib/modules/windowsUser.inc:223 msgid "If checked password does not expire." msgstr "Indien aangevinkt zal wachtwoord niet verlopen." @@ -6483,14 +6636,14 @@ msgstr "Indien aangevinkt zal wachtwoord niet verlopen." msgid "If checked password does not expire. (Setting X-Flag)" msgstr "Indien aangevinkt zal wachtwoord niet verlopen (middels X-vlag)." -#: ../help/help.inc:313 +#: ../help/help.inc:325 msgid "" "If checked then also users who did not setup a second factor are able to login." msgstr "" "Indien aangevinkt, dan kunnen gebruikers die geen tweede factor hebben " "ingesteld inloggen." -#: ../lib/modules/windowsUser.inc:218 +#: ../lib/modules/windowsUser.inc:220 msgid "If checked then the account will be deactivated." msgstr "Indien aangevinkt zal het account gedeactiveerd worden." @@ -6508,7 +6661,7 @@ msgstr "" "Doorgaans wilt u deze instelling wilt gebruiken om gebruiker accounts die " "werden afgesloten als gevolg van mislukte login pogingen te openen." -#: ../help/help.inc:189 +#: ../help/help.inc:195 msgid "" "If checked then the user will not be able to create new entries of this " "account type." @@ -6516,7 +6669,7 @@ msgstr "" "Indien aangevinkt dan zal de gebruiker niet in staat zijn om nieuwe items van " "dit account type aan te maken." -#: ../help/help.inc:191 +#: ../help/help.inc:197 msgid "" "If checked then the user will not be able to delete entries of this account " "type." @@ -6524,21 +6677,21 @@ msgstr "" "Indien aangevinkt dan zal de gebruiker niet in staat zijn om items van dit " "account type te verwijderen." -#: ../lib/modules/posixGroup.inc:419 +#: ../lib/modules/posixGroup.inc:420 msgid "" -"If empty GID number will be generated automaticly depending on your " +"If empty GID number will be generated automatically depending on your " "configuration settings." msgstr "" "Als het GID nummer leeg is, zal deze automatisch gegenereerd worden " "afhankelijk van uw configuratie instellingen." #: ../lib/modules/qmailUser.inc:202 -msgid "If empty GID number will be generated automaticly." +msgid "If empty GID number will be generated automatically." msgstr "Als GID nummer leeg is zal deze automatisch gegenereerd worden." #: ../lib/modules/qmailUser.inc:198 ../lib/modules/zarafaContact.inc:118 #: ../lib/modules/posixAccount.inc:346 ../lib/modules/kopanoContact.inc:118 -msgid "If empty UID number will be generated automaticly." +msgid "If empty UID number will be generated automatically." msgstr "Als UID nummer leeg is zal deze automatisch gegenereerd worden." #: ../lib/modules/selfRegistration.inc:110 @@ -6546,7 +6699,7 @@ msgstr "Als UID nummer leeg is zal deze automatisch gegenereerd worden." msgid "If enabled the user is required to solve a captcha." msgstr "Indien ingeschakeld, moet de gebruiker een captcha oplossen." -#: ../lib/modules/ppolicy.inc:124 +#: ../lib/modules/ppolicy.inc:125 msgid "" "If enabled the user will not be allowed to login after there have been a " "specified number of consecutive failed login attempts." @@ -6571,7 +6724,7 @@ msgstr "" "Indien ingeschakeld zal de standaardtaal worden afgedwongen en kan niet worden " "gekozen door de gebruiker." -#: ../lib/modules/ppolicy.inc:128 +#: ../lib/modules/ppolicy.inc:129 msgid "" "If enabled users must change their passwords when they first login after a " "password is set or reset by the administrator." @@ -6624,8 +6777,7 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:162 msgid "" -"If set to true then all incomming mails needs to come from a member of the " -"list." +"If set to true then all incoming mails needs to come from a member of the list." msgstr "" "Als de waarde true is dan moeten alle binnenkomende e-mails komen van een lid " "van de lijst." @@ -6654,7 +6806,8 @@ msgstr "" "Als de gebruiker een Samba 3 extensie heeft dan zal het Samba wachtwoord ook " "worden ingesteld. Anders wordt er geen actie ondernomen." -#: ../lib/modules/windowsUser.inc:166 ../lib/modules/windowsUser.inc:170 +#: ../lib/modules/windowsLDSUser.inc:150 ../lib/modules/windowsLDSUser.inc:154 +#: ../lib/modules/windowsUser.inc:168 ../lib/modules/windowsUser.inc:172 msgid "If the user has multiple telephone numbers then please enter it here." msgstr "" "Als de gebruiker meerdere telefoonnummers heeft dan kunt u deze hier invoeren." @@ -6675,7 +6828,7 @@ msgstr "" #: ../lib/modules/qmailGroup.inc:194 msgid "" -"If this is set to true then an incomming mail needs to be approved by the " +"If this is set to true then an incoming mail needs to be approved by the " "sender." msgstr "" "Als dit is ingesteld op true dan moet een binnenkomende e-mail worden " @@ -6695,7 +6848,7 @@ msgid "" "If you leave this empty LAM will use: uidNumber*2 + sambaAlgorithmicRidBase." msgstr "" "Als dit veld leeg blijft zal LAM de volgende waarde gebruiken: uid nummer*2 + " -"samba algoritmeRIDBase" +"samba algoritmeRIDBase." #: ../lib/modules/kopanoServer.inc:84 msgid "" @@ -6760,8 +6913,8 @@ msgstr "" "Indien geselecteerd dat kan een gebruiker geen service tickets aanvragen." #: ../lib/modules/mitKerberos.inc:183 ../lib/modules/sambaSamAccount.inc:297 -#: ../lib/modules/windowsUser.inc:235 ../lib/modules/heimdalKerberos.inc:127 -#: ../help/help.inc:261 +#: ../lib/modules/windowsUser.inc:237 ../lib/modules/heimdalKerberos.inc:127 +#: ../help/help.inc:273 msgid "" "If you set this option then the user has to change his password at the next " "login." @@ -6779,7 +6932,7 @@ msgstr "" #: ../lib/modules/mitKerberos.inc:177 ../lib/modules/heimdalKerberos.inc:151 msgid "If you set this option then the user must preauthenticate himself." -msgstr "Indien geselecteerd dat moet een gebruiker zich pre authenticeren. " +msgstr "Indien geselecteerd dat moet een gebruiker zich pre authenticeren." #: ../lib/modules/mitKerberos.inc:189 ../lib/modules/heimdalKerberos.inc:154 msgid "" @@ -6793,7 +6946,7 @@ msgid "" "attribute then LAM will set it to the user name value." msgstr "" "Indien u als object-klasse \"inetOrgPerson\" gebruikt en het \"cn\" attribuut " -"niet opgeeft dan zal LAM de gebruikers naam hiervoor gebruiken. " +"niet opgeeft dan zal LAM de gebruikers naam hiervoor gebruiken." #: ../help/help.inc:110 msgid "" @@ -6820,7 +6973,8 @@ msgstr "" "Indien uw server draait op een andere poort, voeg dan een komma en het " "poortnummer toe na de server." -#: ../lib/modules/windowsUser.inc:394 ../lib/modules/inetOrgPerson.inc:790 +#: ../lib/modules/windowsLDSUser.inc:323 ../lib/modules/windowsUser.inc:396 +#: ../lib/modules/inetOrgPerson.inc:794 msgid "Image cropping" msgstr "Image bijsnijden" @@ -6838,16 +6992,16 @@ msgid "Import" msgstr "Import" #: ../templates/pdfedit/pdfmain.php:256 ../templates/pdfedit/pdfmain.php:257 -#: ../help/help.inc:264 +#: ../help/help.inc:276 msgid "Import PDF structures" msgstr "Importeer PDF structuren" -#: ../templates/config/mainmanage.php:362 +#: ../templates/config/mainmanage.php:393 msgid "Import from server" msgstr "Importeer van server" #: ../templates/profedit/profilemain.php:233 -#: ../templates/profedit/profilemain.php:234 ../help/help.inc:244 +#: ../templates/profedit/profilemain.php:234 ../help/help.inc:256 msgid "Import profiles" msgstr "Import profielen" @@ -6855,7 +7009,7 @@ msgstr "Import profielen" msgid "Import successful" msgstr "Importeren succesvol" -#: ../templates/config/mainmanage.php:237 +#: ../templates/config/mainmanage.php:241 msgid "Imported certificate from server." msgstr "Geïmporteerd certificaat van de server." @@ -6863,7 +7017,7 @@ msgstr "Geïmporteerd certificaat van de server." msgid "Imports and exports LDAP data." msgstr "LDAP-gegevens importeren en exporteren." -#: ../templates/config/mainmanage.php:364 +#: ../templates/config/mainmanage.php:395 msgid "Imports the certificate directly from your LDAP server." msgstr "Importeert het certificaat direct van uw LDAP-server." @@ -6882,7 +7036,7 @@ msgstr "" "server." #: ../templates/tools/importexport.php:280 -#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:373 +#: ../templates/3rdParty/pla/htdocs/export_form.php:87 ../help/help.inc:385 msgid "Include system attributes" msgstr "Sluit systeem attributen in" @@ -6900,7 +7054,7 @@ msgstr "Neem de client opstartconfiguratie over" msgid "Inherits from" msgstr "Erft van" -#: ../lib/modules/imapAccess.inc:119 ../lib/modules/imapAccess.inc:535 +#: ../lib/modules/imapAccess.inc:119 ../lib/modules/imapAccess.inc:543 msgid "Initial folders" msgstr "Initiële mappen" @@ -6914,14 +7068,17 @@ msgstr "Eerste betaling" msgid "Initial program" msgstr "Initiële programma" -#: ../lib/modules/windowsUser.inc:153 ../lib/modules/windowsUser.inc:448 -#: ../lib/modules/windowsUser.inc:844 ../lib/modules/windowsUser.inc:1128 -#: ../lib/modules/windowsUser.inc:2690 ../lib/modules/inetOrgPerson.inc:164 -#: ../lib/modules/inetOrgPerson.inc:251 ../lib/modules/inetOrgPerson.inc:558 -#: ../lib/modules/inetOrgPerson.inc:778 ../lib/modules/inetOrgPerson.inc:1209 -#: ../lib/modules/inetOrgPerson.inc:1212 ../lib/modules/inetOrgPerson.inc:1976 -#: ../lib/modules/inetOrgPerson.inc:2001 ../lib/modules/inetOrgPerson.inc:2795 -#: ../lib/modules/inetOrgPerson.inc:3884 ../lib/modules/inetOrgPerson.inc:3917 +#: ../lib/modules/windowsLDSUser.inc:137 ../lib/modules/windowsLDSUser.inc:373 +#: ../lib/modules/windowsLDSUser.inc:657 ../lib/modules/windowsLDSUser.inc:872 +#: ../lib/modules/windowsLDSUser.inc:1826 ../lib/modules/windowsUser.inc:155 +#: ../lib/modules/windowsUser.inc:458 ../lib/modules/windowsUser.inc:877 +#: ../lib/modules/windowsUser.inc:1166 ../lib/modules/windowsUser.inc:2856 +#: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:251 +#: ../lib/modules/inetOrgPerson.inc:558 ../lib/modules/inetOrgPerson.inc:782 +#: ../lib/modules/inetOrgPerson.inc:1219 ../lib/modules/inetOrgPerson.inc:1222 +#: ../lib/modules/inetOrgPerson.inc:1993 ../lib/modules/inetOrgPerson.inc:2019 +#: ../lib/modules/inetOrgPerson.inc:2867 ../lib/modules/inetOrgPerson.inc:4096 +#: ../lib/modules/inetOrgPerson.inc:4132 msgid "Initials" msgstr "Initialen" @@ -6960,11 +7117,11 @@ msgstr "" msgid "Inode soft quota must be smaller than inode hard quota." msgstr "Zachte inode quotum moet kleiner zijn dat de uiterste inode quotum." -#: ../templates/selfService/adminMain.php:704 +#: ../templates/selfService/adminMain.php:708 msgid "Input field" msgstr "Invoerveld" -#: ../templates/selfService/adminMain.php:607 +#: ../templates/selfService/adminMain.php:611 msgid "Input fields" msgstr "Invoervelden" @@ -6990,7 +7147,7 @@ msgstr "Ingevoegde gebruiker of groep naam in profielpad." msgid "Insufficient rights for this operation." msgstr "Onvoldoende rechten voor deze bewerking." -#: ../lib/modules/fixed_ip.inc:459 +#: ../lib/modules/fixed_ip.inc:457 msgid "Invalid MAC address." msgstr "Ongeldig MAC adres." @@ -7002,7 +7159,7 @@ msgstr "Ongeldig RDN attribuut!" msgid "Invalid RDN value" msgstr "Ongeldig RDN waarde" -#: ../lib/modules/posixAccount.inc:1723 ../lib/modules/yubiKeyUser.inc:147 +#: ../lib/modules/posixAccount.inc:1778 ../lib/modules/yubiKeyUser.inc:147 msgid "" "Invalid configuration detected. Please edit your server profile (module " "settings) and fill all required fields." @@ -7017,7 +7174,7 @@ msgstr "" msgid "Invalid data" msgstr "Onjuiste data" -#: ../lib/modules/fixed_ip.inc:464 +#: ../lib/modules/fixed_ip.inc:462 msgid "Invalid description." msgstr "Ongeldige beschrijving." @@ -7035,18 +7192,18 @@ msgstr "Ongeldige licentie" #: ../lib/modules/customFields.inc:3806 ../lib/modules/customFields.inc:4018 msgid "Invalid option" -msgstr "Ongeldige optie." +msgstr "Ongeldige optie" #: ../lib/modules/imapAccess.inc:161 -msgid "Invalid password for IMAP admin or other problem occured." +msgid "Invalid password for IMAP admin or other problem occurred." msgstr "Ongeldig wachtwoord voor IMAP admin of een ander probleem opgetreden." -#: ../lib/modules/ldapPublicKey.inc:651 ../lib/modules/yubiKeyUser.inc:530 -#: ../lib/modules/inetOrgPerson.inc:3669 ../lib/modules/customFields.inc:1577 +#: ../lib/modules/ldapPublicKey.inc:649 ../lib/modules/yubiKeyUser.inc:530 +#: ../lib/modules/inetOrgPerson.inc:3881 ../lib/modules/customFields.inc:1577 msgid "Invalid request" msgstr "Ongeldig verzoek" -#: ../templates/config/mainmanage.php:246 +#: ../templates/config/mainmanage.php:248 msgid "Invalid server name. Please enter \"server\" or \"server:port\"." msgstr "Ongeldige servernaam. Gebruik \"server\" of \"server:port\"." @@ -7059,7 +7216,7 @@ msgstr "Ongeldige waarde in het veld \"%s\"." #: ../lib/modules/kolabUser.inc:104 ../lib/modules/kolabUser.inc:111 #: ../lib/modules/kolabUser.inc:161 ../lib/modules/kolabUser.inc:198 #: ../lib/modules/kolabUser.inc:263 ../lib/modules/kolabUser.inc:602 -#: ../lib/modules/kolabUser.inc:737 +#: ../lib/modules/kolabUser.inc:736 msgid "Invitation policy" msgstr "Invitatiebeleid" @@ -7067,11 +7224,11 @@ msgstr "Invitatiebeleid" msgid "Invitation policy list" msgstr "Lijst van invitatiebeleid" -#: ../lib/modules/range.inc:140 +#: ../lib/modules/range.inc:139 msgid "It is not possible to delete all ranges." msgstr "Het is niet mogelijk om alle reeksen te verwijderen." -#: ../lib/modules/posixGroup.inc:702 ../lib/modules/posixAccount.inc:95 +#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:95 msgid "" "It is possible that this ID-number is reused. This can cause several problems " "because files with old permissions might still exist. To avoid this warning " @@ -7096,22 +7253,26 @@ msgstr "Taakgeschiedenis" msgid "Job suffix" msgstr "Taak suffix" -#: ../lib/types/user.inc:117 ../lib/modules/windowsUser.inc:302 -#: ../lib/modules/windowsUser.inc:682 ../lib/modules/windowsUser.inc:788 -#: ../lib/modules/windowsUser.inc:892 ../lib/modules/windowsUser.inc:1035 -#: ../lib/modules/windowsUser.inc:1168 ../lib/modules/windowsUser.inc:2713 -#: ../lib/modules/windowsUser.inc:3613 ../lib/modules/inetOrgPerson.inc:94 +#: ../lib/types/user.inc:117 ../lib/modules/windowsLDSUser.inc:231 +#: ../lib/modules/windowsLDSUser.inc:513 ../lib/modules/windowsLDSUser.inc:611 +#: ../lib/modules/windowsLDSUser.inc:686 ../lib/modules/windowsLDSUser.inc:785 +#: ../lib/modules/windowsLDSUser.inc:911 ../lib/modules/windowsLDSUser.inc:1846 +#: ../lib/modules/windowsLDSUser.inc:2194 ../lib/modules/windowsUser.inc:304 +#: ../lib/modules/windowsUser.inc:692 ../lib/modules/windowsUser.inc:812 +#: ../lib/modules/windowsUser.inc:928 ../lib/modules/windowsUser.inc:1071 +#: ../lib/modules/windowsUser.inc:1206 ../lib/modules/windowsUser.inc:2879 +#: ../lib/modules/windowsUser.inc:3708 ../lib/modules/inetOrgPerson.inc:94 #: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:267 #: ../lib/modules/inetOrgPerson.inc:531 ../lib/modules/inetOrgPerson.inc:570 -#: ../lib/modules/inetOrgPerson.inc:574 ../lib/modules/inetOrgPerson.inc:1451 -#: ../lib/modules/inetOrgPerson.inc:1454 ../lib/modules/inetOrgPerson.inc:1947 -#: ../lib/modules/inetOrgPerson.inc:2055 ../lib/modules/inetOrgPerson.inc:2806 -#: ../lib/modules/inetOrgPerson.inc:3875 ../lib/modules/inetOrgPerson.inc:3912 +#: ../lib/modules/inetOrgPerson.inc:574 ../lib/modules/inetOrgPerson.inc:1465 +#: ../lib/modules/inetOrgPerson.inc:1468 ../lib/modules/inetOrgPerson.inc:1964 +#: ../lib/modules/inetOrgPerson.inc:2073 ../lib/modules/inetOrgPerson.inc:2880 +#: ../lib/modules/inetOrgPerson.inc:4087 ../lib/modules/inetOrgPerson.inc:4127 msgid "Job title" msgstr "Functieomschrijving" -#: ../lib/modules/windowsUser.inc:303 ../lib/modules/inetOrgPerson.inc:571 -#: ../lib/modules/inetOrgPerson.inc:575 +#: ../lib/modules/windowsLDSUser.inc:232 ../lib/modules/windowsUser.inc:305 +#: ../lib/modules/inetOrgPerson.inc:571 ../lib/modules/inetOrgPerson.inc:575 msgid "Job title of user: President, department manager, ..." msgstr "Functieomschrijving van de gebruiker: directeur, bedrijfleider, ...." @@ -7147,7 +7308,7 @@ msgstr "Spring naar eerste pagina" msgid "Jump to last page" msgstr "Spring naar laatste pagina" -#: ../lib/modules/posixAccount.inc:342 ../lib/modules/inetOrgPerson.inc:755 +#: ../lib/modules/posixAccount.inc:342 ../lib/modules/inetOrgPerson.inc:759 msgid "K5KEY is only needed if you use Kerberos with smbk5pwd." msgstr "K5KEY is alleen nodig als je Kerberos gebruikt met smbk5pwd." @@ -7217,7 +7378,7 @@ msgstr "Kopano slaat de gebruiker archieven op deze servers." msgid "Korean" msgstr "Koreaans" -#: ../lib/modules/posixGroup.inc:455 +#: ../lib/modules/posixGroup.inc:456 msgid "" "LAM checks if the entered group name and GID are unique. Here you can enter " "the LDAP suffix that is used to search for duplicates. By default the account " @@ -7252,8 +7413,8 @@ msgid "LAM has checked your input and is now ready to create the accounts." msgstr "" "LAM heeft uw invoer gecontroleerd en is nu klaar om de accounts te maken." -#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixAccount.inc:341 -#: ../lib/modules/inetOrgPerson.inc:754 ../lib/modules/customFields.inc:150 +#: ../lib/modules/posixGroup.inc:444 ../lib/modules/posixAccount.inc:341 +#: ../lib/modules/inetOrgPerson.inc:758 ../lib/modules/customFields.inc:150 msgid "" "LAM supports CRYPT, CRYPT-SHA512, SHA, SSHA, MD5 and SMD5 to generate the hash " "value of passwords. SSHA and CRYPT are the most common but CRYPT does not " @@ -7269,13 +7430,13 @@ msgstr "" msgid "LAM tests" msgstr "LAM testen" -#: ../lib/modules/imapAccess.inc:519 +#: ../lib/modules/imapAccess.inc:527 msgid "LAM user password" msgstr "LAM gebruikerswachtwoord" -#: ../lib/upload.inc:156 +#: ../lib/upload.inc:155 #, php-format -msgid "LAM was unable to create account %s! An LDAP error occured." +msgid "LAM was unable to create account %s! An LDAP error occurred." msgstr "LAM kan geen account %s maken! Een LDAP fout is opgetreden." #: ../lib/modules/sambaGroupMapping.inc:574 @@ -7286,13 +7447,14 @@ msgstr "LAM heeft geen Samba 3 domein gevonden met deze naam!" msgid "LAM was unable to find a domain with this name!" msgstr "LAM heeft geen domein gevonden met deze naam!" -#: ../lib/modules/posixAccount.inc:113 ../lib/modules/windowsUser.inc:2488 +#: ../lib/modules/windowsLDSUser.inc:1661 ../lib/modules/posixAccount.inc:113 +#: ../lib/modules/windowsUser.inc:2654 msgid "LAM was unable to find a group with this name!" msgstr "Lam heeft geen groep gevonden met deze naam!" -#: ../lib/modules/posixAccount.inc:2857 ../lib/modules/posixAccount.inc:2939 -#: ../lib/modules/windowsUser.inc:2633 ../lib/modules/nisNetGroupUser.inc:580 -#: ../lib/modules/groupOfNamesUser.inc:449 +#: ../lib/modules/windowsLDSUser.inc:1790 ../lib/modules/posixAccount.inc:2921 +#: ../lib/modules/posixAccount.inc:3003 ../lib/modules/windowsUser.inc:2799 +#: ../lib/modules/nisNetGroupUser.inc:580 ../lib/modules/groupOfNamesUser.inc:450 #, php-format msgid "LAM was unable to modify group memberships for group: %s" msgstr "Lam was niet in staat de groepsleden te veranderen voor groep: %s" @@ -7300,9 +7462,9 @@ msgstr "Lam was niet in staat de groepsleden te veranderen voor groep: %s" #: ../lib/modules/organizationalRoleUser.inc:391 #, php-format msgid "LAM was unable to modify memberships for role: %s" -msgstr "LAM kon lidmaatschappen voor rol: %s niet wijzigen." +msgstr "LAM kon lidmaatschappen voor rol: %s niet wijzigen" -#: ../lib/modules/posixGroup.inc:459 ../lib/modules/posixAccount.inc:386 +#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:386 msgid "" "LAM will automatically suggest UID/GID numbers. You can either use a fixed " "range of numbers or an LDAP entry with object class \"sambaUnixIdPool\" or " @@ -7312,7 +7474,7 @@ msgstr "" "vaste reeks nummers of een LDAP-vermelding met objectklasse \"sambaUnixIdPool" "\" of \"msSFU30DomainInfo\"." -#: ../help/help.inc:275 +#: ../help/help.inc:287 msgid "LAM will search for accounts in this part of the LDAP tree." msgstr "LAM gaat op zoek naar accounts in dit deel van de LDAP-boom." @@ -7328,7 +7490,7 @@ msgstr "" "de achternaam. @givenname@ zal worden vervangen door de eerste letter van de " "voornaam. Alleen attributen van de Personal tab kunnen worden gebruikt." -#: ../help/help.inc:277 +#: ../help/help.inc:289 msgid "" "LAM will use this LDAP DN and password to search for accounts. It is " "sufficient to specify an account with read rights. If nothing is inserted then " @@ -7397,13 +7559,13 @@ msgstr "LDAP-items die lid zijn van deze lijst." msgid "LDAP entries that moderate this list (e.g. approve mails)." msgstr "LDAP-items die deze lijst moderaten (bijv. mails goedkeuren)." -#: ../templates/login.php:593 ../lib/account.inc:1477 +#: ../templates/login.php:603 ../lib/account.inc:1490 msgid "LDAP error, server says:" msgstr "LDAP fout, server meldt:" #: ../templates/tools/multiEdit.php:139 ../templates/config/confmain.php:448 #: ../lib/modules/customFields.inc:197 ../lib/modules/customFields.inc:4095 -#: ../help/help.inc:359 +#: ../help/help.inc:371 msgid "LDAP filter" msgstr "LDAP filter" @@ -7431,7 +7593,7 @@ msgstr "LDAP import/export" msgid "LDAP operation successful." msgstr "LDAP operatie is succesvol." -#: ../templates/selfService/adminMain.php:438 +#: ../templates/selfService/adminMain.php:439 msgid "LDAP password" msgstr "LDAP wachtwoord" @@ -7443,11 +7605,11 @@ msgstr "LDAP zei" msgid "LDAP search" msgstr "LDAP-zoekopdracht" -#: ../templates/selfService/adminMain.php:433 ../help/help.inc:278 +#: ../templates/selfService/adminMain.php:434 ../help/help.inc:290 msgid "LDAP search attribute" msgstr "LDAP-zoekopdracht attribuut" -#: ../lib/account.inc:1010 +#: ../lib/account.inc:1015 msgid "LDAP search failed! Please check your preferences." msgstr "LDAP zoekopdracht is mislukt! Controleert u a.u.b uw instellingen." @@ -7463,7 +7625,7 @@ msgstr "LDAP zoek selectielijst" msgid "LDAP server" msgstr "LDAP server" -#: ../lib/account.inc:1001 +#: ../lib/account.inc:1006 msgid "LDAP sizelimit exceeded, not all entries are shown." msgstr "" "Limiet aantal entrees dat getoond kan worden is overschreven; niet alle " @@ -7471,22 +7633,22 @@ msgstr "" #: ../templates/tools/multiEdit.php:129 ../templates/config/confmain.php:444 #: ../templates/config/conftypes.php:221 -#: ../templates/selfService/adminMain.php:424 +#: ../templates/selfService/adminMain.php:425 #: ../templates/profedit/profilepage.php:205 ../lib/modules/customFields.inc:193 -#: ../lib/modules/customFields.inc:4092 ../help/help.inc:75 ../help/help.inc:274 -#: ../help/help.inc:357 +#: ../lib/modules/customFields.inc:4092 ../help/help.inc:75 ../help/help.inc:286 +#: ../help/help.inc:369 msgid "LDAP suffix" msgstr "LDAP achtervoegsel" -#: ../lib/upload.inc:217 +#: ../lib/upload.inc:216 msgid "LDAP upload in progress. Please wait." msgstr "LDAP upload is bezig. S.v.p. wachten." -#: ../templates/selfService/adminMain.php:436 +#: ../templates/selfService/adminMain.php:437 msgid "LDAP user" msgstr "LDAP gebruiker" -#: ../help/help.inc:276 +#: ../help/help.inc:288 msgid "LDAP user and password" msgstr "LDAP-gebruiker en wachtwoord" @@ -7502,7 +7664,7 @@ msgstr "LDAP views gebaseerd op nsview" msgid "LDIF Export" msgstr "LDIF Export" -#: ../templates/tools/importexport.php:170 ../help/help.inc:365 +#: ../templates/tools/importexport.php:170 ../help/help.inc:377 msgid "LDIF data" msgstr "LDIF data" @@ -7520,10 +7682,10 @@ msgid "LDIF import only supports version 1" msgstr "LDIF import ondersteunt alleen versie 1" #: ../templates/config/confmain.php:508 -#: ../templates/selfService/adminMain.php:525 ../lib/modules/customFields.inc:93 +#: ../templates/selfService/adminMain.php:529 ../lib/modules/customFields.inc:93 #: ../lib/modules/customFields.inc:653 ../lib/modules/customFields.inc:1211 #: ../lib/modules/customFields.inc:1964 ../lib/modules/customFields.inc:3640 -#: ../help/help.inc:308 +#: ../help/help.inc:320 msgid "Label" msgstr "Label" @@ -7572,11 +7734,11 @@ msgstr "Lamdaemon: check NSS LDAP" msgid "Lamdaemon: read quotas" msgstr "Lamdaemon: lees quotas" -#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:308 +#: ../templates/login.php:374 ../templates/selfService/selfServiceLogin.php:309 msgid "Language" msgstr "Taal" -#: ../templates/config/confmain.php:665 +#: ../templates/config/confmain.php:667 msgid "Language is not defined!" msgstr "Taal is niet gedefinieerd!" @@ -7586,50 +7748,62 @@ msgstr "Taal instellingen" #: ../lib/modules/mitKerberos.inc:143 ../lib/modules/mitKerberos.inc:255 #: ../lib/modules/mitKerberos.inc:399 ../lib/modules/mitKerberos.inc:830 -#: ../lib/modules/windowsUser.inc:282 ../lib/modules/windowsUser.inc:889 -#: ../lib/modules/windowsUser.inc:1246 ../lib/modules/windowsUser.inc:2763 -#: ../lib/modules/windowsUser.inc:3611 +#: ../lib/modules/windowsLDSUser.inc:219 ../lib/modules/windowsLDSUser.inc:680 +#: ../lib/modules/windowsLDSUser.inc:967 ../lib/modules/windowsLDSUser.inc:1871 +#: ../lib/modules/windowsLDSUser.inc:2192 ../lib/modules/windowsHost.inc:95 +#: ../lib/modules/windowsHost.inc:169 ../lib/modules/windowsUser.inc:284 +#: ../lib/modules/windowsUser.inc:925 ../lib/modules/windowsUser.inc:1284 +#: ../lib/modules/windowsUser.inc:2930 ../lib/modules/windowsUser.inc:3705 msgid "Last login" msgstr "Laatste login" #: ../lib/types/user.inc:114 ../lib/modules/selfRegistration.inc:83 -#: ../lib/modules/selfRegistration.inc:206 ../lib/modules/windowsUser.inc:185 -#: ../lib/modules/windowsUser.inc:430 ../lib/modules/windowsUser.inc:852 -#: ../lib/modules/windowsUser.inc:996 ../lib/modules/windowsUser.inc:1125 -#: ../lib/modules/windowsUser.inc:2698 ../lib/modules/inetOrgPerson.inc:70 +#: ../lib/modules/selfRegistration.inc:206 ../lib/modules/windowsLDSUser.inc:169 +#: ../lib/modules/windowsLDSUser.inc:355 ../lib/modules/windowsLDSUser.inc:664 +#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:869 +#: ../lib/modules/windowsLDSUser.inc:1833 ../lib/modules/windowsUser.inc:187 +#: ../lib/modules/windowsUser.inc:440 ../lib/modules/windowsUser.inc:885 +#: ../lib/modules/windowsUser.inc:1032 ../lib/modules/windowsUser.inc:1163 +#: ../lib/modules/windowsUser.inc:2864 ../lib/modules/inetOrgPerson.inc:70 #: ../lib/modules/inetOrgPerson.inc:158 ../lib/modules/inetOrgPerson.inc:242 #: ../lib/modules/inetOrgPerson.inc:477 ../lib/modules/inetOrgPerson.inc:582 -#: ../lib/modules/inetOrgPerson.inc:1201 ../lib/modules/inetOrgPerson.inc:1204 -#: ../lib/modules/inetOrgPerson.inc:1949 ../lib/modules/inetOrgPerson.inc:2560 -#: ../lib/modules/inetOrgPerson.inc:3904 +#: ../lib/modules/inetOrgPerson.inc:1211 ../lib/modules/inetOrgPerson.inc:1214 +#: ../lib/modules/inetOrgPerson.inc:1966 ../lib/modules/inetOrgPerson.inc:2592 +#: ../lib/modules/inetOrgPerson.inc:4119 msgid "Last name" msgstr "Achternaam" -#: ../lib/modules/windowsUser.inc:996 ../lib/modules/windowsUser.inc:997 +#: ../lib/modules/windowsLDSUser.inc:761 ../lib/modules/windowsLDSUser.inc:762 +#: ../lib/modules/windowsUser.inc:1032 ../lib/modules/windowsUser.inc:1033 #: ../lib/modules/inetOrgPerson.inc:70 ../lib/modules/inetOrgPerson.inc:71 msgid "Last name contains invalid characters or is empty!" msgstr "Achternaam bevat ongeldige tekens of is leeg!" -#: ../lib/modules/windowsUser.inc:186 ../lib/modules/inetOrgPerson.inc:583 +#: ../lib/modules/windowsLDSUser.inc:170 ../lib/modules/windowsUser.inc:188 +#: ../lib/modules/inetOrgPerson.inc:583 msgid "Last name of user. Only letters, - and spaces are allowed." msgstr "Achternaam van gebruiker. Alleen letters, - en spaties zijn toegestaan." #: ../lib/modules/mitKerberos.inc:139 ../lib/modules/mitKerberos.inc:254 #: ../lib/modules/mitKerberos.inc:389 ../lib/modules/mitKerberos.inc:826 -#: ../lib/modules/sambaSamAccount.inc:398 ../lib/modules/sambaSamAccount.inc:1147 +#: ../lib/modules/windowsLDSUser.inc:223 ../lib/modules/windowsLDSUser.inc:683 +#: ../lib/modules/windowsLDSUser.inc:958 ../lib/modules/windowsLDSUser.inc:1869 +#: ../lib/modules/windowsLDSUser.inc:2191 ../lib/modules/windowsHost.inc:91 +#: ../lib/modules/windowsHost.inc:160 ../lib/modules/sambaSamAccount.inc:398 +#: ../lib/modules/sambaSamAccount.inc:1147 #: ../lib/modules/sambaSamAccount.inc:1954 #: ../lib/modules/sambaSamAccount.inc:2370 ../lib/modules/ppolicyUser.inc:91 #: ../lib/modules/ppolicyUser.inc:140 ../lib/modules/ppolicyUser.inc:389 -#: ../lib/modules/windowsUser.inc:278 ../lib/modules/windowsUser.inc:886 -#: ../lib/modules/windowsUser.inc:1237 ../lib/modules/windowsUser.inc:2761 -#: ../lib/modules/windowsUser.inc:2914 ../lib/modules/windowsUser.inc:3610 +#: ../lib/modules/windowsUser.inc:280 ../lib/modules/windowsUser.inc:922 +#: ../lib/modules/windowsUser.inc:1275 ../lib/modules/windowsUser.inc:2928 +#: ../lib/modules/windowsUser.inc:3085 ../lib/modules/windowsUser.inc:3704 #: ../lib/modules/shadowAccount.inc:168 ../lib/modules/shadowAccount.inc:202 #: ../lib/modules/shadowAccount.inc:371 ../lib/modules/shadowAccount.inc:554 #: ../lib/modules/shadowAccount.inc:597 ../lib/modules/shadowAccount.inc:785 msgid "Last password change" msgstr "Laatste wachtwoord verandering" -#: ../lib/modules/sambaSamAccount.inc:253 ../lib/modules/windowsUser.inc:952 +#: ../lib/modules/sambaSamAccount.inc:253 ../lib/modules/windowsUser.inc:988 #: ../lib/modules/shadowAccount.inc:241 msgid "Last password change (read-only)" msgstr "Laatste wachtwoord verandering (read-only)" @@ -7641,14 +7815,20 @@ msgstr "Laatste wachtwoord verandering (read-only)" msgid "Last qualify milliseconds" msgstr "Laatste qualify milliseconden" +#: ../templates/misc/ajax.php:277 ../templates/tools/webauthn.php:106 +#: ../lib/modules/webauthn.inc:159 +msgid "Last use" +msgstr "Laatste gebruik" + #: ../lib/modules/dhcp_settings.inc:151 ../lib/modules/dhcp_settings.inc:216 #: ../lib/modules/dhcp_settings.inc:232 ../lib/modules/dhcp_settings.inc:265 -#: ../lib/modules/dhcp_settings.inc:590 ../lib/modules/dhcp_settings.inc:709 +#: ../lib/modules/dhcp_settings.inc:582 ../lib/modules/dhcp_settings.inc:701 msgid "Lease time" msgstr "Leasetijd" -#: ../templates/config/mainmanage.php:312 ../templates/config/mainmanage.php:313 -#: ../help/help.inc:232 +#: ../templates/config/mainmanage.php:114 ../templates/config/mainmanage.php:118 +#: ../templates/config/mainmanage.php:319 ../templates/config/mainmanage.php:320 +#: ../help/help.inc:238 msgid "Licence" msgstr "Licentie" @@ -7679,7 +7859,7 @@ msgstr "Regel eindigt" msgid "Link text" msgstr "Link tekst" -#: ../templates/selfService/adminMain.php:365 +#: ../templates/selfService/adminMain.php:366 msgid "Link to self service login page for your users" msgstr "Link naar zelf service login pagina voor uw gebruikers" @@ -7716,7 +7896,7 @@ msgstr "Lijstnaam" #: ../lib/modules/zarafaAddressList.inc:153 #: ../lib/modules/kopanoAddressList.inc:153 msgid "List name already in use." -msgstr "Lijstnaam wordt al gebruikt" +msgstr "Lijstnaam wordt al gebruikt." #: ../lib/modules/sambaSamAccount.inc:317 msgid "" @@ -7726,7 +7906,7 @@ msgstr "" "Lijst van Samba werkstations waarop gebruiker mag inloggen. Leeg betekent op " "elke werkstation." -#: ../templates/config/confmain.php:659 +#: ../templates/config/confmain.php:661 msgid "List of admin users is empty or invalid!" msgstr "Lijst van beheerders is leeg of ongeldig!" @@ -7747,11 +7927,19 @@ msgstr "Lijst met entrees die verwijderd gaan worden:" msgid "List of valid users" msgstr "Lijst van geldige gebruikers" +#: ../lib/modules/windowsUser.inc:409 +msgid "" +"List of workstations the user is allowed to login. Empty means every " +"workstation." +msgstr "" +"Lijst met werkstations waar de gebruiker zich mag aanmelden. Leeg betekent " +"elke werkplek." + #: ../templates/tools/serverInfo.php:148 msgid "Listeners" msgstr "Luisteraars" -#: ../lib/modules.inc:1333 ../help/help.inc:252 +#: ../lib/modules.inc:1333 ../help/help.inc:264 msgid "Load profile" msgstr "Load profiel" @@ -7809,24 +7997,27 @@ msgstr "Lokale groep" msgid "Local members" msgstr "Lokale leden" -#: ../lib/types/host.inc:101 ../lib/modules/ipHost.inc:73 -#: ../lib/modules/ipHost.inc:97 ../lib/modules/ipHost.inc:113 -#: ../lib/modules/ipHost.inc:140 ../lib/modules/ipHost.inc:299 -#: ../lib/modules/windowsHost.inc:81 ../lib/modules/windowsHost.inc:105 -#: ../lib/modules/windowsHost.inc:120 ../lib/modules/windowsHost.inc:143 -#: ../lib/modules/windowsHost.inc:289 ../lib/modules/device.inc:80 -#: ../lib/modules/device.inc:103 ../lib/modules/device.inc:116 -#: ../lib/modules/device.inc:164 ../lib/modules/device.inc:426 -#: ../lib/modules/windowsUser.inc:157 ../lib/modules/windowsUser.inc:478 -#: ../lib/modules/windowsUser.inc:845 ../lib/modules/windowsUser.inc:948 -#: ../lib/modules/windowsUser.inc:1135 ../lib/modules/windowsUser.inc:2691 -#: ../lib/modules/windowsUser.inc:2907 ../lib/modules/inetOrgPerson.inc:163 +#: ../lib/types/host.inc:101 ../lib/modules/windowsLDSUser.inc:141 +#: ../lib/modules/windowsLDSUser.inc:403 ../lib/modules/windowsLDSUser.inc:658 +#: ../lib/modules/windowsLDSUser.inc:879 ../lib/modules/windowsLDSUser.inc:1827 +#: ../lib/modules/ipHost.inc:73 ../lib/modules/ipHost.inc:97 +#: ../lib/modules/ipHost.inc:113 ../lib/modules/ipHost.inc:140 +#: ../lib/modules/ipHost.inc:299 ../lib/modules/windowsHost.inc:83 +#: ../lib/modules/windowsHost.inc:119 ../lib/modules/windowsHost.inc:134 +#: ../lib/modules/windowsHost.inc:157 ../lib/modules/windowsHost.inc:330 +#: ../lib/modules/device.inc:80 ../lib/modules/device.inc:103 +#: ../lib/modules/device.inc:116 ../lib/modules/device.inc:164 +#: ../lib/modules/device.inc:426 ../lib/modules/windowsUser.inc:159 +#: ../lib/modules/windowsUser.inc:488 ../lib/modules/windowsUser.inc:784 +#: ../lib/modules/windowsUser.inc:878 ../lib/modules/windowsUser.inc:984 +#: ../lib/modules/windowsUser.inc:1173 ../lib/modules/windowsUser.inc:2857 +#: ../lib/modules/windowsUser.inc:3078 ../lib/modules/inetOrgPerson.inc:163 #: ../lib/modules/inetOrgPerson.inc:445 ../lib/modules/inetOrgPerson.inc:492 -#: ../lib/modules/inetOrgPerson.inc:713 ../lib/modules/inetOrgPerson.inc:717 -#: ../lib/modules/inetOrgPerson.inc:1272 ../lib/modules/inetOrgPerson.inc:1275 -#: ../lib/modules/inetOrgPerson.inc:1972 ../lib/modules/inetOrgPerson.inc:2016 -#: ../lib/modules/inetOrgPerson.inc:2714 ../lib/modules/inetOrgPerson.inc:3863 -#: ../lib/modules/inetOrgPerson.inc:3906 +#: ../lib/modules/inetOrgPerson.inc:717 ../lib/modules/inetOrgPerson.inc:721 +#: ../lib/modules/inetOrgPerson.inc:1286 ../lib/modules/inetOrgPerson.inc:1289 +#: ../lib/modules/inetOrgPerson.inc:1989 ../lib/modules/inetOrgPerson.inc:2034 +#: ../lib/modules/inetOrgPerson.inc:2774 ../lib/modules/inetOrgPerson.inc:4075 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "Location" msgstr "Plaats" @@ -7838,18 +8029,18 @@ msgstr "Locatie waar de nieuwe alias wordt opgeslagen." msgid "Lock" msgstr "Vergrendel" -#: ../templates/lists/changePassword.php:440 -#: ../templates/lists/changePassword.php:458 -#: ../templates/lists/changePassword.php:460 ../lib/modules/ppolicyUser.inc:154 +#: ../templates/lists/changePassword.php:444 +#: ../templates/lists/changePassword.php:462 +#: ../templates/lists/changePassword.php:464 ../lib/modules/ppolicyUser.inc:154 msgid "Lock account" msgstr "Vergrendel account" -#: ../templates/lists/changePassword.php:266 +#: ../templates/lists/changePassword.php:270 msgid "Lock account?" msgstr "Vergrendel account?" -#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1687 -#: ../lib/modules/posixAccount.inc:2405 ../lib/modules/inetOrgPerson.inc:1565 +#: ../lib/modules/posixGroup.inc:222 ../lib/modules/posixAccount.inc:1742 +#: ../lib/modules/posixAccount.inc:2469 ../lib/modules/inetOrgPerson.inc:1579 msgid "Lock password" msgstr "Blokkeer wachtwoord" @@ -7857,15 +8048,15 @@ msgstr "Blokkeer wachtwoord" msgid "Locked" msgstr "Vergrendeld" -#: ../templates/lists/changePassword.php:424 ../lib/types/user.inc:330 +#: ../templates/lists/changePassword.php:428 ../lib/types/user.inc:330 #: ../lib/types/user.inc:520 ../lib/types/user.inc:1117 #: ../lib/modules/locking389ds.inc:94 msgid "Locked till" msgstr "Vergrendeld tot" -#: ../lib/types/ppolicyType.inc:86 ../lib/modules/ppolicy.inc:103 -#: ../lib/modules/ppolicy.inc:150 ../lib/modules/ppolicy.inc:170 -#: ../lib/modules/ppolicy.inc:254 ../lib/modules/ppolicy.inc:468 +#: ../lib/types/ppolicyType.inc:86 ../lib/modules/ppolicy.inc:104 +#: ../lib/modules/ppolicy.inc:155 ../lib/modules/ppolicy.inc:176 +#: ../lib/modules/ppolicy.inc:260 ../lib/modules/ppolicy.inc:480 #: ../lib/modules/sambaDomain.inc:132 ../lib/modules/sambaDomain.inc:197 #: ../lib/modules/sambaDomain.inc:222 ../lib/modules/sambaDomain.inc:333 #: ../lib/modules/sambaDomain.inc:601 @@ -7880,9 +8071,9 @@ msgstr "Vergrendel duur moet een natuurlijk getal zijn." msgid "Lockout time" msgstr "Vergrendel tijd" -#: ../lib/types/ppolicyType.inc:91 ../lib/modules/ppolicy.inc:123 -#: ../lib/modules/ppolicy.inc:149 ../lib/modules/ppolicy.inc:248 -#: ../lib/modules/ppolicy.inc:487 +#: ../lib/types/ppolicyType.inc:91 ../lib/modules/ppolicy.inc:124 +#: ../lib/modules/ppolicy.inc:154 ../lib/modules/ppolicy.inc:254 +#: ../lib/modules/ppolicy.inc:500 msgid "Lockout users" msgstr "Vergrendel gebruikers" @@ -7898,11 +8089,11 @@ msgstr "" "Vergrendel gebruikers na mislukte aanmeldingspogingen moet een getal tussen 0 " "en 999 zijn." -#: ../templates/config/mainmanage.php:442 ../help/help.inc:158 +#: ../templates/config/mainmanage.php:471 ../help/help.inc:158 msgid "Log destination" msgstr "Log bestemming" -#: ../templates/config/mainmanage.php:416 ../help/help.inc:156 +#: ../templates/config/mainmanage.php:447 ../help/help.inc:156 msgid "Log level" msgstr "Logniveau" @@ -7910,30 +8101,30 @@ msgstr "Logniveau" msgid "Log output" msgstr "Log output" -#: ../templates/config/mainmanage.php:414 +#: ../templates/config/mainmanage.php:445 msgid "Logging" msgstr "Logging" #: ../templates/login.php:404 ../templates/config/conflogin.php:71 #: ../templates/config/mainlogin.php:68 -#: ../templates/selfService/selfServiceLogin.php:224 -#: ../templates/selfService/selfServiceLogin.php:327 +#: ../templates/selfService/selfServiceLogin.php:225 +#: ../templates/selfService/selfServiceLogin.php:328 #: ../templates/selfService/adminLogin.php:57 #: ../templates/selfService/selfService2Factor.php:132 #: ../templates/3rdParty/pla/lib/HTMLTree.php:497 -#: ../templates/login2Factor.php:113 ../lib/2factor.inc:545 ../help/help.inc:60 +#: ../templates/login2Factor.php:113 ../lib/2factor.inc:558 ../help/help.inc:60 msgid "Login" msgstr "Login" -#: ../templates/selfService/adminMain.php:563 ../help/help.inc:280 +#: ../templates/selfService/adminMain.php:567 ../help/help.inc:292 msgid "Login attribute label" msgstr "Login attribuut label" -#: ../templates/selfService/adminMain.php:570 ../help/help.inc:282 +#: ../templates/selfService/adminMain.php:574 ../help/help.inc:294 msgid "Login caption" msgstr "Login bijschrift" -#: ../templates/selfService/adminMain.php:575 ../help/help.inc:326 +#: ../templates/selfService/adminMain.php:579 ../help/help.inc:338 msgid "Login footer" msgstr "Login-voettekst" @@ -7943,14 +8134,14 @@ msgstr "Login methode" #: ../lib/types/user.inc:106 ../lib/modules/posixAccount.inc:176 #: ../lib/modules/posixAccount.inc:251 ../lib/modules/posixAccount.inc:306 -#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1678 -#: ../lib/modules/posixAccount.inc:1997 ../lib/modules/posixAccount.inc:2109 -#: ../lib/modules/posixAccount.inc:3199 +#: ../lib/modules/posixAccount.inc:435 ../lib/modules/posixAccount.inc:1733 +#: ../lib/modules/posixAccount.inc:2056 ../lib/modules/posixAccount.inc:2173 +#: ../lib/modules/posixAccount.inc:3263 msgid "Login shell" msgstr "Login shell" #: ../lib/modules/posixAccount.inc:186 ../lib/modules/posixAccount.inc:381 -#: ../lib/modules/posixAccount.inc:2292 +#: ../lib/modules/posixAccount.inc:2356 msgid "Login shells" msgstr "Login shells" @@ -7969,6 +8160,10 @@ msgstr "" "Logo is nog steeds in gebruik door PDF structuur \"%s\" in account type \"%s" "\"." +#: ../lib/modules/windowsHost.inc:99 ../lib/modules/windowsHost.inc:178 +msgid "Logon count" +msgstr "Aantal aanmeldingen" + #: ../lib/modules/sambaDomain.inc:108 ../lib/modules/sambaDomain.inc:191 #: ../lib/modules/sambaDomain.inc:283 ../lib/modules/sambaDomain.inc:607 msgid "Logon for password change" @@ -7987,15 +8182,15 @@ msgstr "Logonuren" #: ../lib/modules/sambaSamAccount.inc:518 ../lib/modules/sambaSamAccount.inc:1224 #: ../lib/modules/sambaSamAccount.inc:1779 #: ../lib/modules/sambaSamAccount.inc:1953 -#: ../lib/modules/sambaSamAccount.inc:1972 ../lib/modules/windowsUser.inc:230 -#: ../lib/modules/windowsUser.inc:576 ../lib/modules/windowsUser.inc:765 -#: ../lib/modules/windowsUser.inc:862 ../lib/modules/windowsUser.inc:1024 -#: ../lib/modules/windowsUser.inc:1258 ../lib/modules/windowsUser.inc:2745 +#: ../lib/modules/sambaSamAccount.inc:1972 ../lib/modules/windowsUser.inc:232 +#: ../lib/modules/windowsUser.inc:586 ../lib/modules/windowsUser.inc:789 +#: ../lib/modules/windowsUser.inc:895 ../lib/modules/windowsUser.inc:1060 +#: ../lib/modules/windowsUser.inc:1304 ../lib/modules/windowsUser.inc:2912 msgid "Logon script" msgstr "Logonscript" #: ../lib/modules/sambaSamAccount.inc:100 ../lib/modules/sambaSamAccount.inc:102 -#: ../lib/modules/windowsUser.inc:1024 ../lib/modules/windowsUser.inc:1025 +#: ../lib/modules/windowsUser.inc:1060 ../lib/modules/windowsUser.inc:1061 msgid "Logon script is invalid!" msgstr "Logonscript is ongeldig!" @@ -8011,7 +8206,7 @@ msgstr "M-Node (0x04)" #: ../lib/types/dhcp.inc:99 ../lib/modules/ieee802device.inc:57 #: ../lib/modules/ieee802device.inc:67 ../lib/modules/ieee802device.inc:78 #: ../lib/modules/ieee802device.inc:105 ../lib/modules/fixed_ip.inc:107 -#: ../lib/modules/fixed_ip.inc:421 ../lib/modules/fixed_ip.inc:762 +#: ../lib/modules/fixed_ip.inc:419 ../lib/modules/fixed_ip.inc:760 msgid "MAC address" msgstr "MAC adres" @@ -8039,14 +8234,14 @@ msgstr "MX record" msgid "MX records" msgstr "MX records" -#: ../lib/modules/posixGroup.inc:488 ../lib/modules/posixGroup.inc:551 -#: ../lib/modules/posixGroup.inc:580 ../lib/modules/posixGroup.inc:717 -#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2144 -#: ../lib/modules/posixAccount.inc:2201 ../lib/modules/posixAccount.inc:2272 +#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixGroup.inc:552 +#: ../lib/modules/posixGroup.inc:581 ../lib/modules/posixGroup.inc:718 +#: ../lib/modules/posixAccount.inc:398 ../lib/modules/posixAccount.inc:2208 +#: ../lib/modules/posixAccount.inc:2265 ../lib/modules/posixAccount.inc:2336 msgid "Magic number" msgstr "Magische getal" -#: ../lib/modules/posixGroup.inc:460 ../lib/modules/posixAccount.inc:387 +#: ../lib/modules/posixGroup.inc:461 ../lib/modules/posixAccount.inc:387 msgid "" "Magic number will set a fixed value that must match your server configuration." msgstr "" @@ -8058,31 +8253,35 @@ msgstr "" msgid "Mail aliases" msgstr "Mail aliassen" -#: ../lib/modules/imapAccess.inc:104 ../lib/modules/imapAccess.inc:531 +#: ../lib/modules/imapAccess.inc:104 ../lib/modules/imapAccess.inc:539 msgid "Mail domains" msgstr "E-mail domeinen" +#: ../templates/config/mainmanage.php:497 +msgid "Mail options" +msgstr "E-mailopties" + #: ../lib/modules/inetLocalMailRecipient.inc:68 msgid "Mail routing" msgstr "Mail routering" -#: ../lib/modules/selfRegistration.inc:741 -#: ../lib/modules/selfRegistration.inc:761 -#: ../lib/modules/passwordSelfReset.inc:1818 -#: ../lib/modules/passwordSelfReset.inc:1833 -#: ../lib/modules/passwordSelfReset.inc:1866 +#: ../lib/modules/selfRegistration.inc:756 +#: ../lib/modules/selfRegistration.inc:775 +#: ../lib/modules/passwordSelfReset.inc:1817 +#: ../lib/modules/passwordSelfReset.inc:1832 +#: ../lib/modules/passwordSelfReset.inc:1864 msgid "Mail sending failed." msgstr "Mail verzenden is mislukt." -#: ../lib/modules/bindDLZ.inc:148 ../lib/modules/bindDLZ.inc:152 -#: ../lib/modules/bindDLZ.inc:326 ../lib/modules/bindDLZ.inc:590 -#: ../lib/modules/bindDLZ.inc:1155 ../lib/modules/bindDLZ.inc:1849 -#: ../lib/modules/inetLocalMailRecipient.inc:90 +#: ../templates/config/mainmanage.php:498 ../lib/modules/bindDLZ.inc:148 +#: ../lib/modules/bindDLZ.inc:152 ../lib/modules/bindDLZ.inc:326 +#: ../lib/modules/bindDLZ.inc:590 ../lib/modules/bindDLZ.inc:1155 +#: ../lib/modules/bindDLZ.inc:1849 ../lib/modules/inetLocalMailRecipient.inc:90 #: ../lib/modules/inetLocalMailRecipient.inc:98 #: ../lib/modules/inetLocalMailRecipient.inc:127 #: ../lib/modules/inetLocalMailRecipient.inc:136 #: ../lib/modules/inetLocalMailRecipient.inc:185 -#: ../lib/modules/inetLocalMailRecipient.inc:306 +#: ../lib/modules/inetLocalMailRecipient.inc:306 ../help/help.inc:182 msgid "Mail server" msgstr "Mail server" @@ -8097,7 +8296,7 @@ msgstr "Mail servers (\"MX\" records)" msgid "Mail source" msgstr "Mail bron" -#: ../lib/account.inc:1285 +#: ../lib/account.inc:1289 #, php-format msgid "Mail successfully sent to %s." msgstr "E-mail verzonden naar %s." @@ -8161,11 +8360,11 @@ msgstr "E-mail naar deze naam worden doorgestuurd naar de ontvangers." msgid "Main" msgstr "Hoofd" -#: ../templates/selfService/adminMain.php:580 ../help/help.inc:284 +#: ../templates/selfService/adminMain.php:584 ../help/help.inc:296 msgid "Main page caption" msgstr "Hoofdpagina bijschrift" -#: ../templates/selfService/adminMain.php:585 ../help/help.inc:328 +#: ../templates/selfService/adminMain.php:589 ../help/help.inc:340 msgid "Main page footer" msgstr "Voettekst hoofdpagina" @@ -8174,7 +8373,7 @@ msgid "Make sure your filter (above) will select all child records." msgstr "" "Zorg ervoor dat uw filter (zie boven) alle onderliggende records selecteert." -#: ../lib/modules/inetOrgPerson.inc:1527 +#: ../lib/modules/inetOrgPerson.inc:1541 msgid "Manage" msgstr "Beheer" @@ -8202,12 +8401,14 @@ msgstr "Beheer zelf serivice profielen" msgid "Manage server profiles" msgstr "Beheer server profielen" -#: ../lib/modules/windowsHost.inc:85 ../lib/modules/windowsHost.inc:111 -#: ../lib/modules/windowsHost.inc:121 ../lib/modules/windowsHost.inc:145 -#: ../lib/modules/windowsHost.inc:294 ../lib/modules/windowsGroup.inc:155 -#: ../lib/modules/windowsGroup.inc:222 ../lib/modules/windowsGroup.inc:264 -#: ../lib/modules/windowsGroup.inc:344 ../lib/modules/windowsGroup.inc:913 -#: ../lib/modules/windowsGroup.inc:1082 +#: ../lib/modules/windowsHost.inc:87 ../lib/modules/windowsHost.inc:125 +#: ../lib/modules/windowsHost.inc:135 ../lib/modules/windowsHost.inc:186 +#: ../lib/modules/windowsHost.inc:335 ../lib/modules/windowsLDSGroup.inc:104 +#: ../lib/modules/windowsLDSGroup.inc:136 ../lib/modules/windowsLDSGroup.inc:147 +#: ../lib/modules/windowsLDSGroup.inc:170 ../lib/modules/windowsLDSGroup.inc:601 +#: ../lib/modules/windowsGroup.inc:155 ../lib/modules/windowsGroup.inc:222 +#: ../lib/modules/windowsGroup.inc:264 ../lib/modules/windowsGroup.inc:344 +#: ../lib/modules/windowsGroup.inc:913 ../lib/modules/windowsGroup.inc:1082 msgid "Managed by" msgstr "Beheerd door" @@ -8215,22 +8416,25 @@ msgstr "Beheerd door" msgid "Managed suffixes" msgstr "Beheerde achtervoegsels" -#: ../lib/types/user.inc:108 ../lib/modules/ipHost.inc:77 +#: ../lib/types/user.inc:108 ../lib/modules/windowsLDSUser.inc:283 +#: ../lib/modules/windowsLDSUser.inc:585 ../lib/modules/windowsLDSUser.inc:713 +#: ../lib/modules/windowsLDSUser.inc:941 ../lib/modules/windowsLDSUser.inc:1855 +#: ../lib/modules/windowsLDSUser.inc:2204 ../lib/modules/ipHost.inc:77 #: ../lib/modules/ipHost.inc:103 ../lib/modules/ipHost.inc:114 #: ../lib/modules/ipHost.inc:164 ../lib/modules/ipHost.inc:300 -#: ../lib/modules/windowsUser.inc:354 ../lib/modules/windowsUser.inc:754 -#: ../lib/modules/windowsUser.inc:919 ../lib/modules/windowsUser.inc:1198 -#: ../lib/modules/windowsUser.inc:2722 ../lib/modules/windowsUser.inc:3623 +#: ../lib/modules/windowsUser.inc:356 ../lib/modules/windowsUser.inc:764 +#: ../lib/modules/windowsUser.inc:955 ../lib/modules/windowsUser.inc:1236 +#: ../lib/modules/windowsUser.inc:2888 ../lib/modules/windowsUser.inc:3718 #: ../lib/modules/inetOrgPerson.inc:291 ../lib/modules/inetOrgPerson.inc:546 #: ../lib/modules/inetOrgPerson.inc:590 ../lib/modules/inetOrgPerson.inc:594 -#: ../lib/modules/inetOrgPerson.inc:1535 ../lib/modules/inetOrgPerson.inc:1950 -#: ../lib/modules/inetOrgPerson.inc:3880 ../lib/modules/inetOrgPerson.inc:3915 +#: ../lib/modules/inetOrgPerson.inc:1549 ../lib/modules/inetOrgPerson.inc:1967 +#: ../lib/modules/inetOrgPerson.inc:4092 ../lib/modules/inetOrgPerson.inc:4130 msgid "Manager" msgstr "Beheerder" #: ../lib/tools/ouEditor.inc:54 msgid "Manages OU objects in your LDAP tree." -msgstr "Beheert OU objecten in de LDAP boom" +msgstr "Beheert OU objecten in de LDAP boom." #: ../lib/modules/kolabUser.inc:54 msgid "Manual" @@ -8283,13 +8487,13 @@ msgstr "Master wachtwoord" msgid "Master password is wrong!" msgstr "Master wachtwoord is fout!" -#: ../templates/config/mainmanage.php:100 +#: ../templates/config/mainmanage.php:101 msgid "Master passwords are different or empty!" msgstr "Masterwachtworden zijn verschillend of leeg!" #: ../templates/schema/schema.php:150 msgid "Matching rule OID" -msgstr "Matching regel OID " +msgstr "Matching regel OID" #: ../templates/schema/schema.php:76 msgid "Matching rules" @@ -8304,22 +8508,22 @@ msgstr "Max. bestandsdescriptors" msgid "Maximum" msgstr "Maximum" -#: ../lib/modules/posixGroup.inc:571 ../lib/modules/posixGroup.inc:706 -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:572 ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number" msgstr "Maximum GID nummer" -#: ../lib/modules/posixGroup.inc:706 +#: ../lib/modules/posixGroup.inc:707 msgid "Maximum GID number is invalid or empty!" msgstr "Maximum GID nummer is ongeldig of leeg!" -#: ../lib/modules/posixGroup.inc:707 +#: ../lib/modules/posixGroup.inc:708 msgid "Maximum GID number must be greater than minimum GID number!" msgstr "Maximum GID nummer moet groter zijn dan minimum GID nummer!" #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:86 #: ../lib/modules/posixAccount.inc:87 ../lib/modules/posixAccount.inc:88 -#: ../lib/modules/posixAccount.inc:2198 ../lib/modules/posixAccount.inc:2269 +#: ../lib/modules/posixAccount.inc:2262 ../lib/modules/posixAccount.inc:2333 msgid "Maximum UID number" msgstr "Maximum UID number" @@ -8331,9 +8535,9 @@ msgstr "Maximum UID nummer is ongeldig!" msgid "Maximum UID number must be greater than minimum UID number!" msgstr "Maximum UID nummer moet groter zijn dan minimum UID nummer!" -#: ../lib/types/ppolicyType.inc:87 ../lib/modules/ppolicy.inc:107 -#: ../lib/modules/ppolicy.inc:151 ../lib/modules/ppolicy.inc:171 -#: ../lib/modules/ppolicy.inc:261 ../lib/modules/ppolicy.inc:469 +#: ../lib/types/ppolicyType.inc:87 ../lib/modules/ppolicy.inc:108 +#: ../lib/modules/ppolicy.inc:156 ../lib/modules/ppolicy.inc:177 +#: ../lib/modules/ppolicy.inc:267 ../lib/modules/ppolicy.inc:481 msgid "Maximum failure count" msgstr "Maximum fout aantal" @@ -8343,8 +8547,9 @@ msgstr "Maximum fout aantal" msgid "Maximum file size" msgstr "Maximale bestandsgrootte" -#: ../lib/modules/windowsUser.inc:3647 ../lib/modules/inetOrgPerson.inc:2496 -#: ../lib/modules/inetOrgPerson.inc:2520 ../lib/modules/inetOrgPerson.inc:3931 +#: ../lib/modules/windowsLDSUser.inc:2209 ../lib/modules/windowsUser.inc:3742 +#: ../lib/modules/inetOrgPerson.inc:2524 ../lib/modules/inetOrgPerson.inc:2548 +#: ../lib/modules/inetOrgPerson.inc:4146 msgid "Maximum file size (kB)" msgstr "Maximale bestandsgrootte (kB)" @@ -8352,8 +8557,9 @@ msgstr "Maximale bestandsgrootte (kB)" msgid "Maximum file size must be a number. Please enter 0 for no limit." msgstr "Maximale bestandsgrootte moet een getal zijn. Vul 0 voor geen limiet." -#: ../lib/modules/windowsUser.inc:3646 ../lib/modules/inetOrgPerson.inc:2495 -#: ../lib/modules/inetOrgPerson.inc:2517 ../lib/modules/inetOrgPerson.inc:3930 +#: ../lib/modules/windowsLDSUser.inc:2208 ../lib/modules/windowsUser.inc:3741 +#: ../lib/modules/inetOrgPerson.inc:2523 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:4145 msgid "Maximum height (px)" msgstr "Maximale hoogte (px)" @@ -8366,7 +8572,7 @@ msgstr "Maximale grootte van een opdracht" #: ../lib/modules/dhcp_settings.inc:155 ../lib/modules/dhcp_settings.inc:217 #: ../lib/modules/dhcp_settings.inc:233 ../lib/modules/dhcp_settings.inc:271 -#: ../lib/modules/dhcp_settings.inc:594 ../lib/modules/dhcp_settings.inc:710 +#: ../lib/modules/dhcp_settings.inc:586 ../lib/modules/dhcp_settings.inc:702 msgid "Maximum lease time" msgstr "Maximale leasetijd" @@ -8374,7 +8580,7 @@ msgstr "Maximale leasetijd" msgid "Maximum length" msgstr "Maximum lengte" -#: ../lib/lists.inc:1193 ../help/help.inc:101 +#: ../lib/lists.inc:1198 ../help/help.inc:101 msgid "Maximum list entries" msgstr "Maximum lijstentrees" @@ -8389,18 +8595,19 @@ msgstr "" #: ../lib/modules/shadowAccount.inc:64 ../lib/modules/shadowAccount.inc:125 #: ../lib/modules/shadowAccount.inc:173 ../lib/modules/shadowAccount.inc:190 #: ../lib/modules/shadowAccount.inc:228 ../lib/modules/shadowAccount.inc:349 -#: ../lib/modules/shadowAccount.inc:602 ../lib/modules/ppolicy.inc:87 -#: ../lib/modules/ppolicy.inc:143 ../lib/modules/ppolicy.inc:166 -#: ../lib/modules/ppolicy.inc:167 ../lib/modules/ppolicy.inc:198 -#: ../lib/modules/ppolicy.inc:465 ../lib/modules/sambaDomain.inc:128 +#: ../lib/modules/shadowAccount.inc:602 ../lib/modules/ppolicy.inc:88 +#: ../lib/modules/ppolicy.inc:148 ../lib/modules/ppolicy.inc:172 +#: ../lib/modules/ppolicy.inc:173 ../lib/modules/ppolicy.inc:204 +#: ../lib/modules/ppolicy.inc:477 ../lib/modules/sambaDomain.inc:128 #: ../lib/modules/sambaDomain.inc:196 ../lib/modules/sambaDomain.inc:219 #: ../lib/modules/sambaDomain.inc:221 ../lib/modules/sambaDomain.inc:325 #: ../lib/modules/sambaDomain.inc:600 msgid "Maximum password age" msgstr "Maximum levensduur wachtwoord" -#: ../lib/modules/windowsUser.inc:3645 ../lib/modules/inetOrgPerson.inc:2494 -#: ../lib/modules/inetOrgPerson.inc:2514 ../lib/modules/inetOrgPerson.inc:3929 +#: ../lib/modules/windowsLDSUser.inc:2207 ../lib/modules/windowsUser.inc:3740 +#: ../lib/modules/inetOrgPerson.inc:2522 ../lib/modules/inetOrgPerson.inc:2542 +#: ../lib/modules/inetOrgPerson.inc:4144 msgid "Maximum width (px)" msgstr "Maximale breedte (px)" @@ -8431,6 +8638,8 @@ msgstr "Lid items" msgid "Member filter" msgstr "Lid filter" +#: ../lib/modules/windowsLDSGroup.inc:96 ../lib/modules/windowsLDSGroup.inc:146 +#: ../lib/modules/windowsLDSGroup.inc:219 ../lib/modules/windowsLDSGroup.inc:625 #: ../lib/modules/windowsGroup.inc:139 ../lib/modules/windowsGroup.inc:256 #: ../lib/modules/windowsGroup.inc:405 ../lib/modules/windowsGroup.inc:937 msgid "Member of" @@ -8439,7 +8648,11 @@ msgstr "Lid van" #: ../lib/types/netgroup.inc:97 ../lib/modules/nisnetgroup.inc:97 #: ../lib/modules/nisnetgroup.inc:101 ../lib/modules/nisnetgroup.inc:134 #: ../lib/modules/nisnetgroup.inc:144 ../lib/modules/nisnetgroup.inc:223 -#: ../lib/modules/nisnetgroup.inc:574 ../lib/modules/organizationalRole.inc:97 +#: ../lib/modules/nisnetgroup.inc:574 ../lib/modules/windowsLDSGroup.inc:92 +#: ../lib/modules/windowsLDSGroup.inc:100 ../lib/modules/windowsLDSGroup.inc:130 +#: ../lib/modules/windowsLDSGroup.inc:145 ../lib/modules/windowsLDSGroup.inc:429 +#: ../lib/modules/windowsLDSGroup.inc:610 +#: ../lib/modules/organizationalRole.inc:97 #: ../lib/modules/organizationalRole.inc:101 #: ../lib/modules/organizationalRole.inc:134 #: ../lib/modules/organizationalRole.inc:142 @@ -8496,7 +8709,8 @@ msgstr "Berichtenarchief" msgid "Messages" msgstr "Berichten" -#: ../lib/modules/windowsUser.inc:432 ../lib/modules/inetOrgPerson.inc:244 +#: ../lib/modules/windowsLDSUser.inc:357 ../lib/modules/windowsUser.inc:442 +#: ../lib/modules/inetOrgPerson.inc:244 msgid "Miller" msgstr "Miller" @@ -8510,16 +8724,16 @@ msgstr "Minimale wachtwoord lengte" msgid "Minimum" msgstr "Minimaal" -#: ../lib/modules/posixGroup.inc:568 ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:569 ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number" msgstr "Minimum GID nummer" -#: ../lib/modules/posixGroup.inc:705 +#: ../lib/modules/posixGroup.inc:706 msgid "Minimum GID number is invalid or empty!" msgstr "Minimum GID nummer is ongeldig of leeg!" #: ../lib/modules/posixAccount.inc:83 ../lib/modules/posixAccount.inc:85 -#: ../lib/modules/posixAccount.inc:2195 ../lib/modules/posixAccount.inc:2266 +#: ../lib/modules/posixAccount.inc:2259 ../lib/modules/posixAccount.inc:2330 msgid "Minimum UID number" msgstr "Minimum UID nummer" @@ -8532,15 +8746,15 @@ msgstr "Minimum UID nummer is ongeldig!" msgid "Minimum answer length" msgstr "Minimale antwoord lengte" -#: ../templates/config/mainmanage.php:398 +#: ../templates/config/mainmanage.php:429 msgid "Minimum character classes" msgstr "Minimum character classes" -#: ../templates/config/mainmanage.php:394 +#: ../templates/config/mainmanage.php:425 msgid "Minimum lowercase characters" msgstr "Minimum kleine letters" -#: ../templates/config/mainmanage.php:396 +#: ../templates/config/mainmanage.php:427 msgid "Minimum numeric characters" msgstr "Minimum numerieke tekens" @@ -8548,22 +8762,22 @@ msgstr "Minimum numerieke tekens" #: ../lib/modules/shadowAccount.inc:121 ../lib/modules/shadowAccount.inc:172 #: ../lib/modules/shadowAccount.inc:186 ../lib/modules/shadowAccount.inc:222 #: ../lib/modules/shadowAccount.inc:346 ../lib/modules/shadowAccount.inc:601 -#: ../lib/modules/ppolicy.inc:83 ../lib/modules/ppolicy.inc:142 -#: ../lib/modules/ppolicy.inc:165 ../lib/modules/ppolicy.inc:191 -#: ../lib/modules/ppolicy.inc:464 ../lib/modules/sambaDomain.inc:124 +#: ../lib/modules/ppolicy.inc:84 ../lib/modules/ppolicy.inc:147 +#: ../lib/modules/ppolicy.inc:171 ../lib/modules/ppolicy.inc:197 +#: ../lib/modules/ppolicy.inc:476 ../lib/modules/sambaDomain.inc:124 #: ../lib/modules/sambaDomain.inc:195 ../lib/modules/sambaDomain.inc:220 #: ../lib/modules/sambaDomain.inc:317 ../lib/modules/sambaDomain.inc:599 msgid "Minimum password age" msgstr "Minimum levensduur wachtwoord" -#: ../templates/config/mainmanage.php:392 ../lib/types/ppolicyType.inc:90 -#: ../lib/modules/ppolicy.inc:119 ../lib/modules/ppolicy.inc:146 -#: ../lib/modules/ppolicy.inc:174 ../lib/modules/ppolicy.inc:240 -#: ../lib/modules/ppolicy.inc:472 +#: ../templates/config/mainmanage.php:423 ../lib/types/ppolicyType.inc:90 +#: ../lib/modules/ppolicy.inc:120 ../lib/modules/ppolicy.inc:151 +#: ../lib/modules/ppolicy.inc:180 ../lib/modules/ppolicy.inc:246 +#: ../lib/modules/ppolicy.inc:484 msgid "Minimum password length" msgstr "Minimale wachtwoord lengte" -#: ../templates/config/mainmanage.php:397 +#: ../templates/config/mainmanage.php:428 msgid "Minimum symbolic characters" msgstr "Minimum symbolische tekens" @@ -8573,7 +8787,7 @@ msgstr "Minimum symbolische tekens" msgid "Minimum time" msgstr "Minimale tijd" -#: ../templates/config/mainmanage.php:395 +#: ../templates/config/mainmanage.php:426 msgid "Minimum uppercase characters" msgstr "Minimum hoofdletters" @@ -8586,23 +8800,26 @@ msgid "Missing modify command add, delete or replace" msgstr "" "Ontbrekende wijzigen commando toe te voegen, te verwijderen of te vervangen" -#: ../lib/modules/windowsUser.inc:374 ../lib/modules/windowsUser.inc:633 -#: ../lib/modules/windowsUser.inc:931 ../lib/modules/windowsUser.inc:1008 -#: ../lib/modules/windowsUser.inc:1148 ../lib/modules/windowsUser.inc:2706 -#: ../lib/modules/windowsUser.inc:3603 +#: ../lib/modules/windowsLDSUser.inc:303 ../lib/modules/windowsLDSUser.inc:490 +#: ../lib/modules/windowsLDSUser.inc:725 ../lib/modules/windowsLDSUser.inc:773 +#: ../lib/modules/windowsLDSUser.inc:891 ../lib/modules/windowsLDSUser.inc:1841 +#: ../lib/modules/windowsLDSUser.inc:2187 ../lib/modules/windowsUser.inc:376 +#: ../lib/modules/windowsUser.inc:643 ../lib/modules/windowsUser.inc:967 +#: ../lib/modules/windowsUser.inc:1044 ../lib/modules/windowsUser.inc:1186 +#: ../lib/modules/windowsUser.inc:2872 ../lib/modules/windowsUser.inc:3697 msgid "Mobile" msgstr "Mobiel nummer" #: ../lib/types/user.inc:224 ../lib/modules/inetOrgPerson.inc:76 #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:363 #: ../lib/modules/inetOrgPerson.inc:516 ../lib/modules/inetOrgPerson.inc:638 -#: ../lib/modules/inetOrgPerson.inc:642 ../lib/modules/inetOrgPerson.inc:1403 -#: ../lib/modules/inetOrgPerson.inc:1406 ../lib/modules/inetOrgPerson.inc:1960 -#: ../lib/modules/inetOrgPerson.inc:3871 ../lib/modules/inetOrgPerson.inc:3910 +#: ../lib/modules/inetOrgPerson.inc:642 ../lib/modules/inetOrgPerson.inc:1417 +#: ../lib/modules/inetOrgPerson.inc:1420 ../lib/modules/inetOrgPerson.inc:1977 +#: ../lib/modules/inetOrgPerson.inc:4083 ../lib/modules/inetOrgPerson.inc:4125 msgid "Mobile number" msgstr "Mobiel nummer" -#: ../lib/modules/inetOrgPerson.inc:2615 +#: ../lib/modules/inetOrgPerson.inc:2657 msgid "Mobile telephone number" msgstr "Mobiele telefoonnummer" @@ -8675,7 +8892,7 @@ msgstr "Bewerk groep leden" msgid "Modifying" msgstr "Wijzigen" -#: ../templates/selfService/adminMain.php:409 ../lib/configPages.inc:102 +#: ../templates/selfService/adminMain.php:410 ../lib/configPages.inc:102 msgid "Module settings" msgstr "Module instellingen" @@ -8687,8 +8904,8 @@ msgstr "Modules" msgid "Monday" msgstr "Maandag" -#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:711 ../lib/modules/systemQuotas.inc:99 +#: ../lib/modules/quota.inc:109 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:774 ../lib/modules/systemQuotas.inc:99 #: ../lib/modules/systemQuotas.inc:124 ../lib/modules/systemQuotas.inc:370 msgid "Mountpoint" msgstr "Mount-punt" @@ -8703,15 +8920,15 @@ msgstr "Mount-punt van device met waarvoor quotas gelden." #: ../lib/passwordExpirationJob.inc:484 msgid "Move" -msgstr "Verplaats " +msgstr "Verplaats" #: ../lib/modules/customFields.inc:800 msgid "Move down" -msgstr "Verplaats omlaag " +msgstr "Verplaats omlaag" #: ../lib/modules/customFields.inc:794 msgid "Move up" -msgstr "Verplaats omhoog " +msgstr "Verplaats omhoog" #: ../templates/tools/multiEdit.php:104 ../lib/tools/multiEdit.inc:45 msgid "Multi edit" @@ -8738,7 +8955,12 @@ msgid "Multiple values are separated by comma." msgstr "Meerdere waarden worden gescheiden door een komma." #: ../lib/modules/kolabGroup.inc:87 ../lib/modules/kolabGroup.inc:96 -#: ../lib/modules/kolabGroup.inc:105 ../lib/modules/nisMailAliasUser.inc:81 +#: ../lib/modules/kolabGroup.inc:105 ../lib/modules/windowsLDSUser.inc:154 +#: ../lib/modules/windowsLDSUser.inc:194 ../lib/modules/windowsLDSUser.inc:205 +#: ../lib/modules/windowsLDSUser.inc:252 ../lib/modules/windowsLDSUser.inc:264 +#: ../lib/modules/windowsLDSUser.inc:272 ../lib/modules/windowsLDSUser.inc:280 +#: ../lib/modules/windowsLDSUser.inc:300 ../lib/modules/windowsLDSUser.inc:312 +#: ../lib/modules/windowsLDSUser.inc:320 ../lib/modules/nisMailAliasUser.inc:81 #: ../lib/modules/nisMailAliasUser.inc:89 ../lib/modules/puppetClient.inc:92 #: ../lib/modules/puppetClient.inc:104 ../lib/modules/puppetClient.inc:112 #: ../lib/modules/device.inc:77 ../lib/modules/dhcp_settings.inc:209 @@ -8750,23 +8972,23 @@ msgstr "Meerdere waarden worden gescheiden door een komma." #: ../lib/modules/bindDLZ.inc:177 ../lib/modules/bindDLZ.inc:185 #: ../lib/modules/bindDLZ.inc:193 ../lib/modules/bindDLZ.inc:201 #: ../lib/modules/bindDLZ.inc:209 ../lib/modules/bindDLZ.inc:217 -#: ../lib/modules/bindDLZ.inc:257 ../lib/modules/windowsUser.inc:170 -#: ../lib/modules/windowsUser.inc:210 ../lib/modules/windowsUser.inc:241 -#: ../lib/modules/windowsUser.inc:252 ../lib/modules/windowsUser.inc:323 -#: ../lib/modules/windowsUser.inc:335 ../lib/modules/windowsUser.inc:343 -#: ../lib/modules/windowsUser.inc:351 ../lib/modules/windowsUser.inc:371 -#: ../lib/modules/windowsUser.inc:383 ../lib/modules/windowsUser.inc:391 +#: ../lib/modules/bindDLZ.inc:257 ../lib/modules/windowsUser.inc:172 +#: ../lib/modules/windowsUser.inc:212 ../lib/modules/windowsUser.inc:243 +#: ../lib/modules/windowsUser.inc:254 ../lib/modules/windowsUser.inc:325 +#: ../lib/modules/windowsUser.inc:337 ../lib/modules/windowsUser.inc:345 +#: ../lib/modules/windowsUser.inc:353 ../lib/modules/windowsUser.inc:373 +#: ../lib/modules/windowsUser.inc:385 ../lib/modules/windowsUser.inc:393 #: ../lib/modules/kolabUser.inc:141 ../lib/modules/kolabUser.inc:150 #: ../lib/modules/inetOrgPerson.inc:575 ../lib/modules/inetOrgPerson.inc:595 #: ../lib/modules/inetOrgPerson.inc:603 ../lib/modules/inetOrgPerson.inc:611 #: ../lib/modules/inetOrgPerson.inc:619 ../lib/modules/inetOrgPerson.inc:635 #: ../lib/modules/inetOrgPerson.inc:643 ../lib/modules/inetOrgPerson.inc:651 #: ../lib/modules/inetOrgPerson.inc:659 ../lib/modules/inetOrgPerson.inc:667 -#: ../lib/modules/inetOrgPerson.inc:678 ../lib/modules/inetOrgPerson.inc:698 -#: ../lib/modules/inetOrgPerson.inc:710 ../lib/modules/inetOrgPerson.inc:718 -#: ../lib/modules/inetOrgPerson.inc:726 ../lib/modules/inetOrgPerson.inc:738 -#: ../lib/modules/inetOrgPerson.inc:746 ../lib/modules/inetOrgPerson.inc:763 -#: ../lib/modules/inetOrgPerson.inc:771 ../lib/modules/inetOrgPerson.inc:779 +#: ../lib/modules/inetOrgPerson.inc:678 ../lib/modules/inetOrgPerson.inc:702 +#: ../lib/modules/inetOrgPerson.inc:714 ../lib/modules/inetOrgPerson.inc:722 +#: ../lib/modules/inetOrgPerson.inc:730 ../lib/modules/inetOrgPerson.inc:742 +#: ../lib/modules/inetOrgPerson.inc:750 ../lib/modules/inetOrgPerson.inc:767 +#: ../lib/modules/inetOrgPerson.inc:775 ../lib/modules/inetOrgPerson.inc:783 #: ../lib/modules/systemQuotas.inc:72 ../lib/modules/freeRadius.inc:104 #: ../lib/modules/kolabSharedFolder.inc:104 #: ../lib/modules/kolabSharedFolder.inc:113 ../lib/modules/qmailGroup.inc:93 @@ -8790,10 +9012,10 @@ msgstr "Muziek in de wachtstand" msgid "Music to play on hold." msgstr "Muziek te spelen in de wachtstand." -#: ../lib/modules/ipHost.inc:99 ../lib/modules/windowsHost.inc:107 -#: ../lib/modules/device.inc:105 ../lib/modules/windowsUser.inc:480 -#: ../lib/modules/inetOrgPerson.inc:325 ../lib/modules/inetOrgPerson.inc:333 -#: ../lib/modules/inetOrgPerson.inc:447 +#: ../lib/modules/windowsLDSUser.inc:405 ../lib/modules/ipHost.inc:99 +#: ../lib/modules/windowsHost.inc:121 ../lib/modules/device.inc:105 +#: ../lib/modules/windowsUser.inc:490 ../lib/modules/inetOrgPerson.inc:325 +#: ../lib/modules/inetOrgPerson.inc:333 ../lib/modules/inetOrgPerson.inc:447 msgid "MyCity" msgstr "MijnStad" @@ -8801,7 +9023,8 @@ msgstr "MijnStad" msgid "MySQL" msgstr "MySQL" -#: ../lib/modules/windowsUser.inc:462 ../lib/modules/inetOrgPerson.inc:309 +#: ../lib/modules/windowsLDSUser.inc:387 ../lib/modules/windowsUser.inc:472 +#: ../lib/modules/inetOrgPerson.inc:309 msgid "Mystreetname 42" msgstr "MijnStraatnaam 42" @@ -8815,35 +9038,35 @@ msgstr "NAT" msgid "NAT setting for this account." msgstr "NAT-instelling voor dit account." -#: ../lib/modules/windowsUser.inc:1276 ../lib/modules/windowsGroup.inc:365 +#: ../lib/modules/windowsUser.inc:1322 ../lib/modules/windowsGroup.inc:365 msgid "NIS" msgstr "NIS" -#: ../lib/modules/windowsUser.inc:274 ../lib/modules/windowsUser.inc:674 -#: ../lib/modules/windowsUser.inc:769 ../lib/modules/windowsUser.inc:883 -#: ../lib/modules/windowsUser.inc:1281 ../lib/modules/windowsUser.inc:2712 -#: ../lib/modules/windowsUser.inc:3609 ../lib/modules/windowsGroup.inc:163 +#: ../lib/modules/windowsUser.inc:276 ../lib/modules/windowsUser.inc:684 +#: ../lib/modules/windowsUser.inc:793 ../lib/modules/windowsUser.inc:919 +#: ../lib/modules/windowsUser.inc:1327 ../lib/modules/windowsUser.inc:2878 +#: ../lib/modules/windowsUser.inc:3703 ../lib/modules/windowsGroup.inc:163 #: ../lib/modules/windowsGroup.inc:238 ../lib/modules/windowsGroup.inc:246 #: ../lib/modules/windowsGroup.inc:270 ../lib/modules/windowsGroup.inc:370 #: ../lib/modules/windowsGroup.inc:882 ../lib/modules/windowsGroup.inc:1084 msgid "NIS domain" msgstr "NIS domein" -#: ../lib/modules/windowsUser.inc:275 ../lib/modules/windowsGroup.inc:164 +#: ../lib/modules/windowsUser.inc:277 ../lib/modules/windowsGroup.inc:164 msgid "NIS domain name." -msgstr "NIS domeinnaam" +msgstr "NIS domeinnaam." -#: ../lib/modules/windowsUser.inc:270 ../lib/modules/windowsUser.inc:666 -#: ../lib/modules/windowsUser.inc:880 ../lib/modules/windowsUser.inc:1031 -#: ../lib/modules/windowsUser.inc:1278 ../lib/modules/windowsUser.inc:2711 -#: ../lib/modules/windowsUser.inc:3608 ../lib/modules/windowsGroup.inc:159 +#: ../lib/modules/windowsUser.inc:272 ../lib/modules/windowsUser.inc:676 +#: ../lib/modules/windowsUser.inc:916 ../lib/modules/windowsUser.inc:1067 +#: ../lib/modules/windowsUser.inc:1324 ../lib/modules/windowsUser.inc:2877 +#: ../lib/modules/windowsUser.inc:3702 ../lib/modules/windowsGroup.inc:159 #: ../lib/modules/windowsGroup.inc:230 ../lib/modules/windowsGroup.inc:267 #: ../lib/modules/windowsGroup.inc:285 ../lib/modules/windowsGroup.inc:367 #: ../lib/modules/windowsGroup.inc:881 ../lib/modules/windowsGroup.inc:1083 msgid "NIS name" msgstr "NIS naam" -#: ../lib/modules/windowsUser.inc:1031 ../lib/modules/windowsUser.inc:1032 +#: ../lib/modules/windowsUser.inc:1067 ../lib/modules/windowsUser.inc:1068 #: ../lib/modules/windowsGroup.inc:285 ../lib/modules/windowsGroup.inc:286 msgid "" "NIS name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 " @@ -8901,13 +9124,13 @@ msgstr "NS record" #: ../lib/modules/dynamicList.inc:122 ../lib/modules/dynamicList.inc:207 #: ../lib/modules/device.inc:64 ../lib/modules/device.inc:156 #: ../lib/modules/device.inc:334 ../lib/modules/device.inc:414 -#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:120 -#: ../lib/modules/range.inc:141 ../lib/modules/range.inc:547 +#: ../lib/modules/device.inc:425 ../lib/modules/range.inc:119 +#: ../lib/modules/range.inc:140 ../lib/modules/range.inc:546 #: ../lib/modules/nisObject.inc:61 ../lib/modules/nisObject.inc:81 #: ../lib/modules/nisObject.inc:111 ../lib/modules/nisObject.inc:137 -#: ../lib/modules/nisObject.inc:205 ../lib/modules/ppolicy.inc:79 -#: ../lib/modules/ppolicy.inc:141 ../lib/modules/ppolicy.inc:164 -#: ../lib/modules/ppolicy.inc:185 ../lib/modules/ppolicy.inc:463 +#: ../lib/modules/nisObject.inc:205 ../lib/modules/ppolicy.inc:80 +#: ../lib/modules/ppolicy.inc:146 ../lib/modules/ppolicy.inc:170 +#: ../lib/modules/ppolicy.inc:191 ../lib/modules/ppolicy.inc:475 #: ../lib/modules/automount.inc:63 ../lib/modules/automount.inc:79 #: ../lib/modules/automount.inc:102 ../lib/modules/automount.inc:128 #: ../lib/modules/automount.inc:179 ../lib/modules/kolabSharedFolder.inc:90 @@ -8955,7 +9178,7 @@ msgstr "Name servers" msgid "Name servers (\"NS\" records)" msgstr "Name servers (\"NS\" records)" -#: ../help/help.inc:241 +#: ../help/help.inc:253 msgid "" "Name under which the profile will be saved. If a profile with the same name " "exists, it will be overwritten." @@ -8968,7 +9191,7 @@ msgid "Named object" msgstr "Named object" #: ../lib/modules/dhcp_settings.inc:191 ../lib/modules/dhcp_settings.inc:223 -#: ../lib/modules/dhcp_settings.inc:648 ../lib/modules/dhcp_settings.inc:720 +#: ../lib/modules/dhcp_settings.inc:640 ../lib/modules/dhcp_settings.inc:712 #: ../lib/modules/freeRadius.inc:91 ../lib/modules/freeRadius.inc:133 #: ../lib/modules/freeRadius.inc:212 ../lib/modules/freeRadius.inc:256 #: ../lib/modules/freeRadius.inc:303 ../lib/modules/freeRadius.inc:355 @@ -8978,13 +9201,13 @@ msgstr "Net mask" #: ../lib/modules/dhcp_settings.inc:167 ../lib/modules/dhcp_settings.inc:220 #: ../lib/modules/dhcp_settings.inc:237 ../lib/modules/dhcp_settings.inc:295 -#: ../lib/modules/dhcp_settings.inc:610 ../lib/modules/dhcp_settings.inc:714 +#: ../lib/modules/dhcp_settings.inc:602 ../lib/modules/dhcp_settings.inc:706 msgid "Netbios name servers" msgstr "Netbios naam servers" #: ../lib/modules/dhcp_settings.inc:171 ../lib/modules/dhcp_settings.inc:221 #: ../lib/modules/dhcp_settings.inc:239 ../lib/modules/dhcp_settings.inc:301 -#: ../lib/modules/dhcp_settings.inc:620 ../lib/modules/dhcp_settings.inc:715 +#: ../lib/modules/dhcp_settings.inc:612 ../lib/modules/dhcp_settings.inc:707 msgid "Netbios node type" msgstr "Netbios node type" @@ -9002,9 +9225,10 @@ msgstr "Nieuw NIS object" #: ../templates/tools/ou_edit.php:91 msgid "New OU created successfully." -msgstr "Nieuwe OU met succes aangemaakt" +msgstr "Nieuwe OU met succes aangemaakt." -#: ../lib/modules/windowsUser.inc:486 ../lib/modules/inetOrgPerson.inc:455 +#: ../lib/modules/windowsLDSUser.inc:411 ../lib/modules/windowsUser.inc:496 +#: ../lib/modules/inetOrgPerson.inc:455 msgid "New York" msgstr "New York" @@ -9078,37 +9302,37 @@ msgstr "Nieuwe host" msgid "New import" msgstr "Nieuwe import" -#: ../templates/config/mainmanage.php:481 +#: ../templates/config/mainmanage.php:531 msgid "New master password" msgstr "Nieuw master wachtwoord" -#: ../templates/config/mainmanage.php:96 +#: ../templates/config/mainmanage.php:98 msgid "New master password set successfully." -msgstr "Nieuw master wachtwoord is met succes gemaakt" +msgstr "Nieuw master wachtwoord is met succes gemaakt." #: ../lib/lists.inc:131 msgid "New object" msgstr "Nieuw object" -#: ../templates/tools/ou_edit.php:205 ../help/help.inc:351 +#: ../templates/tools/ou_edit.php:205 ../help/help.inc:363 msgid "New organisational unit" msgstr "Nieuwe organisatie unit" #: ../templates/config/confmain.php:520 ../lib/modules/sambaSamAccount.inc:2351 -#: ../lib/modules/posixAccount.inc:3162 ../lib/modules/windowsUser.inc:2884 +#: ../lib/modules/posixAccount.inc:3226 ../lib/modules/windowsUser.inc:3055 #: ../lib/modules/passwordSelfReset.inc:1294 msgid "New password" msgstr "Nieuw wachtwoord" #: ../templates/config/profmanage.php:139 msgid "New password set successfully." -msgstr "Nieuw wachtwoord is succesvol geplaatst" +msgstr "Nieuw wachtwoord is succesvol geplaatst." #: ../lib/types/ppolicyType.inc:125 ../lib/types/ppolicyType.inc:154 msgid "New policy" msgstr "Nieuwe policy" -#: ../lib/modules/range.inc:116 ../lib/modules/range.inc:621 +#: ../lib/modules/range.inc:115 ../lib/modules/range.inc:620 msgid "New pool" msgstr "Nieuwe poel" @@ -9121,8 +9345,8 @@ msgstr "Nieuwe printer" msgid "New profile name" msgstr "Nieuwe profiel naam" -#: ../lib/modules/range.inc:112 ../lib/modules/range.inc:139 -#: ../lib/modules/range.inc:536 ../lib/modules/range.inc:610 +#: ../lib/modules/range.inc:111 ../lib/modules/range.inc:138 +#: ../lib/modules/range.inc:535 ../lib/modules/range.inc:609 msgid "New range" msgstr "Nieuwe range" @@ -9159,7 +9383,7 @@ msgstr "Nieuw tekst veld" msgid "New user" msgstr "Nieuwe gebruiker" -#: ../lib/modules/inetOrgPerson.inc:1868 +#: ../lib/modules/inetOrgPerson.inc:1880 msgid "New user certificate" msgstr "Nieuw gebruikerscertificaat" @@ -9221,7 +9445,7 @@ msgstr "Volgende RID gebruiker is geen getal!" #: ../lib/modules/eduPerson.inc:100 ../lib/modules/eduPerson.inc:187 #: ../lib/modules/eduPerson.inc:225 ../lib/modules/eduPerson.inc:338 -#: ../lib/modules/eduPerson.inc:549 +#: ../lib/modules/eduPerson.inc:543 msgid "Nick names" msgstr "Bijnamen" @@ -9234,7 +9458,7 @@ msgstr "Bijnamen" #: ../lib/modules/qmailGroup.inc:328 ../lib/modules/qmailGroup.inc:329 #: ../lib/modules/qmailGroup.inc:330 ../lib/modules/qmailGroup.inc:797 #: ../lib/modules/qmailGroup.inc:839 ../lib/modules/qmailGroup.inc:845 -#: ../lib/modules/imapAccess.inc:512 +#: ../lib/modules/imapAccess.inc:520 msgid "No" msgstr "Nee" @@ -9265,7 +9489,7 @@ msgstr "Geen RDN attribuut werd geselecteerd." msgid "No Samba 3 domains found in LDAP! Please create one first." msgstr "Geen Samba 3 domeinen gevonden in LDAP! Eerst een domein maken." -#: ../lib/modules/posixAccount.inc:495 ../lib/modules/posixAccount.inc:1541 +#: ../lib/modules/posixAccount.inc:494 ../lib/modules/posixAccount.inc:1587 msgid "No Unix groups found in LDAP! Please create one first." msgstr "Geen Unix groepen gevonden in LDAP! Eerst groepen maken." @@ -9313,11 +9537,16 @@ msgid "" msgstr "" "Geen standaard profiel ingesteld. Stel het in in de serverprofiel configuratie." +#: ../templates/misc/ajax.php:271 ../templates/tools/webauthn.php:101 +#: ../lib/modules/webauthn.inc:200 +msgid "No devices found." +msgstr "Geen apparaten gevonden." + #: ../lib/types/smbDomain.inc:171 msgid "No domains found!" msgstr "Geen domeinen gevonden!" -#: ../lib/modules/passwordSelfReset.inc:1818 +#: ../lib/modules/passwordSelfReset.inc:1817 msgid "No email address found." msgstr "Geen e-mailadres gevonden." @@ -9330,14 +9559,14 @@ msgstr "Geen items gevonden!" msgid "No entry was selected to delete" msgstr "Geen item werd geselecteerd om te verwijderen" -#: ../lib/modules/ldapPublicKey.inc:578 ../lib/modules/inetOrgPerson.inc:3545 -#: ../lib/modules/inetOrgPerson.inc:3582 ../lib/modules/customFields.inc:4599 +#: ../lib/modules/ldapPublicKey.inc:576 ../lib/modules/inetOrgPerson.inc:3757 +#: ../lib/modules/inetOrgPerson.inc:3794 ../lib/modules/customFields.inc:4599 msgid "No file received." msgstr "Geen bestand ontvangen." -#: ../templates/config/mainmanage.php:209 ../lib/modules/windowsUser.inc:1042 -#: ../lib/modules/ldapPublicKey.inc:129 ../lib/modules/inetOrgPerson.inc:104 -#: ../lib/modules/customFields.inc:4535 +#: ../templates/config/mainmanage.php:215 ../lib/modules/windowsLDSUser.inc:792 +#: ../lib/modules/windowsUser.inc:1078 ../lib/modules/ldapPublicKey.inc:129 +#: ../lib/modules/inetOrgPerson.inc:104 ../lib/modules/customFields.inc:4535 msgid "No file selected." msgstr "Geen bestanden geselecteerd." @@ -9345,7 +9574,7 @@ msgstr "Geen bestanden geselecteerd." msgid "No forwarding" msgstr "Geen doorsturen" -#: ../lib/modules/posixGroup.inc:703 ../lib/modules/posixAccount.inc:94 +#: ../lib/modules/posixGroup.inc:704 ../lib/modules/posixAccount.inc:94 msgid "No free ID-Number!" msgstr "Geen vrije ID-nummer!" @@ -9388,7 +9617,7 @@ msgstr "Geen lamdaemon server gezet. Werk uw LAM configuratie-instellingen bij." msgid "No local delivery" msgstr "Geen lokale levering" -#: ../templates/config/mainmanage.php:420 +#: ../templates/config/mainmanage.php:451 msgid "No logging" msgstr "Geen logging" @@ -9400,7 +9629,7 @@ msgstr "Geen logo" msgid "No new attributes available for this entry" msgstr "Geen nieuw attributen beschikbaar voor dit item" -#: ../templates/config/conftypes.php:284 ../help/help.inc:188 +#: ../templates/config/conftypes.php:284 ../help/help.inc:194 msgid "No new entries" msgstr "Geen nieuwe items" @@ -9427,7 +9656,7 @@ msgstr "Geen printers gevonden!" #: ../templates/tests/schemaTest.php:81 msgid "No problems found." -msgstr "Geen problemen gevonden!" +msgstr "Geen problemen gevonden." #: ../templates/selfService/adminLogin.php:101 msgid "No profile found." @@ -9455,7 +9684,7 @@ msgstr "Geen sectie tekst gespecificeerd" #: ../lib/modules/passwordSelfReset.inc:1457 msgid "No security answer found." -msgstr "Geen beveiligingsantwoord gevonden. " +msgstr "Geen beveiligingsantwoord gevonden." #: ../templates/config/conflogin.php:74 msgid "No server profiles found. Please create one." @@ -9481,7 +9710,7 @@ msgstr "Zo'n item bestaat niet" #: ../templates/3rdParty/pla/htdocs/compare.php:27 #: ../templates/3rdParty/pla/htdocs/delete.php:19 msgid "No such entry." -msgstr "Zo'n item bestaat niet!" +msgstr "Zo'n item bestaat niet." #: ../lib/types/sudo.inc:162 msgid "No sudo roles found!" @@ -9493,14 +9722,10 @@ msgstr "Geen gebruikers gevonden!" #: ../lib/types/nsviewType.inc:157 msgid "No views found!" -msgstr "Geen views gevonden." +msgstr "Geen views gevonden!" -#: ../templates/config/mainmanage.php:471 -msgid "Non-standard (\\n)" -msgstr "Niet-standaard (\\n)" - -#: ../templates/config/confmain.php:465 -#: ../templates/selfService/adminMain.php:487 ../lib/modules/qmailUser.inc:58 +#: ../templates/config/mainmanage.php:325 ../templates/config/confmain.php:465 +#: ../templates/selfService/adminMain.php:488 ../lib/modules/qmailUser.inc:58 msgid "None" msgstr "Geen" @@ -9526,7 +9751,7 @@ msgid "" "require" msgstr "" "Opmerking: Mogelijk moeten nieuwe verplichten attributen van deze object " -"classen worden opgegeven." +"classen worden opgegeven" #: ../lib/modules/windowsGroup.inc:127 ../lib/modules/windowsGroup.inc:184 #: ../lib/modules/windowsGroup.inc:254 ../lib/modules/windowsGroup.inc:341 @@ -9538,24 +9763,24 @@ msgstr "Aantekening" msgid "Nothing to export" msgstr "Niets om te exporteren" -#: ../templates/config/mainmanage.php:415 +#: ../templates/config/mainmanage.php:446 msgid "Notice" msgstr "Opmerking" #: ../lib/passwordExpirationJob.inc:90 ../lib/passwordExpirationJob.inc:144 -#: ../help/help.inc:396 +#: ../help/help.inc:408 msgid "Notification period" msgstr "Notificatieperiode" -#: ../lib/modules/qmailUser.inc:1161 ../lib/modules/windowsUser.inc:3993 -#: ../lib/modules/shadowAccount.inc:978 ../lib/modules/freeRadius.inc:885 +#: ../lib/modules/qmailUser.inc:1161 ../lib/modules/windowsUser.inc:4088 +#: ../lib/modules/shadowAccount.inc:977 ../lib/modules/freeRadius.inc:884 msgid "Notify users about account expiration" msgstr "Stel gebruikers op de hoogte van het verlopen van het account" #: ../lib/modules/locking389ds.inc:459 ../lib/modules/ppolicyUser.inc:510 -#: ../lib/modules/windowsUser.inc:3846 ../lib/modules/shadowAccount.inc:875 +#: ../lib/modules/windowsUser.inc:3941 ../lib/modules/shadowAccount.inc:875 msgid "Notify users about password expiration" -msgstr "Informeer gebruikers wanneer het wachtwoord verloopt." +msgstr "Informeer gebruikers wanneer het wachtwoord verloopt" #: ../templates/delete.php:132 msgid "Number of child entries" @@ -9588,7 +9813,7 @@ msgstr "" "Aantal dagen dat de gebruiker zijn wachtwoord opnieuw moet wijzigen. Indien " "gezet moet de waarde groter dan nul zijn." -#: ../lib/modules/windowsUser.inc:295 +#: ../lib/modules/windowsUser.inc:297 msgid "Number of days after which the account will expire." msgstr "Aantal dagen waarna het account zal verlopen." @@ -9613,17 +9838,17 @@ msgstr "Aantal vragen" msgid "Number of rows in text area." msgstr "Aantal rijen in tekstgebied." -#: ../templates/config/mainmanage.php:401 ../help/help.inc:170 +#: ../templates/config/mainmanage.php:432 ../help/help.inc:168 msgid "Number of rules that must match" msgstr "Aantal regels die moeten overeenkomen" -#: ../lib/modules/ppolicy.inc:84 ../lib/modules/sambaDomain.inc:125 +#: ../lib/modules/ppolicy.inc:85 ../lib/modules/sambaDomain.inc:125 msgid "Number of seconds after the user is allowed to change his password again." msgstr "" "Aantal seconden nadat de gebruiker is toegestaan ​​om zijn wachtwoord weer " "veranderen." -#: ../lib/modules/ppolicy.inc:88 ../lib/modules/sambaDomain.inc:129 +#: ../lib/modules/ppolicy.inc:89 ../lib/modules/sambaDomain.inc:129 msgid "Number of seconds after which the user must change his password." msgstr "Aantal seconden waarna de gebruiker zijn wachtwoord moet veranderen." @@ -9651,7 +9876,7 @@ msgstr "OU is ongeldig!" msgid "OU is not empty or invalid!" msgstr "OU is niet leeg of ongeldig!" -#: ../help/help.inc:351 ../help/help.inc:353 +#: ../help/help.inc:363 ../help/help.inc:365 msgid "OU-Editor" msgstr "OU-editor" @@ -9672,7 +9897,7 @@ msgstr "Objectklassen" #: ../lib/lists.inc:129 #, php-format msgid "Object count: %s" -msgstr "Object aantal: %s:" +msgstr "Object aantal: %s" #: ../templates/schema/schema.php:162 ../templates/schema/schema.php:233 #: ../templates/schema/schema.php:315 @@ -9685,29 +9910,33 @@ msgstr "Verouderd" msgid "Off" msgstr "Uit" -#: ../lib/modules/windowsUser.inc:173 ../lib/modules/windowsUser.inc:490 -#: ../lib/modules/windowsUser.inc:849 ../lib/modules/windowsUser.inc:942 -#: ../lib/modules/windowsUser.inc:1137 ../lib/modules/windowsUser.inc:2695 -#: ../lib/modules/windowsUser.inc:2898 ../lib/modules/inetOrgPerson.inc:163 +#: ../lib/modules/windowsLDSUser.inc:157 ../lib/modules/windowsLDSUser.inc:415 +#: ../lib/modules/windowsLDSUser.inc:661 ../lib/modules/windowsLDSUser.inc:881 +#: ../lib/modules/windowsLDSUser.inc:1830 ../lib/modules/windowsUser.inc:175 +#: ../lib/modules/windowsUser.inc:500 ../lib/modules/windowsUser.inc:786 +#: ../lib/modules/windowsUser.inc:882 ../lib/modules/windowsUser.inc:978 +#: ../lib/modules/windowsUser.inc:1175 ../lib/modules/windowsUser.inc:2861 +#: ../lib/modules/windowsUser.inc:3069 ../lib/modules/inetOrgPerson.inc:163 #: ../lib/modules/inetOrgPerson.inc:469 ../lib/modules/inetOrgPerson.inc:504 -#: ../lib/modules/inetOrgPerson.inc:733 ../lib/modules/inetOrgPerson.inc:737 -#: ../lib/modules/inetOrgPerson.inc:1364 ../lib/modules/inetOrgPerson.inc:1367 -#: ../lib/modules/inetOrgPerson.inc:1970 ../lib/modules/inetOrgPerson.inc:2028 -#: ../lib/modules/inetOrgPerson.inc:2747 ../lib/modules/inetOrgPerson.inc:3867 -#: ../lib/modules/inetOrgPerson.inc:3908 +#: ../lib/modules/inetOrgPerson.inc:737 ../lib/modules/inetOrgPerson.inc:741 +#: ../lib/modules/inetOrgPerson.inc:1378 ../lib/modules/inetOrgPerson.inc:1381 +#: ../lib/modules/inetOrgPerson.inc:1987 ../lib/modules/inetOrgPerson.inc:2046 +#: ../lib/modules/inetOrgPerson.inc:2813 ../lib/modules/inetOrgPerson.inc:4079 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Office name" msgstr "Kantoornaam" -#: ../templates/misc/ajax.php:273 ../templates/misc/ajax.php:303 -#: ../templates/lists/changePassword.php:340 -#: ../templates/lists/changePassword.php:377 -#: ../templates/lists/changePassword.php:430 -#: ../templates/lists/changePassword.php:461 +#: ../templates/misc/ajax.php:287 ../templates/misc/ajax.php:417 +#: ../templates/misc/ajax.php:447 ../templates/lists/changePassword.php:344 +#: ../templates/lists/changePassword.php:381 +#: ../templates/lists/changePassword.php:434 +#: ../templates/lists/changePassword.php:465 #: ../templates/tests/lamdaemonTest.php:103 ../templates/tools/ou_edit.php:214 -#: ../templates/tools/ou_edit.php:226 ../templates/config/profmanage.php:230 +#: ../templates/tools/ou_edit.php:226 ../templates/tools/webauthn.php:78 +#: ../templates/tools/webauthn.php:116 ../templates/config/profmanage.php:230 #: ../templates/config/profmanage.php:242 ../templates/config/profmanage.php:252 #: ../templates/config/profmanage.php:269 ../templates/config/profmanage.php:280 -#: ../templates/config/profmanage.php:282 ../templates/config/mainmanage.php:493 +#: ../templates/config/profmanage.php:282 ../templates/config/mainmanage.php:543 #: ../templates/config/jobList.php:155 ../templates/config/conflogin.php:126 #: ../templates/config/mainlogin.php:145 #: ../templates/selfService/profManage.php:196 @@ -9720,25 +9949,28 @@ msgstr "Kantoornaam" #: ../templates/profedit/profilemain.php:235 #: ../templates/profedit/profilemain.php:242 ../lib/types/automountType.inc:213 #: ../lib/types/user.inc:357 ../lib/types/bind.inc:157 ../lib/html.inc:610 -#: ../lib/modules/selfRegistration.inc:462 ../lib/modules/zarafaContact.inc:471 -#: ../lib/modules/zarafaGroup.inc:486 ../lib/modules/device.inc:292 -#: ../lib/modules/kopanoGroup.inc:438 ../lib/modules/sambaSamAccount.inc:1437 +#: ../lib/2factor.inc:569 ../lib/modules/selfRegistration.inc:462 +#: ../lib/modules/zarafaContact.inc:471 ../lib/modules/zarafaGroup.inc:486 +#: ../lib/modules/device.inc:292 ../lib/modules/kopanoGroup.inc:438 +#: ../lib/modules/sambaSamAccount.inc:1437 #: ../lib/modules/sambaSamAccount.inc:1584 ../lib/modules/zarafaUser.inc:975 #: ../lib/modules/zarafaUser.inc:1026 ../lib/modules/kopanoContact.inc:422 #: ../lib/modules/sambaGroupMapping.inc:483 ../lib/modules/nisnetgroup.inc:492 #: ../lib/modules/kopanoUser.inc:897 ../lib/modules/kopanoUser.inc:946 -#: ../lib/modules/asteriskExtension.inc:461 ../lib/modules/aliasEntry.inc:155 +#: ../lib/modules/asteriskExtension.inc:461 +#: ../lib/modules/windowsLDSGroup.inc:482 ../lib/modules/webauthn.inc:136 +#: ../lib/modules/webauthn.inc:174 ../lib/modules/aliasEntry.inc:155 #: ../lib/modules/aliasEntry.inc:178 ../lib/modules/qmailGroup.inc:688 -#: ../lib/modules/imapAccess.inc:295 ../lib/modules/organizationalRole.inc:325 +#: ../lib/modules/imapAccess.inc:294 ../lib/modules/organizationalRole.inc:325 #: ../lib/modules/passwordSelfReset.inc:1080 #: ../lib/modules/passwordSelfReset.inc:1327 ../lib/modules/windowsGroup.inc:705 #: ../lib/modules/groupOfNames.inc:421 ../lib/modules/groupOfNames.inc:570 -#: ../lib/modules/nisMailAlias.inc:388 ../lib/lists.inc:806 ../lib/lists.inc:891 +#: ../lib/modules/nisMailAlias.inc:388 ../lib/lists.inc:805 ../lib/lists.inc:890 #: ../lib/modules.inc:1007 ../lib/modules.inc:1311 msgid "Ok" msgstr "Ok" -#: ../lib/modules/posixAccount.inc:3158 +#: ../lib/modules/posixAccount.inc:3222 msgid "Old password" msgstr "Oude wachtwoord" @@ -9765,9 +9997,10 @@ msgstr "Op verbroken of een time-out aansluiting" msgid "One (one level beneath base)" msgstr "Een (een niveau onder basis)" -#: ../lib/modules/range.inc:138 ../lib/modules/fixed_ip.inc:132 -msgid "One or more errors occured. The invalid fields are marked." -msgstr "Een of meer fouten opgetreden. De ongeldige velden zijn gemarkeerd." +#: ../lib/modules/range.inc:137 ../lib/modules/fixed_ip.inc:132 +msgid "One or more errors occurred. The invalid fields are marked." +msgstr "" +"Er zijn een of meer fouten opgetreden. De ongeldige velden zijn gemarkeerd." #: ../templates/3rdParty/pla/htdocs/copy.php:98 #: ../templates/3rdParty/pla/htdocs/copy.php:155 @@ -9785,12 +10018,12 @@ msgstr "Operation statistieken" msgid "Operation successful. DN %s has been created." msgstr "Bewerking succesvol. DN %s is aangemaakt." -#: ../templates/tools/multiEdit.php:141 ../help/help.inc:361 +#: ../templates/tools/multiEdit.php:141 ../help/help.inc:373 msgid "Operations" msgstr "Bewerkingen" #: ../templates/config/confmain.php:510 -#: ../templates/selfService/adminMain.php:527 ../help/help.inc:312 +#: ../templates/selfService/adminMain.php:531 ../help/help.inc:324 msgid "Optional" msgstr "Optioneel" @@ -9805,8 +10038,8 @@ msgstr "Optionele beschrijving voor de PC." #: ../lib/types/sudo.inc:86 ../lib/modules/mitKerberos.inc:405 #: ../lib/modules/zarafaDynamicGroup.inc:251 ../lib/modules/zarafaContact.inc:255 -#: ../lib/modules/posixGroup.inc:528 ../lib/modules/zarafaGroup.inc:259 -#: ../lib/modules/kopanoGroup.inc:238 ../lib/modules/posixAccount.inc:2289 +#: ../lib/modules/posixGroup.inc:529 ../lib/modules/zarafaGroup.inc:259 +#: ../lib/modules/kopanoGroup.inc:238 ../lib/modules/posixAccount.inc:2353 #: ../lib/modules/zarafaUser.inc:601 ../lib/modules/kopanoContact.inc:240 #: ../lib/modules/kolabUser.inc:331 ../lib/modules/kopanoDynamicGroup.inc:214 #: ../lib/modules/sudoRole.inc:93 ../lib/modules/sudoRole.inc:122 @@ -9858,40 +10091,48 @@ msgstr "Sorteer op" msgid "Ordering" msgstr "Sortering" -#: ../lib/types/user.inc:109 ../lib/modules/eduPerson.inc:125 +#: ../lib/types/user.inc:109 ../lib/modules/windowsLDSUser.inc:275 +#: ../lib/modules/windowsLDSUser.inc:279 ../lib/modules/windowsLDSUser.inc:577 +#: ../lib/modules/windowsLDSUser.inc:608 ../lib/modules/windowsLDSUser.inc:710 +#: ../lib/modules/windowsLDSUser.inc:938 ../lib/modules/windowsLDSUser.inc:1854 +#: ../lib/modules/windowsLDSUser.inc:2203 ../lib/modules/eduPerson.inc:125 #: ../lib/modules/eduPerson.inc:199 ../lib/modules/eduPerson.inc:226 #: ../lib/modules/eduPerson.inc:244 ../lib/modules/eduPerson.inc:342 -#: ../lib/modules/eduPerson.inc:552 ../lib/modules/windowsUser.inc:346 -#: ../lib/modules/windowsUser.inc:350 ../lib/modules/windowsUser.inc:746 -#: ../lib/modules/windowsUser.inc:785 ../lib/modules/windowsUser.inc:916 -#: ../lib/modules/windowsUser.inc:1195 ../lib/modules/windowsUser.inc:2721 -#: ../lib/modules/windowsUser.inc:3622 ../lib/modules/inetOrgPerson.inc:165 +#: ../lib/modules/eduPerson.inc:546 ../lib/modules/windowsUser.inc:348 +#: ../lib/modules/windowsUser.inc:352 ../lib/modules/windowsUser.inc:756 +#: ../lib/modules/windowsUser.inc:809 ../lib/modules/windowsUser.inc:952 +#: ../lib/modules/windowsUser.inc:1233 ../lib/modules/windowsUser.inc:2887 +#: ../lib/modules/windowsUser.inc:3717 ../lib/modules/inetOrgPerson.inc:165 #: ../lib/modules/inetOrgPerson.inc:437 ../lib/modules/inetOrgPerson.inc:549 -#: ../lib/modules/inetOrgPerson.inc:766 ../lib/modules/inetOrgPerson.inc:770 -#: ../lib/modules/inetOrgPerson.inc:1509 ../lib/modules/inetOrgPerson.inc:1512 -#: ../lib/modules/inetOrgPerson.inc:1975 ../lib/modules/inetOrgPerson.inc:2052 -#: ../lib/modules/inetOrgPerson.inc:2868 ../lib/modules/inetOrgPerson.inc:3882 -#: ../lib/modules/inetOrgPerson.inc:3916 +#: ../lib/modules/inetOrgPerson.inc:770 ../lib/modules/inetOrgPerson.inc:774 +#: ../lib/modules/inetOrgPerson.inc:1523 ../lib/modules/inetOrgPerson.inc:1526 +#: ../lib/modules/inetOrgPerson.inc:1992 ../lib/modules/inetOrgPerson.inc:2070 +#: ../lib/modules/inetOrgPerson.inc:2944 ../lib/modules/inetOrgPerson.inc:4094 +#: ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisation" msgstr "Organisatie" #: ../templates/tools/ou_edit.php:219 ../lib/types/user.inc:110 -#: ../lib/modules/windowsUser.inc:338 ../lib/modules/windowsUser.inc:342 -#: ../lib/modules/windowsUser.inc:738 ../lib/modules/windowsUser.inc:782 -#: ../lib/modules/windowsUser.inc:913 ../lib/modules/windowsUser.inc:1192 -#: ../lib/modules/windowsUser.inc:2720 ../lib/modules/windowsUser.inc:3621 +#: ../lib/modules/windowsLDSUser.inc:267 ../lib/modules/windowsLDSUser.inc:271 +#: ../lib/modules/windowsLDSUser.inc:569 ../lib/modules/windowsLDSUser.inc:605 +#: ../lib/modules/windowsLDSUser.inc:707 ../lib/modules/windowsLDSUser.inc:935 +#: ../lib/modules/windowsLDSUser.inc:1853 ../lib/modules/windowsLDSUser.inc:2202 +#: ../lib/modules/windowsUser.inc:340 ../lib/modules/windowsUser.inc:344 +#: ../lib/modules/windowsUser.inc:748 ../lib/modules/windowsUser.inc:806 +#: ../lib/modules/windowsUser.inc:949 ../lib/modules/windowsUser.inc:1230 +#: ../lib/modules/windowsUser.inc:2886 ../lib/modules/windowsUser.inc:3716 #: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:429 -#: ../lib/modules/inetOrgPerson.inc:552 ../lib/modules/inetOrgPerson.inc:758 -#: ../lib/modules/inetOrgPerson.inc:762 ../lib/modules/inetOrgPerson.inc:1500 -#: ../lib/modules/inetOrgPerson.inc:1503 ../lib/modules/inetOrgPerson.inc:1974 -#: ../lib/modules/inetOrgPerson.inc:2049 ../lib/modules/inetOrgPerson.inc:2904 -#: ../lib/modules/inetOrgPerson.inc:3881 ../lib/modules/inetOrgPerson.inc:3916 +#: ../lib/modules/inetOrgPerson.inc:552 ../lib/modules/inetOrgPerson.inc:762 +#: ../lib/modules/inetOrgPerson.inc:766 ../lib/modules/inetOrgPerson.inc:1514 +#: ../lib/modules/inetOrgPerson.inc:1517 ../lib/modules/inetOrgPerson.inc:1991 +#: ../lib/modules/inetOrgPerson.inc:2067 ../lib/modules/inetOrgPerson.inc:2982 +#: ../lib/modules/inetOrgPerson.inc:4093 ../lib/modules/inetOrgPerson.inc:4131 msgid "Organisational unit" msgstr "Organisatorische eenheid" #: ../lib/modules/eduPerson.inc:133 ../lib/modules/eduPerson.inc:137 #: ../lib/modules/eduPerson.inc:211 ../lib/modules/eduPerson.inc:227 -#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:554 +#: ../lib/modules/eduPerson.inc:346 ../lib/modules/eduPerson.inc:548 msgid "Organisational units" msgstr "Organisatorische eenheden" @@ -9904,30 +10145,44 @@ msgstr "Organisatorische eenheden bevat ongeldige invoer." msgid "Other" msgstr "Ander" -#: ../lib/modules/windowsUser.inc:378 ../lib/modules/windowsUser.inc:382 -#: ../lib/modules/windowsUser.inc:641 ../lib/modules/windowsUser.inc:934 -#: ../lib/modules/windowsUser.inc:1010 ../lib/modules/windowsUser.inc:1151 -#: ../lib/modules/windowsUser.inc:2707 ../lib/modules/windowsUser.inc:3604 +#: ../lib/modules/windowsLDSUser.inc:307 ../lib/modules/windowsLDSUser.inc:311 +#: ../lib/modules/windowsLDSUser.inc:498 ../lib/modules/windowsLDSUser.inc:728 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:894 +#: ../lib/modules/windowsLDSUser.inc:1842 ../lib/modules/windowsLDSUser.inc:2188 +#: ../lib/modules/windowsUser.inc:380 ../lib/modules/windowsUser.inc:384 +#: ../lib/modules/windowsUser.inc:651 ../lib/modules/windowsUser.inc:970 +#: ../lib/modules/windowsUser.inc:1046 ../lib/modules/windowsUser.inc:1189 +#: ../lib/modules/windowsUser.inc:2873 ../lib/modules/windowsUser.inc:3698 msgid "Other mobiles" msgstr "Andere mobiele telefoons" -#: ../lib/modules/windowsUser.inc:366 ../lib/modules/windowsUser.inc:370 -#: ../lib/modules/windowsUser.inc:625 ../lib/modules/windowsUser.inc:928 -#: ../lib/modules/windowsUser.inc:1006 ../lib/modules/windowsUser.inc:1157 -#: ../lib/modules/windowsUser.inc:2705 ../lib/modules/windowsUser.inc:3606 +#: ../lib/modules/windowsLDSUser.inc:295 ../lib/modules/windowsLDSUser.inc:299 +#: ../lib/modules/windowsLDSUser.inc:482 ../lib/modules/windowsLDSUser.inc:722 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:900 +#: ../lib/modules/windowsLDSUser.inc:1840 ../lib/modules/windowsLDSUser.inc:2190 +#: ../lib/modules/windowsUser.inc:368 ../lib/modules/windowsUser.inc:372 +#: ../lib/modules/windowsUser.inc:635 ../lib/modules/windowsUser.inc:964 +#: ../lib/modules/windowsUser.inc:1042 ../lib/modules/windowsUser.inc:1195 +#: ../lib/modules/windowsUser.inc:2871 ../lib/modules/windowsUser.inc:3700 msgid "Other pagers" msgstr "Andere pagers" -#: ../lib/modules/windowsUser.inc:165 ../lib/modules/windowsUser.inc:169 -#: ../lib/modules/windowsUser.inc:514 ../lib/modules/windowsUser.inc:848 -#: ../lib/modules/windowsUser.inc:1002 ../lib/modules/windowsUser.inc:1146 -#: ../lib/modules/windowsUser.inc:2694 +#: ../lib/modules/windowsLDSUser.inc:149 ../lib/modules/windowsLDSUser.inc:153 +#: ../lib/modules/windowsLDSUser.inc:433 ../lib/modules/windowsLDSUser.inc:660 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:889 +#: ../lib/modules/windowsLDSUser.inc:1829 ../lib/modules/windowsUser.inc:167 +#: ../lib/modules/windowsUser.inc:171 ../lib/modules/windowsUser.inc:524 +#: ../lib/modules/windowsUser.inc:881 ../lib/modules/windowsUser.inc:1038 +#: ../lib/modules/windowsUser.inc:1184 ../lib/modules/windowsUser.inc:2860 msgid "Other telephone numbers" msgstr "Andere telefoonnummers" -#: ../lib/modules/windowsUser.inc:205 ../lib/modules/windowsUser.inc:209 -#: ../lib/modules/windowsUser.inc:526 ../lib/modules/windowsUser.inc:856 -#: ../lib/modules/windowsUser.inc:1163 ../lib/modules/windowsUser.inc:2709 +#: ../lib/modules/windowsLDSUser.inc:189 ../lib/modules/windowsLDSUser.inc:193 +#: ../lib/modules/windowsLDSUser.inc:445 ../lib/modules/windowsLDSUser.inc:668 +#: ../lib/modules/windowsLDSUser.inc:906 ../lib/modules/windowsLDSUser.inc:1844 +#: ../lib/modules/windowsUser.inc:207 ../lib/modules/windowsUser.inc:211 +#: ../lib/modules/windowsUser.inc:536 ../lib/modules/windowsUser.inc:889 +#: ../lib/modules/windowsUser.inc:1201 ../lib/modules/windowsUser.inc:2875 msgid "Other web sites" msgstr "Andere websites" @@ -9936,7 +10191,7 @@ msgstr "Andere websites" msgid "Output may contain HTML" msgstr "Uitvoer mag HTML bevatten" -#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:568 +#: ../lib/modules/customScripts.inc:275 ../lib/modules/customScripts.inc:556 #, php-format msgid "Output of command \"%s\" with return code %s" msgstr "Uitvoer van commando \"%s\" met return code %s" @@ -9964,7 +10219,7 @@ msgstr "Overlays" msgid "Override default quota settings." msgstr "Override default quota-instellingen." -#: ../templates/upload/masscreate.php:372 ../help/help.inc:238 +#: ../templates/upload/masscreate.php:372 ../help/help.inc:250 msgid "Overwrite" msgstr "Overschrijf" @@ -9992,12 +10247,12 @@ msgstr "Eigenaren" msgid "P-Node (0x02)" msgstr "P-Node (0x02)" -#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:421 -#: ../lib/modules/fixed_ip.inc:760 +#: ../lib/modules/fixed_ip.inc:103 ../lib/modules/fixed_ip.inc:419 +#: ../lib/modules/fixed_ip.inc:758 msgid "PC name" msgstr "PC-naam" -#: ../lib/modules/windowsHost.inc:95 +#: ../lib/modules/windowsHost.inc:109 msgid "PC01" msgstr "PC01" @@ -10006,8 +10261,8 @@ msgstr "PC01" msgid "PDF editor" msgstr "PDF editor" -#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:778 -#: ../help/help.inc:258 +#: ../templates/upload/masscreate.php:305 ../lib/lists.inc:777 +#: ../help/help.inc:270 msgid "PDF structure" msgstr "PDF struktuur" @@ -10017,7 +10272,7 @@ msgstr "PDF struktuur naam is ongeldig" #: ../templates/pdfedit/pdfmain.php:213 msgid "PDF structure was successfully saved." -msgstr "PDF struktuur is met succes opgeslagen" +msgstr "PDF struktuur is met succes opgeslagen." #: ../templates/pdfedit/pdfmain.php:329 msgid "PDF structures" @@ -10027,11 +10282,11 @@ msgstr "PDF strukturen" msgid "PDUs sent" msgstr "PDU's gestuurd" -#: ../templates/config/mainmanage.php:462 ../help/help.inc:166 +#: ../templates/config/mainmanage.php:491 ../help/help.inc:164 msgid "PHP error reporting" msgstr "PHP foutrapportage" -#: ../templates/config/mainmanage.php:458 +#: ../templates/config/mainmanage.php:487 msgid "PHP system setting" msgstr "PHP systeem instellingen" @@ -10046,8 +10301,8 @@ msgstr "PIN+Token" msgid "POP3" msgstr "POP3" -#: ../templates/lists/changePassword.php:412 -#: ../templates/lists/changePassword.php:449 ../lib/types/user.inc:465 +#: ../templates/lists/changePassword.php:416 +#: ../templates/lists/changePassword.php:453 ../lib/types/user.inc:465 #: ../lib/types/user.inc:504 ../lib/modules/ppolicyUser.inc:510 msgid "PPolicy" msgstr "PPolicy" @@ -10080,28 +10335,32 @@ msgstr "" msgid "Page count" msgstr "Pagina aantal" -#: ../templates/selfService/adminMain.php:590 ../help/help.inc:290 +#: ../templates/selfService/adminMain.php:594 ../help/help.inc:302 msgid "Page header" msgstr "Pagina kop" -#: ../templates/selfService/adminMain.php:408 +#: ../templates/selfService/adminMain.php:409 msgid "Page layout" msgstr "Pagina layout" -#: ../templates/config/confmain.php:233 ../help/help.inc:196 +#: ../templates/config/confmain.php:233 ../help/help.inc:202 msgid "Paged results" msgstr "Gepagineerde resultaten" -#: ../lib/modules/windowsUser.inc:362 ../lib/modules/windowsUser.inc:617 -#: ../lib/modules/windowsUser.inc:925 ../lib/modules/windowsUser.inc:1004 -#: ../lib/modules/windowsUser.inc:1154 ../lib/modules/windowsUser.inc:2704 -#: ../lib/modules/windowsUser.inc:3605 ../lib/modules/inetOrgPerson.inc:80 -#: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:379 -#: ../lib/modules/inetOrgPerson.inc:522 ../lib/modules/inetOrgPerson.inc:654 -#: ../lib/modules/inetOrgPerson.inc:658 ../lib/modules/inetOrgPerson.inc:1419 -#: ../lib/modules/inetOrgPerson.inc:1422 ../lib/modules/inetOrgPerson.inc:1961 -#: ../lib/modules/inetOrgPerson.inc:2637 ../lib/modules/inetOrgPerson.inc:3873 -#: ../lib/modules/inetOrgPerson.inc:3911 ../lib/modules/asteriskVoicemail.inc:110 +#: ../lib/modules/windowsLDSUser.inc:291 ../lib/modules/windowsLDSUser.inc:474 +#: ../lib/modules/windowsLDSUser.inc:719 ../lib/modules/windowsLDSUser.inc:769 +#: ../lib/modules/windowsLDSUser.inc:897 ../lib/modules/windowsLDSUser.inc:1839 +#: ../lib/modules/windowsLDSUser.inc:2189 ../lib/modules/windowsUser.inc:364 +#: ../lib/modules/windowsUser.inc:627 ../lib/modules/windowsUser.inc:961 +#: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1192 +#: ../lib/modules/windowsUser.inc:2870 ../lib/modules/windowsUser.inc:3699 +#: ../lib/modules/inetOrgPerson.inc:80 ../lib/modules/inetOrgPerson.inc:162 +#: ../lib/modules/inetOrgPerson.inc:379 ../lib/modules/inetOrgPerson.inc:522 +#: ../lib/modules/inetOrgPerson.inc:654 ../lib/modules/inetOrgPerson.inc:658 +#: ../lib/modules/inetOrgPerson.inc:1433 ../lib/modules/inetOrgPerson.inc:1436 +#: ../lib/modules/inetOrgPerson.inc:1978 ../lib/modules/inetOrgPerson.inc:2683 +#: ../lib/modules/inetOrgPerson.inc:4085 ../lib/modules/inetOrgPerson.inc:4126 +#: ../lib/modules/asteriskVoicemail.inc:110 #: ../lib/modules/asteriskVoicemail.inc:140 #: ../lib/modules/asteriskVoicemail.inc:183 #: ../lib/modules/asteriskVoicemail.inc:254 @@ -10126,7 +10385,7 @@ msgstr "Ouder node" #: ../lib/modules/puppetClient.inc:203 msgid "Parent node not found." -msgstr "Ouder node niet gevonden" +msgstr "Ouder node niet gevonden." #: ../templates/schema/schema.php:245 msgid "Parent to" @@ -10146,54 +10405,57 @@ msgstr "Gedeeltelijk vergrendeld" msgid "Passthrough" msgstr "Passthrough" -#: ../templates/lists/changePassword.php:356 ../templates/login.php:359 -#: ../templates/config/conflogin.php:121 -#: ../templates/selfService/selfServiceLogin.php:283 -#: ../templates/selfService/adminLogin.php:117 ../lib/selfService.inc:496 +#: ../templates/lists/changePassword.php:360 ../templates/login.php:359 +#: ../templates/config/mainmanage.php:502 ../templates/config/conflogin.php:121 +#: ../templates/selfService/selfServiceLogin.php:284 +#: ../templates/selfService/adminLogin.php:117 ../lib/selfService.inc:497 #: ../lib/modules/mitKerberos.inc:155 ../lib/modules/mitKerberos.inc:241 #: ../lib/modules/mitKerberos.inc:256 ../lib/modules/mitKerberos.inc:834 #: ../lib/modules/mitKerberos.inc:837 ../lib/modules/selfRegistration.inc:409 #: ../lib/modules/selfRegistration.inc:580 #: ../lib/modules/selfRegistration.inc:583 -#: ../lib/modules/selfRegistration.inc:586 ../lib/modules/asteriskAccount.inc:114 -#: ../lib/modules/asteriskAccount.inc:323 ../lib/modules/posixGroup.inc:219 -#: ../lib/modules/posixGroup.inc:700 ../lib/modules/sambaSamAccount.inc:105 -#: ../lib/modules/sambaSamAccount.inc:106 ../lib/modules/sambaSamAccount.inc:252 -#: ../lib/modules/sambaSamAccount.inc:433 ../lib/modules/posixAccount.inc:99 -#: ../lib/modules/posixAccount.inc:100 ../lib/modules/posixAccount.inc:174 -#: ../lib/modules/posixAccount.inc:307 ../lib/modules/posixAccount.inc:427 -#: ../lib/modules/posixAccount.inc:1684 ../lib/modules/posixAccount.inc:2124 -#: ../lib/modules/posixAccount.inc:2127 ../lib/modules/posixAccount.inc:2214 -#: ../lib/modules/posixAccount.inc:2399 ../lib/modules/windowsUser.inc:243 -#: ../lib/modules/windowsUser.inc:418 ../lib/modules/windowsUser.inc:865 -#: ../lib/modules/windowsUser.inc:951 ../lib/modules/windowsUser.inc:1026 -#: ../lib/modules/windowsUser.inc:1027 ../lib/modules/windowsUser.inc:2755 -#: ../lib/modules/windowsUser.inc:2758 ../lib/modules/inetOrgPerson.inc:782 -#: ../lib/modules/inetOrgPerson.inc:1562 ../lib/modules/inetOrgPerson.inc:1935 -#: ../lib/modules/inetOrgPerson.inc:1980 ../lib/modules/inetOrgPerson.inc:1983 -#: ../lib/modules/inetOrgPerson.inc:2191 ../lib/modules/inetOrgPerson.inc:3918 -#: ../lib/modules/asteriskVoicemail.inc:98 +#: ../lib/modules/selfRegistration.inc:586 ../lib/modules/windowsLDSUser.inc:207 +#: ../lib/modules/windowsLDSUser.inc:343 ../lib/modules/windowsLDSUser.inc:671 +#: ../lib/modules/windowsLDSUser.inc:783 ../lib/modules/windowsLDSUser.inc:784 +#: ../lib/modules/windowsLDSUser.inc:1863 ../lib/modules/windowsLDSUser.inc:1866 +#: ../lib/modules/asteriskAccount.inc:114 ../lib/modules/asteriskAccount.inc:323 +#: ../lib/modules/posixGroup.inc:219 ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/sambaSamAccount.inc:105 ../lib/modules/sambaSamAccount.inc:106 +#: ../lib/modules/sambaSamAccount.inc:252 ../lib/modules/sambaSamAccount.inc:433 +#: ../lib/modules/posixAccount.inc:99 ../lib/modules/posixAccount.inc:100 +#: ../lib/modules/posixAccount.inc:174 ../lib/modules/posixAccount.inc:307 +#: ../lib/modules/posixAccount.inc:427 ../lib/modules/posixAccount.inc:1739 +#: ../lib/modules/posixAccount.inc:2188 ../lib/modules/posixAccount.inc:2191 +#: ../lib/modules/posixAccount.inc:2277 ../lib/modules/posixAccount.inc:2463 +#: ../lib/modules/windowsUser.inc:245 ../lib/modules/windowsUser.inc:428 +#: ../lib/modules/windowsUser.inc:898 ../lib/modules/windowsUser.inc:987 +#: ../lib/modules/windowsUser.inc:1062 ../lib/modules/windowsUser.inc:1063 +#: ../lib/modules/windowsUser.inc:2922 ../lib/modules/windowsUser.inc:2925 +#: ../lib/modules/inetOrgPerson.inc:786 ../lib/modules/inetOrgPerson.inc:1576 +#: ../lib/modules/inetOrgPerson.inc:1947 ../lib/modules/inetOrgPerson.inc:1998 +#: ../lib/modules/inetOrgPerson.inc:2001 ../lib/modules/inetOrgPerson.inc:2209 +#: ../lib/modules/inetOrgPerson.inc:4133 ../lib/modules/asteriskVoicemail.inc:98 #: ../lib/modules/asteriskVoicemail.inc:164 ../lib/modules/customFields.inc:3020 #: ../lib/modules/heimdalKerberos.inc:123 ../lib/modules/heimdalKerberos.inc:210 #: ../lib/modules/heimdalKerberos.inc:222 ../lib/modules/heimdalKerberos.inc:718 #: ../lib/modules/heimdalKerberos.inc:721 ../lib/modules.inc:1114 -#: ../help/help.inc:256 +#: ../help/help.inc:186 ../help/help.inc:268 msgid "Password" msgstr "Wachtwoord" #: ../lib/modules/sambaSamAccount.inc:296 ../lib/modules/sambaSamAccount.inc:1138 -#: ../lib/modules/windowsUser.inc:234 ../lib/modules/windowsUser.inc:562 -#: ../lib/modules/windowsUser.inc:863 ../lib/modules/windowsUser.inc:2743 -#: ../lib/modules/windowsUser.inc:2794 +#: ../lib/modules/windowsUser.inc:236 ../lib/modules/windowsUser.inc:572 +#: ../lib/modules/windowsUser.inc:896 ../lib/modules/windowsUser.inc:2910 +#: ../lib/modules/windowsUser.inc:2961 msgid "Password change at next login" msgstr "Wachtwoord te wijzigen bij de volgende login" -#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1223 +#: ../lib/modules/mitKerberos.inc:147 ../lib/modules/mitKerberos.inc:1219 #: ../lib/modules/heimdalKerberos.inc:117 ../lib/modules/heimdalKerberos.inc:1056 msgid "Password change command" msgstr "Wachtwoord wijzigen commando" -#: ../templates/lists/changePassword.php:295 +#: ../templates/lists/changePassword.php:299 msgid "Password change options" msgstr "Wachtwoord wijzigen opties" @@ -10202,9 +10464,9 @@ msgstr "Wachtwoord wijzigen opties" msgid "Password change required" msgstr "Wachtwoord wijzigen vereist" -#: ../lib/types/ppolicyType.inc:94 ../lib/modules/ppolicy.inc:135 -#: ../lib/modules/ppolicy.inc:155 ../lib/modules/ppolicy.inc:288 -#: ../lib/modules/ppolicy.inc:502 +#: ../lib/types/ppolicyType.inc:94 ../lib/modules/ppolicy.inc:136 +#: ../lib/modules/ppolicy.inc:160 ../lib/modules/ppolicy.inc:294 +#: ../lib/modules/ppolicy.inc:515 msgid "Password change requires old password" msgstr "Wachtwoord verandering vereist oude wachtwoord" @@ -10217,7 +10479,7 @@ msgstr "Wachtwoord wijzigen dienst" msgid "Password change with old password" msgstr "Wachtwoord verandering met oude wachtwoord" -#: ../lib/modules/posixAccount.inc:3348 +#: ../lib/modules/posixAccount.inc:3412 msgid "Password changed." msgstr "Wachtwoord veranderd." @@ -10225,19 +10487,24 @@ msgstr "Wachtwoord veranderd." msgid "Password check" msgstr "Wachtwoord controle" +#: ../lib/modules/ppolicy.inc:140 ../lib/modules/ppolicy.inc:161 +#: ../lib/modules/ppolicy.inc:296 ../lib/modules/ppolicy.inc:485 +msgid "Password check module" +msgstr "Module voor wachtwoordcontrole" + #: ../lib/modules/mitKerberos.inc:288 ../lib/modules/selfRegistration.inc:583 -#: ../lib/modules/posixGroup.inc:700 ../lib/modules/sambaSamAccount.inc:106 -#: ../lib/modules/sambaSamAccount.inc:107 ../lib/modules/posixAccount.inc:100 -#: ../lib/modules/posixAccount.inc:101 ../lib/modules/windowsUser.inc:1027 -#: ../lib/modules/inetOrgPerson.inc:109 +#: ../lib/modules/windowsLDSUser.inc:784 ../lib/modules/posixGroup.inc:701 +#: ../lib/modules/sambaSamAccount.inc:106 ../lib/modules/sambaSamAccount.inc:107 +#: ../lib/modules/posixAccount.inc:100 ../lib/modules/posixAccount.inc:101 +#: ../lib/modules/windowsUser.inc:1063 ../lib/modules/inetOrgPerson.inc:109 msgid "Password contains invalid characters. Valid characters are:" msgstr "Wachtwoord bevat ongeldige tekens. Geldige tekens zijn:" #: ../lib/modules/sambaSamAccount.inc:281 ../lib/modules/sambaSamAccount.inc:284 #: ../lib/modules/sambaSamAccount.inc:455 ../lib/modules/sambaSamAccount.inc:1128 -#: ../lib/modules/sambaSamAccount.inc:1752 ../lib/modules/windowsUser.inc:220 -#: ../lib/modules/windowsUser.inc:540 ../lib/modules/windowsUser.inc:859 -#: ../lib/modules/windowsUser.inc:1222 ../lib/modules/windowsUser.inc:2732 +#: ../lib/modules/sambaSamAccount.inc:1752 ../lib/modules/windowsUser.inc:222 +#: ../lib/modules/windowsUser.inc:550 ../lib/modules/windowsUser.inc:892 +#: ../lib/modules/windowsUser.inc:1260 ../lib/modules/windowsUser.inc:2899 msgid "Password does not expire" msgstr "Wachtwoord verloopt niet" @@ -10258,7 +10525,7 @@ msgstr "Wachtwoord verloopperiode moet een getal zijn of -1." msgid "Password expired" msgstr "Wachtwoord is verlopen" -#: ../templates/selfService/adminMain.php:567 ../help/help.inc:294 +#: ../templates/selfService/adminMain.php:571 ../help/help.inc:306 msgid "Password field label" msgstr "Wachtwoord veld label" @@ -10266,10 +10533,10 @@ msgstr "Wachtwoord veld label" msgid "Password for voicemail mailbox." msgstr "Wachtwoord voor de voicemail mailbox." -#: ../lib/modules/posixGroup.inc:442 ../lib/modules/posixGroup.inc:535 +#: ../lib/modules/posixGroup.inc:443 ../lib/modules/posixGroup.inc:536 #: ../lib/modules/posixAccount.inc:185 ../lib/modules/posixAccount.inc:340 -#: ../lib/modules/posixAccount.inc:2291 ../lib/modules/inetOrgPerson.inc:753 -#: ../lib/modules/inetOrgPerson.inc:3851 ../lib/modules/customFields.inc:149 +#: ../lib/modules/posixAccount.inc:2355 ../lib/modules/inetOrgPerson.inc:757 +#: ../lib/modules/inetOrgPerson.inc:4063 ../lib/modules/customFields.inc:149 #: ../lib/modules/customFields.inc:3036 msgid "Password hash type" msgstr "Type hash wachtwoord" @@ -10279,9 +10546,9 @@ msgstr "Type hash wachtwoord" msgid "Password history" msgstr "Wachtwoord geschiedenis" -#: ../lib/types/ppolicyType.inc:83 ../lib/modules/ppolicy.inc:91 -#: ../lib/modules/ppolicy.inc:144 ../lib/modules/ppolicy.inc:168 -#: ../lib/modules/ppolicy.inc:220 ../lib/modules/ppolicy.inc:466 +#: ../lib/types/ppolicyType.inc:83 ../lib/modules/ppolicy.inc:92 +#: ../lib/modules/ppolicy.inc:149 ../lib/modules/ppolicy.inc:174 +#: ../lib/modules/ppolicy.inc:226 ../lib/modules/ppolicy.inc:478 #: ../lib/modules/sambaDomain.inc:104 ../lib/modules/sambaDomain.inc:190 #: ../lib/modules/sambaDomain.inc:276 ../lib/modules/sambaDomain.inc:597 msgid "Password history length" @@ -10292,7 +10559,7 @@ msgid "Password mail settings" msgstr "Wachtwoord mailinstellingen" #: ../lib/modules/shadowAccount.inc:58 ../lib/modules/shadowAccount.inc:59 -#: ../lib/modules/ppolicy.inc:166 ../lib/modules/sambaDomain.inc:221 +#: ../lib/modules/ppolicy.inc:172 ../lib/modules/sambaDomain.inc:221 msgid "Password maximum age must be are natural number." msgstr "Maximum wachtwoord levensduur moet een getal zijn." @@ -10300,28 +10567,28 @@ msgstr "Maximum wachtwoord levensduur moet een getal zijn." msgid "Password maximum age must be bigger as password minimum age." msgstr "Maximum wachtwoord levensduurd moet hoger zijn dan het minimum." -#: ../lib/modules/shadowAccount.inc:64 ../lib/modules/ppolicy.inc:167 +#: ../lib/modules/shadowAccount.inc:64 ../lib/modules/ppolicy.inc:173 #: ../lib/modules/sambaDomain.inc:219 msgid "Password maximum age must be bigger than password minimum age." msgstr "Maximum wachtwoord levensduurd moet groter zijn dan het minimum." #: ../lib/modules/shadowAccount.inc:56 ../lib/modules/shadowAccount.inc:57 -#: ../lib/modules/ppolicy.inc:165 ../lib/modules/sambaDomain.inc:220 +#: ../lib/modules/ppolicy.inc:171 ../lib/modules/sambaDomain.inc:220 msgid "Password minimum age must be are natural number." msgstr "Minimum wachtwoord levensduur moet een getal zijn." -#: ../templates/config/mainmanage.php:407 ../help/help.inc:174 +#: ../templates/config/mainmanage.php:438 ../help/help.inc:172 msgid "Password must not contain part of user/first/last name" msgstr "" "Het wachtwoord mag geen delen bevatten van de gebruikers-, voor of achternaam" -#: ../templates/config/mainmanage.php:405 ../help/help.inc:172 +#: ../templates/config/mainmanage.php:436 ../help/help.inc:170 msgid "Password must not contain user name" msgstr "Wachtwoord mag geen gebruikersnaam bevatten" -#: ../lib/modules/imapAccess.inc:98 ../lib/modules/imapAccess.inc:289 +#: ../lib/modules/imapAccess.inc:98 ../lib/modules/imapAccess.inc:288 msgid "Password of IMAP admin user" -msgstr "Wachtwoord van de IMAP beheerder " +msgstr "Wachtwoord van de IMAP beheerder" #: ../lib/types/ppolicyType.inc:40 msgid "Password policies" @@ -10331,7 +10598,7 @@ msgstr "Wachtwoordbeleid" msgid "Password policies (ppolicy)" msgstr "Wachtwoordbeleid (ppolicy)" -#: ../templates/config/mainmanage.php:389 ../lib/types/user.inc:319 +#: ../templates/config/mainmanage.php:420 ../lib/types/user.inc:319 #: ../lib/types/user.inc:1103 ../lib/modules/ppolicyUser.inc:44 #: ../lib/modules/ppolicyUser.inc:55 ../lib/modules/ppolicyUser.inc:71 #: ../lib/modules/ppolicyUser.inc:87 ../lib/modules/ppolicyUser.inc:127 @@ -10341,9 +10608,9 @@ msgstr "Wachtwoordbeleid (ppolicy)" msgid "Password policy" msgstr "Wachtwoordbeleid" -#: ../lib/types/ppolicyType.inc:84 ../lib/modules/ppolicy.inc:95 -#: ../lib/modules/ppolicy.inc:145 ../lib/modules/ppolicy.inc:232 -#: ../lib/modules/ppolicy.inc:482 +#: ../lib/types/ppolicyType.inc:84 ../lib/modules/ppolicy.inc:96 +#: ../lib/modules/ppolicy.inc:150 ../lib/modules/ppolicy.inc:238 +#: ../lib/modules/ppolicy.inc:495 msgid "Password quality check" msgstr "Wachtwoord kwaliteitscontrole" @@ -10365,11 +10632,11 @@ msgstr "Wachtwoord reset pagina instellingen" msgid "Password self reset" msgstr "Wachtwoord zelf opnieuw in te stellen" -#: ../lib/modules/passwordSelfReset.inc:1879 +#: ../lib/modules/passwordSelfReset.inc:1877 msgid "Password successfully reset." msgstr "Wachtwoord succesvol reset." -#: ../help/help.inc:231 +#: ../help/help.inc:237 msgid "Password to unlock SSH key file." msgstr "Wachtwoord om het SSH key bestand te openen." @@ -10384,7 +10651,7 @@ msgstr "Wachtwoord waarschuwing" msgid "Password warning must be are natural number." msgstr "Wachtwoord waarschuwing moet een natuurlijk getal zijn." -#: ../templates/config/confmain.php:756 +#: ../templates/config/confmain.php:758 #: ../templates/3rdParty/pla/htdocs/password_checker.php:61 #: ../lib/modules/passwordSelfReset.inc:1425 ../lib/modules.inc:1211 msgid "Passwords are different!" @@ -10398,7 +10665,7 @@ msgstr "Wachtwoorden zijn gelijk." msgid "Path" msgstr "Pad" -#: ../lib/modules/windowsUser.inc:227 +#: ../lib/modules/windowsUser.inc:229 msgid "Path of the user profile (UNC-path, e.g. \\\\server\\share\\user)." msgstr "" "Pad van het gebruikersprofiel (UNC-pad, bijvoorbeeld \\\\server\\share\\user)." @@ -10416,11 +10683,11 @@ msgstr "" "\\server\\share). $user en $group worden vervangen door de gebruiker- en " "groepsnaam." -#: ../lib/modules/imapAccess.inc:116 ../lib/modules/imapAccess.inc:538 +#: ../lib/modules/imapAccess.inc:116 ../lib/modules/imapAccess.inc:546 msgid "Path separator" msgstr "Pad scheidingsteken" -#: ../help/help.inc:229 +#: ../help/help.inc:235 msgid "" "Path to SSH key file to connect to lamdaemon server. If empty then password " "authentication with the person's password who is logged into LAM will be used." @@ -10433,7 +10700,7 @@ msgstr "" msgid "Path to external script" msgstr "Pad naar extern script" -#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:369 +#: ../lib/modules/ddns.inc:92 ../lib/modules/ddns.inc:365 msgid "Path to key for DNS updates" msgstr "Pad naar de sleutel voor DNS-updates" @@ -10493,19 +10760,21 @@ msgstr "Toestaan" msgid "Personal" msgstr "Persoonlijk" -#: ../lib/selfService.inc:492 +#: ../lib/selfService.inc:493 msgid "Personal data" msgstr "Persoonlijke gegevens" -#: ../lib/types/user.inc:105 ../lib/modules/windowsUser.inc:3612 -#: ../lib/modules/windowsUser.inc:3644 ../lib/modules/inetOrgPerson.inc:161 -#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2493 -#: ../lib/modules/inetOrgPerson.inc:2771 ../lib/modules/inetOrgPerson.inc:3887 -#: ../lib/modules/inetOrgPerson.inc:3918 ../lib/modules/inetOrgPerson.inc:3928 +#: ../lib/types/user.inc:105 ../lib/modules/windowsLDSUser.inc:2193 +#: ../lib/modules/windowsLDSUser.inc:2206 ../lib/modules/windowsUser.inc:3707 +#: ../lib/modules/windowsUser.inc:3739 ../lib/modules/inetOrgPerson.inc:161 +#: ../lib/modules/inetOrgPerson.inc:561 ../lib/modules/inetOrgPerson.inc:2521 +#: ../lib/modules/inetOrgPerson.inc:2839 ../lib/modules/inetOrgPerson.inc:4099 +#: ../lib/modules/inetOrgPerson.inc:4133 ../lib/modules/inetOrgPerson.inc:4143 msgid "Photo" msgstr "Foto" -#: ../lib/modules/windowsUser.inc:1975 ../lib/modules/inetOrgPerson.inc:1693 +#: ../lib/modules/windowsLDSUser.inc:1293 ../lib/modules/windowsUser.inc:2021 +#: ../lib/modules/inetOrgPerson.inc:1705 msgid "Photo file" msgstr "Foto bestand" @@ -10548,17 +10817,13 @@ msgstr "" msgid "Please add at least one extension owner." msgstr "Voeg ten minste een extensie eigenaar toe." -#: ../help/help.inc:209 +#: ../help/help.inc:215 msgid "Please add this line to your webserver's crontab." msgstr "Voeg deze regel aan de crontab van uw webserver." -#: ../help/help.inc:165 -msgid "" -"Please change this setting only if you experience problems in receiving emails " -"from LAM. This defines the line ending of emails." -msgstr "" -"Activeer dit alleen als u problemen ondervindt bij het ontvangen van e-mails " -"van LAM. Dit definieert de lijn einde van e-mails." +#: ../lib/2factor.inc:545 +msgid "Please authenticate with your security device." +msgstr "Verifieer met uw beveiligingsapparaat." #: ../lib/modules/qmailGroup.inc:296 msgid "Please check if this email should be sent." @@ -10588,7 +10853,7 @@ msgstr "Klik voor het vergrendelen / ontgrendelen van dit account." msgid "Please create a profile by clicking on the link below." msgstr "Gelieve een profiel aan te maken door te klikken op de link hieronder." -#: ../lib/lists.inc:1257 +#: ../lib/lists.inc:1262 msgid "" "Please do not edit multiple accounts in parallel in multiple browser tabs." msgstr "" @@ -10611,7 +10876,7 @@ msgstr "Schakel eerst de captcha optie in bij de algemene instellingen." msgid "Please enter \"Yes\" or \"No\"." msgstr "Geef \"Ja\" of \"Nee\"." -#: ../templates/selfService/adminMain.php:259 +#: ../templates/selfService/adminMain.php:260 msgid "Please enter a 2-factor base URL." msgstr "Vul alstublieft een 2-factor basis URL in." @@ -10623,7 +10888,7 @@ msgstr "Voer een RID nummer in of de naam van een speciaal account!" msgid "Please enter a caller ID." msgstr "Voer een beller-ID in." -#: ../help/help.inc:372 +#: ../help/help.inc:384 msgid "" "Please enter a comma separated list of attributes to export. Using \"*\" will " "export all attributes." @@ -10640,8 +10905,9 @@ msgstr "" "voorbeeld.nl\"). LAM zal alleen mailboxen van deze domeinen beheren." #: ../lib/modules/sambaSamAccount.inc:103 ../lib/modules/sambaSamAccount.inc:104 +#: ../lib/modules/windowsUser.inc:1082 ../lib/modules/windowsUser.inc:1083 msgid "Please enter a comma separated list of host names!" -msgstr "S.v.p. een kommagescheiden lijst van hostnamen invoeren." +msgstr "S.v.p. een kommagescheiden lijst van hostnamen invoeren!" #: ../lib/modules/asteriskExtension.inc:186 msgid "Please enter a common name." @@ -10668,15 +10934,15 @@ msgstr "Geef een beschrijvend label voor dit veld." msgid "Please enter a descriptive name for this entry." msgstr "Voer een beschrijvende naam voor dit item in." -#: ../lib/modules/windowsGroup.inc:124 +#: ../lib/modules/windowsLDSGroup.inc:89 ../lib/modules/windowsGroup.inc:124 msgid "Please enter a descriptive text for this group." msgstr "Geen een beschrijvende tekst voor deze groep." -#: ../lib/modules/windowsHost.inc:78 +#: ../lib/modules/windowsHost.inc:80 msgid "Please enter a descriptive text for this host." msgstr "Geef een beschrijvende tekst voor deze host." -#: ../lib/modules/windowsUser.inc:142 +#: ../lib/modules/windowsLDSUser.inc:126 ../lib/modules/windowsUser.inc:144 msgid "Please enter a descriptive text for this user." msgstr "Geef een beschrijvende tekst voor deze gebruiker." @@ -10684,7 +10950,7 @@ msgstr "Geef een beschrijvende tekst voor deze gebruiker." msgid "Please enter a group name!" msgstr "S.v.p. een geldige groepsnaam invoeren!" -#: ../lib/modules/windowsUser.inc:260 +#: ../lib/modules/windowsLDSUser.inc:216 ../lib/modules/windowsUser.inc:262 msgid "" "Please enter a list of Windows domains that can be selected for your user " "accounts." @@ -10708,7 +10974,7 @@ msgstr "Voer een naam in voor dit apparaat." msgid "Please enter a name for this folder." msgstr "Voer een naam in voor deze map." -#: ../lib/modules/ppolicy.inc:164 +#: ../lib/modules/ppolicy.inc:170 msgid "Please enter a name for this policy." msgstr "Voer een naam in voor dit beleid." @@ -10726,7 +10992,7 @@ msgstr "Geef een natuurlijk getal voor het kolom aantal." #: ../lib/modules/customFields.inc:3254 msgid "Please enter a natural number for row count." -msgstr "Geef een natuurlijk getal voor het rij aantal" +msgstr "Geef een natuurlijk getal voor het rij aantal." #: ../lib/modules/qmailUser.inc:419 ../lib/modules/qmailUser.inc:421 msgid "Please enter a number for GID number." @@ -10757,10 +11023,10 @@ msgstr "Voer een getal in voor de omvang van het quotum." #: ../lib/modules/zarafaUser.inc:436 ../lib/modules/zarafaUser.inc:438 #: ../lib/modules/zarafaUser.inc:439 ../lib/modules/bindDLZXfr.inc:93 #: ../lib/modules/bindDLZXfr.inc:94 ../lib/modules/courierMailAccount.inc:212 -#: ../lib/modules/bindDLZ.inc:561 ../lib/modules/windowsUser.inc:1033 +#: ../lib/modules/bindDLZ.inc:561 ../lib/modules/windowsUser.inc:1069 #: ../lib/modules/kolabUser.inc:221 ../lib/modules/kolabUser.inc:222 -#: ../lib/modules/inetOrgPerson.inc:2514 ../lib/modules/inetOrgPerson.inc:2517 -#: ../lib/modules/inetOrgPerson.inc:2520 ../lib/modules/sudoRole.inc:284 +#: ../lib/modules/inetOrgPerson.inc:2542 ../lib/modules/inetOrgPerson.inc:2545 +#: ../lib/modules/inetOrgPerson.inc:2548 ../lib/modules/sudoRole.inc:284 #: ../lib/modules/sudoRole.inc:285 ../lib/modules/kopanoUser.inc:431 #: ../lib/modules/kopanoUser.inc:432 ../lib/modules/kopanoUser.inc:433 #: ../lib/modules/kopanoUser.inc:434 ../lib/modules/kopanoUser.inc:435 @@ -10769,15 +11035,15 @@ msgstr "Voer een getal in voor de omvang van het quotum." msgid "Please enter a number." msgstr "Voer een nummer in." -#: ../lib/modules/ppolicy.inc:173 +#: ../lib/modules/ppolicy.inc:179 msgid "Please enter a numeric value for the expire warning." msgstr "Geef een numerieke waarde voor de vervallen waarschuwing." -#: ../lib/modules/ppolicy.inc:172 +#: ../lib/modules/ppolicy.inc:178 msgid "Please enter a numeric value for the failure count interval." msgstr "Geef een numerieke waarde voor de mislukking aantal interval." -#: ../lib/modules/ppolicy.inc:169 +#: ../lib/modules/ppolicy.inc:175 msgid "Please enter a numeric value for the grace authentication limit." msgstr "Geef een numerieke waarde in voor de grace authenticatie limiet." @@ -10785,23 +11051,29 @@ msgstr "Geef een numerieke waarde in voor de grace authenticatie limiet." msgid "Please enter a numeric value for the idle timeout." msgstr "Geef een numerieke waarde voor de lockout duur." -#: ../lib/modules/ppolicy.inc:170 +#: ../lib/modules/ppolicy.inc:176 msgid "Please enter a numeric value for the lockout duration." msgstr "Geef een numerieke waarde voor de lockout duur." -#: ../lib/modules/ppolicy.inc:171 +#: ../lib/modules/ppolicy.inc:177 msgid "Please enter a numeric value for the maximum failure count." msgstr "Geef een numerieke waarde voor het maximale falen aantal." -#: ../lib/modules/ppolicy.inc:174 +#: ../lib/modules/ppolicy.inc:180 msgid "Please enter a numeric value for the minimum password length." msgstr "Geef een numerieke waarde voor de minimale lengte van een wachtwoord." -#: ../lib/modules/ppolicy.inc:168 +#: ../lib/modules/ppolicy.inc:174 msgid "Please enter a numeric value for the password history length." msgstr "Voer een numerieke waarde voor de wachtwoord geschiedenis lengte." -#: ../lib/modules/range.inc:141 +#: ../help/help.inc:181 +msgid "Please enter a part of the user's DN to search for registered devices." +msgstr "" +"Voer een deel van de DN van de gebruiker in om te zoeken naar geregistreerde " +"apparaten." + +#: ../lib/modules/range.inc:140 msgid "Please enter a pool name." msgstr "Voer een poel naam in." @@ -10815,7 +11087,7 @@ msgstr "Voer een rol naam in." #: ../lib/modules/passwordSelfReset.inc:1461 msgid "Please enter a security answer." -msgstr "Voer een beveiligingsantwoord in. " +msgstr "Voer een beveiligingsantwoord in." #: ../lib/modules/selfRegistration.inc:121 msgid "Please enter a subject for the confirmation mails." @@ -10834,7 +11106,7 @@ msgstr "Vul een tekst voor de bevestiging e-mails dat de creatie link bevat in." msgid "Please enter a unique name for this field." msgstr "Geef een unieke naam voor dit veld." -#: ../lib/modules/ppolicy.inc:80 +#: ../lib/modules/ppolicy.inc:81 msgid "Please enter a unique name for this password policy." msgstr "Voer een unieke naam in voor dit wachtwoord beleid." @@ -10860,11 +11132,11 @@ msgid "" msgstr "" "Geef een geldig LDAP-attribuut naam. Toegestane tekens zijn a-z, 0-9, _ en -." -#: ../templates/selfService/adminMain.php:249 +#: ../templates/selfService/adminMain.php:250 msgid "Please enter a valid LDAP suffix." msgstr "Vul een geldige LDAP suffix in." -#: ../templates/selfService/adminMain.php:253 +#: ../templates/selfService/adminMain.php:254 msgid "Please enter a valid LDAP user if you want to use it for all operations." msgstr "" "Vul een geldig LDAP-gebruiker indien u deze wilt gebruiken voor alle " @@ -10878,17 +11150,19 @@ msgstr "Vul een geldig account status in." msgid "Please enter a valid admin email address." msgstr "Vul een geldig admin e-mailadres in." -#: ../templates/config/confmain.php:649 +#: ../templates/config/confmain.php:651 msgid "Please enter a valid bind user." msgstr "Vul een geldig bind gebruiker in." -#: ../lib/modules/windowsUser.inc:1039 ../lib/modules/windowsUser.inc:1040 +#: ../lib/modules/windowsLDSUser.inc:789 ../lib/modules/windowsLDSUser.inc:790 +#: ../lib/modules/windowsUser.inc:1075 ../lib/modules/windowsUser.inc:1076 #: ../lib/modules/inetOrgPerson.inc:107 ../lib/modules/inetOrgPerson.inc:108 msgid "Please enter a valid business category!" msgstr "Voer een geldige zakelijke categorie in!" +#: ../lib/modules/windowsLDSUser.inc:753 ../lib/modules/windowsLDSUser.inc:754 #: ../lib/modules/posixAccount.inc:119 ../lib/modules/posixAccount.inc:120 -#: ../lib/modules/windowsUser.inc:986 ../lib/modules/windowsUser.inc:987 +#: ../lib/modules/windowsUser.inc:1022 ../lib/modules/windowsUser.inc:1023 #: ../lib/modules/inetOrgPerson.inc:98 ../lib/modules/inetOrgPerson.inc:99 msgid "Please enter a valid common name!" msgstr "S.v.p. een valide common name ingeven!" @@ -10915,7 +11189,7 @@ msgstr "Voer een geldig database gebruiker in." #: ../lib/modules/mitKerberos.inc:282 ../lib/modules/mitKerberos.inc:283 #: ../lib/modules/qmailUser.inc:424 ../lib/modules/sambaSamAccount.inc:116 -#: ../lib/modules/windowsUser.inc:1034 ../lib/modules/heimdalKerberos.inc:247 +#: ../lib/modules/windowsUser.inc:1070 ../lib/modules/heimdalKerberos.inc:247 #: ../lib/modules/heimdalKerberos.inc:248 msgid "Please enter a valid date in format DD-MM-YYYY." msgstr "S.v.p. een geldige datum invoeren in formaat DD-MM-YYYY." @@ -10932,20 +11206,23 @@ msgstr "Voer een geldig standaard gebruiker in." msgid "Please enter a valid delivery mode." msgstr "Vul een geldig leveringswijze in." +#: ../lib/modules/windowsLDSUser.inc:757 ../lib/modules/windowsLDSUser.inc:758 #: ../lib/modules/sambaSamAccount.inc:110 ../lib/modules/sambaSamAccount.inc:111 -#: ../lib/modules/windowsUser.inc:992 ../lib/modules/windowsUser.inc:993 +#: ../lib/modules/windowsUser.inc:1028 ../lib/modules/windowsUser.inc:1029 msgid "Please enter a valid display name!" msgstr "S.v.p. een geldige displaynaam invoeren!" -#: ../lib/modules/sambaSamAccount.inc:117 ../lib/modules/windowsUser.inc:1028 +#: ../lib/modules/sambaSamAccount.inc:117 ../lib/modules/windowsUser.inc:1064 msgid "Please enter a valid drive letter." msgstr "S.v.p. een geldige stationsletter invoeren." +#: ../templates/config/mainmanage.php:114 ../templates/config/mainmanage.php:118 #: ../lib/passwordExpirationJob.inc:122 ../lib/passwordExpirationJob.inc:128 #: ../lib/passwordExpirationJob.inc:134 ../lib/passwordExpirationJob.inc:140 #: ../lib/modules/kolabGroup.inc:155 ../lib/modules/kolabGroup.inc:156 #: ../lib/modules/selfRegistration.inc:125 -#: ../lib/modules/selfRegistration.inc:500 +#: ../lib/modules/selfRegistration.inc:500 ../lib/modules/windowsLDSUser.inc:779 +#: ../lib/modules/windowsLDSUser.inc:780 #: ../lib/modules/zarafaDynamicGroup.inc:184 #: ../lib/modules/zarafaDynamicGroup.inc:185 ../lib/modules/qmailUser.inc:402 #: ../lib/modules/qmailUser.inc:403 ../lib/modules/qmailUser.inc:404 @@ -10956,8 +11233,8 @@ msgstr "S.v.p. een geldige stationsletter invoeren." #: ../lib/modules/courierMailAlias.inc:138 #: ../lib/modules/courierMailAlias.inc:140 #: ../lib/modules/courierMailAlias.inc:141 ../lib/modules/kopanoGroup.inc:188 -#: ../lib/modules/kopanoGroup.inc:189 ../lib/modules/windowsUser.inc:1014 -#: ../lib/modules/windowsUser.inc:1015 ../lib/modules/pykotaUser.inc:282 +#: ../lib/modules/kopanoGroup.inc:189 ../lib/modules/windowsUser.inc:1050 +#: ../lib/modules/windowsUser.inc:1051 ../lib/modules/pykotaUser.inc:282 #: ../lib/modules/pykotaUser.inc:283 ../lib/modules/kopanoDynamicGroup.inc:188 #: ../lib/modules/kopanoDynamicGroup.inc:189 ../lib/modules/inetOrgPerson.inc:82 #: ../lib/modules/inetOrgPerson.inc:85 ../lib/modules/kolabSharedFolder.inc:220 @@ -10988,12 +11265,14 @@ msgstr "S.v.p. een geldig e-mail alias invoeren!" msgid "Please enter a valid employee number." msgstr "Geef een geldig personeelsnummer." -#: ../lib/modules/windowsUser.inc:1037 ../lib/modules/windowsUser.inc:1038 +#: ../lib/modules/windowsLDSUser.inc:787 ../lib/modules/windowsLDSUser.inc:788 +#: ../lib/modules/windowsUser.inc:1073 ../lib/modules/windowsUser.inc:1074 #: ../lib/modules/inetOrgPerson.inc:96 ../lib/modules/inetOrgPerson.inc:97 msgid "Please enter a valid employee type!" msgstr "S.v.p. een geldig werknemerstype invoeren!" -#: ../lib/modules/windowsUser.inc:1000 ../lib/modules/windowsUser.inc:1001 +#: ../lib/modules/windowsLDSUser.inc:765 ../lib/modules/windowsLDSUser.inc:766 +#: ../lib/modules/windowsUser.inc:1036 ../lib/modules/windowsUser.inc:1037 #: ../lib/modules/inetOrgPerson.inc:78 ../lib/modules/inetOrgPerson.inc:79 msgid "Please enter a valid fax number!" msgstr "S.v.p. een geldig faxnummer invoeren!" @@ -11040,7 +11319,8 @@ msgstr "Geef een geldige groep soort." msgid "Please enter a valid job suffix." msgstr "Vul een geldige job achtervoegsel in." -#: ../lib/modules/windowsUser.inc:1035 ../lib/modules/windowsUser.inc:1036 +#: ../lib/modules/windowsLDSUser.inc:785 ../lib/modules/windowsLDSUser.inc:786 +#: ../lib/modules/windowsUser.inc:1071 ../lib/modules/windowsUser.inc:1072 #: ../lib/modules/inetOrgPerson.inc:94 ../lib/modules/inetOrgPerson.inc:95 msgid "Please enter a valid job title!" msgstr "S.v.p. een geldige functieomschrijving invoeren!" @@ -11095,7 +11375,7 @@ msgid "Please enter a valid number (e.g. \"1.5\")." msgstr "Vul een geldig nummer in (bijv. \"1.5\")." #: ../lib/modules/pykotaPrinter.inc:212 ../lib/modules/pykotaPrinter.inc:213 -#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:717 +#: ../lib/modules/autoDelete.inc:104 ../lib/modules/posixGroup.inc:718 #: ../lib/modules/customFields.inc:2316 ../lib/modules/customFields.inc:2325 #: ../lib/modules/customFields.inc:3888 ../lib/modules/customFields.inc:3892 msgid "Please enter a valid number." @@ -11127,7 +11407,8 @@ msgstr "Vul een geldig poortnummer in." msgid "Please enter a valid postal address!" msgstr "S.v.p. een geldig postadres invoeren!" -#: ../lib/modules/windowsUser.inc:1012 ../lib/modules/windowsUser.inc:1013 +#: ../lib/modules/windowsLDSUser.inc:777 ../lib/modules/windowsLDSUser.inc:778 +#: ../lib/modules/windowsUser.inc:1048 ../lib/modules/windowsUser.inc:1049 #: ../lib/modules/inetOrgPerson.inc:92 ../lib/modules/inetOrgPerson.inc:93 msgid "Please enter a valid postal code!" msgstr "S.v.p. een geldige postcode invoeren!" @@ -11155,7 +11436,7 @@ msgstr "Vul een geldige ontvanger expressie in." msgid "Please enter a valid registered address." msgstr "Voer een geldig geregistreerd adres in." -#: ../templates/config/mainmanage.php:180 +#: ../templates/config/mainmanage.php:188 msgid "Please enter a valid remote server in format \"server:port\"." msgstr "Voer een geldige externe server in in de indeling \"server:poort\"." @@ -11179,12 +11460,18 @@ msgstr "Voer een geldige naam in van de server waar de mailboxen zich bevinden." msgid "Please enter a valid street name!" msgstr "S.v.p. een geldige straatnaam invoeren!" -#: ../lib/modules/windowsUser.inc:998 ../lib/modules/windowsUser.inc:999 -#: ../lib/modules/windowsUser.inc:1002 ../lib/modules/windowsUser.inc:1003 -#: ../lib/modules/windowsUser.inc:1004 ../lib/modules/windowsUser.inc:1005 -#: ../lib/modules/windowsUser.inc:1006 ../lib/modules/windowsUser.inc:1007 -#: ../lib/modules/windowsUser.inc:1008 ../lib/modules/windowsUser.inc:1009 -#: ../lib/modules/windowsUser.inc:1010 ../lib/modules/windowsUser.inc:1011 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:764 +#: ../lib/modules/windowsLDSUser.inc:767 ../lib/modules/windowsLDSUser.inc:768 +#: ../lib/modules/windowsLDSUser.inc:769 ../lib/modules/windowsLDSUser.inc:770 +#: ../lib/modules/windowsLDSUser.inc:771 ../lib/modules/windowsLDSUser.inc:772 +#: ../lib/modules/windowsLDSUser.inc:773 ../lib/modules/windowsLDSUser.inc:774 +#: ../lib/modules/windowsLDSUser.inc:775 ../lib/modules/windowsLDSUser.inc:776 +#: ../lib/modules/windowsUser.inc:1034 ../lib/modules/windowsUser.inc:1035 +#: ../lib/modules/windowsUser.inc:1038 ../lib/modules/windowsUser.inc:1039 +#: ../lib/modules/windowsUser.inc:1040 ../lib/modules/windowsUser.inc:1041 +#: ../lib/modules/windowsUser.inc:1042 ../lib/modules/windowsUser.inc:1043 +#: ../lib/modules/windowsUser.inc:1044 ../lib/modules/windowsUser.inc:1045 +#: ../lib/modules/windowsUser.inc:1046 ../lib/modules/windowsUser.inc:1047 #: ../lib/modules/inetOrgPerson.inc:72 ../lib/modules/inetOrgPerson.inc:73 #: ../lib/modules/inetOrgPerson.inc:74 ../lib/modules/inetOrgPerson.inc:75 #: ../lib/modules/inetOrgPerson.inc:80 ../lib/modules/inetOrgPerson.inc:81 @@ -11196,8 +11483,8 @@ msgstr "S.v.p. een geldig telefoonnummer invoeren!" msgid "Please enter a valid user name or email address." msgstr "Geef een geldige gebruikersnaam of e-mailadres." -#: ../lib/modules/posixGroup.inc:851 ../lib/modules/posixAccount.inc:1121 -#: ../lib/modules/posixAccount.inc:1126 +#: ../lib/modules/posixGroup.inc:852 ../lib/modules/posixAccount.inc:1120 +#: ../lib/modules/posixAccount.inc:1125 #, php-format msgid "Please enter a value between %s and %s!" msgstr "S.v.p. een waarde invullen tussen %s en %s!" @@ -11218,8 +11505,8 @@ msgstr "Vul een waarde in om toe te voegen." msgid "Please enter a value to modify." msgstr "Vul een waarde in om aan te passen." -#: ../help/help.inc:370 -msgid "Please enter an LDAP filter to specifiy the exported entries." +#: ../help/help.inc:382 +msgid "Please enter an LDAP filter to specify the exported entries." msgstr "Voer een LDAP-filter in om de geëxporteerde items te specificeren." #: ../lib/modules/customFields.inc:82 @@ -11230,7 +11517,7 @@ msgstr "Geef een alias voor deze groep." msgid "Please enter an alias name." msgstr "Geef een alias naam." -#: ../lib/modules/kolabUser.inc:250 ../lib/modules/imapAccess.inc:208 +#: ../lib/modules/kolabUser.inc:250 ../lib/modules/imapAccess.inc:209 #, php-format msgid "Please enter an email address on this page: %s" msgstr "S.v.p. een e-mailadres invoeren op deze pagina: %s" @@ -11248,13 +11535,13 @@ msgstr "Geef een gebruikersnaam op deze pagina: %s" msgid "Please enter at least %s values." msgstr "Voer alstublieft minstens %s waarden in." -#: ../lib/modules/range.inc:142 +#: ../lib/modules/range.inc:141 #, php-format msgid "Please enter at least one range for pool \"%s\"." msgstr "Voer minimaal een reeks in voor poel \"%s\"." -#: ../lib/modules/windowsUser.inc:2389 ../lib/modules/windowsUser.inc:2398 -#: ../lib/modules/windowsUser.inc:2419 ../lib/modules/windowsUser.inc:2430 +#: ../lib/modules/windowsUser.inc:2552 ../lib/modules/windowsUser.inc:2561 +#: ../lib/modules/windowsUser.inc:2582 ../lib/modules/windowsUser.inc:2593 #: ../lib/modules/customFields.inc:3568 msgid "Please enter either yes or no." msgstr "Geef ja of nee." @@ -11299,19 +11586,19 @@ msgstr "" msgid "" "Please enter the DN and password of the administrative self registration " "account." -msgstr "Vul de DN en het wachtwoord van het zelf registratie account" +msgstr "Vul de DN en het wachtwoord van het zelf registratie account." -#: ../help/help.inc:205 +#: ../help/help.inc:211 msgid "Please enter the DN and password to use for all jobs." msgstr "Vul de DN en het wachtwoord dat moet worden gebruikt voor alle taken." -#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixAccount.inc:395 +#: ../lib/modules/posixGroup.inc:469 ../lib/modules/posixAccount.inc:395 msgid "" "Please enter the DN of the LDAP entry with object class \"msSFU30DomainInfo\"." msgstr "" "Geef de DN van de LDAP-vermelding met objectklasse \"msSFU30DomainInfo\"." -#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixAccount.inc:391 +#: ../lib/modules/posixGroup.inc:465 ../lib/modules/posixAccount.inc:391 msgid "" "Please enter the DN of the LDAP entry with object class \"sambaUnixIdPool\"." msgstr "Geef de DN van de LDAP-vermelding met objectklasse \"sambaUnixIdPool\"." @@ -11369,7 +11656,7 @@ msgstr "" msgid "Please enter the LDAP suffix where your Samba domain entries are stored." msgstr "Vul de LDAP suffix waar de Samba domein items worden opgeslagen." -#: ../help/help.inc:333 +#: ../help/help.inc:345 msgid "" "Please enter the WebAuthn domain. This is the public domain of the webserver " "(e.g. \"example.com\"). Do not include protocol or port." @@ -11426,7 +11713,7 @@ msgstr "" "Voer de basis-URL van uw webserver in (bijvoorbeeld https://www.example.com). " "Dit wordt gebruikt om links in e-mails te genereren." -#: ../lib/modules/windowsUser.inc:359 +#: ../lib/modules/windowsLDSUser.inc:288 ../lib/modules/windowsUser.inc:361 msgid "Please enter the company name." msgstr "Geef de naam van het bedrijf." @@ -11463,11 +11750,11 @@ msgstr "Voer de extensie context in." msgid "Please enter the extension name." msgstr "Voer de extensie naam in." -#: ../lib/modules/windowsGroup.inc:120 +#: ../lib/modules/windowsLDSGroup.inc:85 ../lib/modules/windowsGroup.inc:120 msgid "Please enter the group name." msgstr "Geef de naam van de groep." -#: ../lib/modules/asteriskAccount.inc:560 ../lib/modules/windowsHost.inc:74 +#: ../lib/modules/asteriskAccount.inc:560 ../lib/modules/windowsHost.inc:76 msgid "Please enter the host name." msgstr "Voer de hostnaam in." @@ -11487,10 +11774,14 @@ msgstr "" "Voer de lijst van scripts in die moet worden uitgevoerd. Elke regel heeft de " "volgende indeling: [actie] [script en argumenten]" -#: ../lib/modules/posixGroup.inc:489 ../lib/modules/posixAccount.inc:399 +#: ../lib/modules/posixGroup.inc:490 ../lib/modules/posixAccount.inc:399 msgid "Please enter the magic number you configured on server side." msgstr "Vul het magische getal in zoals geconfigureerd op de server." +#: ../templates/config/mainmanage.php:263 +msgid "Please enter the mail server with host name and port." +msgstr "Voer de mailserver in met hostnaam en poort." + #: ../lib/modules/nisObject.inc:66 msgid "" "Please enter the mapping entry (e.g. \"-fstype=nfs,rw server:/projects\")." @@ -11508,7 +11799,7 @@ msgid "" msgstr "" "S.v.p. master configuratie wachtwoord invoeren. Dit is NIET uw LDAP " "wachtwoord. Het staat vermeld in uw config.cfg bestand. Als het de eerste keer " -"is dat u inlogt, gebruik \"lam\"" +"is dat u inlogt, gebruik \"lam\"." #: ../templates/config/mainlogin.php:119 msgid "Please enter the master password to change the general preferences:" @@ -11518,6 +11809,13 @@ msgstr "Voer het hoofdwachtwoord in om de algemene voorkeuren wijzigen:" msgid "Please enter the message store." msgstr "Voer de berichten store in." +#: ../lib/modules/ppolicy.inc:141 +msgid "" +"Please enter the name of the .so file of your password quality check module." +msgstr "" +"Voer de naam in van het .so-bestand van de module voor het controleren van de " +"wachtwoordkwaliteit." + #: ../help/help.inc:139 msgid "" "Please enter the name of the new profile and the password to change its " @@ -11534,7 +11832,7 @@ msgstr "" "S.v.p. de nieuwe naam van het profiel invoeren. De naam mag letters, nummers " "en -/_ bevatten." -#: ../help/help.inc:397 +#: ../help/help.inc:409 msgid "" "Please enter the number of days before password expiration to send out the " "email." @@ -11563,12 +11861,13 @@ msgstr "" "Voer het wachtwoord voor de admin DN. Let op: dit wordt niet opgeslagen als " "plain-tekst in de self-service profiel." -#: ../lib/modules/asteriskAccount.inc:115 ../lib/modules/posixAccount.inc:428 -#: ../lib/modules/windowsUser.inc:244 ../lib/modules/inetOrgPerson.inc:783 +#: ../lib/modules/windowsLDSUser.inc:208 ../lib/modules/asteriskAccount.inc:115 +#: ../lib/modules/posixAccount.inc:428 ../lib/modules/windowsUser.inc:246 +#: ../lib/modules/inetOrgPerson.inc:787 msgid "Please enter the password which you want to set for this account." msgstr "S.v.p. het wachtwoord invoeren dat u wilt gebruiken voor dit account." -#: ../help/help.inc:257 +#: ../help/help.inc:269 msgid "" "Please enter the password which you want to set for this account. You may also " "generate a random password (12 characters) which will be displayed on your " @@ -11633,10 +11932,10 @@ msgstr "" "Geef de reguliere expressie (bijv. \"/^[0-9a-zA-Z]+$/\") om dit veld te " "valideren. Voor een syntax beschrijving zie hier." -#: ../templates/lists/changePassword.php:537 -#: ../lib/modules/selfRegistration.inc:580 ../lib/modules/sambaSamAccount.inc:105 -#: ../lib/modules/posixAccount.inc:99 ../lib/modules/windowsUser.inc:1026 -#: ../lib/modules/customFields.inc:3120 +#: ../templates/lists/changePassword.php:541 +#: ../lib/modules/selfRegistration.inc:580 ../lib/modules/windowsLDSUser.inc:783 +#: ../lib/modules/sambaSamAccount.inc:105 ../lib/modules/posixAccount.inc:99 +#: ../lib/modules/windowsUser.inc:1062 ../lib/modules/customFields.inc:3120 msgid "Please enter the same password in both password fields." msgstr "S.v.p. hetzelfde wachtwoord in beide wachtwoordvelden invoeren." @@ -11644,11 +11943,21 @@ msgstr "S.v.p. hetzelfde wachtwoord in beide wachtwoordvelden invoeren." msgid "Please enter the security question for the password self reset." msgstr "Voer de geheime vraag in voor het wachtwoord zelf opnieuw in te stellen." -#: ../help/help.inc:317 +#: ../help/help.inc:183 +msgid "" +"Please enter the server name and port of your SMTP server (e.g. localhost:25). " +"If this setting is left empty then LAM will try to use a locally installed " +"mail server. The server must support TLS." +msgstr "" +"Voer de servernaam en poort van uw SMTP-server in (bijv. localhost: 25). Als " +"deze instelling leeg wordt gelaten, zal LAM proberen een lokaal geïnstalleerde " +"mailserver te gebruiken. De server moet TLS ondersteunen." + +#: ../help/help.inc:329 msgid "Please enter the site and secret key you got from Google reCAPTCHA." msgstr "Vul de site en de geheime sleutel in die u kreeg van Google reCAPTCHA." -#: ../help/help.inc:181 +#: ../help/help.inc:179 msgid "Please enter the syslog remote server in format \"server:port\"." msgstr "Voer de syslog-server op afstand in het formaat \"server:poort\" in." @@ -11656,12 +11965,13 @@ msgstr "Voer de syslog-server op afstand in het formaat \"server:poort\" in." msgid "Please enter the time limit in minutes. 0 means unlimited." msgstr "Voer de tijdslimiet in in minuten. 0 betekent onbeperkt." -#: ../help/help.inc:215 +#: ../help/help.inc:221 msgid "Please enter the user name and password to connect to the database." msgstr "" "Voer uw gebruikersnaam en wachtwoord in om verbinding met de database te maken." -#: ../lib/modules/windowsUser.inc:130 ../lib/modules/windowsUser.inc:138 +#: ../lib/modules/windowsLDSUser.inc:118 ../lib/modules/windowsUser.inc:132 +#: ../lib/modules/windowsUser.inc:140 msgid "Please enter the user's name." msgstr "Geef de naam van de gebruiker." @@ -11681,11 +11991,11 @@ msgstr "Voer geldige domeinnamen in voor zoekdomeinen." msgid "Please enter your Puppet variables for this node (e.g. config_exim=true)." msgstr "Voer uw Puppet variabelen voor deze node in (bv config_exim = true)." -#: ../help/help.inc:323 +#: ../help/help.inc:335 msgid "Please enter your client id for the verification API." msgstr "Voer uw client-ID in voor de verificatie-API." -#: ../help/help.inc:233 +#: ../help/help.inc:239 msgid "Please enter your licence key." msgstr "Voer de licentie sleutel in." @@ -11705,11 +12015,11 @@ msgstr "S.v.p. wachtwoord invoeren om voorkeuren te wijzigen:" msgid "Please enter your public SSH key." msgstr "S.v.p. de publieke SSH key invoeren." -#: ../help/help.inc:325 +#: ../help/help.inc:337 msgid "Please enter your secret key for the verification API." msgstr "Voer uw geheime sleutel in voor de verificatie-API." -#: ../lib/modules/range.inc:483 ../lib/modules/fixed_ip.inc:407 +#: ../lib/modules/range.inc:482 ../lib/modules/fixed_ip.inc:405 msgid "Please fill out the DHCP settings first." msgstr "Vul de DHCP-instellingen eerste in." @@ -11727,7 +12037,7 @@ msgstr "Gelieve een ondersteunde PDO extensie voor PHP installeren en activeren. #: ../templates/upload/masscreate.php:275 msgid "" -"Please provide a CSV formated file with your account data. The cells in the " +"Please provide a CSV formatted file with your account data. The cells in the " "first row must be filled with the column identifiers. The following rows " "represent one account for each row." msgstr "" @@ -11735,7 +12045,7 @@ msgstr "" "rij moeten de kolomidentiecatie bevatten. De volgende rijen vertegenwoordigen " "ieder een account." -#: ../lib/config.inc:2920 +#: ../lib/config.inc:2973 msgid "Please provide a file in DER or PEM format." msgstr "Geef een bestand in DER of PEM-formaat." @@ -11743,19 +12053,28 @@ msgstr "Geef een bestand in DER of PEM-formaat." msgid "Please provide a file to upload." msgstr "Geef een bestand om te uploaden." -#: ../lib/modules/windowsUser.inc:299 ../lib/modules/windowsUser.inc:399 -#: ../lib/modules/inetOrgPerson.inc:690 +#: ../lib/2factor.inc:548 +msgid "Please register a security device." +msgstr "Registreer een beveiligingsapparaat." + +#: ../lib/modules/windowsLDSUser.inc:228 ../lib/modules/windowsLDSUser.inc:328 +#: ../lib/modules/windowsUser.inc:301 ../lib/modules/windowsUser.inc:401 +#: ../lib/modules/inetOrgPerson.inc:694 msgid "" "Please select an image file to upload. It must be in JPG format (.jpg/.jpeg)." msgstr "" "S.v.p. een image bestand selecteren om te uploaden. Het moet in een JPG " "formaat (.jpg/.jpeg)." +#: ../help/help.inc:241 +msgid "Please select how to be warned before your licence expires." +msgstr "Selecteer hoe u wilt worden gewaarschuwd voordat uw licentie verloopt." + #: ../lib/modules/customFields.inc:106 msgid "Please select the field type (e.g. text field)." msgstr "Selecteer het veld type (bijv. tekstveld)." -#: ../help/help.inc:271 +#: ../help/help.inc:283 msgid "" "Please select the font for the PDF file. Dejavu will work on all systems but " "does not support e.g. Chinese and Japanese. The other fonts require that an " @@ -11766,11 +12085,11 @@ msgstr "" "lettertypen moet een geschikt lettertype zijn geïnstalleerd op het systeem " "waarop de PDF wordt geopend." -#: ../help/help.inc:358 +#: ../help/help.inc:370 msgid "Please select the suffix where changes should be done." msgstr "Selecteer het achtervoegsel waar veranderingen moeten worden gedaan." -#: ../help/help.inc:199 +#: ../help/help.inc:205 msgid "" "Please select the template for the new server profile. You can either select " "an existing server profile or use one of the built-in templates." @@ -11778,7 +12097,7 @@ msgstr "" "Selecteer het sjabloon voor het nieuwe server profiel. U kunt gebruik manen " "van een bestaand server profiel of van een van sjablonen." -#: ../help/help.inc:207 +#: ../help/help.inc:213 msgid "Please select the type of database to use for job data." msgstr "Selecteer het type database te gebruiken taken gerelateerde data." @@ -11788,8 +12107,8 @@ msgstr "Selecteer uw lokale tijdzone." #: ../help/help.inc:157 msgid "" -"Please select your prefered log level. Messages with a lower level will not be " -"logged." +"Please select your preferred log level. Messages with a lower level will not " +"be logged." msgstr "" "Selecteer uw voorkeurs log-niveau. Berichten met een lager niveau zullen niet " "gelogd worden." @@ -11813,7 +12132,7 @@ msgid "Please set up your master configuration file (config/config.cfg) first!" msgstr "" "S.v.p. eerst uw master configuratie bestand instellen (config/config.cfg)!" -#: ../lib/modules/dhcp_settings.inc:573 ../lib/modules/ddns.inc:362 +#: ../lib/modules/dhcp_settings.inc:566 ../lib/modules/ddns.inc:358 msgid "" "Please set your LDAP suffix to an LDAP entry with object class \"dhcpService\" " "or \"dhcpServer\"." @@ -11833,7 +12152,7 @@ msgstr "Geef ten minste een operatie." msgid "Please specify how your users need to identify themselves." msgstr "Geef aan hoe uw gebruikers zich moeten identificeren." -#: ../help/help.inc:177 +#: ../help/help.inc:175 msgid "" "Please specify the URL (e.g. \"https://api.pwnedpasswords.com/range/" "{SHA1PREFIX}\") of your external password check." @@ -11853,7 +12172,7 @@ msgstr "" "Geef de mogelijke waarden voor dit veld. Elke waarde kan een beschrijvend " "label hebben dat wordt weergegeven aan de gebruiker." -#: ../help/help.inc:362 +#: ../help/help.inc:374 msgid "" "Please specify which attributes should be changed. The modify operation will " "also add an value if the attribute does not yet exist. To delete all values of " @@ -11863,7 +12182,7 @@ msgstr "" "niet bestaan zal het worden toegevoegd. Om alle waarden van een attribuut te " "verwijderen laat dan het veld waarde leeg." -#: ../lib/modules/windowsUser.inc:1043 +#: ../lib/modules/windowsLDSUser.inc:793 ../lib/modules/windowsUser.inc:1079 msgid "Please upload a .jpg/.jpeg file." msgstr "Upload een .jpg / .jpeg bestand." @@ -11880,7 +12199,7 @@ msgstr "Policy aantal: %s" msgid "Policy list has invalid format!" msgstr "Beleidslijst heeft een ongeldig formaat!" -#: ../lib/modules/range.inc:544 +#: ../lib/modules/range.inc:543 msgid "Pools" msgstr "Poelen" @@ -11895,7 +12214,7 @@ msgstr "Poort" #: ../lib/modules/asteriskAccount.inc:179 msgid "Port number." -msgstr "poort nummer" +msgstr "poort nummer." #: ../templates/pdfedit/pdfpage.php:398 ../templates/pdfedit/pdfpage.php:412 #: ../templates/pdfedit/pdfpage.php:424 ../templates/pdfedit/pdfpage.php:437 @@ -11909,6 +12228,7 @@ msgid "Possible values" msgstr "Mogelijke waarden" #: ../lib/modules/pykotaPrinter.inc:129 ../lib/modules/sambaGroupMapping.inc:172 +#: ../lib/modules/windowsLDSGroup.inc:110 #: ../lib/modules/organizationalRole.inc:107 ../lib/modules/groupOfNames.inc:118 msgid "" "Possible wildcards are: \"*\" = any character, \"^\" = line start, \"$\" = " @@ -11917,25 +12237,28 @@ msgstr "" "Mogelijke wildcards zijn: \"*\" = elk teken, \"^\" = regel start, \"$\" = " "regel einde" -#: ../lib/modules/windowsUser.inc:181 ../lib/modules/windowsUser.inc:466 -#: ../lib/modules/windowsUser.inc:851 ../lib/modules/windowsUser.inc:949 -#: ../lib/modules/windowsUser.inc:1133 ../lib/modules/windowsUser.inc:2697 -#: ../lib/modules/windowsUser.inc:2908 ../lib/modules/inetOrgPerson.inc:161 +#: ../lib/modules/windowsLDSUser.inc:165 ../lib/modules/windowsLDSUser.inc:391 +#: ../lib/modules/windowsLDSUser.inc:663 ../lib/modules/windowsLDSUser.inc:877 +#: ../lib/modules/windowsLDSUser.inc:1832 ../lib/modules/windowsUser.inc:183 +#: ../lib/modules/windowsUser.inc:476 ../lib/modules/windowsUser.inc:782 +#: ../lib/modules/windowsUser.inc:884 ../lib/modules/windowsUser.inc:985 +#: ../lib/modules/windowsUser.inc:1171 ../lib/modules/windowsUser.inc:2863 +#: ../lib/modules/windowsUser.inc:3079 ../lib/modules/inetOrgPerson.inc:161 #: ../lib/modules/inetOrgPerson.inc:339 ../lib/modules/inetOrgPerson.inc:486 #: ../lib/modules/inetOrgPerson.inc:606 ../lib/modules/inetOrgPerson.inc:610 -#: ../lib/modules/inetOrgPerson.inc:1254 ../lib/modules/inetOrgPerson.inc:1257 -#: ../lib/modules/inetOrgPerson.inc:1952 ../lib/modules/inetOrgPerson.inc:2010 -#: ../lib/modules/inetOrgPerson.inc:2692 ../lib/modules/inetOrgPerson.inc:3861 -#: ../lib/modules/inetOrgPerson.inc:3905 +#: ../lib/modules/inetOrgPerson.inc:1268 ../lib/modules/inetOrgPerson.inc:1271 +#: ../lib/modules/inetOrgPerson.inc:1969 ../lib/modules/inetOrgPerson.inc:2028 +#: ../lib/modules/inetOrgPerson.inc:2748 ../lib/modules/inetOrgPerson.inc:4073 +#: ../lib/modules/inetOrgPerson.inc:4120 msgid "Post office box" -msgstr "Postbus " +msgstr "Postbus" #: ../lib/modules/inetOrgPerson.inc:88 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:323 ../lib/modules/inetOrgPerson.inc:498 -#: ../lib/modules/inetOrgPerson.inc:622 ../lib/modules/inetOrgPerson.inc:1298 -#: ../lib/modules/inetOrgPerson.inc:1955 ../lib/modules/inetOrgPerson.inc:2022 -#: ../lib/modules/inetOrgPerson.inc:2659 ../lib/modules/inetOrgPerson.inc:3865 -#: ../lib/modules/inetOrgPerson.inc:3907 +#: ../lib/modules/inetOrgPerson.inc:622 ../lib/modules/inetOrgPerson.inc:1312 +#: ../lib/modules/inetOrgPerson.inc:1972 ../lib/modules/inetOrgPerson.inc:2040 +#: ../lib/modules/inetOrgPerson.inc:2709 ../lib/modules/inetOrgPerson.inc:4077 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Postal address" msgstr "Postadres" @@ -11943,17 +12266,20 @@ msgstr "Postadres" msgid "Postal address, city" msgstr "Postadres, plaats" -#: ../lib/modules/windowsUser.inc:177 ../lib/modules/windowsUser.inc:472 -#: ../lib/modules/windowsUser.inc:850 ../lib/modules/windowsUser.inc:950 -#: ../lib/modules/windowsUser.inc:1012 ../lib/modules/windowsUser.inc:1134 -#: ../lib/modules/windowsUser.inc:2696 ../lib/modules/windowsUser.inc:2909 -#: ../lib/modules/inetOrgPerson.inc:92 ../lib/modules/inetOrgPerson.inc:161 -#: ../lib/modules/inetOrgPerson.inc:315 ../lib/modules/inetOrgPerson.inc:489 -#: ../lib/modules/inetOrgPerson.inc:614 ../lib/modules/inetOrgPerson.inc:618 -#: ../lib/modules/inetOrgPerson.inc:1263 ../lib/modules/inetOrgPerson.inc:1266 -#: ../lib/modules/inetOrgPerson.inc:1953 ../lib/modules/inetOrgPerson.inc:2013 -#: ../lib/modules/inetOrgPerson.inc:2681 ../lib/modules/inetOrgPerson.inc:3862 -#: ../lib/modules/inetOrgPerson.inc:3905 +#: ../lib/modules/windowsLDSUser.inc:161 ../lib/modules/windowsLDSUser.inc:397 +#: ../lib/modules/windowsLDSUser.inc:662 ../lib/modules/windowsLDSUser.inc:777 +#: ../lib/modules/windowsLDSUser.inc:878 ../lib/modules/windowsLDSUser.inc:1831 +#: ../lib/modules/windowsUser.inc:179 ../lib/modules/windowsUser.inc:482 +#: ../lib/modules/windowsUser.inc:783 ../lib/modules/windowsUser.inc:883 +#: ../lib/modules/windowsUser.inc:986 ../lib/modules/windowsUser.inc:1048 +#: ../lib/modules/windowsUser.inc:1172 ../lib/modules/windowsUser.inc:2862 +#: ../lib/modules/windowsUser.inc:3080 ../lib/modules/inetOrgPerson.inc:92 +#: ../lib/modules/inetOrgPerson.inc:161 ../lib/modules/inetOrgPerson.inc:315 +#: ../lib/modules/inetOrgPerson.inc:489 ../lib/modules/inetOrgPerson.inc:614 +#: ../lib/modules/inetOrgPerson.inc:618 ../lib/modules/inetOrgPerson.inc:1277 +#: ../lib/modules/inetOrgPerson.inc:1280 ../lib/modules/inetOrgPerson.inc:1970 +#: ../lib/modules/inetOrgPerson.inc:2031 ../lib/modules/inetOrgPerson.inc:2735 +#: ../lib/modules/inetOrgPerson.inc:4074 ../lib/modules/inetOrgPerson.inc:4120 msgid "Postal code" msgstr "Postcode" @@ -11980,11 +12306,12 @@ msgstr "Voorgedefinieerde waarden" msgid "Preference" msgstr "Voorkeur" -#: ../lib/modules/imapAccess.inc:101 ../lib/modules/imapAccess.inc:534 +#: ../lib/modules/imapAccess.inc:101 ../lib/modules/imapAccess.inc:542 msgid "Prefix for mailboxes" msgstr "Prefix voor mailboxen" -#: ../lib/modules/windowsUser.inc:684 ../lib/modules/inetOrgPerson.inc:269 +#: ../lib/modules/windowsLDSUser.inc:515 ../lib/modules/windowsUser.inc:694 +#: ../lib/modules/inetOrgPerson.inc:269 msgid "President" msgstr "President" @@ -12008,15 +12335,15 @@ msgstr "Prijs per pagina" #: ../lib/modules/eduPerson.inc:87 ../lib/modules/eduPerson.inc:167 #: ../lib/modules/eduPerson.inc:228 ../lib/modules/eduPerson.inc:282 -#: ../lib/modules/eduPerson.inc:546 +#: ../lib/modules/eduPerson.inc:540 msgid "Primary affiliation" msgstr "Primaire affiliatie" #: ../lib/modules/posixAccount.inc:224 ../lib/modules/posixAccount.inc:286 #: ../lib/modules/posixAccount.inc:303 ../lib/modules/posixAccount.inc:349 #: ../lib/modules/posixAccount.inc:423 ../lib/modules/posixAccount.inc:461 -#: ../lib/modules/posixAccount.inc:1634 ../lib/modules/posixAccount.inc:1975 -#: ../lib/modules/posixAccount.inc:2011 ../lib/modules/posixAccount.inc:2102 +#: ../lib/modules/posixAccount.inc:1680 ../lib/modules/posixAccount.inc:2030 +#: ../lib/modules/posixAccount.inc:2070 ../lib/modules/posixAccount.inc:2165 msgid "Primary group" msgstr "Primaire groep" @@ -12032,13 +12359,13 @@ msgstr "Primaire naamserver" #: ../lib/modules/eduPerson.inc:129 ../lib/modules/eduPerson.inc:205 #: ../lib/modules/eduPerson.inc:231 ../lib/modules/eduPerson.inc:246 -#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:553 +#: ../lib/modules/eduPerson.inc:344 ../lib/modules/eduPerson.inc:547 msgid "Primary organisational unit" msgstr "Primaire organisatie-eenheid" #: ../lib/modules/eduPerson.inc:113 ../lib/modules/eduPerson.inc:160 #: ../lib/modules/eduPerson.inc:229 ../lib/modules/eduPerson.inc:276 -#: ../lib/modules/eduPerson.inc:548 +#: ../lib/modules/eduPerson.inc:542 msgid "Principal name" msgstr "Principal naam" @@ -12152,7 +12479,7 @@ msgstr "Profiel beheer" #: ../templates/selfService/profManage.php:221 #: ../templates/selfService/adminLogin.php:111 #: ../templates/profedit/profilepage.php:190 -#: ../templates/profedit/profilemain.php:357 ../help/help.inc:240 +#: ../templates/profedit/profilemain.php:357 ../help/help.inc:252 msgid "Profile name" msgstr "Profiel naam" @@ -12181,15 +12508,15 @@ msgstr "Profiel wachtwoorden zijn verschillend of leeg!" #: ../lib/modules/sambaSamAccount.inc:1775 #: ../lib/modules/sambaSamAccount.inc:1952 #: ../lib/modules/sambaSamAccount.inc:1973 -#: ../lib/modules/sambaSamAccount.inc:1989 ../lib/modules/windowsUser.inc:226 -#: ../lib/modules/windowsUser.inc:570 ../lib/modules/windowsUser.inc:766 -#: ../lib/modules/windowsUser.inc:861 ../lib/modules/windowsUser.inc:1022 -#: ../lib/modules/windowsUser.inc:1256 ../lib/modules/windowsUser.inc:2744 +#: ../lib/modules/sambaSamAccount.inc:1989 ../lib/modules/windowsUser.inc:228 +#: ../lib/modules/windowsUser.inc:580 ../lib/modules/windowsUser.inc:790 +#: ../lib/modules/windowsUser.inc:894 ../lib/modules/windowsUser.inc:1058 +#: ../lib/modules/windowsUser.inc:1302 ../lib/modules/windowsUser.inc:2911 msgid "Profile path" msgstr "Profiel pad" #: ../lib/modules/sambaSamAccount.inc:97 ../lib/modules/sambaSamAccount.inc:99 -#: ../lib/modules/windowsUser.inc:1022 ../lib/modules/windowsUser.inc:1023 +#: ../lib/modules/windowsUser.inc:1058 ../lib/modules/windowsUser.inc:1059 msgid "Profile path is invalid!" msgstr "Profiel pad is ongeldig!" @@ -12209,12 +12536,12 @@ msgstr "Programma's worden moeten worden uitgevoerd voor alle inkomende e-mails. msgid "Progress" msgstr "Voortgang" -#: ../help/help.inc:319 +#: ../help/help.inc:331 msgid "Protect the self service login with a captcha." msgstr "Bescherm de selfservice-login met een captcha." #: ../templates/config/confmain.php:473 -#: ../templates/selfService/adminMain.php:493 +#: ../templates/selfService/adminMain.php:494 msgid "Provider" msgstr "Provider" @@ -12227,15 +12554,18 @@ msgstr "Provider" msgid "Proxy URL" msgstr "Proxy URL" -#: ../lib/types/user.inc:111 ../lib/modules/windowsUser.inc:386 -#: ../lib/modules/windowsUser.inc:390 ../lib/modules/windowsUser.inc:601 -#: ../lib/modules/windowsUser.inc:871 ../lib/modules/windowsUser.inc:1143 -#: ../lib/modules/windowsUser.inc:2708 ../lib/modules/windowsUser.inc:2929 -#: ../lib/modules/windowsUser.inc:3601 +#: ../lib/types/user.inc:111 ../lib/modules/windowsLDSUser.inc:315 +#: ../lib/modules/windowsLDSUser.inc:319 ../lib/modules/windowsLDSUser.inc:458 +#: ../lib/modules/windowsLDSUser.inc:674 ../lib/modules/windowsLDSUser.inc:886 +#: ../lib/modules/windowsLDSUser.inc:1843 ../lib/modules/windowsLDSUser.inc:2185 +#: ../lib/modules/windowsUser.inc:388 ../lib/modules/windowsUser.inc:392 +#: ../lib/modules/windowsUser.inc:611 ../lib/modules/windowsUser.inc:907 +#: ../lib/modules/windowsUser.inc:1181 ../lib/modules/windowsUser.inc:2874 +#: ../lib/modules/windowsUser.inc:3100 ../lib/modules/windowsUser.inc:3695 msgid "Proxy-Addresses" msgstr "Proxy adres" -#: ../lib/modules/windowsUser.inc:956 +#: ../lib/modules/windowsUser.inc:992 msgid "Proxy-Addresses (read-only)" msgstr "Proxy-adressen (alleen-lezen)" @@ -12345,7 +12675,7 @@ msgstr "Vraag" msgid "Quota" msgstr "Quota" -#: ../lib/modules/quota.inc:781 +#: ../lib/modules/quota.inc:844 #, php-format msgid "Quota for %s on %s" msgstr "Quota voor: %s op %s" @@ -12365,8 +12695,8 @@ msgstr "Quota harde limiet" msgid "Quota has wrong format!" msgstr "Quotum heeft verkeerd format!" -#: ../lib/modules/imapAccess.inc:319 ../lib/modules/imapAccess.inc:328 -#: ../lib/modules/imapAccess.inc:766 +#: ../lib/modules/imapAccess.inc:322 ../lib/modules/imapAccess.inc:331 +#: ../lib/modules/imapAccess.inc:793 msgid "Quota limit (kB)" msgstr "Quota limiet (kB)" @@ -12385,7 +12715,7 @@ msgstr "Quota negeren" #: ../lib/modules/qmailUser.inc:526 ../lib/modules/qmailUser.inc:935 #: ../lib/modules/qmailUser.inc:1055 msgid "Quota size" -msgstr "Quotum omvang " +msgstr "Quotum omvang" #: ../lib/modules/zarafaUser.inc:114 ../lib/modules/zarafaUser.inc:244 #: ../lib/modules/zarafaUser.inc:372 ../lib/modules/zarafaUser.inc:433 @@ -12413,7 +12743,7 @@ msgstr "Quota waarschuwings limiet" #: ../templates/profedit/profilepage.php:216 ../lib/modules/dynamicList.inc:58 #: ../lib/modules/dynamicList.inc:245 ../lib/modules/selfRegistration.inc:97 #: ../lib/modules/selfRegistration.inc:200 ../lib/modules.inc:1075 -#: ../help/help.inc:236 ../help/help.inc:250 +#: ../help/help.inc:248 ../help/help.inc:262 msgid "RDN identifier" msgstr "RDN identificeerder" @@ -12453,18 +12783,18 @@ msgstr "Radio buttons" msgid "Radius profile for this user." msgstr "Radius profiel voor deze gebruiker." -#: ../lib/modules/range.inc:100 ../lib/modules/range.inc:508 -#: ../lib/modules/range.inc:568 +#: ../lib/modules/range.inc:99 ../lib/modules/range.inc:507 +#: ../lib/modules/range.inc:567 msgid "Range from" msgstr "Range van" -#: ../lib/modules/range.inc:104 ../lib/modules/range.inc:521 -#: ../lib/modules/range.inc:570 +#: ../lib/modules/range.inc:103 ../lib/modules/range.inc:520 +#: ../lib/modules/range.inc:569 msgid "Range to" msgstr "Range tot" -#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:82 -#: ../lib/modules/range.inc:130 ../lib/modules/range.inc:764 +#: ../lib/types/dhcp.inc:98 ../lib/modules/range.inc:81 +#: ../lib/modules/range.inc:129 ../lib/modules/range.inc:763 msgid "Ranges" msgstr "Ranges" @@ -12474,11 +12804,11 @@ msgstr "Lees" #: ../templates/config/confmain.php:217 ../templates/config/conftypes.php:268 #: ../lib/modules/customFields.inc:109 ../lib/modules/customFields.inc:1978 -#: ../help/help.inc:194 +#: ../help/help.inc:200 msgid "Read-only" msgstr "Alleen lezen" -#: ../lib/modules/inetOrgPerson.inc:3901 +#: ../lib/modules/inetOrgPerson.inc:4116 msgid "Read-only fields" msgstr "Alleen-lezen velden" @@ -12565,14 +12895,14 @@ msgid "Recursively copy all children of this object as well." msgstr "Recursief kopiëren van alle kinderen van dit object." #: ../templates/config/profmanage.php:207 ../templates/config/profmanage.php:262 -#: ../templates/config/mainmanage.php:484 ../templates/config/confmain.php:522 +#: ../templates/config/mainmanage.php:534 ../templates/config/confmain.php:522 #: ../lib/modules/selfRegistration.inc:417 -#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3165 -#: ../lib/modules/windowsUser.inc:2888 +#: ../lib/modules/sambaSamAccount.inc:2354 ../lib/modules/posixAccount.inc:3229 +#: ../lib/modules/windowsUser.inc:3059 msgid "Reenter password" msgstr "Wachtwoord opnieuw ingeven" -#: ../templates/config/confmain.php:236 ../help/help.inc:202 +#: ../templates/config/confmain.php:236 ../help/help.inc:208 msgid "Referential integrity overlay" msgstr "Overlay met referentiële integriteit" @@ -12585,7 +12915,7 @@ msgstr "Verwijzingen" #: ../templates/3rdParty/pla/lib/TemplateRender.php:984 #: ../templates/3rdParty/pla/lib/TemplateRender.php:985 #: ../templates/3rdParty/pla/lib/HTMLTree.php:237 -#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:888 +#: ../lib/modules/asteriskExtension.inc:454 ../lib/lists.inc:887 msgid "Refresh" msgstr "Verversen" @@ -12608,16 +12938,20 @@ msgstr "Vernieuwen boom" msgid "Register new account" msgstr "Registreer nieuwe account" -#: ../lib/2factor.inc:542 +#: ../templates/tools/webauthn.php:82 ../lib/modules/webauthn.inc:203 +msgid "Register new device" +msgstr "Registreer een nieuw apparaat" + +#: ../lib/2factor.inc:555 msgid "Register new key" msgstr "Registreer nieuwe sleutel" #: ../lib/modules/inetOrgPerson.inc:90 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:331 ../lib/modules/inetOrgPerson.inc:501 -#: ../lib/modules/inetOrgPerson.inc:626 ../lib/modules/inetOrgPerson.inc:1335 -#: ../lib/modules/inetOrgPerson.inc:1957 ../lib/modules/inetOrgPerson.inc:2025 -#: ../lib/modules/inetOrgPerson.inc:2670 ../lib/modules/inetOrgPerson.inc:3866 -#: ../lib/modules/inetOrgPerson.inc:3907 +#: ../lib/modules/inetOrgPerson.inc:626 ../lib/modules/inetOrgPerson.inc:1349 +#: ../lib/modules/inetOrgPerson.inc:1974 ../lib/modules/inetOrgPerson.inc:2043 +#: ../lib/modules/inetOrgPerson.inc:2722 ../lib/modules/inetOrgPerson.inc:4078 +#: ../lib/modules/inetOrgPerson.inc:4122 msgid "Registered address" msgstr "Geregistreerd adres" @@ -12625,6 +12959,11 @@ msgstr "Geregistreerd adres" msgid "Registered address, city" msgstr "Geregistreerd adres, plaats" +#: ../templates/misc/ajax.php:276 ../templates/tools/webauthn.php:105 +#: ../lib/modules/webauthn.inc:158 +msgid "Registration" +msgstr "Registratie" + #: ../lib/modules/asteriskAccount.inc:214 ../lib/modules/asteriskAccount.inc:290 #: ../lib/modules/asteriskAccount.inc:499 ../lib/modules/asteriskAccount.inc:723 #: ../lib/modules/asteriskAccount.inc:1008 @@ -12650,6 +12989,10 @@ msgstr "Registratie server" msgid "Reject if conflicts" msgstr "Afwijzen als het conflicteert" +#: ../templates/tools/webauthn.php:94 +msgid "Reload" +msgstr "Herladen" + #: ../templates/3rdParty/pla/lib/TemplateRender.php:982 msgid "Reloading" msgstr "Herladen" @@ -12658,21 +13001,22 @@ msgstr "Herladen" msgid "Remember user name" msgstr "Onthoud gebruikersnaam" -#: ../templates/config/mainmanage.php:423 +#: ../templates/config/mainmanage.php:454 msgid "Remote" -msgstr "loggen op afstand" +msgstr "Loggen op afstand" -#: ../templates/config/mainmanage.php:456 ../help/help.inc:180 +#: ../templates/config/mainmanage.php:485 ../help/help.inc:178 msgid "Remote server" msgstr "Externe server" #: ../templates/pdfedit/pdfpage.php:270 ../templates/pdfedit/pdfpage.php:345 #: ../lib/modules/locking389ds.inc:182 ../lib/modules/mitKerberos.inc:714 -#: ../lib/modules/qmailUser.inc:721 ../lib/modules/windowsHost.inc:160 -#: ../lib/modules/sambaSamAccount.inc:1496 ../lib/modules/windowsUser.inc:1689 -#: ../lib/modules/windowsUser.inc:2105 ../lib/modules/kolabUser.inc:723 -#: ../lib/modules/shadowAccount.inc:506 ../lib/modules/shadowAccount.inc:572 -#: ../lib/modules/freeRadius.inc:565 ../lib/modules/heimdalKerberos.inc:613 +#: ../lib/modules/windowsLDSUser.inc:1423 ../lib/modules/qmailUser.inc:721 +#: ../lib/modules/windowsHost.inc:201 ../lib/modules/sambaSamAccount.inc:1496 +#: ../lib/modules/windowsUser.inc:1735 ../lib/modules/windowsUser.inc:2151 +#: ../lib/modules/kolabUser.inc:722 ../lib/modules/shadowAccount.inc:506 +#: ../lib/modules/shadowAccount.inc:572 ../lib/modules/freeRadius.inc:565 +#: ../lib/modules/windowsLDSGroup.inc:184 ../lib/modules/heimdalKerberos.inc:613 #: ../lib/modules/windowsGroup.inc:358 msgid "Remove" msgstr "Verwijderen" @@ -12683,7 +13027,7 @@ msgstr "Verwijder de Asterisk voicemail extensie" #: ../lib/modules/authorizedServiceObject.inc:165 msgid "Remove Authorized Service extension" -msgstr "Verwijder de Authorized Service extensie " +msgstr "Verwijder de Authorized Service extensie" #: ../lib/modules/courierMailAccount.inc:286 msgid "Remove Courier mail extension" @@ -12695,7 +13039,7 @@ msgstr "Verwijder de EDU person extensie" #: ../lib/modules/freeRadius.inc:409 msgid "Remove FreeRadius extension" -msgstr "Verwijder de FreeRadius extensie " +msgstr "Verwijder de FreeRadius extensie" #: ../lib/modules/ipHost.inc:171 msgid "Remove IP address extension" @@ -12731,7 +13075,7 @@ msgstr "Verwijder de Samba 3 extensie" msgid "Remove Shadow account extension" msgstr "Verwijder de Shadow account extensie" -#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1698 +#: ../lib/modules/posixGroup.inc:265 ../lib/modules/posixAccount.inc:1753 msgid "Remove Unix extension" msgstr "Verwijder de Unix extensie" @@ -12744,6 +13088,11 @@ msgstr "Verwijder de YubiKey extensie" msgid "Remove Zarafa extension" msgstr "Verwijder de Zarafa extensie" +#: ../templates/misc/ajax.php:286 ../templates/tools/webauthn.php:115 +#: ../lib/modules/webauthn.inc:173 +msgid "Remove device" +msgstr "Verwijder apparaat" + #: ../lib/modules/customFields.inc:592 msgid "Remove extension" msgstr "Verwijder extensie" @@ -12764,8 +13113,8 @@ msgstr "Verwijder Host extensie" msgid "Remove mail routing extension" msgstr "Verwijder mail routering extensie" -#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1692 -#: ../lib/modules/inetOrgPerson.inc:1571 +#: ../lib/modules/posixGroup.inc:228 ../lib/modules/posixAccount.inc:1747 +#: ../lib/modules/inetOrgPerson.inc:1585 msgid "Remove password" msgstr "Verwijder wachtwoord" @@ -12781,10 +13130,10 @@ msgstr "Verwijder de qmail extensie" #: ../lib/modules/zarafaContact.inc:450 ../lib/modules/zarafaGroup.inc:464 #: ../lib/modules/device.inc:273 ../lib/modules/kopanoGroup.inc:415 #: ../lib/modules/zarafaUser.inc:953 ../lib/modules/kopanoContact.inc:401 -#: ../lib/modules/inetOrgPerson.inc:1782 ../lib/modules/kopanoUser.inc:875 -#: ../lib/modules/qmailGroup.inc:670 ../lib/modules/organizationalRole.inc:371 -#: ../lib/modules/windowsGroup.inc:685 ../lib/modules/groupOfNames.inc:400 -#: ../lib/modules/groupOfNames.inc:549 +#: ../lib/modules/inetOrgPerson.inc:1794 ../lib/modules/kopanoUser.inc:875 +#: ../lib/modules/windowsLDSGroup.inc:462 ../lib/modules/qmailGroup.inc:670 +#: ../lib/modules/organizationalRole.inc:371 ../lib/modules/windowsGroup.inc:685 +#: ../lib/modules/groupOfNames.inc:400 ../lib/modules/groupOfNames.inc:549 msgid "Remove selected entries" msgstr "Verwijder de geselecteerde items" @@ -12797,7 +13146,7 @@ msgstr "Verwijder dit account type" msgid "Remove user from alias entry." msgstr "Gebruiker verwijderen uit alias." -#: ../lib/modules/posixGroup.inc:1007 ../lib/modules/posixGroup.inc:1050 +#: ../lib/modules/posixGroup.inc:1008 ../lib/modules/posixGroup.inc:1051 msgid "Removed users" msgstr "Verwijderde gebruikers" @@ -12836,7 +13185,7 @@ msgstr "Hernoemen dit item" #: ../templates/config/profmanage.php:100 #: ../templates/selfService/profManage.php:77 msgid "Renamed profile." -msgstr "Hernoemd profiel" +msgstr "Hernoemd profiel." #: ../templates/3rdParty/pla/htdocs/import.php:30 #: ../templates/3rdParty/pla/htdocs/import.php:31 @@ -12850,14 +13199,14 @@ msgstr "Hernoemen" #: ../lib/modules/heimdalKerberos.inc:204 ../lib/modules/heimdalKerberos.inc:221 #: ../lib/modules/heimdalKerberos.inc:305 ../lib/modules/heimdalKerberos.inc:714 msgid "Renewable lifetime" -msgstr "hernieuwbare levensduur" +msgstr "Hernieuwbare levensduur" #: ../lib/modules/mitKerberos.inc:286 ../lib/modules/mitKerberos.inc:287 #: ../lib/modules/heimdalKerberos.inc:251 ../lib/modules/heimdalKerberos.inc:252 msgid "Renewable lifetime must be a number." msgstr "Hernieuwbare levensduur moet een getal zijn." -#: ../templates/lists/changePassword.php:359 +#: ../templates/lists/changePassword.php:363 #: ../lib/modules/passwordSelfReset.inc:1302 ../lib/modules.inc:1119 msgid "Repeat password" msgstr "Herhaal wachtwoord" @@ -12867,29 +13216,29 @@ msgid "Replaced $user or $group in homedir." msgstr "Vervangen $user of $group in homedirectory." #: ../templates/config/confmain.php:360 ../lib/passwordExpirationJob.inc:84 -#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:345 ../help/help.inc:382 +#: ../lib/passwordExpirationJob.inc:128 ../help/help.inc:357 ../help/help.inc:394 msgid "Reply-to address" msgstr "Antwoord-naar adres" -#: ../templates/config/confmain.php:618 +#: ../templates/config/confmain.php:620 msgid "Reply-to address for password mails is invalid." -msgstr "Antwoord-naar adres voor wachtwoord mail is ongeldig" +msgstr "Antwoord-naar adres voor wachtwoord mail is ongeldig." -#: ../lib/types/ppolicyType.inc:92 ../lib/modules/ppolicy.inc:127 -#: ../lib/modules/ppolicy.inc:153 ../lib/modules/ppolicy.inc:276 -#: ../lib/modules/ppolicy.inc:492 +#: ../lib/types/ppolicyType.inc:92 ../lib/modules/ppolicy.inc:128 +#: ../lib/modules/ppolicy.inc:158 ../lib/modules/ppolicy.inc:282 +#: ../lib/modules/ppolicy.inc:505 msgid "Require password change on first login" msgstr "Vereis wachtwoord verandering bij eerste aanmelding" -#: ../lib/modules/windowsUser.inc:223 ../lib/modules/windowsUser.inc:554 -#: ../lib/modules/windowsUser.inc:860 ../lib/modules/windowsUser.inc:1225 -#: ../lib/modules/windowsUser.inc:2738 +#: ../lib/modules/windowsUser.inc:225 ../lib/modules/windowsUser.inc:564 +#: ../lib/modules/windowsUser.inc:893 ../lib/modules/windowsUser.inc:1263 +#: ../lib/modules/windowsUser.inc:2905 msgid "Require smartcard" msgstr "Vereis smartcard" #: ../lib/modules/customFields.inc:113 ../lib/modules/customFields.inc:2263 msgid "Required" -msgstr "verplicht" +msgstr "Verplicht" #: ../templates/3rdParty/pla/lib/PageRender.php:393 msgid "Required attribute for object classes" @@ -12980,8 +13329,8 @@ msgid "Reverse DNS entries (\"PTR\" records)" msgstr "Reverse DNS entries (\"PTR\" records)" #: ../lib/modules/ddns.inc:105 ../lib/modules/ddns.inc:113 -#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:395 -#: ../lib/modules/ddns.inc:423 +#: ../lib/modules/ddns.inc:134 ../lib/modules/ddns.inc:391 +#: ../lib/modules/ddns.inc:419 msgid "Reverse zone name" msgstr "Reverse zone naam" @@ -13026,11 +13375,11 @@ msgid "Room" msgstr "Kamer" #: ../lib/modules/inetOrgPerson.inc:162 ../lib/modules/inetOrgPerson.inc:413 -#: ../lib/modules/inetOrgPerson.inc:507 ../lib/modules/inetOrgPerson.inc:701 -#: ../lib/modules/inetOrgPerson.inc:1372 ../lib/modules/inetOrgPerson.inc:1375 -#: ../lib/modules/inetOrgPerson.inc:1965 ../lib/modules/inetOrgPerson.inc:2031 -#: ../lib/modules/inetOrgPerson.inc:2703 ../lib/modules/inetOrgPerson.inc:3868 -#: ../lib/modules/inetOrgPerson.inc:3908 +#: ../lib/modules/inetOrgPerson.inc:507 ../lib/modules/inetOrgPerson.inc:705 +#: ../lib/modules/inetOrgPerson.inc:1386 ../lib/modules/inetOrgPerson.inc:1389 +#: ../lib/modules/inetOrgPerson.inc:1982 ../lib/modules/inetOrgPerson.inc:2049 +#: ../lib/modules/inetOrgPerson.inc:2761 ../lib/modules/inetOrgPerson.inc:4080 +#: ../lib/modules/inetOrgPerson.inc:4123 msgid "Room number" msgstr "Kamernummer" @@ -13083,7 +13432,7 @@ msgstr "Run gebruiker" msgid "Run users" msgstr "Run gebruikers" -#: ../lib/modules/windowsUser.inc:450 +#: ../lib/modules/windowsLDSUser.inc:375 ../lib/modules/windowsUser.inc:460 msgid "S.M." msgstr "S.M." @@ -13099,6 +13448,14 @@ msgstr "SIP-URI voor een realtime peer." msgid "SIP user agent identification." msgstr "SIP user agent identificatie." +#: ../help/help.inc:187 +msgid "SMTP password" +msgstr "SMTP wachtwoord" + +#: ../help/help.inc:185 +msgid "SMTP user name" +msgstr "SMTP gebruikersnaam" + #: ../lib/modules/bindDLZ.inc:369 ../lib/modules/bindDLZ.inc:375 #: ../lib/modules/bindDLZ.inc:381 ../lib/modules/bindDLZ.inc:387 #: ../lib/modules/bindDLZ.inc:393 ../lib/modules/bindDLZ.inc:400 @@ -13139,12 +13496,12 @@ msgstr "SSH verbinding" msgid "SSH connection established." msgstr "SSH verbinding tot stand gebracht." -#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:718 -#: ../help/help.inc:228 +#: ../templates/config/confmain.php:286 ../templates/config/confmain.php:720 +#: ../help/help.inc:234 msgid "SSH key file" msgstr "SSH sleutel bestand" -#: ../templates/config/confmain.php:287 ../help/help.inc:230 +#: ../templates/config/confmain.php:287 ../help/help.inc:236 msgid "SSH key password" msgstr "SSH sleutel bestand wachtwoord" @@ -13163,7 +13520,7 @@ msgstr "SSH publieke sleutels" msgid "SSL certificate" msgstr "SSL-certificaat" -#: ../templates/config/mainmanage.php:332 +#: ../templates/config/mainmanage.php:363 msgid "SSL certificates" msgstr "SSL-certificaten" @@ -13176,8 +13533,8 @@ msgstr "SSL-certificaten" msgid "SSL port" msgstr "SSL poort" -#: ../templates/lists/changePassword.php:409 -#: ../templates/lists/changePassword.php:446 +#: ../templates/lists/changePassword.php:413 +#: ../templates/lists/changePassword.php:450 msgid "Samba" msgstr "Samba" @@ -13195,14 +13552,14 @@ msgstr "Samba 3 domein SID is ongeldig!" msgid "Samba 3 domain entries" msgstr "Samba 3 domein entrees" -#: ../lib/modules/posixGroup.inc:549 ../lib/modules/posixAccount.inc:2142 +#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2206 msgid "Samba ID pool" msgstr "Samba ID pool" -#: ../lib/modules/posixGroup.inc:463 ../lib/modules/posixGroup.inc:574 -#: ../lib/modules/posixGroup.inc:715 ../lib/modules/posixAccount.inc:121 -#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2189 -#: ../lib/modules/posixAccount.inc:2260 +#: ../lib/modules/posixGroup.inc:464 ../lib/modules/posixGroup.inc:575 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:121 +#: ../lib/modules/posixAccount.inc:390 ../lib/modules/posixAccount.inc:2253 +#: ../lib/modules/posixAccount.inc:2324 msgid "Samba ID pool DN" msgstr "Samba ID pool DN" @@ -13261,11 +13618,11 @@ msgstr "Zaterdag" #: ../templates/config/moduleSettings.php:184 #: ../templates/config/conftypes.php:313 #: ../templates/selfService/selfServiceMain.php:455 -#: ../templates/selfService/adminMain.php:821 +#: ../templates/selfService/adminMain.php:825 #: ../templates/pdfedit/pdfpage.php:448 ../templates/profedit/profilepage.php:242 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1120 #: ../templates/3rdParty/pla/lib/TemplateRender.php:1124 -#: ../lib/modules/inetOrgPerson.inc:3075 ../lib/modules/customFields.inc:4409 +#: ../lib/modules/inetOrgPerson.inc:3170 ../lib/modules/customFields.inc:4409 #: ../lib/modules.inc:1293 msgid "Save" msgstr "Bewaar" @@ -13304,23 +13661,27 @@ msgstr "Schema test" #: ../lib/modules/eduPerson.inc:91 ../lib/modules/eduPerson.inc:95 #: ../lib/modules/eduPerson.inc:174 ../lib/modules/eduPerson.inc:232 -#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:547 +#: ../lib/modules/eduPerson.inc:284 ../lib/modules/eduPerson.inc:541 msgid "Scoped affiliations" msgstr "Scoped affiliaties" +#: ../templates/config/mainmanage.php:322 +msgid "Screen" +msgstr "Scherm" + #: ../help/help.inc:105 msgid "Script path" msgstr "Script pad" -#: ../templates/config/confmain.php:669 +#: ../templates/config/confmain.php:671 msgid "Script path is invalid!" msgstr "Script pad is ongeldig!" -#: ../templates/config/confmain.php:706 +#: ../templates/config/confmain.php:708 msgid "Script rights are invalid!" msgstr "Script rechten zijn ongeldig!" -#: ../templates/config/confmain.php:672 +#: ../templates/config/confmain.php:674 msgid "Script server is invalid!" msgstr "Script server is ongeldig!" @@ -13329,6 +13690,7 @@ msgid "Script servers" msgstr "Script servers" #: ../templates/tools/serverInfo.php:272 ../templates/tools/serverInfo.php:348 +#: ../templates/config/mainmanage.php:519 #: ../templates/3rdParty/pla/lib/QueryRender.php:60 #: ../templates/3rdParty/pla/lib/QueryRender.php:165 #: ../templates/3rdParty/pla/lib/ds_ldap_pla.php:577 @@ -13343,8 +13705,8 @@ msgstr "Zoekresultaten" #: ../lib/modules/dhcp_settings.inc:203 ../lib/modules/dhcp_settings.inc:207 #: ../lib/modules/dhcp_settings.inc:226 ../lib/modules/dhcp_settings.inc:235 -#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:606 -#: ../lib/modules/dhcp_settings.inc:712 +#: ../lib/modules/dhcp_settings.inc:283 ../lib/modules/dhcp_settings.inc:598 +#: ../lib/modules/dhcp_settings.inc:704 msgid "Search domains" msgstr "Zoekdomeinen" @@ -13352,7 +13714,7 @@ msgstr "Zoekdomeinen" #: ../templates/3rdParty/pla/lib/QueryRender.php:135 #: ../templates/3rdParty/pla/lib/export_functions.php:201 #: ../templates/3rdParty/pla/htdocs/export_form.php:81 ../lib/export.inc:256 -#: ../help/help.inc:369 +#: ../help/help.inc:381 msgid "Search filter" msgstr "Zoek filter" @@ -13372,11 +13734,11 @@ msgid "Search tree suffix for users" msgstr "Zoekboom achtervoegsel voor gebruikers" #: ../templates/config/confmain.php:504 -#: ../templates/selfService/adminMain.php:523 ../help/help.inc:324 +#: ../templates/selfService/adminMain.php:525 ../help/help.inc:336 msgid "Secret key" msgstr "Geheime sleutel" -#: ../templates/selfService/adminMain.php:556 ../help/help.inc:318 +#: ../templates/selfService/adminMain.php:560 ../help/help.inc:330 msgid "Secure login" msgstr "Beveiligde login" @@ -13416,7 +13778,7 @@ msgstr "" msgid "Security questions" msgstr "Beveiligingsvragen" -#: ../templates/config/mainmanage.php:319 ../templates/config/confmain.php:421 +#: ../templates/config/mainmanage.php:350 ../templates/config/confmain.php:421 msgid "Security settings" msgstr "Veiligheidsinstellingen" @@ -13424,7 +13786,7 @@ msgstr "Veiligheidsinstellingen" msgid "See also" msgstr "Zie ook" -#: ../lib/account.inc:1004 +#: ../lib/account.inc:1009 msgid "See the manual for instructions to solve this problem." msgstr "Zie de handleiding voor instructies om dit probleem op te lossen." @@ -13463,9 +13825,10 @@ msgstr "" msgid "Select user" msgstr "Selecteer gebruiker" -#: ../lib/modules/posixAccount.inc:1781 ../lib/modules/posixAccount.inc:1812 -#: ../lib/modules/windowsUser.inc:1794 ../lib/modules/nisnetgroup.inc:411 -#: ../lib/modules/groupOfNamesUser.inc:169 ../lib/modules/windowsGroup.inc:528 +#: ../lib/modules/windowsLDSUser.inc:1259 ../lib/modules/posixAccount.inc:1836 +#: ../lib/modules/posixAccount.inc:1867 ../lib/modules/windowsUser.inc:1840 +#: ../lib/modules/nisnetgroup.inc:411 ../lib/modules/windowsLDSGroup.inc:294 +#: ../lib/modules/groupOfNamesUser.inc:170 ../lib/modules/windowsGroup.inc:528 msgid "Selected groups" msgstr "Geselecteerde groepen" @@ -13477,19 +13840,19 @@ msgstr "Geslecteerde modules" msgid "Selected roles" msgstr "Geselecteerde rollen" -#: ../lib/modules/posixGroup.inc:321 ../lib/modules/asteriskExtension.inc:459 +#: ../lib/modules/posixGroup.inc:322 ../lib/modules/asteriskExtension.inc:459 msgid "Selected users" msgstr "Geselecteerde gebruikers" -#: ../templates/selfService/adminMain.php:336 +#: ../templates/selfService/adminMain.php:337 msgid "Self service configuration" msgstr "Zelf service configuratie" -#: ../templates/selfService/adminMain.php:360 +#: ../templates/selfService/adminMain.php:361 msgid "Self service configuration editor" msgstr "Zelf service configuratie editor" -#: ../templates/selfService/adminMain.php:366 +#: ../templates/selfService/adminMain.php:367 msgid "Self service login" msgstr "Zelf service login" @@ -13497,7 +13860,7 @@ msgstr "Zelf service login" msgid "Self service login attribute" msgstr "Zelf service login attribuut" -#: ../templates/selfService/adminMain.php:352 +#: ../templates/selfService/adminMain.php:353 msgid "Self service profile" msgstr "Self service profiel" @@ -13517,9 +13880,9 @@ msgstr "Stuur notificatie e-mail" msgid "Send password via mail" msgstr "Stuur wachtwoord via mail" -#: ../templates/lists/changePassword.php:320 -#: ../templates/lists/changePassword.php:364 ../templates/config/confmain.php:345 -#: ../lib/modules.inc:1144 ../help/help.inc:262 +#: ../templates/lists/changePassword.php:324 +#: ../templates/lists/changePassword.php:368 ../templates/config/confmain.php:345 +#: ../lib/modules.inc:1144 ../help/help.inc:274 msgid "Send via mail" msgstr "Verzenden via e-mail" @@ -13566,7 +13929,7 @@ msgstr "" "Stuurt het oude wachtwoord samen met het nieuwe wachtwoord wanneer de " "gebruiker een nieuw wachtwoord instelt." -#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:263 +#: ../lib/modules/inetOrgPerson.inc:671 ../help/help.inc:275 msgid "" "Sends the password to the user via mail. Please edit your LAM server profile " "to setup the mail settings." @@ -13574,7 +13937,7 @@ msgstr "" "Stuurt het wachtwoord aan de gebruiker via e-mail. Bewerk uw LAM server " "profiel om de mail-instellingen in te stellen." -#: ../templates/config/mainmanage.php:370 +#: ../templates/config/mainmanage.php:401 #: ../templates/selfService/selfService2Factor.php:168 #: ../templates/login2Factor.php:154 ../lib/types/host.inc:102 ../lib/env.inc:157 #: ../lib/modules/device.inc:68 ../lib/modules/device.inc:91 @@ -13599,17 +13962,17 @@ msgid "Server" msgstr "Server" #: ../templates/config/confmain.php:193 -#: ../templates/selfService/adminMain.php:420 ../lib/modules/qmailUser.inc:130 +#: ../templates/selfService/adminMain.php:421 ../lib/modules/qmailUser.inc:130 #: ../lib/modules/qmailUser.inc:209 ../lib/modules/qmailUser.inc:315 #: ../lib/modules/qmailUser.inc:381 ../lib/modules/qmailUser.inc:466 #: ../lib/modules/qmailUser.inc:939 ../lib/modules/qmailUser.inc:1061 -#: ../lib/modules/imapAccess.inc:81 ../lib/modules/imapAccess.inc:508 +#: ../lib/modules/imapAccess.inc:81 ../lib/modules/imapAccess.inc:516 #: ../help/help.inc:62 msgid "Server address" msgstr "Server adres" -#: ../templates/config/confmain.php:564 -#: ../templates/selfService/adminMain.php:245 +#: ../templates/config/confmain.php:563 +#: ../templates/selfService/adminMain.php:246 msgid "Server address is invalid!" msgstr "Server adres is ongeldig!" @@ -13622,12 +13985,12 @@ msgid "Server list" msgstr "Server lijst" #: ../templates/login.php:435 ../lib/configPages.inc:68 -#: ../lib/modules/imapAccess.inc:521 +#: ../lib/modules/imapAccess.inc:529 msgid "Server profile" msgstr "Server profiel" #: ../templates/config/confmain.php:190 -#: ../templates/selfService/adminMain.php:418 +#: ../templates/selfService/adminMain.php:419 msgid "Server settings" msgstr "Server instellingen" @@ -13651,7 +14014,7 @@ msgstr "Service naam (bv sshd, imap, ftp). Een service per regel." msgid "Services (\"SRV\" records)" msgstr "Service (\"SRV\" records)" -#: ../templates/config/mainmanage.php:321 ../help/help.inc:154 +#: ../templates/config/mainmanage.php:352 ../help/help.inc:154 msgid "Session timeout" msgstr "Sessie timeout" @@ -13661,8 +14024,8 @@ msgstr "Zet" #: ../lib/modules/sambaSamAccount.inc:1483 #: ../lib/modules/sambaSamAccount.inc:1486 -#: ../lib/modules/sambaSamAccount.inc:1489 ../lib/modules/windowsUser.inc:1676 -#: ../lib/modules/windowsUser.inc:1679 ../lib/modules/windowsUser.inc:1682 +#: ../lib/modules/sambaSamAccount.inc:1489 ../lib/modules/windowsUser.inc:1722 +#: ../lib/modules/windowsUser.inc:1725 ../lib/modules/windowsUser.inc:1728 #: ../lib/modules/shadowAccount.inc:493 ../lib/modules/shadowAccount.inc:496 #: ../lib/modules/shadowAccount.inc:499 msgid "Set also for Kerberos" @@ -13674,7 +14037,7 @@ msgid "Set also for Samba 3" msgstr "Zet ook voor Samba 3" #: ../lib/modules/mitKerberos.inc:701 ../lib/modules/sambaSamAccount.inc:1480 -#: ../lib/modules/windowsUser.inc:1673 ../lib/modules/heimdalKerberos.inc:601 +#: ../lib/modules/windowsUser.inc:1719 ../lib/modules/heimdalKerberos.inc:601 msgid "Set also for Shadow" msgstr "Zet ook voor Shadow" @@ -13687,7 +14050,7 @@ msgstr "Zet ook voor Windows" msgid "Set password" msgstr "Wachtwoord instellen" -#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2293 +#: ../lib/modules/posixAccount.inc:328 ../lib/modules/posixAccount.inc:2357 msgid "Set primary group as memberUid" msgstr "Stel primaire groep in als memberUid" @@ -13700,7 +14063,7 @@ msgstr "Profiel wachtwoord instellen" msgid "Set random password" msgstr "Stel willekeurige wachtwoorden in" -#: ../templates/lists/changePassword.php:350 +#: ../templates/lists/changePassword.php:354 msgid "Set specific password" msgstr "Stel specifiek wachtwoord in" @@ -13708,7 +14071,7 @@ msgstr "Stel specifiek wachtwoord in" msgid "Set the search results to 0 to retrieve all available records." msgstr "Stel de zoekresultaten in op 0 om alle beschikbare records op te halen." -#: ../templates/selfService/adminMain.php:660 +#: ../templates/selfService/adminMain.php:664 msgid "Set this field read-only." msgstr "Stel dit veld in op alleen-lezen." @@ -13724,7 +14087,7 @@ msgstr "" msgid "Set to \"true\" to create the mailbox." msgstr "Stel in op \"true\" om de mailbox te maken." -#: ../help/help.inc:239 +#: ../help/help.inc:251 msgid "Set to true to overwrite an existing LDAP entry." msgstr "Stel in op waar om een bestaand LDAP-item te overschrijven." @@ -13750,7 +14113,7 @@ msgid "Sets the delivery mode (e.g. disable mail forwarding)." msgstr "" "Hiermee stelt u de levering modus in (bijv. uitschakelen mail doorsturen)." -#: ../lib/modules/posixGroup.inc:435 +#: ../lib/modules/posixGroup.inc:436 msgid "Sets the group password." msgstr "Wachtwoord van de groep instellen." @@ -13761,7 +14124,7 @@ msgstr "" "Stelt de voorkeur voor de mailserver. Lagere waarden hebben een hogere " "prioriteit." -#: ../help/help.inc:195 +#: ../help/help.inc:201 msgid "Sets this account type to read-only." msgstr "Stel dit account type in op alleen-lezen." @@ -13794,8 +14157,8 @@ msgstr "" #: ../lib/types/user.inc:366 ../lib/types/user.inc:369 ../lib/types/user.inc:1076 #: ../lib/types/user.inc:1079 ../lib/modules/shadowAccount.inc:90 -#: ../lib/modules/shadowAccount.inc:875 ../lib/modules/shadowAccount.inc:978 -#: ../lib/modules/shadowAccount.inc:1072 +#: ../lib/modules/shadowAccount.inc:875 ../lib/modules/shadowAccount.inc:977 +#: ../lib/modules/shadowAccount.inc:1071 msgid "Shadow" msgstr "Schaduw" @@ -13852,6 +14215,7 @@ msgstr "Toon attributen" msgid "Show calendar" msgstr "Toon kalender" +#: ../lib/modules/windowsLDSGroup.inc:195 #: ../lib/modules/organizationalRole.inc:179 ../lib/modules/windowsGroup.inc:381 #: ../lib/modules/groupOfNames.inc:230 msgid "Show effective members" @@ -13888,16 +14252,16 @@ msgstr "" "teruggestuurd." #: ../templates/3rdParty/pla/htdocs/update_confirm.php:55 -#: ../templates/3rdParty/pla/htdocs/create_confirm.php:81 +#: ../templates/3rdParty/pla/htdocs/create_confirm.php:81 ../lib/2factor.inc:564 msgid "Skip" msgstr "Overslaan" -#: ../lib/modules/quota.inc:712 ../lib/modules/systemQuotas.inc:371 +#: ../lib/modules/quota.inc:775 ../lib/modules/systemQuotas.inc:371 msgid "Soft block" msgstr "Zacht blok" -#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:467 -#: ../lib/modules/quota.inc:564 ../lib/modules/systemQuotas.inc:126 +#: ../lib/modules/quota.inc:117 ../lib/modules/quota.inc:524 +#: ../lib/modules/quota.inc:624 ../lib/modules/systemQuotas.inc:126 msgid "Soft block limit" msgstr "Zachte blok limiet" @@ -13905,16 +14269,16 @@ msgstr "Zachte blok limiet" msgid "Soft block limit." msgstr "Zachte blok limiet." -#: ../lib/modules/quota.inc:714 ../lib/modules/systemQuotas.inc:373 +#: ../lib/modules/quota.inc:777 ../lib/modules/systemQuotas.inc:373 msgid "Soft inode" msgstr "Zachte inode" #: ../lib/modules/quota.inc:140 msgid "Soft inode (files) limit." -msgstr "Zachte inode (bestanden) limiet" +msgstr "Zachte inode (bestanden) limiet." -#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:468 -#: ../lib/modules/quota.inc:570 ../lib/modules/systemQuotas.inc:130 +#: ../lib/modules/quota.inc:139 ../lib/modules/quota.inc:525 +#: ../lib/modules/quota.inc:630 ../lib/modules/systemQuotas.inc:130 msgid "Soft inode limit" msgstr "Zachte inode limiet" @@ -13949,7 +14313,7 @@ msgstr "" msgid "Sorry this help number ({bold}%s{endbold}) is not available." msgstr "Sorry deze hulp-nummer ({bold}%s{endbold}) is niet beschikbaar." -#: ../lib/lists.inc:420 +#: ../lib/lists.inc:419 msgid "Sort sequence" msgstr "Sorteervolgorde" @@ -13994,7 +14358,7 @@ msgstr "" "Geeft aan of LAM automatisch verwijzingen moeten volgen. Activeer dit als u " "verwijzingen gebruiken in uw LDAP-directory." -#: ../help/help.inc:348 +#: ../help/help.inc:360 msgid "" "Specifies if password mails may be sent to mail addresses other than the " "user's LDAP mail address." @@ -14002,11 +14366,11 @@ msgstr "" "Bepaalt of wachtwoordmails naar andere mailadressen dan LDAP-mailadressen van " "de gebruiker kunnen worden gestuurd." -#: ../help/help.inc:344 +#: ../help/help.inc:356 msgid "Specifies if the mail should be sent as text or HTML." msgstr "Geeft aan of de mail moet worden verzonden als tekst-of HTML." -#: ../help/help.inc:175 +#: ../help/help.inc:173 msgid "" "Specifies if the password must not contain 3 or more characters of the user/" "first/last name." @@ -14014,7 +14378,7 @@ msgstr "" "Geeft aan of het wachtwoord maximaal 3 letters van de gebruikers-, voor of " "achternaam mag bevatten." -#: ../help/help.inc:173 +#: ../help/help.inc:171 msgid "Specifies if the password must not contain the user name." msgstr "Geeft aan of het wachtwoord niet de gebruikersnaam mag bevatten." @@ -14043,7 +14407,7 @@ msgstr "" msgid "Specifies if unknown clients are allowed." msgstr "Geeft aan of onbekend clients zijn toegestaan​​." -#: ../lib/modules/ppolicy.inc:132 +#: ../lib/modules/ppolicy.inc:133 msgid "Specifies if users are allowed to change their own passwords or not." msgstr "Geeft aan of gebruikers hun eigen wachtwoorden mogen wijzigen of niet." @@ -14096,7 +14460,7 @@ msgstr "Specificeert de maximaal toegestane bestandsgrootte in bytes." msgid "Specifies the maximum lifetime of a ticket in days." msgstr "Specificeert de maximale levensduur van een ticket in dagen." -#: ../lib/modules/ppolicy.inc:116 +#: ../lib/modules/ppolicy.inc:117 msgid "" "Specifies the maximum number of seconds before a password is due to expire " "that expiration warning messages will be returned to a user." @@ -14117,19 +14481,19 @@ msgid "Specifies the maximum renewable lifetime of a ticket in days." msgstr "" "Specificeert de maximale hernieuwbare levensduur van een ticket in dagen." -#: ../lib/modules/ppolicy.inc:120 +#: ../lib/modules/ppolicy.inc:121 msgid "" "Specifies the minimum number of characters that will be accepted in a password." msgstr "" "Specificeert het minimum aantal tekens dat zal worden geaccepteerd in een " "wachtwoord." -#: ../help/help.inc:171 +#: ../help/help.inc:169 msgid "Specifies the number of above password rules that must be fulfilled." msgstr "" "Geeft het aantal bovenstaande wachtwoordregels aan waaraan moet worden voldaan." -#: ../lib/modules/ppolicy.inc:108 +#: ../lib/modules/ppolicy.inc:109 msgid "" "Specifies the number of consecutive failed login attempts after which the " "password may not be used to login." @@ -14137,7 +14501,7 @@ msgstr "" "Specificeert het aantal opeenvolgende mislukte login pogingen, waarna het " "wachtwoord niet mag worden gebruikt om in te loggen." -#: ../lib/modules/ppolicy.inc:92 +#: ../lib/modules/ppolicy.inc:93 msgid "" "Specifies the number of previously used passwords which should be saved in the " "password history. New passwords can only be set if they are not in the " @@ -14147,7 +14511,7 @@ msgstr "" "wachtwoord geschiedenis. Nieuwe wachtwoorden kunnen alleen worden ingesteld " "als ze niet in de wachtwoord geschiedenis voorkomen." -#: ../lib/modules/ppolicy.inc:112 +#: ../lib/modules/ppolicy.inc:113 msgid "" "Specifies the number of seconds after which old consecutive failed login " "attempts are purged from the failure counter, even though no successful " @@ -14157,7 +14521,7 @@ msgstr "" "pogingen worden verwijderd, hoewel er geen succesvolle verificatie heeft " "plaatsgevonden." -#: ../lib/modules/ppolicy.inc:104 +#: ../lib/modules/ppolicy.inc:105 msgid "" "Specifies the number of seconds during which the password cannot be used to " "login due to too many consecutive failed bind attempts." @@ -14225,7 +14589,7 @@ msgstr "" "Geeft aan of de gebruiker een admin is. Systeembeheerders kunnen bv bedrijven " "maken, wijzigen en verwijderen." -#: ../lib/modules/ppolicy.inc:136 +#: ../lib/modules/ppolicy.inc:137 msgid "" "Specifies whether the user's existing password must be sent along with their " "new password when changing a password. Attention, LAM does not support " @@ -14248,16 +14612,19 @@ msgstr "Standaard LDAP-zoekfilter. Voorbeeld: (&(sn=Smith)(givenName=David))" msgid "Start time" msgstr "Begintijd" -#: ../lib/modules/windowsUser.inc:189 ../lib/modules/windowsUser.inc:484 -#: ../lib/modules/windowsUser.inc:853 ../lib/modules/windowsUser.inc:947 -#: ../lib/modules/windowsUser.inc:1136 ../lib/modules/windowsUser.inc:2699 -#: ../lib/modules/windowsUser.inc:2906 ../lib/modules/inetOrgPerson.inc:163 +#: ../lib/modules/windowsLDSUser.inc:173 ../lib/modules/windowsLDSUser.inc:409 +#: ../lib/modules/windowsLDSUser.inc:665 ../lib/modules/windowsLDSUser.inc:880 +#: ../lib/modules/windowsLDSUser.inc:1834 ../lib/modules/windowsUser.inc:191 +#: ../lib/modules/windowsUser.inc:494 ../lib/modules/windowsUser.inc:785 +#: ../lib/modules/windowsUser.inc:886 ../lib/modules/windowsUser.inc:983 +#: ../lib/modules/windowsUser.inc:1174 ../lib/modules/windowsUser.inc:2865 +#: ../lib/modules/windowsUser.inc:3077 ../lib/modules/inetOrgPerson.inc:163 #: ../lib/modules/inetOrgPerson.inc:453 ../lib/modules/inetOrgPerson.inc:495 -#: ../lib/modules/inetOrgPerson.inc:721 ../lib/modules/inetOrgPerson.inc:725 -#: ../lib/modules/inetOrgPerson.inc:1281 ../lib/modules/inetOrgPerson.inc:1284 -#: ../lib/modules/inetOrgPerson.inc:1969 ../lib/modules/inetOrgPerson.inc:2019 -#: ../lib/modules/inetOrgPerson.inc:2725 ../lib/modules/inetOrgPerson.inc:3864 -#: ../lib/modules/inetOrgPerson.inc:3906 +#: ../lib/modules/inetOrgPerson.inc:725 ../lib/modules/inetOrgPerson.inc:729 +#: ../lib/modules/inetOrgPerson.inc:1295 ../lib/modules/inetOrgPerson.inc:1298 +#: ../lib/modules/inetOrgPerson.inc:1986 ../lib/modules/inetOrgPerson.inc:2037 +#: ../lib/modules/inetOrgPerson.inc:2787 ../lib/modules/inetOrgPerson.inc:4076 +#: ../lib/modules/inetOrgPerson.inc:4121 msgid "State" msgstr "Staat" @@ -14281,18 +14648,20 @@ msgstr "Staat" msgid "Step %s of %s" msgstr "Stap %s van %s" -#: ../lib/modules/windowsUser.inc:426 ../lib/modules/inetOrgPerson.inc:238 +#: ../lib/modules/windowsLDSUser.inc:351 ../lib/modules/windowsUser.inc:436 +#: ../lib/modules/inetOrgPerson.inc:238 msgid "Steve" msgstr "Steve" -#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2417 -#: ../lib/modules/windowsUser.inc:438 ../lib/modules/windowsUser.inc:444 -#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2176 -#: ../lib/modules/asteriskVoicemail.inc:173 +#: ../lib/modules/windowsLDSUser.inc:363 ../lib/modules/windowsLDSUser.inc:369 +#: ../lib/modules/sambaSamAccount.inc:429 ../lib/modules/posixAccount.inc:2481 +#: ../lib/modules/windowsUser.inc:448 ../lib/modules/windowsUser.inc:454 +#: ../lib/modules/pykotaUser.inc:204 ../lib/modules/inetOrgPerson.inc:2194 +#: ../lib/modules/inetOrgPerson.inc:2219 ../lib/modules/asteriskVoicemail.inc:173 msgid "Steve Miller" msgstr "Steve Miller" -#: ../lib/modules/posixAccount.inc:2425 +#: ../lib/modules/posixAccount.inc:2489 msgid "Steve Miller,Room 2.14,123-123-1234,123-123-1234" msgstr "Steve Miller,Kamer 2.14,123-123-1234,123-123-1234" @@ -14308,17 +14677,20 @@ msgstr "" "Het opslaan van het wachtwoord in uw server profiel is ook mogelijk maar niet " "aanbevolen." -#: ../lib/types/user.inc:115 ../lib/modules/windowsUser.inc:193 -#: ../lib/modules/windowsUser.inc:460 ../lib/modules/windowsUser.inc:854 -#: ../lib/modules/windowsUser.inc:946 ../lib/modules/windowsUser.inc:1132 -#: ../lib/modules/windowsUser.inc:2700 ../lib/modules/windowsUser.inc:2905 +#: ../lib/types/user.inc:115 ../lib/modules/windowsLDSUser.inc:177 +#: ../lib/modules/windowsLDSUser.inc:385 ../lib/modules/windowsLDSUser.inc:666 +#: ../lib/modules/windowsLDSUser.inc:876 ../lib/modules/windowsLDSUser.inc:1835 +#: ../lib/modules/windowsUser.inc:195 ../lib/modules/windowsUser.inc:470 +#: ../lib/modules/windowsUser.inc:781 ../lib/modules/windowsUser.inc:887 +#: ../lib/modules/windowsUser.inc:982 ../lib/modules/windowsUser.inc:1170 +#: ../lib/modules/windowsUser.inc:2866 ../lib/modules/windowsUser.inc:3076 #: ../lib/modules/inetOrgPerson.inc:86 ../lib/modules/inetOrgPerson.inc:160 #: ../lib/modules/inetOrgPerson.inc:307 ../lib/modules/inetOrgPerson.inc:483 #: ../lib/modules/inetOrgPerson.inc:598 ../lib/modules/inetOrgPerson.inc:602 -#: ../lib/modules/inetOrgPerson.inc:1245 ../lib/modules/inetOrgPerson.inc:1248 -#: ../lib/modules/inetOrgPerson.inc:1951 ../lib/modules/inetOrgPerson.inc:2007 -#: ../lib/modules/inetOrgPerson.inc:2648 ../lib/modules/inetOrgPerson.inc:3860 -#: ../lib/modules/inetOrgPerson.inc:3903 +#: ../lib/modules/inetOrgPerson.inc:1259 ../lib/modules/inetOrgPerson.inc:1262 +#: ../lib/modules/inetOrgPerson.inc:1968 ../lib/modules/inetOrgPerson.inc:2025 +#: ../lib/modules/inetOrgPerson.inc:2696 ../lib/modules/inetOrgPerson.inc:4072 +#: ../lib/modules/inetOrgPerson.inc:4118 msgid "Street" msgstr "Straat" @@ -14343,8 +14715,8 @@ msgstr "Subgroepen" #: ../lib/modules/selfRegistration.inc:93 ../lib/modules/selfRegistration.inc:218 #: ../lib/modules/passwordSelfReset.inc:123 #: ../lib/modules/passwordSelfReset.inc:664 -#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:336 -#: ../help/help.inc:386 +#: ../lib/modules/passwordSelfReset.inc:680 ../help/help.inc:348 +#: ../help/help.inc:398 msgid "Subject" msgstr "Onderwerp" @@ -14357,14 +14729,14 @@ msgstr "Verzend" #: ../lib/types/dhcp.inc:97 ../lib/modules/dhcp_settings.inc:147 #: ../lib/modules/dhcp_settings.inc:214 ../lib/modules/dhcp_settings.inc:230 -#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:583 -#: ../lib/modules/dhcp_settings.inc:719 +#: ../lib/modules/dhcp_settings.inc:251 ../lib/modules/dhcp_settings.inc:575 +#: ../lib/modules/dhcp_settings.inc:711 msgid "Subnet" msgstr "Subnet" #: ../lib/modules/dhcp_settings.inc:187 ../lib/modules/dhcp_settings.inc:222 #: ../lib/modules/dhcp_settings.inc:242 ../lib/modules/dhcp_settings.inc:315 -#: ../lib/modules/dhcp_settings.inc:635 ../lib/modules/dhcp_settings.inc:716 +#: ../lib/modules/dhcp_settings.inc:627 ../lib/modules/dhcp_settings.inc:708 msgid "Subnet mask" msgstr "Subnet mask" @@ -14412,12 +14784,12 @@ msgstr "" msgid "Suffix" msgstr "Achtervoegsel" -#: ../lib/modules/posixGroup.inc:454 ../lib/modules/posixGroup.inc:583 +#: ../lib/modules/posixGroup.inc:455 ../lib/modules/posixGroup.inc:584 msgid "Suffix for GID/group name check" msgstr "Achtervoegsel voor GID/groep naam controle" -#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2204 -#: ../lib/modules/posixAccount.inc:2275 +#: ../lib/modules/posixAccount.inc:377 ../lib/modules/posixAccount.inc:2268 +#: ../lib/modules/posixAccount.inc:2339 msgid "Suffix for UID/user name check" msgstr "Achtervoegsel voor UID/gebruikersnaam control" @@ -14430,7 +14802,7 @@ msgstr "Achtervoegsel voor nieuwe gebruikers" msgid "Sunday" msgstr "Zondag" -#: ../templates/selfService/adminMain.php:677 +#: ../templates/selfService/adminMain.php:681 msgid "Switch back to default label." msgstr "Schakel terug naar standaard label." @@ -14448,7 +14820,7 @@ msgstr "" #: ../lib/modules/asteriskAccount.inc:95 ../lib/modules/asteriskVoicemail.inc:83 msgid "Sync Asterisk password with Unix password" -msgstr "Synchorniseer " +msgstr "Synchroniseer Asterisk-wachtwoord met Unix-wachtwoord" #: ../lib/modules/heimdalKerberos.inc:234 msgid "Sync Heimdal Kerberos password with Unix password" @@ -14475,15 +14847,15 @@ msgstr "Sync Samba NT wachtwoord met Unix wachtwoord" msgid "Sync Unix password with Windows password" msgstr "Synchorniseer unix wachtwoord met het Windows wachtwoord" -#: ../lib/modules/windowsUser.inc:1821 +#: ../lib/modules/windowsUser.inc:1867 msgid "Sync Unix to Windows" msgstr "Synchroniseer Unix naar Windows" -#: ../lib/modules/posixAccount.inc:1866 +#: ../lib/modules/posixAccount.inc:1921 msgid "Sync Unix to group of names" msgstr "Synchroniseer Unix naar een groep namen" -#: ../lib/modules/posixAccount.inc:1880 +#: ../lib/modules/posixAccount.inc:1935 msgid "Sync Windows to Unix" msgstr "Synchroniseer Windows naar Unix" @@ -14491,21 +14863,21 @@ msgstr "Synchroniseer Windows naar Unix" msgid "Sync fields with page layout" msgstr "Synchroniseer velden met pagina-indeling" -#: ../lib/modules/posixGroup.inc:331 ../lib/modules/posixGroup.inc:340 +#: ../lib/modules/posixGroup.inc:332 ../lib/modules/posixGroup.inc:341 #, php-format msgid "Sync from %s" msgstr "Synchronisatie van %s" -#: ../lib/modules/posixAccount.inc:1870 +#: ../lib/modules/posixAccount.inc:1925 msgid "Sync group of names to Unix" msgstr "Synchroniseer een groep met namen naar Unix" -#: ../lib/modules/windowsUser.inc:1826 +#: ../lib/modules/windowsUser.inc:1872 msgid "Sync group of names to Windows" msgstr "Synchroniseer een groep met namen naar Windows" -#: ../lib/modules/posixAccount.inc:1861 ../lib/modules/posixAccount.inc:2219 -#: ../lib/modules/windowsUser.inc:1817 ../lib/modules/windowsUser.inc:3637 +#: ../lib/modules/posixAccount.inc:1916 ../lib/modules/posixAccount.inc:2283 +#: ../lib/modules/windowsUser.inc:1863 ../lib/modules/windowsUser.inc:3732 msgid "Sync groups" msgstr "Synchroniseer groepen" @@ -14527,7 +14899,7 @@ msgstr "Syntaxen" msgid "System administrator" msgstr "Systeem administrator" -#: ../templates/config/mainmanage.php:421 +#: ../templates/config/mainmanage.php:452 msgid "System logging" msgstr "Systeem logging" @@ -14535,6 +14907,11 @@ msgstr "Systeem logging" msgid "TLS cannot be combined with ldaps://." msgstr "TLS kan niet gecombineerd worden met ldaps://." +#: ../templates/config/mainmanage.php:118 ../templates/config/mainmanage.php:342 +#: ../help/help.inc:244 +msgid "TO address" +msgstr "NAAR adres" + #: ../lib/modules/bindDLZ.inc:130 ../lib/modules/bindDLZ.inc:442 #: ../lib/modules/bindDLZ.inc:447 ../lib/modules/bindDLZ.inc:454 #: ../lib/modules/bindDLZ.inc:578 @@ -14547,7 +14924,7 @@ msgid "TXT records" msgstr "TXT records" #: ../lib/passwordExpirationJob.inc:496 ../lib/passwordExpirationJob.inc:530 -#: ../help/help.inc:416 +#: ../help/help.inc:428 msgid "Target DN" msgstr "Doel DN" @@ -14572,32 +14949,36 @@ msgstr "Doelserver profiel" msgid "Technical name" msgstr "Technische naam" -#: ../templates/lists/changePassword.php:287 ../lib/types/user.inc:116 -#: ../lib/types/user.inc:220 ../lib/modules/windowsUser.inc:197 -#: ../lib/modules/windowsUser.inc:508 ../lib/modules/windowsUser.inc:855 -#: ../lib/modules/windowsUser.inc:943 ../lib/modules/windowsUser.inc:998 -#: ../lib/modules/windowsUser.inc:1145 ../lib/modules/windowsUser.inc:2701 -#: ../lib/modules/windowsUser.inc:2899 ../lib/modules/inetOrgPerson.inc:72 +#: ../templates/lists/changePassword.php:291 ../lib/types/user.inc:116 +#: ../lib/types/user.inc:220 ../lib/modules/windowsLDSUser.inc:181 +#: ../lib/modules/windowsLDSUser.inc:427 ../lib/modules/windowsLDSUser.inc:667 +#: ../lib/modules/windowsLDSUser.inc:763 ../lib/modules/windowsLDSUser.inc:888 +#: ../lib/modules/windowsLDSUser.inc:1836 ../lib/modules/windowsUser.inc:199 +#: ../lib/modules/windowsUser.inc:518 ../lib/modules/windowsUser.inc:888 +#: ../lib/modules/windowsUser.inc:979 ../lib/modules/windowsUser.inc:1034 +#: ../lib/modules/windowsUser.inc:1183 ../lib/modules/windowsUser.inc:2867 +#: ../lib/modules/windowsUser.inc:3070 ../lib/modules/inetOrgPerson.inc:72 #: ../lib/modules/inetOrgPerson.inc:159 ../lib/modules/inetOrgPerson.inc:347 #: ../lib/modules/inetOrgPerson.inc:510 ../lib/modules/inetOrgPerson.inc:630 -#: ../lib/modules/inetOrgPerson.inc:634 ../lib/modules/inetOrgPerson.inc:1387 -#: ../lib/modules/inetOrgPerson.inc:1390 ../lib/modules/inetOrgPerson.inc:1958 -#: ../lib/modules/inetOrgPerson.inc:2034 ../lib/modules/inetOrgPerson.inc:2593 -#: ../lib/modules/inetOrgPerson.inc:3869 ../lib/modules/inetOrgPerson.inc:3909 +#: ../lib/modules/inetOrgPerson.inc:634 ../lib/modules/inetOrgPerson.inc:1401 +#: ../lib/modules/inetOrgPerson.inc:1404 ../lib/modules/inetOrgPerson.inc:1975 +#: ../lib/modules/inetOrgPerson.inc:2052 ../lib/modules/inetOrgPerson.inc:2631 +#: ../lib/modules/inetOrgPerson.inc:4081 ../lib/modules/inetOrgPerson.inc:4124 msgid "Telephone number" msgstr "Telefoonnummer" -#: ../lib/modules/windowsUser.inc:708 ../lib/modules/inetOrgPerson.inc:285 +#: ../lib/modules/windowsLDSUser.inc:539 ../lib/modules/windowsUser.inc:718 +#: ../lib/modules/inetOrgPerson.inc:285 msgid "Temp" msgstr "Tijdelijk" -#: ../lib/modules/windowsUser.inc:456 ../lib/modules/pykotaUser.inc:737 -#: ../lib/modules/inetOrgPerson.inc:261 +#: ../lib/modules/windowsLDSUser.inc:381 ../lib/modules/windowsUser.inc:466 +#: ../lib/modules/pykotaUser.inc:737 ../lib/modules/inetOrgPerson.inc:261 msgid "Temp, contract till December" msgstr "Tijdelijk, contract loopt tot december" #: ../templates/config/profmanage.php:223 -#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:198 +#: ../templates/3rdParty/pla/lib/TemplateRender.php:687 ../help/help.inc:204 msgid "Template" msgstr "Sjabloon" @@ -14625,8 +15006,8 @@ msgstr "Testen" #: ../lib/modules/bindDLZ.inc:1936 ../lib/modules/passwordSelfReset.inc:127 #: ../lib/modules/passwordSelfReset.inc:137 #: ../lib/modules/passwordSelfReset.inc:666 -#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:338 -#: ../help/help.inc:390 +#: ../lib/modules/passwordSelfReset.inc:682 ../help/help.inc:350 +#: ../help/help.inc:402 msgid "Text" msgstr "Tekst" @@ -14683,7 +15064,7 @@ msgid "" msgstr "" "De DNs van het directory items van de organisatie-eenheden van de persoon." -#: ../lib/modules/posixGroup.inc:451 +#: ../lib/modules/posixGroup.inc:452 msgid "" "The ID of this group was changed. You can update all user and host entries to " "the new group ID." @@ -14695,33 +15076,33 @@ msgstr "" msgid "The IMAP admin password is empty." msgstr "Het IMAP-admin wachtwoord is leeg." -#: ../templates/config/mainmanage.php:125 ../templates/config/mainmanage.php:149 +#: ../templates/config/mainmanage.php:137 ../templates/config/mainmanage.php:160 #: ../lib/modules/bindDLZ.inc:582 ../lib/modules/bindDLZ.inc:583 #, php-format msgid "The IP address %s is invalid!" msgstr "Het IP-adres %s is ongeldig!" -#: ../lib/modules/fixed_ip.inc:475 +#: ../lib/modules/fixed_ip.inc:473 msgid "The IP address does not match the subnet." msgstr "Het IP-adres komt niet overeen met het subnet." -#: ../lib/modules/fixed_ip.inc:478 +#: ../lib/modules/fixed_ip.inc:476 msgid "The IP address is already in use." msgstr "Het IP-adres is al in gebruik." #: ../lib/modules/ipHost.inc:123 ../lib/modules/ipHost.inc:124 #: ../lib/modules/asteriskAccount.inc:572 ../lib/modules/asteriskAccount.inc:573 #: ../lib/modules/ppolicyUser.inc:100 ../lib/modules/bindDLZXfr.inc:95 -#: ../lib/modules/bindDLZXfr.inc:96 ../lib/modules/range.inc:499 -#: ../lib/modules/range.inc:516 ../lib/modules/range.inc:576 -#: ../lib/modules/range.inc:593 ../lib/modules/freeRadius.inc:317 -#: ../lib/modules/freeRadius.inc:318 ../lib/modules/fixed_ip.inc:470 +#: ../lib/modules/bindDLZXfr.inc:96 ../lib/modules/range.inc:498 +#: ../lib/modules/range.inc:515 ../lib/modules/range.inc:575 +#: ../lib/modules/range.inc:592 ../lib/modules/freeRadius.inc:317 +#: ../lib/modules/freeRadius.inc:318 ../lib/modules/fixed_ip.inc:468 msgid "The IP address is invalid." -msgstr "Het IP-adres is ongeldig!" +msgstr "Het IP-adres is ongeldig." #: ../lib/modules/fixed_ip.inc:112 msgid "The IP address of the PC." -msgstr "Het IP-adres van de PC" +msgstr "Het IP-adres van de PC." #: ../lib/modules/dhcp_settings.inc:160 msgid "" @@ -14739,8 +15120,8 @@ msgstr "" "De IP-adressen van de NetBIOS-naam servers (bijv. \"123.123.123.123, " "123.123.123.124\")." -#: ../lib/modules/range.inc:503 ../lib/modules/range.inc:518 -#: ../lib/modules/range.inc:582 ../lib/modules/range.inc:596 +#: ../lib/modules/range.inc:502 ../lib/modules/range.inc:517 +#: ../lib/modules/range.inc:581 ../lib/modules/range.inc:595 msgid "The IP does not match the subnet." msgstr "Het IP-adres komt niet overeen met het subnet." @@ -14760,19 +15141,19 @@ msgstr "Het MAC adres van de pc. Voorbeeld: 11:22:33:44:55:aa" msgid "The Netbios server is invalid." msgstr "De netbios server is ongeldig." -#: ../lib/modules/fixed_ip.inc:440 +#: ../lib/modules/fixed_ip.inc:438 msgid "The PC name may not be longer than 20 characters." msgstr "De PC-naam mag niet langer zijn dan 20 tekens." -#: ../lib/modules/fixed_ip.inc:449 +#: ../lib/modules/fixed_ip.inc:447 msgid "The PC name may only contain A-Z, a-z and 0-9." -msgstr "De PC-naam mag alleen A-Z, a-z en 0-9 bevatten" +msgstr "De PC-naam mag alleen A-Z, a-z en 0-9 bevatten." -#: ../lib/modules/fixed_ip.inc:443 +#: ../lib/modules/fixed_ip.inc:441 msgid "The PC name needs to be at least 2 characters long." msgstr "De PC-naam moet minstens 2 tekens lang zijn." -#: ../help/help.inc:259 +#: ../help/help.inc:271 msgid "" "The PDF structure defines what information is exported as PDF file and how the " "pages are structured. You can manage the PDF structures in the PDF editor " @@ -14784,7 +15165,7 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/create.php:44 #: ../templates/3rdParty/pla/htdocs/create_confirm.php:38 -#: ../lib/modules/selfRegistration.inc:617 +#: ../lib/modules/selfRegistration.inc:622 msgid "The RDN field is empty." msgstr "Het RDN veld is leeg." @@ -14806,7 +15187,7 @@ msgstr "" "LAM de hoogste UID+1 gebruikt voor een nieuw account. Bepaal eenzelfde minimum " "UID of gebruik onafhankelijke reeksen." -#: ../templates/config/mainmanage.php:204 +#: ../templates/config/mainmanage.php:210 msgid "The URL for the external password check is invalid." msgstr "De URL voor de controle van het externe wachtwoord is ongeldig." @@ -14841,7 +15222,7 @@ msgstr "Het accounttype is ongeldig." msgid "The account will be locked after this date." msgstr "Het account zal worden gelocked na deze datum." -#: ../help/help.inc:243 ../help/help.inc:251 +#: ../help/help.inc:255 ../help/help.inc:263 msgid "The account will be saved under this LDAP suffix." msgstr "Het account zal bewaard worden onder dit LDAP achtervoegsel." @@ -14877,7 +15258,7 @@ msgstr "" "Het attribuut %s wordt niet ondersteund voor de object klasse %s door uw LDAP-" "server." -#: ../help/help.inc:331 +#: ../help/help.inc:343 msgid "" "The attribute (e.g. \"uid\") that contains the user name for the 2-factor " "service." @@ -14892,13 +15273,13 @@ msgstr "Het te wijzigen attribuut komt niet overeen met die opgegeven door %s." #: ../templates/3rdParty/pla/htdocs/delete_attr.php:31 msgid "The attribute value does not exist" -msgstr "De attribuut waarde bestaat niet " +msgstr "De attribuut waarde bestaat niet" #: ../lib/modules/asteriskAccount.inc:554 ../lib/modules/asteriskAccount.inc:556 msgid "The caller ID format is invalid." msgstr "Het caller-ID formaat is niet geldig." -#: ../templates/selfService/selfServiceLogin.php:116 +#: ../templates/selfService/selfServiceLogin.php:117 #: ../lib/modules/selfRegistration.inc:529 #: ../lib/modules/passwordSelfReset.inc:1139 msgid "The captcha was wrong." @@ -14912,8 +15293,9 @@ msgstr "De klasse namen bevatten ongeldige waarden." msgid "The class names may only contain ASCII characters." msgstr "De klas namen mogen alleen bestaan ​​uit ASCII-tekens." -#: ../templates/config/confmain.php:165 -#: ../templates/selfService/adminMain.php:375 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 +#: ../templates/selfService/adminMain.php:376 msgid "The config file is not writable." msgstr "Het config-bestand is niet beschrijfbaar." @@ -14941,6 +15323,22 @@ msgstr "De datum van verwijdering kan niet in het verleden liggen." msgid "The destination entry (%s) already exists." msgstr "Het bestemming item (%s) bestaat reeds." +#: ../templates/tools/webauthn.php:161 +msgid "The device failed to register." +msgstr "Het apparaat kan niet worden geregistreerd." + +#: ../templates/misc/ajax.php:321 ../templates/tools/webauthn.php:172 +msgid "The device was deleted." +msgstr "Het apparaat is verwijderd." + +#: ../templates/misc/ajax.php:324 +msgid "The device was not found." +msgstr "Het apparaat is niet gevonden." + +#: ../templates/tools/webauthn.php:158 +msgid "The device was registered." +msgstr "Het apparaat is geregistreerd." + #: ../lib/modules/dhcp_settings.inc:353 ../lib/modules/dhcp_settings.inc:354 msgid "" "The domain name includes invalid characters. Valid characters are A-Z, a-z, " @@ -14958,7 +15356,7 @@ msgstr "De domeinnaam van het subnet." msgid "The email address is invalid." msgstr "Het e-mailadres is ongeldig." -#: ../lib/modules/range.inc:105 +#: ../lib/modules/range.inc:104 msgid "The ending IP address of the range." msgstr "Het laatste IP-adres van de reeks." @@ -15001,7 +15399,7 @@ msgstr "De naam van het item." msgid "The environment name may only contain ASCII characters." msgstr "De omgeving naam mag alleen bestaan ​​uit ASCII-tekens." -#: ../help/help.inc:393 +#: ../help/help.inc:405 msgid "" "The expiration date can be added with @@EXPIRE_DATE_DDMMYYYY@@ or " "@@EXPIRE_DATE_YYYYMMDD@@." @@ -15022,11 +15420,11 @@ msgstr "Het expiratie datumformaat is DD.MM.YYYY HH:MM." msgid "The expiration time \"%s\" must be a number." msgstr "De vervaltijd \"%s\" moet een getal zijn." -#: ../help/help.inc:417 +#: ../help/help.inc:429 msgid "The expired accounts will be moved to this DN." msgstr "Het verlopen account zal worden verplaatst naar deze DN." -#: ../help/help.inc:368 +#: ../help/help.inc:380 msgid "The export will read entries of this DN." msgstr "De export zal items van deze DN lezen." @@ -15060,9 +15458,9 @@ msgid "" "setting" msgstr "" "Het bestand dat u uploade is te groot. Controleer de php.ini, upload_max_size " -"instelling " +"instelling" -#: ../lib/modules/posixGroup.inc:473 +#: ../lib/modules/posixGroup.inc:474 msgid "" "The filter can be any regular expression, e.g. \".*\" = any characters, \"^\" " "= line start, \"$\" = line end." @@ -15116,11 +15514,11 @@ msgstr "Het volledige DN van het nieuwe item bij het kopiëren van de bron item" msgid "The full name is invalid." msgstr "De volledige naam is ongeldig." -#: ../templates/login.php:527 +#: ../templates/login.php:537 msgid "The given user name matches multiple LDAP entries." msgstr "De opgegeven gebruikersnaam komt overeenkomt met meerdere LDAP items." -#: ../lib/modules/ppolicy.inc:100 +#: ../lib/modules/ppolicy.inc:101 msgid "" "The grace authentication limit specifies the number of times that an expired " "password may be used to login." @@ -15128,7 +15526,7 @@ msgstr "" "De grace authenticatie limiet bepaalt het aantal keren dat een verlopen " "wachtwoord nog kan worden gebruikt om in te loggen." -#: ../lib/modules/windowsGroup.inc:156 +#: ../lib/modules/windowsLDSGroup.inc:105 ../lib/modules/windowsGroup.inc:156 msgid "The group is managed by this contact person." msgstr "De groep wordt beheerd door deze contactpersoon." @@ -15136,7 +15534,7 @@ msgstr "De groep wordt beheerd door deze contactpersoon." msgid "The group names for this account." msgstr "De groepnamen voor dit account." -#: ../lib/modules/windowsUser.inc:241 +#: ../lib/modules/windowsLDSUser.inc:205 ../lib/modules/windowsUser.inc:243 msgid "The groups for this account. You can insert a group name or DN." msgstr "De groepen voor dit account. U kunt een groepsnaam of DN invoeren." @@ -15144,11 +15542,11 @@ msgstr "De groepen voor dit account. U kunt een groepsnaam of DN invoeren." msgid "The headline for a new section must contain at least one character." msgstr "De kopregel voor een nieuwe sectie moet tenminste een teken bevatten." -#: ../lib/modules/sambaSamAccount.inc:305 ../lib/modules/windowsUser.inc:264 +#: ../lib/modules/sambaSamAccount.inc:305 ../lib/modules/windowsUser.inc:266 msgid "The home directory will be connected under this drive letter." msgstr "Het home directory wordt verbonden onder deze stationsletter." -#: ../lib/modules/windowsHost.inc:86 +#: ../lib/modules/windowsHost.inc:88 msgid "The host is managed by this contact person." msgstr "Het systeem wordt beheerd door deze contactpersoon." @@ -15168,11 +15566,12 @@ msgstr "De hostnaam voor dit item." msgid "The host name is invalid." msgstr "De host naam is ongeldig." -#: ../lib/modules/windowsUser.inc:154 ../lib/modules/inetOrgPerson.inc:779 +#: ../lib/modules/windowsLDSUser.inc:138 ../lib/modules/windowsUser.inc:156 +#: ../lib/modules/inetOrgPerson.inc:783 msgid "The initials of the user's first names." msgstr "De initialen van de voornamen van de gebruiker." -#: ../help/help.inc:366 +#: ../help/help.inc:378 msgid "The input data must be formatted in LDIF format." msgstr "De invoergegevens moeten worden geformatteerd in LDIF-indeling." @@ -15246,7 +15645,7 @@ msgstr "" "De vermelde IP's werden gevonden in DHCP door het matchen van het MAC-adres " "van de host." -#: ../templates/config/mainmanage.php:188 +#: ../templates/config/mainmanage.php:194 msgid "" "The log file is empty or contains invalid characters! Valid characters are: a-" "z, A-Z, 0-9, /, \\, ., :, _ and -." @@ -15284,11 +15683,11 @@ msgid "" msgstr "" "De tekst van de bevestigings mail moet de wildcard @@resetLink@@ bevatten." -#: ../help/help.inc:391 +#: ../help/help.inc:403 msgid "The mail text of all mails." msgstr "De mail tekst van alle e-mails." -#: ../help/help.inc:339 +#: ../help/help.inc:351 msgid "The mail text of all password mails." msgstr "De mail tekst van alle wachtwoord mails." @@ -15437,13 +15836,13 @@ msgstr "" msgid "The object class %s is not supported by your LDAP server." msgstr "De object-klasse %s wordt niet ondersteund door uw LDAP-server." -#: ../lib/modules/windowsUser.inc:174 ../lib/modules/inetOrgPerson.inc:734 -#: ../lib/modules/inetOrgPerson.inc:738 +#: ../lib/modules/windowsLDSUser.inc:158 ../lib/modules/windowsUser.inc:176 +#: ../lib/modules/inetOrgPerson.inc:738 ../lib/modules/inetOrgPerson.inc:742 msgid "The office name of the user (e.g. YourCompany, Human Resources)." msgstr "" "De kantoornaam van de gebruiker (bijvoorbeeld uw bedrijf, Human Resources)." -#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1935 +#: ../templates/selfService/selfServiceMain.php:373 ../lib/modules.inc:1933 msgid "The operation was stopped because of the above errors." msgstr "De operatie werd gestopt omwille van de bovenstaande fouten." @@ -15565,15 +15964,15 @@ msgstr "" "Het wachtwoord van uw IMAP-admin gebruiker. De login naam voor de IMAP-admin " "gebruiker is opgeslagen in het LAM server profiel." -#: ../templates/lists/changePassword.php:647 ../lib/modules.inc:1206 +#: ../templates/lists/changePassword.php:651 ../lib/modules.inc:1206 msgid "The password was set to:" msgstr "Het wachtwoord is ingesteld op:" -#: ../lib/modules/range.inc:125 +#: ../lib/modules/range.inc:124 msgid "The pool's failover peer." msgstr "De failover peer van de poel." -#: ../lib/modules/range.inc:121 +#: ../lib/modules/range.inc:120 msgid "The pool's name." msgstr "Naam van de poel." @@ -15582,13 +15981,13 @@ msgstr "Naam van de poel." msgid "The port \"%s\" is invalid." msgstr "Poort \"%s\" is ongeldig." -#: ../lib/modules/windowsUser.inc:182 ../lib/modules/inetOrgPerson.inc:607 -#: ../lib/modules/inetOrgPerson.inc:611 +#: ../lib/modules/windowsLDSUser.inc:166 ../lib/modules/windowsUser.inc:184 +#: ../lib/modules/inetOrgPerson.inc:607 ../lib/modules/inetOrgPerson.inc:611 msgid "The post office box of the user's address." msgstr "Het postbusnummer van het adres van de gebruiker." -#: ../lib/modules/windowsUser.inc:178 ../lib/modules/inetOrgPerson.inc:615 -#: ../lib/modules/inetOrgPerson.inc:619 +#: ../lib/modules/windowsLDSUser.inc:162 ../lib/modules/windowsUser.inc:180 +#: ../lib/modules/inetOrgPerson.inc:615 ../lib/modules/inetOrgPerson.inc:619 msgid "The postal code of the user's address." msgstr "De postcode van het adres van de gebruiker." @@ -15638,11 +16037,11 @@ msgstr "" msgid "The quota must be entered as a floating point number." msgstr "Het quotum moet worden ingevoerd als een zwevendekommagetal." -#: ../lib/modules/range.inc:505 ../lib/modules/range.inc:585 +#: ../lib/modules/range.inc:504 ../lib/modules/range.inc:584 msgid "The range conflicts with another range." msgstr "De reeks conflicteert met een andere reeks." -#: ../lib/modules/range.inc:501 ../lib/modules/range.inc:579 +#: ../lib/modules/range.inc:500 ../lib/modules/range.inc:578 msgid "The range end needs to be greater than the range start." msgstr "Het reeks einde moet groter zijn dan het begin van de reeks." @@ -15656,7 +16055,7 @@ msgstr "De refresh tijd \"%s\" moet een getal zijn." msgid "The retry time \"%s\" must be a number." msgstr "De retry tijd \"%s\" moet een getal zijn." -#: ../lib/modules/inetOrgPerson.inc:702 +#: ../lib/modules/inetOrgPerson.inc:706 msgid "The room number of the employee's office." msgstr "Het kamernummer van het kantoor van de werknemer." @@ -15672,13 +16071,14 @@ msgstr "" "Het scripts zal worden uitgevoerd op uw web server in de context van de " "gebruiker van uw web server (bijv. apache/www-data)." -#: ../lib/modules/kopanoServer.inc:88 ../lib/modules/nisMailAliasUser.inc:105 -#: ../lib/modules/asteriskAccount.inc:243 ../lib/modules/qmailUser.inc:162 -#: ../lib/modules/zarafaGroup.inc:116 ../lib/modules/kopanoGroup.inc:115 -#: ../lib/modules/sambaSamAccount.inc:402 ../lib/modules/posixAccount.inc:325 -#: ../lib/modules/zarafaUser.inc:151 ../lib/modules/windowsUser.inc:256 -#: ../lib/modules/inetOrgPerson.inc:750 ../lib/modules/freeRadius.inc:128 -#: ../lib/modules/kopanoUser.inc:151 ../lib/modules/zarafaServer.inc:89 +#: ../lib/modules/windowsLDSUser.inc:212 ../lib/modules/kopanoServer.inc:88 +#: ../lib/modules/nisMailAliasUser.inc:105 ../lib/modules/asteriskAccount.inc:243 +#: ../lib/modules/qmailUser.inc:162 ../lib/modules/zarafaGroup.inc:116 +#: ../lib/modules/kopanoGroup.inc:115 ../lib/modules/sambaSamAccount.inc:402 +#: ../lib/modules/posixAccount.inc:325 ../lib/modules/zarafaUser.inc:151 +#: ../lib/modules/windowsUser.inc:258 ../lib/modules/inetOrgPerson.inc:754 +#: ../lib/modules/freeRadius.inc:128 ../lib/modules/kopanoUser.inc:151 +#: ../lib/modules/windowsLDSGroup.inc:81 ../lib/modules/zarafaServer.inc:89 #: ../lib/modules/qmailGroup.inc:85 ../lib/modules/organizationalRole.inc:86 #: ../lib/modules/passwordSelfReset.inc:164 ../lib/modules/windowsGroup.inc:116 #: ../lib/modules/groupOfNames.inc:85 @@ -15708,12 +16108,12 @@ msgstr "De servernaam \"%s\" is ongeldig." msgid "The source and destination DN are the same." msgstr "De bron en de bestemming DN zijn hetzelfde." -#: ../lib/modules/range.inc:101 +#: ../lib/modules/range.inc:100 msgid "The starting IP address of the range." msgstr "Het eerste IP-adres van de reeks." -#: ../lib/modules/windowsUser.inc:190 ../lib/modules/inetOrgPerson.inc:722 -#: ../lib/modules/inetOrgPerson.inc:726 +#: ../lib/modules/windowsLDSUser.inc:174 ../lib/modules/windowsUser.inc:192 +#: ../lib/modules/inetOrgPerson.inc:726 ../lib/modules/inetOrgPerson.inc:730 msgid "The state where the user resides or works." msgstr "De staat waar de gebruiker woont of werkt." @@ -15721,8 +16121,8 @@ msgstr "De staat waar de gebruiker woont of werkt." msgid "The static text must contain at least one character." msgstr "De statische tekst moet tenminste een teken bevatten." -#: ../lib/modules/windowsUser.inc:194 ../lib/modules/inetOrgPerson.inc:599 -#: ../lib/modules/inetOrgPerson.inc:603 +#: ../lib/modules/windowsLDSUser.inc:178 ../lib/modules/windowsUser.inc:196 +#: ../lib/modules/inetOrgPerson.inc:599 ../lib/modules/inetOrgPerson.inc:603 msgid "The street name of the user's address." msgstr "De straatnaam van het adres van de gebruiker." @@ -15730,11 +16130,11 @@ msgstr "De straatnaam van het adres van de gebruiker." msgid "The structural object class of the entries." msgstr "De structurele objectklasse van de items." -#: ../help/help.inc:387 +#: ../help/help.inc:399 msgid "The subject of all mails." msgstr "Het onderwerp van alle e-mails." -#: ../help/help.inc:337 +#: ../help/help.inc:349 msgid "The subject of all password mails." msgstr "Het onderwerp van alle wachtwoord e-mails." @@ -15855,7 +16255,7 @@ msgstr "De url attribuutwaarde moet beginnen met file://." msgid "The user account is non-active and login is disabled." msgstr "Het gebruikers account is niet-actieve en inloggen is uitgeschakeld." -#: ../lib/modules/windowsUser.inc:224 +#: ../lib/modules/windowsUser.inc:226 msgid "The user must log on using a smart card." msgstr "De gebruiker moet zich aanmelden met een smartcard." @@ -15872,52 +16272,55 @@ msgstr "De gebruikers alternatieve e-mailadres." msgid "The user's call groups." msgstr "De gebruikers bellen groepen." -#: ../lib/modules/qmailUser.inc:166 ../lib/modules/windowsUser.inc:162 -#: ../lib/modules/pykotaUser.inc:120 ../lib/modules/inetOrgPerson.inc:663 -#: ../lib/modules/inetOrgPerson.inc:667 +#: ../lib/modules/windowsLDSUser.inc:146 ../lib/modules/qmailUser.inc:166 +#: ../lib/modules/windowsUser.inc:164 ../lib/modules/pykotaUser.inc:120 +#: ../lib/modules/inetOrgPerson.inc:663 ../lib/modules/inetOrgPerson.inc:667 msgid "The user's email address." msgstr "Dit is een van de publieke e-mail adressen van de gebruiker." -#: ../lib/modules/windowsUser.inc:202 ../lib/modules/inetOrgPerson.inc:647 -#: ../lib/modules/inetOrgPerson.inc:651 +#: ../lib/modules/windowsLDSUser.inc:186 ../lib/modules/windowsUser.inc:204 +#: ../lib/modules/inetOrgPerson.inc:647 ../lib/modules/inetOrgPerson.inc:651 msgid "The user's fax number." -msgstr "De gebruikers faxnummer" +msgstr "De gebruikers faxnummer." -#: ../lib/modules/windowsUser.inc:375 ../lib/modules/inetOrgPerson.inc:639 -#: ../lib/modules/inetOrgPerson.inc:643 +#: ../lib/modules/windowsLDSUser.inc:304 ../lib/modules/windowsUser.inc:377 +#: ../lib/modules/inetOrgPerson.inc:639 ../lib/modules/inetOrgPerson.inc:643 msgid "The user's mobile number." -msgstr "De gebruikers mobielnummer" +msgstr "De gebruikers mobielnummer." -#: ../lib/modules/windowsUser.inc:347 ../lib/modules/windowsUser.inc:351 -#: ../lib/modules/inetOrgPerson.inc:767 ../lib/modules/inetOrgPerson.inc:771 +#: ../lib/modules/windowsLDSUser.inc:276 ../lib/modules/windowsLDSUser.inc:280 +#: ../lib/modules/windowsUser.inc:349 ../lib/modules/windowsUser.inc:353 +#: ../lib/modules/inetOrgPerson.inc:771 ../lib/modules/inetOrgPerson.inc:775 msgid "The user's organisation name." msgstr "De gebruikers naam van de organisatie." -#: ../lib/modules/windowsUser.inc:339 ../lib/modules/windowsUser.inc:343 -#: ../lib/modules/inetOrgPerson.inc:759 ../lib/modules/inetOrgPerson.inc:763 +#: ../lib/modules/windowsLDSUser.inc:268 ../lib/modules/windowsLDSUser.inc:272 +#: ../lib/modules/windowsUser.inc:341 ../lib/modules/windowsUser.inc:345 +#: ../lib/modules/inetOrgPerson.inc:763 ../lib/modules/inetOrgPerson.inc:767 msgid "The user's organisational unit." msgstr "De gebruiker organisatorische eenheid." -#: ../lib/modules/windowsUser.inc:363 ../lib/modules/inetOrgPerson.inc:655 -#: ../lib/modules/inetOrgPerson.inc:659 +#: ../lib/modules/windowsLDSUser.inc:292 ../lib/modules/windowsUser.inc:365 +#: ../lib/modules/inetOrgPerson.inc:655 ../lib/modules/inetOrgPerson.inc:659 msgid "The user's pager number." msgstr "Het pager nummer van de gebruiker." -#: ../lib/modules/inetOrgPerson.inc:694 ../lib/modules/inetOrgPerson.inc:698 +#: ../lib/modules/inetOrgPerson.inc:698 ../lib/modules/inetOrgPerson.inc:702 msgid "The user's private telephone number." msgstr "De gebruikers prive telefoonnummer." -#: ../lib/modules/windowsUser.inc:198 ../lib/modules/inetOrgPerson.inc:631 -#: ../lib/modules/inetOrgPerson.inc:635 +#: ../lib/modules/windowsLDSUser.inc:182 ../lib/modules/windowsUser.inc:200 +#: ../lib/modules/inetOrgPerson.inc:631 ../lib/modules/inetOrgPerson.inc:635 msgid "The user's telephone number." -msgstr "De gebruikers telefoonnummer" +msgstr "De gebruikers telefoonnummer." -#: ../lib/modules/windowsUser.inc:311 ../lib/modules/inetOrgPerson.inc:775 +#: ../lib/modules/windowsLDSUser.inc:240 ../lib/modules/windowsUser.inc:313 +#: ../lib/modules/inetOrgPerson.inc:779 msgid "The user's unique employee number." msgstr "De gebruikers unieke personeelsnummer." -#: ../lib/modules/windowsUser.inc:214 ../lib/modules/inetOrgPerson.inc:674 -#: ../lib/modules/inetOrgPerson.inc:678 +#: ../lib/modules/windowsLDSUser.inc:198 ../lib/modules/windowsUser.inc:216 +#: ../lib/modules/inetOrgPerson.inc:674 ../lib/modules/inetOrgPerson.inc:678 msgid "The user's web site (e.g. http://www.company.com)." msgstr "De website van de gebruiker (bv http://www.bedrijf.nl)." @@ -15952,7 +16355,7 @@ msgstr "De waren geen attributen gemarkeerd als een RDN attribuut." msgid "The wildcard for the account creation link is @@creationLink@@." msgstr "De wildcard voor het maken van een account link is @@creationLink@@." -#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:342 +#: ../lib/modules/passwordSelfReset.inc:130 ../help/help.inc:354 msgid "The wildcard for the new password is @@newPassword@@." msgstr "De wildcard voor het nieuwe wachtwoord is @@newPassword@@." @@ -15965,7 +16368,7 @@ msgstr "De wildcard voor het reset link is @@resetLink@@." msgid "There are %s members in group %s:" msgstr "Er zijn %s leden in de groep %s:" -#: ../lib/modules/posixGroup.inc:714 ../lib/modules/sambaGroupMapping.inc:576 +#: ../lib/modules/posixGroup.inc:715 ../lib/modules/sambaGroupMapping.inc:576 msgid "There are still users who have this group as their primary group." msgstr "Er zijn nog gebruikers die deze groep als primaire groep hebben." @@ -15981,7 +16384,7 @@ msgstr "Er is al een andere gebruiker met dit beller-ID." msgid "There is already another user with this mailbox name." msgstr "Er is al een andere gebruiker met deze mailbox naam." -#: ../lib/upload.inc:219 +#: ../lib/upload.inc:218 msgid "There were errors while uploading:" msgstr "Er zijn fouten opgetreden tijdens het uploaden:" @@ -15990,7 +16393,7 @@ msgstr "Er zijn fouten opgetreden tijdens het uploaden:" msgid "There will be %s updates done with this mass update" msgstr "Er zullen %s updates gedaan worden met deze bulk-update" -#: ../lib/modules/posixGroup.inc:439 +#: ../lib/modules/posixGroup.inc:440 msgid "" "These are the minimum and maximum numbers to use for group IDs when creating " "new group accounts. New group accounts will always get the highest number in " @@ -16022,7 +16425,7 @@ msgstr "" "verschillen met dan van de host. Nieuwe gebryuikers accounts zullen altijd het " "hoogste nummer + 1 toegewezen krijgen." -#: ../lib/modules/inetOrgPerson.inc:787 +#: ../lib/modules/inetOrgPerson.inc:791 msgid "These are the user's certificates." msgstr "Dit zijn de gebruiker z'n certificaten." @@ -16071,7 +16474,7 @@ msgid "" "This GID number is invalid! Please provide either a number or a group name." msgstr "De GID is niet valide! S.v.p. een getal of een groepsnaam opgeven." -#: ../help/help.inc:291 +#: ../help/help.inc:303 msgid "" "This HTML code will be placed on top of all self service pages. E.g. you can " "use this to place your custom logo. Any HTML code is permitted." @@ -16083,14 +16486,14 @@ msgstr "" msgid "This MAC address is already in use." msgstr "Het MAC-adres is al in gebruik." -#: ../lib/modules/fixed_ip.inc:452 +#: ../lib/modules/fixed_ip.inc:450 #, php-format msgid "This PC name already exists in %s. Use e.g. %s." msgstr "Deze pc-naam bestaat al in %s. Gebruik b.v. %s." -#: ../lib/modules/fixed_ip.inc:446 +#: ../lib/modules/fixed_ip.inc:444 msgid "This PC name already exists." -msgstr "Deze PC naam bestaat al!" +msgstr "Deze PC naam bestaat al." #: ../lib/modules/sambaSamAccount.inc:329 msgid "" @@ -16110,12 +16513,13 @@ msgstr "Dit attribuut is verplicht" #: ../templates/3rdParty/pla/lib/PageRender.php:401 msgid "This attribute is required for the RDN." -msgstr "Dit attribuut is verplicht voor het RDN" +msgstr "Dit attribuut is verplicht voor het RDN." -#: ../lib/modules/windowsUser.inc:307 ../lib/modules/inetOrgPerson.inc:730 +#: ../lib/modules/windowsLDSUser.inc:236 ../lib/modules/windowsUser.inc:309 +#: ../lib/modules/inetOrgPerson.inc:734 msgid "This can be used to specify if the user has a car license." msgstr "" -"Dit kan worden gebruikt om aan te geven of de gebruiker een rijbewijs heeft" +"Dit kan worden gebruikt om aan te geven of de gebruiker een rijbewijs heeft." #: ../templates/3rdParty/pla/htdocs/add_oclass_form.php:64 msgid "This change requires to add new attributes." @@ -16154,7 +16558,7 @@ msgid "" msgstr "" "Deze opdracht zal worden uitgevoerd om het Kerberos-wachtwoord te wijzigen. " "Normaal gesproken, zou het er ongeveer zo uitzien \"/usr/sbin/kadmin -K /etc/" -"heimdal/apache.keytab -p admin/admin passwd -p @@password@@ @@principal@@\". " +"heimdal/apache.keytab -p admin/admin passwd -p @@password@@ @@principal@@\"." #: ../lib/modules/customScripts.inc:110 msgid "This custom script setting includes an invalid account type." @@ -16201,8 +16605,8 @@ msgstr "Dit beschrijft de locatie van het apparaat." msgid "This describes the location of the host." msgstr "Dit beschrijft de locatie van de gastheer." -#: ../lib/modules/windowsUser.inc:158 ../lib/modules/inetOrgPerson.inc:714 -#: ../lib/modules/inetOrgPerson.inc:718 +#: ../lib/modules/windowsLDSUser.inc:142 ../lib/modules/windowsUser.inc:160 +#: ../lib/modules/inetOrgPerson.inc:718 ../lib/modules/inetOrgPerson.inc:722 msgid "This describes the location of the user." msgstr "Dit beschrijft de plaats van de gebruiker." @@ -16210,33 +16614,29 @@ msgstr "Dit beschrijft de plaats van de gebruiker." msgid "This document was automatically created by LDAP Account Manager" msgstr "Dit document is automatisch gecreeerd door LDAP Account Manager" -#: ../help/help.inc:405 +#: ../help/help.inc:417 msgid "This email address will be set as BCC address of all mails." msgstr "Dit e-mailadres zal worden ingesteld als BCC-adres van alle mails." -#: ../help/help.inc:401 +#: ../help/help.inc:413 msgid "This email address will be set as CC address of all mails." msgstr "Dit e-mailadres zal worden ingesteld als CC-adres van alle mails." -#: ../help/help.inc:383 +#: ../help/help.inc:245 +msgid "This email address will be set as TO address for the mails." +msgstr "Dit e-mailadres zal worden ingesteld als NAAR-adres van alle mails." + +#: ../help/help.inc:395 msgid "This email address will be set as reply-to address of all mails." msgstr "Dit email adres wordt als antwoord-naar adres gebruikt voor alle mails." -#: ../help/help.inc:346 +#: ../help/help.inc:358 msgid "This email address will be set as reply-to address of all password mails." msgstr "" "Dit email adres wordt als antwoord-naar adres gebruikt voor alle wachtwoord " "mails." -#: ../help/help.inc:379 -msgid "" -"This email address will be set as sender address of all mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"Dit e-mailadres wordt ingesteld als afzender adres voor alle mails. Indien " -"leeg dan zal het systeem default (php.ini) worden gebruikt." - -#: ../help/help.inc:335 +#: ../help/help.inc:347 msgid "" "This email address will be set as sender address of all password mails. If " "empty the system default (php.ini) will be used." @@ -16245,13 +16645,10 @@ msgstr "" "Indien leeg dan zal het systeem default (php.ini) worden gebruikt." #: ../lib/modules/selfRegistration.inc:90 -#: ../lib/modules/passwordSelfReset.inc:120 -msgid "" -"This email address will be set as sender address of the mails. If empty the " -"system default (php.ini) will be used." -msgstr "" -"Dit e-mailadres wordt ingesteld als afzender adres voorde mails. Indien leeg " -"dan zal het systeem default (php.ini) worden gebruikt." +#: ../lib/modules/passwordSelfReset.inc:120 ../help/help.inc:243 +#: ../help/help.inc:391 +msgid "This email address will be set as sender address of the mails." +msgstr "Dit e-mailadres wordt ingesteld als afzenderadres van de e-mails." #: ../lib/modules/passwordSelfReset.inc:100 msgid "This enables the password self reset function." @@ -16278,7 +16675,7 @@ msgstr "Deze entree is de basis voor een subtree met %s entrees." #: ../lib/modules/nsview.inc:109 ../lib/modules/customFields.inc:2759 #: ../lib/modules/customFields.inc:4751 msgid "This field is required." -msgstr "Dit veld is verplicht" +msgstr "Dit veld is verplicht." #: ../lib/modules/customFields.inc:114 msgid "" @@ -16299,15 +16696,15 @@ msgstr "Dit gecos veld is niet valide!" #: ../lib/modules/ipHost.inc:70 msgid "This is a comma separated list of IP addresses." -msgstr "Dit is een komma gescheiden lijst van IP adressen" +msgstr "Dit is een komma gescheiden lijst van IP adressen." #: ../lib/modules/ieee802device.inc:72 msgid "This is a comma separated list of MAC addresses." -msgstr "Dit is een komma gescheiden lijst van MAC adressen" +msgstr "Dit is een komma gescheiden lijst van MAC adressen." #: ../lib/modules/kolabUser.inc:132 ../lib/modules/kolabSharedFolder.inc:129 msgid "This is a comma separated list of eMail aliases." -msgstr "Dit is een komma gescheiden lijst van e-mail aliassen" +msgstr "Dit is een komma gescheiden lijst van e-mail aliassen." #: ../lib/modules/kolabUser.inc:116 msgid "This is a comma separated list of invitation policies." @@ -16315,7 +16712,7 @@ msgstr "Dit is een komma gescheiden lijst van invitatie beleidsregels." #: ../lib/modules/nisMailAlias.inc:89 msgid "This is a comma separated list of recipients." -msgstr "Dit is een komma gescheiden lijst van ontvangers" +msgstr "Dit is een komma gescheiden lijst van ontvangers." #: ../lib/modules/inetLocalMailRecipient.inc:87 msgid "This is a comma separated list of the users public email addresses." @@ -16349,15 +16746,16 @@ msgstr "" "Dit is een lijst met domeinnamen die de client moet gebruiken om niet-" "gekwalificeerde domeinnamen te vinden." -#: ../lib/modules/windowsGroup.inc:140 +#: ../lib/modules/windowsLDSGroup.inc:97 ../lib/modules/windowsGroup.inc:140 msgid "This is a list of groups this group is member of." msgstr "Dit is een lijst van leden van deze groep." -#: ../lib/modules/organizationalRole.inc:98 ../lib/modules/windowsGroup.inc:136 -#: ../lib/modules/groupOfNames.inc:105 +#: ../lib/modules/windowsLDSGroup.inc:93 ../lib/modules/organizationalRole.inc:98 +#: ../lib/modules/windowsGroup.inc:136 ../lib/modules/groupOfNames.inc:105 msgid "This is a list of members of this group." msgstr "Dit is een lijst van leden van deze groep." +#: ../lib/modules/windowsLDSGroup.inc:101 #: ../lib/modules/organizationalRole.inc:102 ../lib/modules/windowsGroup.inc:144 #: ../lib/modules/groupOfNames.inc:109 msgid "" @@ -16407,20 +16805,20 @@ msgstr "Dit is een dubbelepunt gescheiden lijst van gedelegeerden." msgid "This is a structural ObjectClass and cannot be removed." msgstr "Dit is een structurele objectClass en kan niet worden verwijderd." -#: ../help/help.inc:197 +#: ../help/help.inc:203 msgid "" "This is a workaround for Active Directory. Enable it if you get messages about " "size limit exceeded." msgstr "" "Dit is een tijdelijke oplossing voor de Active Directory welke u kunt " -"activeren wanneer u meldingen krijgt over limiet overschrijdingen. " +"activeren wanneer u meldingen krijgt over limiet overschrijdingen." #: ../lib/modules/courierMailAlias.inc:94 ../lib/modules/nisObject.inc:74 #: ../lib/modules/automount.inc:72 ../lib/modules/oracleService.inc:69 msgid "This is an optional description for this entry." msgstr "Dit is een optionele beschrijving voor dit item." -#: ../help/help.inc:279 +#: ../help/help.inc:291 msgid "" "This is needed to find the LDAP DNs of your user accounts. E.g. if you use " "\"uid\" and your user inputs \"miller\" then LAM will search for an account " @@ -16430,17 +16828,17 @@ msgstr "" "gebruik maakt \"uid\" en uw gebruikersnaam input is \"molenaar\" dan LAM zal " "zoeken naar een account met uid=molenaar." -#: ../lib/passwordExpirationJob.inc:530 ../lib/modules/zarafaDynamicGroup.inc:183 -#: ../lib/modules/ipHost.inc:125 ../lib/modules/posixGroup.inc:715 -#: ../lib/modules/posixGroup.inc:716 ../lib/modules/device.inc:128 -#: ../lib/modules/eduPerson.inc:245 ../lib/modules/eduPerson.inc:247 -#: ../lib/modules/zarafaAddressList.inc:155 ../lib/modules/posixAccount.inc:121 -#: ../lib/modules/posixAccount.inc:122 ../lib/modules/ppolicyUser.inc:548 -#: ../lib/modules/windowsUser.inc:1041 ../lib/modules/kopanoDynamicGroup.inc:187 -#: ../lib/modules/inetOrgPerson.inc:103 ../lib/modules/freeRadius.inc:330 -#: ../lib/modules/kopanoAddressList.inc:156 ../lib/modules/aliasEntry.inc:86 -#: ../lib/modules/qmailGroup.inc:398 ../lib/modules/qmailGroup.inc:399 -#: ../lib/modules/qmailGroup.inc:400 +#: ../lib/passwordExpirationJob.inc:530 ../lib/modules/windowsLDSUser.inc:791 +#: ../lib/modules/zarafaDynamicGroup.inc:183 ../lib/modules/ipHost.inc:125 +#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixGroup.inc:717 +#: ../lib/modules/device.inc:128 ../lib/modules/eduPerson.inc:245 +#: ../lib/modules/eduPerson.inc:247 ../lib/modules/zarafaAddressList.inc:155 +#: ../lib/modules/posixAccount.inc:121 ../lib/modules/posixAccount.inc:122 +#: ../lib/modules/ppolicyUser.inc:548 ../lib/modules/windowsUser.inc:1077 +#: ../lib/modules/kopanoDynamicGroup.inc:187 ../lib/modules/inetOrgPerson.inc:103 +#: ../lib/modules/freeRadius.inc:330 ../lib/modules/kopanoAddressList.inc:156 +#: ../lib/modules/aliasEntry.inc:86 ../lib/modules/qmailGroup.inc:398 +#: ../lib/modules/qmailGroup.inc:399 ../lib/modules/qmailGroup.inc:400 msgid "This is not a valid DN!" msgstr "Dit is geen geldige DN!" @@ -16473,7 +16871,7 @@ msgid "" msgstr "" "Dit is alleen nodig voor TLS / SSL-verbindingen. Standaard zal LAM de " "certificaat autoriteiten gebruiken die op uw systeem geïnstalleerd zijn. Als u " -"een eigen CA in uw bedrijf gebruikt, kunt u uw CA-certificaten hier uploaden. " +"een eigen CA in uw bedrijf gebruikt, kunt u uw CA-certificaten hier uploaden." #: ../lib/modules/asteriskAccount.inc:103 msgid "" @@ -16499,8 +16897,8 @@ msgstr "" msgid "This is the LDAP DN of the host's manager." msgstr "Dit is de LDAP-DN van de manager van de host." -#: ../lib/modules/windowsUser.inc:355 ../lib/modules/inetOrgPerson.inc:591 -#: ../lib/modules/inetOrgPerson.inc:595 +#: ../lib/modules/windowsLDSUser.inc:284 ../lib/modules/windowsUser.inc:357 +#: ../lib/modules/inetOrgPerson.inc:591 ../lib/modules/inetOrgPerson.inc:595 msgid "" "This is the LDAP DN of the user's manager. Use this property to represent " "hierarchies in your company." @@ -16552,7 +16950,8 @@ msgstr "Dit is het account Kerberos wachtwoord." msgid "This is the account's Windows password." msgstr "Dit is het Windows wachtwoord van het account." -#: ../lib/modules/sambaSamAccount.inc:261 ../lib/modules/windowsUser.inc:146 +#: ../lib/modules/windowsLDSUser.inc:130 ../lib/modules/sambaSamAccount.inc:261 +#: ../lib/modules/windowsUser.inc:148 msgid "This is the account's full name on Windows systems." msgstr "Dit is de volledige naam van het account op Windows systemen." @@ -16568,7 +16967,7 @@ msgstr "" "Dit is het antwoord op de beveiligingsvraag. Het stelt gebruikers in staat om " "zelf hun wachtwoord opnieuw in te stellen." -#: ../help/help.inc:217 +#: ../help/help.inc:223 msgid "This is the database name on the server." msgstr "Dit is de naam van de database op de server." @@ -16576,12 +16975,12 @@ msgstr "Dit is de naam van de database op de server." msgid "This is the date of the user's last login." msgstr "Dit is de datum van de laatste keer inloggen van de gebruiker." -#: ../lib/modules/mitKerberos.inc:124 ../lib/modules/windowsUser.inc:287 +#: ../lib/modules/mitKerberos.inc:124 ../lib/modules/windowsUser.inc:289 #: ../lib/modules/heimdalKerberos.inc:102 msgid "This is the date when the account will expire." msgstr "Dit is de datum waarop het account zal verlopen." -#: ../lib/modules/sambaSamAccount.inc:348 ../lib/modules/windowsUser.inc:291 +#: ../lib/modules/sambaSamAccount.inc:348 ../lib/modules/windowsUser.inc:293 #: ../lib/modules/shadowAccount.inc:195 msgid "This is the date when the account will expire. Format: DD-MM-YYYY" msgstr "Dit is de datum waarop het account zal verlopen. Format: DD-MM-YYYY" @@ -16607,11 +17006,11 @@ msgstr "Dit is het e-mailadres van het alias." msgid "This is the group name which will be shown in Windows." msgstr "Dit is de groepsnaam die getoond zal worden in Windows." -#: ../lib/modules/windowsHost.inc:82 +#: ../lib/modules/windowsHost.inc:84 msgid "This is the host's location (e.g. Munich, server room 3)." msgstr "Dit is de locatie van de host (bijvoorbeeld München, serverruimte 3)." -#: ../help/help.inc:237 ../help/help.inc:251 +#: ../help/help.inc:249 ../help/help.inc:263 msgid "" "This is the identifier for the relative DN value. It must be one of the given " "allowed LDAP attributes (e.g. user accounts usually use \"uid\" while groups " @@ -16635,7 +17034,7 @@ msgid "" "password?\" will be used." msgstr "" "Dit is het label voor de link naar de wachtwoord zelf reset. Indien leeg dan " -"zal \"Forgot password?\" worden gebruikt. " +"zal \"Forgot password?\" worden gebruikt." #: ../lib/modules/selfRegistration.inc:57 msgid "" @@ -16703,7 +17102,8 @@ msgstr "" "Dit is de algemene naam van de gebruiker; indien leeg wordt de voor- en " "achternaam gebruikt." -#: ../lib/modules/posixAccount.inc:444 ../lib/modules/windowsUser.inc:126 +#: ../lib/modules/windowsLDSUser.inc:114 ../lib/modules/posixAccount.inc:444 +#: ../lib/modules/windowsUser.inc:128 msgid "" "This is the natural name of the user. If empty, the first and last name or " "user name is used." @@ -16719,6 +17119,10 @@ msgstr "" "Dit is het aantal slechte aanmeldingspogingen (0 - 999) voordat de account " "wordt gedeactiveerd. 0 betekent ongelimiteerd pogingen." +#: ../lib/modules/windowsHost.inc:100 +msgid "This is the number of logins performed by this account." +msgstr "Dit is het aantal aanmeldingen dat door dit account is uitgevoerd." + #: ../lib/modules/sambaDomain.inc:105 msgid "" "This is the number of passwords which are saved to prevent that users reuse " @@ -16753,7 +17157,7 @@ msgid "" msgstr "" "Dit is de relatieve ID (vergelijkbaar met UID in Unix) voor Window accounts. " "Als het niet gevuld wordt zal LAM een RID bepalen op basis van de UID. Dit kan " -"ofwel een nummer of de naam van een speciale groep zijn." +"ofwel een nummer of de naam van een speciale groep zijn:" #: ../lib/modules/sambaSamAccount.inc:332 msgid "" @@ -16761,7 +17165,7 @@ msgid "" "a number or one of these special accounts: " msgstr "" "Dit is het relatieve ID nummer van je Windows account. Een nummer kan " -"ingegeven worden of een van de deze speciale accounts:" +"ingegeven worden of een van de deze speciale accounts: " #: ../lib/modules/sambaSamAccount.inc:336 msgid "" @@ -16777,7 +17181,7 @@ msgid "" "Cyrus with \"unixhierarchysep\" will require \"/\"." msgstr "" "Dit is het scheidingsteken voor de mailbox pad. Meestal is dit \".\" , Maar " -"bijv. Cyrus met \"unixhierarchysep\" vereist \"/\". " +"bijv. Cyrus met \"unixhierarchysep\" vereist \"/\"." #: ../help/help.inc:63 msgid "" @@ -16797,7 +17201,7 @@ msgstr "Dit is achtervoegsel voor de LDAP boom browser." msgid "" "This is the suffix of the LDAP tree from where to search for LDAP entries. " "Only entries in this subtree will be displayed in the account list. When " -"creating a new accont this will be the DN where it is saved." +"creating a new account this will be the DN where it is saved." msgstr "" "Dit is achtervoegsel voor de LDAP boom vanwaar LDAP entrees gezocht worden. " "Alleen entrees in deze subtree worden getoond in de account lijst. Wanneer een " @@ -16808,7 +17212,7 @@ msgid "This is the target email address for the user's mails." msgstr "Dit is het uiteindelijke e-mail adres voor de gebruikers berichten." #: ../lib/modules/customScripts.inc:52 ../lib/modules/uidObject.inc:59 -#: ../lib/modules/aliasEntry.inc:62 +#: ../lib/modules/webauthn.inc:63 ../lib/modules/aliasEntry.inc:62 msgid "This is the target of this alias entry." msgstr "Dit is een ontvanger voor deze alias." @@ -16846,6 +17250,12 @@ msgstr "" "Dit is de tijdzone van uw Samba server. LAM heeft deze informatie nodig voor " "het correct weergeven van logon uren." +#: ../lib/modules/inetOrgPerson.inc:686 +msgid "This is the user's preferred name to be used when displaying entries." +msgstr "" +"Dit is de voorkeursnaam van de gebruiker die wordt gebruikt bij het weergeven " +"van items." + #: ../lib/modules/sambaSamAccount.inc:323 msgid "This is the user's primary Windows group." msgstr "Dit is de primaire Windows groep van de gebruiker." @@ -16871,14 +17281,14 @@ msgstr "" msgid "This is used to mark this account as resource." msgstr "Dit wordt gebruikt om deze account te markeren als bron." -#: ../lib/modules/qmailUser.inc:1100 ../lib/modules/windowsUser.inc:4093 -#: ../lib/modules/shadowAccount.inc:1081 ../lib/modules/freeRadius.inc:825 +#: ../lib/modules/qmailUser.inc:1100 ../lib/modules/windowsUser.inc:4188 +#: ../lib/modules/shadowAccount.inc:1080 ../lib/modules/freeRadius.inc:825 msgid "This job deletes or moves user accounts when they expire." msgstr "" "Deze taak verwijdert of verplaatst gebruikersaccounts wanneer ze verlopen." -#: ../lib/modules/qmailUser.inc:1169 ../lib/modules/windowsUser.inc:4001 -#: ../lib/modules/shadowAccount.inc:986 ../lib/modules/freeRadius.inc:893 +#: ../lib/modules/qmailUser.inc:1169 ../lib/modules/windowsUser.inc:4096 +#: ../lib/modules/shadowAccount.inc:985 ../lib/modules/freeRadius.inc:892 msgid "" "This job sends out emails to inform your users that their account will expire " "soon." @@ -16914,7 +17324,7 @@ msgstr "" "Dit bericht wordt weergegeven als de waarde in het veld niet overeenkomt met " "de validatie expressie." -#: ../help/help.inc:201 +#: ../help/help.inc:207 msgid "" "This name is shown on the login page as server name. Defaults to server " "address if empty." @@ -16955,7 +17365,7 @@ msgstr "Deze combinatie van extensie naam en prioriteit bestaat reeds." msgid "This program is run after the login." msgstr "Dit programma wordt uitgevoerd nadat er is ingelogd." -#: ../lib/2factor.inc:548 +#: ../lib/2factor.inc:561 msgid "This service requires a browser with \"WebAuthn\" support." msgstr "Deze service vereist een browser met ondersteuning voor \"WebAuthn\"." @@ -16993,18 +17403,18 @@ msgstr "" msgid "This specifies what to do when the client connection is broken." msgstr "Dit geeft aan wat te doen wanneer de client verbinding wordt verbroken." -#: ../help/help.inc:327 +#: ../help/help.inc:339 msgid "This text is displayed as footer on the self service login page." msgstr "" "Deze tekst wordt als voettekst weergegeven op de inlogpagina voor selfservice." -#: ../help/help.inc:329 +#: ../help/help.inc:341 msgid "This text is displayed as footer on the self service main page." msgstr "" "Deze tekst wordt als voettekst weergegeven op de hoofdpagina van de " "zelfbediening." -#: ../help/help.inc:311 +#: ../help/help.inc:323 msgid "" "This text is displayed on top of the 2-factor page. You can also input HTML " "code here." @@ -17012,7 +17422,7 @@ msgstr "" "Deze tekst wordt getoond op de top van de 2-factor pagina. U kunt hier ook " "HTML-codes invoeren." -#: ../help/help.inc:283 +#: ../help/help.inc:295 msgid "" "This text is displayed on top of the self service login page. You can also " "input HTML code here." @@ -17020,7 +17430,7 @@ msgstr "" "Deze tekst wordt getoond op de top van de zelf-service login pagina. U kunt " "hier ook HTML-codes invoeren." -#: ../help/help.inc:285 +#: ../help/help.inc:297 msgid "" "This text is displayed on top of the self service main page. You can also " "input HTML code here." @@ -17028,7 +17438,7 @@ msgstr "" "Deze tekst wordt getoond op de top van de zelf-service hoofd pagina. U kunt " "hier ook HTML-codes invoeren." -#: ../help/help.inc:295 +#: ../help/help.inc:307 msgid "" "This text is placed as label for the password field on the login page. LAM " "will use \"Password\" if you do not enter any text." @@ -17036,7 +17446,7 @@ msgstr "" "Deze tekst is geplaatst als label voor het veld voor het wachtwoord op de " "inlogpagina. LAM zal gebruik maken van\"Password\" als u geen tekst invoert." -#: ../help/help.inc:281 +#: ../help/help.inc:293 msgid "" "This text should shortly describe your selected LDAP search attribute (e.g. " "email or user name)." @@ -17062,11 +17472,11 @@ msgid "This tool allows you to customize the PDF pages." msgstr "Dit hulpmiddel maakt het mogelijk de PDF pagina's aan te passen." #: ../templates/lists/changePassword.php:75 -#: ../templates/lists/changePassword.php:243 +#: ../templates/lists/changePassword.php:247 msgid "This user is not supported or was not found." msgstr "Deze gebruiker wordt niet ondersteund of is niet gevonden." -#: ../lib/modules/windowsUser.inc:138 +#: ../lib/modules/windowsUser.inc:140 msgid "This user name is only used for old Windows versions (e.g. NT4, W98)." msgstr "" "Deze gebruikersnaam wordt alleen gebruikt voor oude Windows-versies " @@ -17102,7 +17512,7 @@ msgstr "Deze waarde kan alleen maar \"Room\" of \"Equipment\" zijn." #: ../lib/modules/kopanoUser.inc:448 ../lib/modules/kopanoUser.inc:449 #: ../lib/modules/kopanoUser.inc:450 ../lib/modules/kopanoAddressList.inc:157 #: ../lib/modules/kopanoAddressList.inc:158 ../lib/modules/zarafaServer.inc:156 -#: ../lib/modules/imapAccess.inc:166 +#: ../lib/modules/imapAccess.inc:167 msgid "This value can only be \"true\" or \"false\"." msgstr "Deze waarde kan alleen maar \"true\" of \"false\" zijn." @@ -17110,13 +17520,13 @@ msgstr "Deze waarde kan alleen maar \"true\" of \"false\" zijn." msgid "This value can only be \"true\", \"false\" or \"system\"." msgstr "Deze waarde kan alleen maar \"true\", \"false\" of \"system\" zijn." -#: ../lib/modules/posixGroup.inc:713 +#: ../lib/modules/posixGroup.inc:714 msgid "This value must be a list of user names separated by semicolons." msgstr "" "Deze waarde moet een lijst met gebruikersnamen zijn gescheiden door een " "puntkomma." -#: ../help/help.inc:352 +#: ../help/help.inc:364 msgid "This will create a new organisational unit under the selected one." msgstr "" "Dit zal een nieuwe organisatie eenheid creëren onder de geselecteerde eenheid." @@ -17127,7 +17537,7 @@ msgstr "" "Dit zal leiden tot het aanmaken van de homedirectory van de gebruiker op de " "opgegeven server." -#: ../help/help.inc:354 +#: ../help/help.inc:366 msgid "" "This will delete the selected organisational unit. The OU has to be empty." msgstr "" @@ -17137,7 +17547,7 @@ msgstr "" msgid "This will delete the selected profile." msgstr "Dit zal het geselecteerde profiel verwijderen." -#: ../help/help.inc:307 +#: ../help/help.inc:319 msgid "" "This will disable the check of the SSL certificates for the 2-factor " "authentication service. Not recommended for production usage." @@ -17147,7 +17557,7 @@ msgstr "" #: ../lib/modules/kolabGroup.inc:109 ../lib/modules/puppetClient.inc:116 #: ../lib/modules/qmailUser.inc:230 ../lib/modules/zarafaContact.inc:91 -#: ../lib/modules/posixGroup.inc:481 ../lib/modules/eduPerson.inc:150 +#: ../lib/modules/posixGroup.inc:482 ../lib/modules/eduPerson.inc:150 #: ../lib/modules/pykotaGroup.inc:124 ../lib/modules/sambaSamAccount.inc:405 #: ../lib/modules/posixAccount.inc:316 ../lib/modules/zarafaUser.inc:155 #: ../lib/modules/kopanoContact.inc:91 ../lib/modules/courierMailAccount.inc:133 @@ -17160,7 +17570,7 @@ msgid "This will enable the extension automatically if this profile is loaded." msgstr "" "Als dit profiel wordt geladen, dan zal dit de extensie automatisch activeren." -#: ../lib/modules/posixGroup.inc:485 +#: ../lib/modules/posixGroup.inc:486 msgid "This will force syncing with group of names members of the same group." msgstr "" "Dit zal synchronisatie forceren met groep namen leden van dezelfde groep." @@ -17182,15 +17592,15 @@ msgstr "Dit zal niet de posixAccount objectclass toevoegen aan het account." msgid "This will reset the host's password to a default value." msgstr "Dtr zal het wachtwoord van de host terugzetten naar de default waarde." -#: ../templates/lists/changePassword.php:309 +#: ../templates/lists/changePassword.php:313 msgid "" "This will set a random password and display it on the screen or send it to the " "user via mail." msgstr "" "Dit zal een willekeurig wachtwoord genereren en weergeven op het scherm of via " -"e-mail sturen naar de gebruiker. " +"e-mail sturen naar de gebruiker." -#: ../help/help.inc:315 +#: ../help/help.inc:327 msgid "" "This will set a random password and display it on the screen or send it to the " "user via mail. Please edit your LAM server profile to setup the mail settings." @@ -17232,16 +17642,18 @@ msgstr "Tijd" msgid "Time limit" msgstr "Tijdslimiet" -#: ../lib/modules/windowsUser.inc:283 +#: ../lib/modules/windowsLDSUser.inc:220 ../lib/modules/windowsHost.inc:96 +#: ../lib/modules/windowsUser.inc:285 msgid "Time of user's last login." msgstr "Tijd van de laatste login van de gebruiker." -#: ../lib/modules/windowsUser.inc:279 +#: ../lib/modules/windowsLDSUser.inc:224 ../lib/modules/windowsHost.inc:92 +#: ../lib/modules/windowsUser.inc:281 msgid "Time of user's last password change." msgstr "Tijd van de laatste wijziging van het wachtwoord van de gebruiker." #: ../templates/config/confmain.php:276 -#: ../templates/selfService/adminMain.php:478 +#: ../templates/selfService/adminMain.php:479 #: ../lib/modules/sambaSamAccount.inc:350 ../help/help.inc:111 msgid "Time zone" msgstr "Tijdzone" @@ -17333,7 +17745,7 @@ msgstr "Achtervoegsel van de boom" msgid "Tree view" msgstr "LDAP boom" -#: ../templates/config/confmain.php:662 +#: ../templates/config/confmain.php:664 msgid "TreeSuffix is invalid!" msgstr "Achtervoegsel van de boom is niet valide!" @@ -17362,8 +17774,8 @@ msgstr "Type" msgid "UID" msgstr "UID" -#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2170 -#: ../lib/modules/posixAccount.inc:2241 +#: ../lib/modules/posixAccount.inc:385 ../lib/modules/posixAccount.inc:2234 +#: ../lib/modules/posixAccount.inc:2305 msgid "UID generator" msgstr "UID generator" @@ -17395,7 +17807,7 @@ msgstr "" #: ../lib/modules/posixAccount.inc:218 ../lib/modules/posixAccount.inc:280 #: ../lib/modules/posixAccount.inc:301 ../lib/modules/posixAccount.inc:332 #: ../lib/modules/posixAccount.inc:336 ../lib/modules/posixAccount.inc:345 -#: ../lib/modules/posixAccount.inc:1619 ../lib/modules/posixAccount.inc:2106 +#: ../lib/modules/posixAccount.inc:1665 ../lib/modules/posixAccount.inc:2170 #: ../lib/modules/kopanoContact.inc:117 ../lib/modules/kopanoContact.inc:182 #: ../lib/modules/kopanoContact.inc:183 ../lib/modules/kopanoContact.inc:217 #: ../lib/modules/kopanoContact.inc:463 ../lib/modules/kopanoContact.inc:575 @@ -17419,7 +17831,7 @@ msgstr "UID nummer is al in gebruik." #: ../lib/modules/posixAccount.inc:89 msgid "UID ranges for Unix accounts" -msgstr "Range UID voor Unix accounts." +msgstr "Range UID voor Unix accounts" #: ../lib/modules/sambaSamAccount.inc:308 msgid "" @@ -17429,7 +17841,7 @@ msgstr "" "UNC-pad (\\\\server\\share) van de homedirectory. $user en $group worden " "vervanen door gebruikers- en groepsnaam." -#: ../lib/modules/windowsUser.inc:267 +#: ../lib/modules/windowsUser.inc:269 msgid "" "UNC-path (\\\\server\\share\\) of home directory. If no home drive is set then " "this directory must start with a drive letter (e.g. \"c:\\dir\\user\")." @@ -17449,11 +17861,11 @@ msgstr "" msgid "URL" msgstr "URL" -#: ../help/help.inc:303 +#: ../help/help.inc:315 msgid "URL of external 2-factor authentication service." msgstr "URL van externe 2-factor authenticatie service." -#: ../help/help.inc:305 +#: ../help/help.inc:317 msgid "URLs of external 2-factor authentication service. Enter one per line." msgstr "URL's van externe 2-factor authenticatieservice. Voer een per regel in." @@ -17467,13 +17879,12 @@ msgid "Unable to change ACL on IMAP server for mailbox deletion." msgstr "" "Kan ACL niet wijzigen op de IMAP-server voor het verwijderen van de mailbox." -#: ../lib/modules/mitKerberos.inc:1182 ../lib/modules/mitKerberos.inc:1186 +#: ../lib/modules/mitKerberos.inc:1178 ../lib/modules/mitKerberos.inc:1182 #: ../lib/modules/heimdalKerberos.inc:1031 msgid "Unable to change Kerberos password." msgstr "Niet in staat om het Kerberos wachtwoord te veranderen." -#: ../lib/modules/windowsUser.inc:3053 ../lib/modules/windowsUser.inc:3101 -#: ../lib/modules/windowsUser.inc:3127 +#: ../lib/modules/windowsUser.inc:3221 msgid "Unable to change password." msgstr "Niet in staat om het wachtwoord te wijzigen." @@ -17492,6 +17903,10 @@ msgstr "" "Niet in staat om uw account te veranderen. Uw wijzigingen kunnen in strijd " "zijn met het wachtwoordbeleid." +#: ../lib/modules/imapAccess.inc:700 +msgid "Unable to connect to IMAP server." +msgstr "Kan geen verbinding maken met IMAP-server." + #: ../templates/config/jobList.php:128 ../templates/config/jobs.php:422 msgid "Unable to connect to database." msgstr "Kan geen verbinding maken met de database." @@ -17500,13 +17915,13 @@ msgstr "Kan geen verbinding maken met de database." msgid "Unable to connect to remote server!" msgstr "Kan geen verbinding maken met externe server!" -#: ../lib/upload.inc:294 +#: ../lib/upload.inc:293 msgid "Unable to create ZIP file for PDF export." msgstr "Niet in staat om een ZIP-bestand aan te maken voor PDF-export." -#: ../lib/modules/selfRegistration.inc:642 -#: ../lib/modules/selfRegistration.inc:824 -#: ../lib/modules/selfRegistration.inc:828 +#: ../lib/modules/selfRegistration.inc:647 +#: ../lib/modules/selfRegistration.inc:838 +#: ../lib/modules/selfRegistration.inc:842 msgid "Unable to create account." msgstr "Niet in staat om de nieuwe account aan te maken." @@ -17522,9 +17937,13 @@ msgstr "Onmogelijk nieuwe OU te maken!" msgid "Unable to create new automount map." msgstr "Niet in staat om nieuwe automount map te maken." +#: ../lib/modules/posixAccount.inc:1231 +msgid "Unable to create new group." +msgstr "Kan geen nieuwe groep maken." + #: ../templates/selfService/profManage.php:61 ../lib/config.inc:222 msgid "Unable to create new profile!" -msgstr "Onmogelijk nieuw profiel te maken" +msgstr "Onmogelijk nieuw profiel te maken!" #: ../lib/types/bind.inc:199 msgid "Unable to create new zone." @@ -17573,26 +17992,26 @@ msgstr "Onmogelijk profiel te verwijderen!" msgid "Unable to find a printer with name \"%s\"." msgstr "Niet in staat om een printer met de naam \"%s\" te vinden." -#: ../lib/modules/posixAccount.inc:2564 ../lib/modules/posixAccount.inc:2573 -#: ../lib/modules/posixAccount.inc:2875 ../lib/modules/nisNetGroupUser.inc:512 -#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:390 +#: ../lib/modules/posixAccount.inc:2628 ../lib/modules/posixAccount.inc:2637 +#: ../lib/modules/posixAccount.inc:2939 ../lib/modules/nisNetGroupUser.inc:512 +#: ../lib/modules/nisnetgroup.inc:541 ../lib/modules/groupOfNamesUser.inc:391 msgid "Unable to find group in LDAP." msgstr "Onmogelijk groep te vinden in LDAP." #: ../lib/modules/passwordSelfReset.inc:1178 msgid "Unable to find password security answer for this account." -msgstr "Geen wachtwoord beveiligingsvragen gevonden voor dit account. " +msgstr "Geen wachtwoord beveiligingsvragen gevonden voor dit account." #: ../lib/modules/passwordSelfReset.inc:1162 #: ../lib/modules/passwordSelfReset.inc:1412 msgid "Unable to find password security question for this account." -msgstr "Geen wachtwoord beveiligingsvragen gevonden voor dit account. " +msgstr "Geen wachtwoord beveiligingsvragen gevonden voor dit account." #: ../lib/modules/organizationalRoleUser.inc:328 msgid "Unable to find role in LDAP." msgstr "Niet in staat om de rol te vinden in LDAP." -#: ../templates/login.php:535 ../templates/login.php:543 +#: ../templates/login.php:545 ../templates/login.php:553 msgid "Unable to find the user name in LDAP." msgstr "Kan de gebruikersnaam niet vinden in LDAP." @@ -17601,7 +18020,7 @@ msgstr "Kan de gebruikersnaam niet vinden in LDAP." msgid "Unable to find user account." msgstr "Kan de gebruikers account niet vinden." -#: ../templates/config/mainmanage.php:242 +#: ../templates/config/mainmanage.php:245 msgid "Unable to import server certificate. Please use the upload function." msgstr "" "Niet in staat om het server-certificaat te importeren. Gebruik de " @@ -17629,7 +18048,8 @@ msgstr "Kan mailbox niet vinden op IMAP." msgid "Unable to login to remote server!" msgstr "Kan geen verbinding maken met externe server!" -#: ../lib/modules/windowsUser.inc:1044 ../lib/modules/inetOrgPerson.inc:105 +#: ../lib/modules/windowsLDSUser.inc:794 ../lib/modules/windowsUser.inc:1080 +#: ../lib/modules/inetOrgPerson.inc:105 msgid "Unable to process this file." msgstr "Kan het bestand niet verwerken." @@ -17648,7 +18068,7 @@ msgstr "Kan de PDF-structuur niet lezen." msgid "Unable to read file." msgstr "Kan het bestand niet lezen." -#: ../lib/modules/selfRegistration.inc:817 +#: ../lib/modules/selfRegistration.inc:831 msgid "Unable to register your new account. Please try again." msgstr "Niet in staat om uw nieuwe account te registreren. Probeer het opnieuw." @@ -17657,7 +18077,7 @@ msgstr "Niet in staat om uw nieuwe account te registreren. Probeer het opnieuw." #: ../lib/modules/passwordSelfReset.inc:1727 #: ../lib/modules/passwordSelfReset.inc:1736 msgid "Unable to reset password." -msgstr "Niet in staat om het wachtwoord te reseten. " +msgstr "Niet in staat om het wachtwoord te resetten." #: ../templates/3rdParty/pla/lib/functions.php:1854 msgid "Unable to retrieve image" @@ -17669,12 +18089,12 @@ msgstr "Niet in staat om plaatje op te halen" msgid "Unable to retrieve schema!" msgstr "Niet mogelijk het schema op te halen!" -#: ../templates/selfService/adminMain.php:286 +#: ../templates/selfService/adminMain.php:287 #: ../templates/profedit/profilepage.php:135 msgid "Unable to save profile!" msgstr "Onmogelijk profiel te bewaren!" -#: ../lib/account.inc:1253 ../lib/account.inc:1291 +#: ../lib/account.inc:1258 ../lib/account.inc:1295 msgid "Unable to send mail!" msgstr "Niet in staat om mail te sturen!" @@ -17683,18 +18103,22 @@ msgstr "Niet in staat om mail te sturen!" msgid "Unable to set deletion date on %s." msgstr "Kan de verwijderingsdatum niet instellen op %s." -#: ../lib/modules/posixAccount.inc:880 ../lib/modules/posixAccount.inc:2962 -#: ../lib/modules/posixAccount.inc:3345 ../lib/modules/inetOrgPerson.inc:959 -#: ../lib/modules/inetOrgPerson.inc:2458 +#: ../lib/modules/posixAccount.inc:879 ../lib/modules/posixAccount.inc:3026 +#: ../lib/modules/posixAccount.inc:3409 ../lib/modules/inetOrgPerson.inc:966 +#: ../lib/modules/inetOrgPerson.inc:2486 msgid "Unable to set password" msgstr "Niet in staat om het wachtwoord in te stellen" -#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:109 +#: ../lib/modules/quota.inc:354 +msgid "Unable to set quota." +msgstr "Kan quota niet instellen." + +#: ../templates/login.php:294 ../templates/selfService/selfServiceLogin.php:110 msgid "Unable to start 2-factor authentication because no tokens were found." msgstr "" "Kan 2-factor-verificatie niet starten omdat er geen tokens zijn gevonden." -#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:106 +#: ../templates/login.php:290 ../templates/selfService/selfServiceLogin.php:107 msgid "Unable to start 2-factor authentication." msgstr "Kan 2-factor-authenticatie niet starten." @@ -17705,7 +18129,7 @@ msgstr "Kan DNS-recocord \"%s\" niet updaten." #: ../lib/pdfstruct.inc:172 ../lib/pdfstruct.inc:180 msgid "Unable to upload logo file." -msgstr "kan logo bestand niet uploaden." +msgstr "Kan logo bestand niet uploaden." #: ../lib/modules/passwordSelfReset.inc:1236 #: ../lib/modules/passwordSelfReset.inc:1520 @@ -17714,7 +18138,7 @@ msgstr "" "Niet in staat om uw wachtwoord te resetten verzoek te verifiëren.Probeer " "opnieuw." -#: ../lib/modules/selfRegistration.inc:854 +#: ../lib/modules/selfRegistration.inc:868 msgid "Unable to verify your user creation request. Please try again." msgstr "" "Niet in staat om uw gebruikers aanmaak verzoek te verifiëren.Probeer opnieuw." @@ -17727,10 +18151,10 @@ msgstr "Ontkoppel" msgid "Universal" msgstr "Universeel" -#: ../templates/lists/changePassword.php:406 -#: ../templates/lists/changePassword.php:443 ../lib/types/user.inc:303 +#: ../templates/lists/changePassword.php:410 +#: ../templates/lists/changePassword.php:447 ../lib/types/user.inc:303 #: ../lib/types/user.inc:457 ../lib/types/user.inc:496 ../lib/types/user.inc:1087 -#: ../lib/modules/posixGroup.inc:379 ../lib/modules/posixAccount.inc:159 +#: ../lib/modules/posixGroup.inc:380 ../lib/modules/posixAccount.inc:159 msgid "Unix" msgstr "Unix" @@ -17738,13 +18162,13 @@ msgstr "Unix" msgid "Unix account" msgstr "Unix account" -#: ../lib/modules/posixAccount.inc:1773 ../lib/modules/posixAccount.inc:2218 +#: ../lib/modules/posixAccount.inc:1828 ../lib/modules/posixAccount.inc:2282 msgid "Unix groups" msgstr "Unix groepen" #: ../lib/modules/dhcp_settings.inc:199 ../lib/modules/dhcp_settings.inc:225 -#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:631 -#: ../lib/modules/dhcp_settings.inc:717 +#: ../lib/modules/dhcp_settings.inc:309 ../lib/modules/dhcp_settings.inc:623 +#: ../lib/modules/dhcp_settings.inc:709 msgid "Unknown clients" msgstr "Onbekend clients" @@ -17766,19 +18190,19 @@ msgstr "Onbekend changetype" msgid "Unlock" msgstr "Ontgrendel" -#: ../templates/lists/changePassword.php:205 -#: ../templates/lists/changePassword.php:403 -#: ../templates/lists/changePassword.php:427 -#: ../templates/lists/changePassword.php:429 ../lib/modules/ppolicyUser.inc:150 +#: ../templates/lists/changePassword.php:209 +#: ../templates/lists/changePassword.php:407 +#: ../templates/lists/changePassword.php:431 +#: ../templates/lists/changePassword.php:433 ../lib/modules/ppolicyUser.inc:150 msgid "Unlock account" msgstr "Ontgrendel account" -#: ../templates/lists/changePassword.php:265 +#: ../templates/lists/changePassword.php:269 msgid "Unlock account?" msgstr "Ontgrendel account?" -#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1690 -#: ../lib/modules/inetOrgPerson.inc:1568 +#: ../lib/modules/posixGroup.inc:225 ../lib/modules/posixAccount.inc:1745 +#: ../lib/modules/inetOrgPerson.inc:1582 msgid "Unlock password" msgstr "Ontgrendel wachtwoord" @@ -17790,12 +18214,12 @@ msgstr "Ontgrendeld" msgid "Unsolved dependency:" msgstr "Niet opgeloste afhankelijkheden:" -#: ../templates/misc/ajax.php:288 ../templates/config/conftypes.php:201 +#: ../templates/misc/ajax.php:432 ../templates/config/conftypes.php:201 #: ../templates/pdfedit/pdfpage.php:266 ../templates/pdfedit/pdfpage.php:330 msgid "Up" msgstr "Omhoog" -#: ../templates/lists/changePassword.php:220 +#: ../templates/lists/changePassword.php:224 msgid "Update Samba password timestamp" msgstr "Update Samba wachtwoord timestamp" @@ -17808,7 +18232,7 @@ msgstr "Update-attribuut \"sambaPwdLastSet\" tijdens wachtwoord wijzigen" msgid "Update object" msgstr "Update object" -#: ../lib/modules/imapAccess.inc:322 ../lib/modules/imapAccess.inc:331 +#: ../lib/modules/imapAccess.inc:325 ../lib/modules/imapAccess.inc:334 msgid "Update quota" msgstr "Update quota" @@ -17822,13 +18246,14 @@ msgstr "Aangepaste waardes" msgid "Updating object" msgstr "Updaten object" -#: ../templates/config/mainmanage.php:354 ../templates/pdfedit/pdfmain.php:293 -#: ../lib/modules/windowsUser.inc:1978 ../lib/modules/ldapPublicKey.inc:148 -#: ../lib/modules/inetOrgPerson.inc:1696 ../lib/modules/inetOrgPerson.inc:1870 +#: ../templates/config/mainmanage.php:385 ../templates/pdfedit/pdfmain.php:293 +#: ../lib/modules/windowsLDSUser.inc:1296 ../lib/modules/windowsUser.inc:2024 +#: ../lib/modules/ldapPublicKey.inc:148 ../lib/modules/inetOrgPerson.inc:1708 +#: ../lib/modules/inetOrgPerson.inc:1882 msgid "Upload" msgstr "Uploaden" -#: ../templates/config/mainmanage.php:356 +#: ../templates/config/mainmanage.php:387 msgid "Upload CA certificate in DER/PEM format." msgstr "Upload CA-certificaat in DER / PEM formaat." @@ -17850,11 +18275,12 @@ msgstr "Upload bestand" msgid "Upload file and create accounts" msgstr "Upload bestand en creeer accounts" -#: ../lib/upload.inc:218 ../lib/lists.inc:1251 +#: ../lib/upload.inc:217 ../lib/lists.inc:1256 msgid "Upload has finished" msgstr "Upload is voltooid" -#: ../lib/modules/windowsUser.inc:1974 ../lib/modules/inetOrgPerson.inc:1692 +#: ../lib/modules/windowsLDSUser.inc:1292 ../lib/modules/windowsUser.inc:2020 +#: ../lib/modules/inetOrgPerson.inc:1704 msgid "Upload image" msgstr "Afbeelding uploaden" @@ -17863,7 +18289,8 @@ msgstr "Afbeelding uploaden" msgid "Upload was stopped after errors in %s module!" msgstr "Upload is gestopt na fouten in module %s!" -#: ../lib/modules/windowsUser.inc:395 ../lib/modules/inetOrgPerson.inc:791 +#: ../lib/modules/windowsLDSUser.inc:324 ../lib/modules/windowsUser.inc:397 +#: ../lib/modules/inetOrgPerson.inc:795 msgid "Uploaded images will be cropped to these maximum values." msgstr "Geüploade afbeeldingen worden bijgesneden tot deze maximale waarden." @@ -17896,7 +18323,7 @@ msgstr "Gebruik Unix wachtwoord" msgid "Use captcha" msgstr "Gebruik captcha" -#: ../templates/selfService/adminMain.php:442 ../help/help.inc:298 +#: ../templates/selfService/adminMain.php:443 ../help/help.inc:310 msgid "Use for all operations" msgstr "Gebruik voor alle bewerkingen" @@ -17906,7 +18333,8 @@ msgstr "Gebruik voor alle bewerkingen" msgid "Use no password" msgstr "Geen wachtwoord gebruiken" -#: ../lib/modules/windowsUser.inc:387 ../lib/modules/windowsUser.inc:391 +#: ../lib/modules/windowsLDSUser.inc:316 ../lib/modules/windowsLDSUser.inc:320 +#: ../lib/modules/windowsUser.inc:389 ../lib/modules/windowsUser.inc:393 msgid "" "Use this to enter additional email addresses in format \"smtp:user@domain.com" "\"." @@ -17914,7 +18342,7 @@ msgstr "" "Gebruik dit om extra e-mailadressen in te voeren met formaat \"smtp:" "user@domain.com\"." -#: ../help/help.inc:360 +#: ../help/help.inc:372 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of entries to modify." @@ -17922,7 +18350,7 @@ msgstr "" "Gebruik dit om een extra LDAP-filter (bijv. \"(cn!=admin)\") in te voeren om " "het aantal zichtbare elementen te verminderen voor dit account type." -#: ../help/help.inc:183 +#: ../help/help.inc:189 msgid "" "Use this to enter an additional LDAP filter (e.g. \"(cn!=admin)\") to reduce " "the number of visible elements for this account type." @@ -17930,7 +18358,7 @@ msgstr "" "Gebruik dit om een extra LDAP-filter (bijv. \"(cn!=admin)\") in te voeren om " "het aantal zichtbare elementen te verminderen voor dit account type." -#: ../help/help.inc:297 +#: ../help/help.inc:309 msgid "" "Use this to enter an additional LDAP filter (e.g. " "\"(objectClass=passwordSelfReset)\") to reduce the number of accounts who may " @@ -17952,7 +18380,7 @@ msgstr "Gebruik dit om het beller-ID te verbergen." msgid "Use this to hide this entry from the address book." msgstr "Gebruik dit om dit item te verbergen voor het adresboek." -#: ../help/help.inc:309 +#: ../help/help.inc:321 msgid "" "Use this to overwrite the default label for the 2-factor input field. Default " "is \"PIN+Token\"." @@ -17986,7 +18414,7 @@ msgstr "" msgid "Used balance for the billing code." msgstr "Gebruikt balans voor de facturering code." -#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:467 +#: ../lib/modules/quota.inc:113 ../lib/modules/quota.inc:524 msgid "Used blocks" msgstr "In gebruik zijnde blokken" @@ -18012,7 +18440,7 @@ msgstr "" msgid "Used for registration context." msgstr "Bestemd voor de registratie context." -#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:468 +#: ../lib/modules/quota.inc:135 ../lib/modules/quota.inc:525 msgid "Used inodes" msgstr "In gebruik zijnde inodes" @@ -18038,11 +18466,16 @@ msgid "Used to regularly check that a device is still online." msgstr "" "Gebruikt voor het regelmatig controleren of een apparaat nog steeds online is." -#: ../lib/types/sudo.inc:81 ../lib/modules/nisnetgroup.inc:226 -#: ../lib/modules/nisnetgroup.inc:577 ../lib/modules/nisMailAlias.inc:355 +#: ../templates/misc/ajax.php:275 ../lib/types/sudo.inc:81 +#: ../lib/modules/nisnetgroup.inc:226 ../lib/modules/nisnetgroup.inc:577 +#: ../lib/modules/nisMailAlias.inc:355 msgid "User" msgstr "Gebruiker" +#: ../templates/config/mainmanage.php:516 ../help/help.inc:180 +msgid "User DN" +msgstr "Gebruiker DN" + #: ../lib/types/user.inc:64 msgid "User accounts (e.g. Unix, Samba and Kolab)" msgstr "Gebruiker accounts (bijv. Unix, Samba en Kolab)" @@ -18057,9 +18490,9 @@ msgstr "User agent" msgid "User can change password" msgstr "Gebruiker mag wachtwoord wijzigen" -#: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:786 -#: ../lib/modules/inetOrgPerson.inc:1518 ../lib/modules/inetOrgPerson.inc:2832 -#: ../lib/modules/inetOrgPerson.inc:3886 +#: ../lib/modules/inetOrgPerson.inc:165 ../lib/modules/inetOrgPerson.inc:790 +#: ../lib/modules/inetOrgPerson.inc:1532 ../lib/modules/inetOrgPerson.inc:2906 +#: ../lib/modules/inetOrgPerson.inc:4098 msgid "User certificates" msgstr "Gebruikerscertificaten" @@ -18094,25 +18527,29 @@ msgstr "Aanpassing gebruiker" #: ../lib/modules/mitKerberos.inc:223 ../lib/modules/mitKerberos.inc:249 #: ../lib/modules/mitKerberos.inc:365 ../lib/modules/mitKerberos.inc:636 #: ../lib/modules/mitKerberos.inc:818 ../lib/modules/sambaSamAccount.inc:301 -#: ../lib/modules/sambaSamAccount.inc:1161 ../lib/modules/windowsUser.inc:1216 +#: ../lib/modules/sambaSamAccount.inc:1161 ../lib/modules/windowsUser.inc:1254 #: ../lib/modules/heimdalKerberos.inc:105 ../lib/modules/heimdalKerberos.inc:192 #: ../lib/modules/heimdalKerberos.inc:219 ../lib/modules/heimdalKerberos.inc:324 #: ../lib/modules/heimdalKerberos.inc:540 ../lib/modules/heimdalKerberos.inc:706 msgid "User must change password" msgstr "Gebruiker moet wachtwoord veranderen" -#: ../templates/lists/changePassword.php:273 ../templates/login.php:313 -#: ../templates/config/confmain.php:285 ../lib/types/alias.inc:94 -#: ../lib/types/user.inc:118 ../lib/types/user.inc:120 ../lib/selfService.inc:488 -#: ../lib/modules/mitKerberos.inc:115 ../lib/modules/mitKerberos.inc:210 -#: ../lib/modules/mitKerberos.inc:248 ../lib/modules/mitKerberos.inc:334 -#: ../lib/modules/mitKerberos.inc:805 ../lib/modules/selfRegistration.inc:392 +#: ../templates/lists/changePassword.php:277 ../templates/login.php:313 +#: ../templates/config/mainmanage.php:500 ../templates/config/confmain.php:285 +#: ../lib/types/alias.inc:94 ../lib/types/user.inc:118 ../lib/types/user.inc:120 +#: ../lib/selfService.inc:489 ../lib/modules/mitKerberos.inc:115 +#: ../lib/modules/mitKerberos.inc:210 ../lib/modules/mitKerberos.inc:248 +#: ../lib/modules/mitKerberos.inc:334 ../lib/modules/mitKerberos.inc:805 +#: ../lib/modules/selfRegistration.inc:392 #: ../lib/modules/selfRegistration.inc:486 -#: ../lib/modules/selfRegistration.inc:493 ../lib/modules/account.inc:94 +#: ../lib/modules/selfRegistration.inc:493 ../lib/modules/windowsLDSUser.inc:117 +#: ../lib/modules/windowsLDSUser.inc:335 ../lib/modules/windowsLDSUser.inc:652 +#: ../lib/modules/windowsLDSUser.inc:749 ../lib/modules/windowsLDSUser.inc:860 +#: ../lib/modules/windowsLDSUser.inc:1821 ../lib/modules/account.inc:94 #: ../lib/modules/account.inc:129 ../lib/modules/account.inc:131 -#: ../lib/modules/account.inc:132 ../lib/modules/account.inc:214 -#: ../lib/modules/account.inc:233 ../lib/modules/account.inc:245 -#: ../lib/modules/account.inc:258 ../lib/modules/uidObject.inc:44 +#: ../lib/modules/account.inc:132 ../lib/modules/account.inc:211 +#: ../lib/modules/account.inc:230 ../lib/modules/account.inc:242 +#: ../lib/modules/account.inc:255 ../lib/modules/uidObject.inc:44 #: ../lib/modules/uidObject.inc:66 ../lib/modules/uidObject.inc:75 #: ../lib/modules/uidObject.inc:84 ../lib/modules/uidObject.inc:95 #: ../lib/modules/uidObject.inc:150 ../lib/modules/nisNetGroupHost.inc:78 @@ -18120,38 +18557,40 @@ msgstr "Gebruiker moet wachtwoord veranderen" #: ../lib/modules/nisNetGroupHost.inc:260 ../lib/modules/posixAccount.inc:103 #: ../lib/modules/posixAccount.inc:104 ../lib/modules/posixAccount.inc:107 #: ../lib/modules/posixAccount.inc:210 ../lib/modules/posixAccount.inc:298 -#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1604 -#: ../lib/modules/posixAccount.inc:2090 ../lib/modules/windowsUser.inc:129 -#: ../lib/modules/windowsUser.inc:410 ../lib/modules/windowsUser.inc:839 -#: ../lib/modules/windowsUser.inc:982 ../lib/modules/windowsUser.inc:1113 -#: ../lib/modules/windowsUser.inc:2684 ../lib/modules/pykotaUser.inc:115 +#: ../lib/modules/posixAccount.inc:415 ../lib/modules/posixAccount.inc:1650 +#: ../lib/modules/posixAccount.inc:2152 ../lib/modules/windowsUser.inc:131 +#: ../lib/modules/windowsUser.inc:420 ../lib/modules/windowsUser.inc:872 +#: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1151 +#: ../lib/modules/windowsUser.inc:2850 ../lib/modules/pykotaUser.inc:115 #: ../lib/modules/pykotaUser.inc:274 ../lib/modules/pykotaUser.inc:276 #: ../lib/modules/pykotaUser.inc:304 ../lib/modules/pykotaUser.inc:717 #: ../lib/modules/pykotaUser.inc:869 ../lib/modules/pykotaUser.inc:887 #: ../lib/modules/nisnetgroup.inc:154 ../lib/modules/nisnetgroup.inc:483 #: ../lib/modules/inetOrgPerson.inc:100 ../lib/modules/inetOrgPerson.inc:166 -#: ../lib/modules/inetOrgPerson.inc:685 ../lib/modules/inetOrgPerson.inc:1186 -#: ../lib/modules/inetOrgPerson.inc:1189 ../lib/modules/inetOrgPerson.inc:1932 -#: ../lib/modules/inetOrgPerson.inc:1967 ../lib/modules/inetOrgPerson.inc:2182 -#: ../lib/modules/inetOrgPerson.inc:2928 ../lib/modules/inetOrgPerson.inc:3892 -#: ../lib/modules/inetOrgPerson.inc:3921 ../lib/modules/passwordSelfReset.inc:627 +#: ../lib/modules/inetOrgPerson.inc:689 ../lib/modules/inetOrgPerson.inc:1196 +#: ../lib/modules/inetOrgPerson.inc:1199 ../lib/modules/inetOrgPerson.inc:1944 +#: ../lib/modules/inetOrgPerson.inc:1984 ../lib/modules/inetOrgPerson.inc:2200 +#: ../lib/modules/inetOrgPerson.inc:3010 ../lib/modules/inetOrgPerson.inc:4107 +#: ../lib/modules/inetOrgPerson.inc:4136 ../lib/modules/passwordSelfReset.inc:627 #: ../lib/modules/passwordSelfReset.inc:1022 #: ../lib/modules/passwordSelfReset.inc:1253 #: ../lib/modules/heimdalKerberos.inc:93 ../lib/modules/heimdalKerberos.inc:179 #: ../lib/modules/heimdalKerberos.inc:217 ../lib/modules/heimdalKerberos.inc:285 -#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:226 +#: ../lib/modules/heimdalKerberos.inc:699 ../help/help.inc:184 +#: ../help/help.inc:232 msgid "User name" msgstr "Gebruikersnaam" -#: ../lib/modules/windowsUser.inc:137 ../lib/modules/windowsUser.inc:657 -#: ../lib/modules/windowsUser.inc:877 ../lib/modules/windowsUser.inc:990 -#: ../lib/modules/windowsUser.inc:1122 ../lib/modules/windowsUser.inc:2686 -#: ../lib/modules/windowsUser.inc:3607 +#: ../lib/modules/windowsUser.inc:139 ../lib/modules/windowsUser.inc:667 +#: ../lib/modules/windowsUser.inc:913 ../lib/modules/windowsUser.inc:1026 +#: ../lib/modules/windowsUser.inc:1160 ../lib/modules/windowsUser.inc:2852 +#: ../lib/modules/windowsUser.inc:3701 msgid "User name (pre W2K)" msgstr "Gebruikersnaam (pre W2K)" -#: ../lib/modules/selfRegistration.inc:493 ../lib/modules/posixAccount.inc:111 -#: ../lib/modules/windowsUser.inc:984 ../lib/modules/windowsUser.inc:985 +#: ../lib/modules/selfRegistration.inc:493 ../lib/modules/windowsLDSUser.inc:751 +#: ../lib/modules/windowsLDSUser.inc:752 ../lib/modules/posixAccount.inc:111 +#: ../lib/modules/windowsUser.inc:1020 ../lib/modules/windowsUser.inc:1021 #: ../lib/modules/pykotaUser.inc:276 ../lib/modules/pykotaUser.inc:277 #: ../lib/modules/pykotaUser.inc:280 ../lib/modules/pykotaUser.inc:281 #: ../lib/modules/inetOrgPerson.inc:102 @@ -18163,13 +18602,14 @@ msgid "User name and email address" msgstr "Gebruikersnaam en e-mailadres" #: ../templates/config/confmain.php:494 -#: ../templates/selfService/adminMain.php:513 ../lib/modules/imapAccess.inc:107 -#: ../lib/modules/imapAccess.inc:536 ../help/help.inc:330 +#: ../templates/selfService/adminMain.php:515 ../lib/modules/imapAccess.inc:107 +#: ../lib/modules/imapAccess.inc:544 ../help/help.inc:342 msgid "User name attribute" msgstr "Gebruikersnaam attribuut" #: ../lib/modules/mitKerberos.inc:280 ../lib/modules/mitKerberos.inc:281 -#: ../lib/modules/selfRegistration.inc:486 ../lib/modules/account.inc:129 +#: ../lib/modules/selfRegistration.inc:486 ../lib/modules/windowsLDSUser.inc:749 +#: ../lib/modules/windowsLDSUser.inc:750 ../lib/modules/account.inc:129 #: ../lib/modules/account.inc:130 ../lib/modules/account.inc:132 #: ../lib/modules/zarafaContact.inc:178 ../lib/modules/zarafaContact.inc:179 #: ../lib/modules/uidObject.inc:84 ../lib/modules/zarafaGroup.inc:196 @@ -18178,8 +18618,8 @@ msgstr "Gebruikersnaam attribuut" #: ../lib/modules/posixAccount.inc:104 ../lib/modules/posixAccount.inc:109 #: ../lib/modules/zarafaUser.inc:442 ../lib/modules/zarafaUser.inc:443 #: ../lib/modules/kopanoContact.inc:178 ../lib/modules/kopanoContact.inc:179 -#: ../lib/modules/windowsUser.inc:982 ../lib/modules/windowsUser.inc:983 -#: ../lib/modules/windowsUser.inc:990 ../lib/modules/windowsUser.inc:991 +#: ../lib/modules/windowsUser.inc:1018 ../lib/modules/windowsUser.inc:1019 +#: ../lib/modules/windowsUser.inc:1026 ../lib/modules/windowsUser.inc:1027 #: ../lib/modules/pykotaUser.inc:274 ../lib/modules/pykotaUser.inc:275 #: ../lib/modules/pykotaUser.inc:278 ../lib/modules/pykotaUser.inc:279 #: ../lib/modules/nisnetgroup.inc:154 ../lib/modules/inetOrgPerson.inc:100 @@ -18194,11 +18634,11 @@ msgstr "" "Gebruikersnaam bevat ongeldige tekens. Geldige tekens zijn: a-z, A-Z, 0-9 " "and .-_ !" -#: ../lib/modules/windowsUser.inc:271 +#: ../lib/modules/windowsUser.inc:273 msgid "User name for NIS." msgstr "Gebruikersnaam voor NIS." -#: ../help/help.inc:227 +#: ../help/help.inc:233 msgid "" "User name for SSH connection to lamdaemon server. If empty the user name of " "the person who is logged into LAM will be used." @@ -18214,7 +18654,7 @@ msgstr "" "gebruikersnaam." #: ../lib/modules/mitKerberos.inc:116 ../lib/modules/account.inc:95 -#: ../lib/modules/pykotaUser.inc:116 ../lib/modules/inetOrgPerson.inc:686 +#: ../lib/modules/pykotaUser.inc:116 ../lib/modules/inetOrgPerson.inc:690 #: ../lib/modules/heimdalKerberos.inc:94 msgid "" "User name of the user who should be created. Valid characters are: a-z,A-" @@ -18240,7 +18680,7 @@ msgstr "" msgid "User name or email address" msgstr "Gebruikersnaam of e-mailadres" -#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2205 +#: ../lib/modules/posixAccount.inc:319 ../lib/modules/posixAccount.inc:2269 msgid "User name suggestion" msgstr "Gebruikersnaam suggestie" @@ -18248,7 +18688,7 @@ msgstr "Gebruikersnaam suggestie" msgid "User name that is used for PyKota." msgstr "Gebruikersnaam die wordt gebruikt voor PyKota." -#: ../lib/modules/windowsUser.inc:1254 +#: ../lib/modules/windowsUser.inc:1300 msgid "User profile" msgstr "Gebruikersprofiel" @@ -18268,7 +18708,7 @@ msgstr "Gebruiker server" #: ../lib/types/user.inc:55 ../lib/modules/posixAccount.inc:83 #: ../lib/modules/posixAccount.inc:84 ../lib/modules/posixAccount.inc:87 -#: ../lib/modules/posixAccount.inc:2159 ../lib/modules/zarafaUser.inc:1803 +#: ../lib/modules/posixAccount.inc:2223 ../lib/modules/zarafaUser.inc:1803 #: ../lib/modules/sudoRole.inc:73 ../lib/modules/sudoRole.inc:97 #: ../lib/modules/sudoRole.inc:158 ../lib/modules/sudoRole.inc:215 #: ../lib/modules/sudoRole.inc:227 ../lib/modules/sudoRole.inc:300 @@ -18283,7 +18723,7 @@ msgid "Users or groups that may directly send email as this user." msgstr "" "Gebruikers of groepen die direct e-mail kunnen sturen als deze gebruiker." -#: ../lib/modules/posixGroup.inc:427 +#: ../lib/modules/posixGroup.inc:428 msgid "" "Users who are member of the current group. Users who have set their primary " "group to this group will not be shown." @@ -18291,7 +18731,7 @@ msgstr "" "Gebruikers die lid zijn van de huidige groep. Gebruikers die hun primaire " "groep ingesteld op deze groep worden niet getoond." -#: ../lib/modules/posixGroup.inc:431 +#: ../lib/modules/posixGroup.inc:432 msgid "" "Users who will become member of the current group. User names are separated by " "semicolons." @@ -18323,7 +18763,7 @@ msgstr "" msgid "VCARD 2.1 Export" msgstr "VCARD 2.1 Export" -#: ../templates/config/mainmanage.php:370 +#: ../templates/config/mainmanage.php:401 msgid "Valid to" msgstr "Geldige tot" @@ -18331,7 +18771,7 @@ msgstr "Geldige tot" msgid "Valid users" msgstr "Geldige gebruikers" -#: ../lib/modules/imapAccess.inc:87 ../lib/modules/imapAccess.inc:512 +#: ../lib/modules/imapAccess.inc:87 ../lib/modules/imapAccess.inc:520 msgid "Validate server certificate" msgstr "Valideer servercertificaat" @@ -18434,82 +18874,96 @@ msgstr "Voicemail mailbox voor deze account." msgid "Want more features? Get LAM Pro!" msgstr "Wilt u meer functies? Schakel over op LAM Pro!" -#: ../templates/config/mainmanage.php:415 +#: ../templates/config/mainmanage.php:446 #: ../templates/3rdParty/pla/lib/page.php:70 msgid "Warning" msgstr "Waarschuwing" -#: ../templates/delete.php:275 ../lib/modules/nisMailAliasUser.inc:501 -#: ../lib/modules/posixAccount.inc:841 +#: ../templates/delete.php:275 ../lib/modules/windowsLDSUser.inc:1470 +#: ../lib/modules/nisMailAliasUser.inc:501 ../lib/modules/posixAccount.inc:840 #: ../lib/modules/organizationalRoleUser.inc:197 #: ../lib/modules/organizationalRoleUser.inc:214 -#: ../lib/modules/windowsUser.inc:2152 ../lib/modules/groupOfNamesUser.inc:224 -#: ../lib/modules/groupOfNamesUser.inc:269 ../lib/modules/windowsGroup.inc:1025 -#: ../lib/modules.inc:2033 +#: ../lib/modules/windowsUser.inc:2315 ../lib/modules/windowsLDSGroup.inc:713 +#: ../lib/modules/groupOfNamesUser.inc:225 +#: ../lib/modules/groupOfNamesUser.inc:270 ../lib/modules/windowsGroup.inc:1025 +#: ../lib/modules.inc:2031 #, php-format msgid "Was unable to add attributes to DN: %s." -msgstr "Het is niet gelukt de volgende attributen toe te voegen aan DN: %s" +msgstr "Het is niet gelukt de volgende attributen toe te voegen aan DN: %s." -#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:659 -#: ../lib/modules/inetOrgPerson.inc:938 ../lib/modules/inetOrgPerson.inc:2443 +#: ../lib/modules/nisMailAliasUser.inc:490 ../lib/modules/range.inc:658 +#: ../lib/modules/inetOrgPerson.inc:945 ../lib/modules/inetOrgPerson.inc:2471 #: ../lib/import.inc:461 ../lib/import.inc:618 ../lib/import.inc:680 -#: ../lib/import.inc:743 ../lib/modules.inc:1995 +#: ../lib/import.inc:743 ../lib/modules.inc:1993 #, php-format msgid "Was unable to create DN: %s." msgstr "Het is niet gelukt om DN te maken: %s." -#: ../lib/account.inc:971 ../lib/account.inc:979 -#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:726 +#: ../lib/account.inc:976 ../lib/account.inc:984 +#: ../lib/modules/nisMailAliasUser.inc:467 ../lib/modules/range.inc:725 #, php-format msgid "Was unable to delete DN: %s." msgstr "Het is niet gelukt om DN te verwijderen: %s." -#: ../templates/lists/changePassword.php:787 -#: ../templates/lists/changePassword.php:884 -#: ../templates/lists/changePassword.php:934 ../templates/delete.php:266 +#: ../templates/lists/changePassword.php:791 +#: ../templates/lists/changePassword.php:888 +#: ../templates/lists/changePassword.php:938 ../templates/delete.php:266 #, php-format msgid "Was unable to modify attributes from DN: %s." msgstr "Modificeren van de attributen van DN: %s was niet mogelijk." -#: ../lib/modules/posixAccount.inc:825 ../lib/modules/windowsUser.inc:2178 -#: ../lib/modules/windowsUser.inc:2656 ../lib/modules/range.inc:703 +#: ../lib/modules/posixAccount.inc:824 ../lib/modules/windowsUser.inc:2341 +#: ../lib/modules/windowsUser.inc:2822 ../lib/modules/range.inc:702 #: ../lib/modules/nisNetGroupUser.inc:355 ../lib/modules/nisNetGroupUser.inc:372 #: ../lib/modules/nisNetGroupUser.inc:407 ../lib/modules/nisNetGroupUser.inc:419 -#: ../lib/modules/nisNetGroupUser.inc:566 ../lib/modules/groupOfNamesUser.inc:254 -#: ../lib/modules/customFields.inc:4826 ../lib/modules.inc:2015 +#: ../lib/modules/nisNetGroupUser.inc:566 ../lib/modules/groupOfNamesUser.inc:255 +#: ../lib/modules/customFields.inc:4826 ../lib/modules.inc:2013 #, php-format msgid "Was unable to modify attributes of DN: %s." msgstr "Was niet in staat om attributen van DN te wijzigen: %s." -#: ../templates/delete.php:284 ../lib/modules/nisMailAliasUser.inc:478 -#: ../lib/modules/posixAccount.inc:858 +#: ../templates/delete.php:284 ../lib/modules/windowsLDSUser.inc:1483 +#: ../lib/modules/nisMailAliasUser.inc:478 ../lib/modules/posixAccount.inc:857 #: ../lib/modules/organizationalRoleUser.inc:202 #: ../lib/modules/organizationalRoleUser.inc:225 -#: ../lib/modules/windowsUser.inc:2165 ../lib/modules/groupOfNamesUser.inc:219 -#: ../lib/modules/groupOfNamesUser.inc:283 ../lib/modules/windowsGroup.inc:1038 -#: ../lib/modules.inc:2046 +#: ../lib/modules/windowsUser.inc:2328 ../lib/modules/windowsLDSGroup.inc:726 +#: ../lib/modules/groupOfNamesUser.inc:220 +#: ../lib/modules/groupOfNamesUser.inc:284 ../lib/modules/windowsGroup.inc:1038 +#: ../lib/modules.inc:2044 #, php-format msgid "Was unable to remove attributes from DN: %s." msgstr "Het is niet gelukt om attributen te verwijderen van DN: %s." -#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1975 +#: ../lib/modules/asteriskExtension.inc:873 ../lib/modules.inc:1973 #, php-format msgid "Was unable to rename DN: %s." msgstr "Het is niet gelukt om DN te hernoemen: %s." -#: ../lib/modules/windowsUser.inc:213 ../lib/modules/windowsUser.inc:520 -#: ../lib/modules/windowsUser.inc:857 ../lib/modules/windowsUser.inc:945 -#: ../lib/modules/windowsUser.inc:1162 ../lib/modules/windowsUser.inc:2710 -#: ../lib/modules/windowsUser.inc:2901 ../lib/modules/inetOrgPerson.inc:164 -#: ../lib/modules/inetOrgPerson.inc:405 ../lib/modules/inetOrgPerson.inc:528 -#: ../lib/modules/inetOrgPerson.inc:673 ../lib/modules/inetOrgPerson.inc:677 -#: ../lib/modules/inetOrgPerson.inc:1435 ../lib/modules/inetOrgPerson.inc:1438 -#: ../lib/modules/inetOrgPerson.inc:1977 ../lib/modules/inetOrgPerson.inc:2043 -#: ../lib/modules/inetOrgPerson.inc:2582 ../lib/modules/inetOrgPerson.inc:3885 -#: ../lib/modules/inetOrgPerson.inc:3912 +#: ../lib/modules/windowsLDSUser.inc:197 ../lib/modules/windowsLDSUser.inc:439 +#: ../lib/modules/windowsLDSUser.inc:669 ../lib/modules/windowsLDSUser.inc:905 +#: ../lib/modules/windowsLDSUser.inc:1845 ../lib/modules/windowsUser.inc:215 +#: ../lib/modules/windowsUser.inc:530 ../lib/modules/windowsUser.inc:890 +#: ../lib/modules/windowsUser.inc:981 ../lib/modules/windowsUser.inc:1200 +#: ../lib/modules/windowsUser.inc:2876 ../lib/modules/windowsUser.inc:3072 +#: ../lib/modules/inetOrgPerson.inc:164 ../lib/modules/inetOrgPerson.inc:405 +#: ../lib/modules/inetOrgPerson.inc:528 ../lib/modules/inetOrgPerson.inc:673 +#: ../lib/modules/inetOrgPerson.inc:677 ../lib/modules/inetOrgPerson.inc:1449 +#: ../lib/modules/inetOrgPerson.inc:1452 ../lib/modules/inetOrgPerson.inc:1994 +#: ../lib/modules/inetOrgPerson.inc:2061 ../lib/modules/inetOrgPerson.inc:2618 +#: ../lib/modules/inetOrgPerson.inc:4097 ../lib/modules/inetOrgPerson.inc:4127 msgid "Web site" msgstr "Website" +#: ../templates/tools/webauthn.php:67 ../templates/config/mainmanage.php:515 +#: ../lib/tools/webauthn.inc:46 ../lib/modules/webauthn.inc:69 +msgid "Webauthn devices" +msgstr "Webauthn-apparaten" + +#: ../templates/tools/webauthn.php:79 ../lib/2factor.inc:570 +#: ../lib/modules/webauthn.inc:137 +msgid "Webauthn failed" +msgstr "Webauthn is mislukt" + #: ../lib/modules/sambaSamAccount.inc:1386 msgid "Wednesday" msgstr "Woensdag" @@ -18520,7 +18974,7 @@ msgstr "Woensdag" msgid "Weight" msgstr "Gewicht" -#: ../lib/selfService.inc:487 +#: ../lib/selfService.inc:488 msgid "Welcome to LAM self service. Please enter your user name and password." msgstr "Welkom bij LAM zelf service. Vul uw gebruikersnaam en wachtwoord in." @@ -18554,28 +19008,29 @@ msgstr "" "Indien ldaps:// wordt gebruikt wees er dan zeker van dat dezelfde IP/" "domeinnaam gebruikt wordt als in het certificaat!" -#: ../templates/lists/changePassword.php:421 -#: ../templates/lists/changePassword.php:455 ../lib/types/user.inc:327 +#: ../templates/lists/changePassword.php:425 +#: ../templates/lists/changePassword.php:459 ../lib/types/user.inc:327 #: ../lib/types/user.inc:376 ../lib/types/user.inc:473 ../lib/types/user.inc:516 #: ../lib/types/user.inc:1111 ../lib/types/user.inc:1113 -#: ../lib/modules/windowsHost.inc:63 ../lib/modules/windowsUser.inc:108 -#: ../lib/modules/windowsUser.inc:3846 ../lib/modules/windowsUser.inc:3993 -#: ../lib/modules/windowsUser.inc:4084 ../lib/modules/windowsGroup.inc:104 +#: ../lib/modules/windowsHost.inc:63 ../lib/modules/windowsUser.inc:110 +#: ../lib/modules/windowsUser.inc:3941 ../lib/modules/windowsUser.inc:4088 +#: ../lib/modules/windowsUser.inc:4179 ../lib/modules/windowsGroup.inc:104 msgid "Windows" msgstr "Windows" -#: ../lib/modules/posixGroup.inc:550 ../lib/modules/posixAccount.inc:2143 +#: ../lib/modules/posixGroup.inc:551 ../lib/modules/posixAccount.inc:2207 msgid "Windows domain info" msgstr "Windows domain info" -#: ../lib/modules/posixGroup.inc:467 ../lib/modules/posixGroup.inc:577 -#: ../lib/modules/posixGroup.inc:716 ../lib/modules/posixAccount.inc:122 -#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2192 -#: ../lib/modules/posixAccount.inc:2263 +#: ../lib/modules/posixGroup.inc:468 ../lib/modules/posixGroup.inc:578 +#: ../lib/modules/posixGroup.inc:717 ../lib/modules/posixAccount.inc:122 +#: ../lib/modules/posixAccount.inc:394 ../lib/modules/posixAccount.inc:2256 +#: ../lib/modules/posixAccount.inc:2327 msgid "Windows domain info DN" msgstr "Windows domain info DN" -#: ../lib/modules/sambaSamAccount.inc:339 ../lib/modules/windowsUser.inc:134 +#: ../lib/modules/windowsLDSUser.inc:122 ../lib/modules/sambaSamAccount.inc:339 +#: ../lib/modules/windowsUser.inc:136 msgid "Windows domain name of account." msgstr "Windows domeinnaam of account." @@ -18619,7 +19074,8 @@ msgstr "SID primaire Windows groep" msgid "Windows-Domain name of group." msgstr "Windows-Domein naam van de groep." -#: ../lib/modules/windowsUser.inc:1166 ../lib/modules/inetOrgPerson.inc:1446 +#: ../lib/modules/windowsLDSUser.inc:909 ../lib/modules/windowsUser.inc:1204 +#: ../lib/modules/inetOrgPerson.inc:1460 msgid "Work details" msgstr "Werk-details" @@ -18637,6 +19093,14 @@ msgstr "Werkdirectory" msgid "Working directory of initial program." msgstr "Werk-directory oorspronkelijke programma." +#: ../lib/modules/windowsUser.inc:408 ../lib/modules/windowsUser.inc:412 +#: ../lib/modules/windowsUser.inc:772 ../lib/modules/windowsUser.inc:904 +#: ../lib/modules/windowsUser.inc:1082 ../lib/modules/windowsUser.inc:1292 +#: ../lib/modules/windowsUser.inc:2889 ../lib/modules/windowsUser.inc:2965 +#: ../lib/modules/windowsUser.inc:3706 +msgid "Workstations" +msgstr "Werkstations" + #: ../templates/config/confmain.php:302 msgid "Write" msgstr "Schrijf" @@ -18645,9 +19109,9 @@ msgstr "Schrijf" msgid "Write access" msgstr "Schrijf toegang" -#: ../templates/login.php:523 ../templates/login.php:588 -#: ../templates/selfService/selfServiceLogin.php:155 -#: ../templates/selfService/selfServiceLogin.php:191 +#: ../templates/login.php:533 ../templates/login.php:598 +#: ../templates/selfService/selfServiceLogin.php:156 +#: ../templates/selfService/selfServiceLogin.php:192 msgid "Wrong password/user name combination. Please try again." msgstr "Verkeerde wachtwoord/gebruikersnaam combinatie. Probeer opnieuw." @@ -18661,7 +19125,7 @@ msgstr "Verkeerde quota-formaat. Quotum moet numeriek zijn." #: ../lib/modules/freeRadius.inc:699 ../lib/modules/qmailGroup.inc:287 #: ../lib/modules/qmailGroup.inc:329 ../lib/modules/qmailGroup.inc:797 #: ../lib/modules/qmailGroup.inc:798 ../lib/modules/qmailGroup.inc:841 -#: ../lib/modules/qmailGroup.inc:847 ../lib/modules/imapAccess.inc:512 +#: ../lib/modules/qmailGroup.inc:847 ../lib/modules/imapAccess.inc:520 msgid "Yes" msgstr "Ja" @@ -18669,15 +19133,15 @@ msgstr "Ja" msgid "You are not yet allowed to change your password." msgstr "U bent nog niet toegestaan om uw wachtwoord te wijzigen." -#: ../templates/lists/changePassword.php:543 -#: ../templates/lists/changePassword.php:553 +#: ../templates/lists/changePassword.php:547 +#: ../templates/lists/changePassword.php:557 #: ../lib/modules/sambaSamAccount.inc:2484 #: ../lib/modules/sambaSamAccount.inc:2578 ../lib/modules/ppolicyUser.inc:338 #: ../lib/modules/ppolicyUser.inc:418 msgid "You are reusing an old password. Please choose a different password." msgstr "U hergebruik een oude wachtwoord. Kies een ander wachtwoord." -#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:709 +#: ../lib/modules/account.inc:131 ../lib/modules/posixGroup.inc:710 #: ../lib/modules/posixAccount.inc:103 ../lib/modules/posixAccount.inc:105 msgid "" "You are using capital letters. This can cause problems because Windows is not " @@ -18686,11 +19150,11 @@ msgstr "" "Er worden hoofdletters gebruikt. Dit kan problemen geven omdat Windows niet " "hoofdletter gevoelig is." -#: ../help/help.inc:413 +#: ../help/help.inc:425 msgid "You can delete or move expired accounts." -msgstr "U kunt verlopen accounts verwijderen of verplaatsen. " +msgstr "U kunt verlopen accounts verwijderen of verplaatsen." -#: ../lib/lists.inc:1253 +#: ../lib/lists.inc:1258 #, php-format msgid "" "You can download your PDF files {link=%s}{color=#d2131a}here{endcolor}" @@ -18699,7 +19163,7 @@ msgstr "" "U kunt uw PDF-bestanden {link=%s}{color=#d2131a}hier{endcolor}{endlink} " "downloaden." -#: ../help/help.inc:301 +#: ../help/help.inc:313 msgid "You can enable 2-factor authentication here (e.g. via mobile device)." msgstr "" "U kunt hier 2-factor-authenticatie inschakelen (bijvoorbeeld via mobiel " @@ -18726,7 +19190,7 @@ msgstr "" "U kunt het toegang niveau van LAM aangeven, volledige schrijf toegang, het " "wijzigen van wachtwoorden of alleen lezen toegang." -#: ../help/help.inc:184 +#: ../help/help.inc:190 msgid "" "You can use the wildcard @@LOGIN_DN@@ which will be substituted with the DN of " "the user who is currently logged in to LAM." @@ -18747,8 +19211,8 @@ msgid "You can use this to temporarily deactivate the Zarafa extension." msgstr "U kunt de Zarafa extensie tijdelijk uitschakelen." #: ../lib/modules/passwordSelfReset.inc:129 -#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:341 -#: ../help/help.inc:392 +#: ../lib/modules/passwordSelfReset.inc:139 ../help/help.inc:353 +#: ../help/help.inc:404 msgid "" "You can use wildcards for LDAP attributes in the form @@attribute@@ (e.g. " "@@uid@@ for the user name)." @@ -18779,14 +19243,13 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/template_engine.php:52 msgid "You cannot perform updates while server is in read-only mode" msgstr "" -"U kunt geen updates uitvoeren, wanneer server zich in alleen-lezen modus " -"bevind." +"U kunt geen updates uitvoeren, wanneer server zich in alleen-lezen modus bevind" #: ../templates/3rdParty/pla/htdocs/rename.php:26 msgid "You cannot rename an entry which has child entries." msgstr "U kunt een item niet hernoemen wanneer het kind items heeft." -#: ../templates/config/confmain.php:569 +#: ../templates/config/confmain.php:568 msgid "" "You cannot use SSL and TLS encryption at the same time. Please use either " "\"ldaps://\" or TLS." @@ -18796,7 +19259,7 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/rename.php:32 msgid "You did not change the RDN" -msgstr "U heeft geen veranderingen gemaakt aan de RDN." +msgstr "U heeft geen veranderingen gemaakt aan de RDN" #: ../templates/tests/schemaTest.php:70 msgid "" @@ -18812,7 +19275,7 @@ msgstr "U heeft een of meer ongeldige DNS-servers opgegeven." #: ../lib/modules/passwordSelfReset.inc:278 msgid "You entered two identical security questions." -msgstr "U heeft twee identieke beveiligingsvragen ingevoerd" +msgstr "U heeft twee identieke beveiligingsvragen ingevoerd." #: ../templates/3rdParty/pla/lib/Template.php:386 #: ../templates/3rdParty/pla/lib/Template.php:473 @@ -18824,16 +19287,16 @@ msgstr "" #: ../templates/3rdParty/pla/htdocs/create_confirm.php:45 #, php-format msgid "You left the value blank for required attribute (%s)." -msgstr "U heeft de waarde open gelaten voor het verplichte attribuut: %s" +msgstr "U heeft de waarde open gelaten voor het verplichte attribuut (%s)." #: ../templates/3rdParty/pla/htdocs/mass_update.php:171 #: ../templates/3rdParty/pla/htdocs/update_confirm.php:209 #: ../templates/3rdParty/pla/htdocs/create_confirm.php:133 msgid "You made no changes" -msgstr "U heeft geen veranderingen gemaakt." +msgstr "U heeft geen veranderingen gemaakt" -#: ../templates/config/mainmanage.php:220 ../templates/config/mainmanage.php:226 -#: ../templates/config/mainmanage.php:238 +#: ../templates/config/mainmanage.php:224 ../templates/config/mainmanage.php:230 +#: ../templates/config/mainmanage.php:242 msgid "You might need to restart your webserver for changes to take effect." msgstr "" "Mogelijk moet u uw webserver opnieuw opstarten om wijzigingen door te voeren." @@ -18871,7 +19334,7 @@ msgid "" "Your LAM admin user (%s) must be a valid Unix account to work with lamdaemon!" msgstr "" "Uw LAM admin gebruiker (%s) moet een geldige Unix-account zijn voor lamdaemon " -"om met te werken." +"om met te werken!" #: ../lib/modules/imapAccess.inc:162 msgid "Your LAM login password was not accepted by the IMAP server." @@ -18891,8 +19354,9 @@ msgid "" "PHP." msgstr "Het php.ini bevat niet file_uploads = ON. Corrigeer dit aub." -#: ../templates/config/confmain.php:165 -#: ../templates/selfService/adminMain.php:375 +#: ../templates/config/mainmanage.php:314 ../templates/config/confmain.php:165 +#: ../templates/config/mainlogin.php:99 +#: ../templates/selfService/adminMain.php:376 msgid "" "Your changes cannot be saved until you make the file writable for the " "webserver user." @@ -18900,7 +19364,7 @@ msgstr "" "De wijzigingen kunnen niet worden opgeslagen totdat u het bestand schrijfbaar " "maakt voor de webserver gebruiker." -#: ../templates/login.php:456 ../templates/selfService/selfServiceLogin.php:380 +#: ../templates/login.php:459 ../templates/selfService/selfServiceLogin.php:384 #, php-format msgid "" "Your licence expires on %s. You need to purchase a new licence to be able to " @@ -18909,7 +19373,7 @@ msgstr "" "Uw licentie verloopt op %s. U moet een nieuwe licentie aanschaffen om na deze " "datum LAM Pro te kunnen blijven gebruiken." -#: ../lib/modules/selfRegistration.inc:848 +#: ../lib/modules/selfRegistration.inc:862 msgid "" "Your new account was created but post processing failed. Please contact your " "local administrator." @@ -18917,16 +19381,15 @@ msgstr "" "Uw nieuwe account is aangemaakt maar nabewerking mislukte. Neem contact op met " "uw lokale beheerder." -#: ../lib/modules/selfRegistration.inc:845 +#: ../lib/modules/selfRegistration.inc:859 msgid "" "Your new account was successfully created. Please return to login to change " "your user data." msgstr "" "Uw nieuwe account is aangemaakt. Keer terug naar Login om u gegevens aan te " -"passen" +"passen." -#: ../lib/account.inc:1475 ../lib/modules/windowsUser.inc:3050 -#: ../lib/modules/windowsUser.inc:3124 +#: ../lib/account.inc:1488 ../lib/modules/windowsUser.inc:3218 msgid "" "Your password does not meet the password strength qualifications. Please retry " "with another one." @@ -18946,7 +19409,7 @@ msgstr "Het is bekend dat uw geselecteerde wachtwoord onveilig is." msgid "Your session expired, click here to go back to the login page." msgstr "Uw sessie is verlopen, klik hier om terug te gaan naar de login pagina." -#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:102 +#: ../templates/login.php:267 ../templates/selfService/selfServiceLogin.php:103 msgid "Your session expired, please log in again." msgstr "Uw sessie is verlopen, meld u opnieuw aan." @@ -18955,12 +19418,13 @@ msgstr "Uw sessie is verlopen, meld u opnieuw aan." msgid "Your settings were successfully saved." msgstr "Uw instellingen zijn met succes bewaard." -#: ../lib/modules/windowsUser.inc:492 ../lib/modules/windowsUser.inc:748 +#: ../lib/modules/windowsLDSUser.inc:417 ../lib/modules/windowsLDSUser.inc:579 +#: ../lib/modules/windowsUser.inc:502 ../lib/modules/windowsUser.inc:758 #: ../lib/modules/inetOrgPerson.inc:439 ../lib/modules/inetOrgPerson.inc:471 msgid "YourCompany" msgstr "UwBedrijf" -#: ../lib/2factor.inc:364 +#: ../lib/2factor.inc:366 msgid "YubiKey id does not match allowed list of key ids." msgstr "YubiKey id komt niet overeen met toegestane lijst met sleutel-id's." @@ -19015,7 +19479,7 @@ msgstr "Zarafa slaat de gebruiker archieven op deze servers." #: ../lib/types/bind.inc:81 ../lib/modules/ddns.inc:101 #: ../lib/modules/ddns.inc:112 ../lib/modules/ddns.inc:127 -#: ../lib/modules/ddns.inc:392 ../lib/modules/ddns.inc:422 +#: ../lib/modules/ddns.inc:388 ../lib/modules/ddns.inc:418 msgid "Zone name" msgstr "Zone naam" @@ -19023,11 +19487,11 @@ msgstr "Zone naam" msgid "Zone name for the DNS server (e.g. company.local)." msgstr "Zone naam voor de DNS-server (bijv. company.local)." -#: ../lib/modules/sambaSamAccount.inc:504 ../lib/modules/windowsUser.inc:590 +#: ../lib/modules/sambaSamAccount.inc:504 ../lib/modules/windowsUser.inc:600 msgid "\\\\server\\homes\\smiller" msgstr "\\\\server\\homes\\smiller" -#: ../lib/modules/sambaSamAccount.inc:512 ../lib/modules/windowsUser.inc:572 +#: ../lib/modules/sambaSamAccount.inc:512 ../lib/modules/windowsUser.inc:582 msgid "\\\\server\\profiles\\smiller" msgstr "\\\\server\\profielen\\smiller" @@ -19048,7 +19512,7 @@ msgstr "waarde toevoegen" msgid "adminstrators" msgstr "beheerders" -#: ../templates/config/mainmanage.php:400 ../templates/config/mainmanage.php:460 +#: ../templates/config/mainmanage.php:431 ../templates/config/mainmanage.php:489 #: ../templates/schema/schema.php:187 ../templates/schema/schema.php:283 msgid "all" msgstr "alle" @@ -19088,7 +19552,7 @@ msgstr "bevestig" msgid "dc=yourcompany,dc=com" msgstr "dc=uwbedrijf, dc=com" -#: ../templates/config/mainmanage.php:459 ../lib/modules/ppolicyUser.inc:126 +#: ../templates/config/mainmanage.php:488 ../lib/modules/ppolicyUser.inc:126 msgid "default" msgstr "default" @@ -19100,7 +19564,7 @@ msgstr "verwijderen" msgid "delete attribute" msgstr "verwijder attribuut" -#: ../templates/selfService/adminMain.php:542 +#: ../templates/selfService/adminMain.php:546 #: ../lib/modules/sambaSamAccount.inc:1557 #: ../lib/modules/sambaSamAccount.inc:2016 ../lib/modules/zarafaUser.inc:651 #: ../lib/modules/zarafaUser.inc:1326 ../lib/modules/zarafaUser.inc:1367 @@ -19114,7 +19578,7 @@ msgstr "uitgeschakeld" msgid "disconnect" msgstr "loskoppelen" -#: ../lib/modules/windowsUser.inc:676 ../lib/modules/windowsGroup.inc:240 +#: ../lib/modules/windowsUser.inc:686 ../lib/modules/windowsGroup.inc:240 msgid "domain" msgstr "domain" @@ -19190,11 +19654,12 @@ msgstr "groep@bedrijf.nl" msgid "hint" msgstr "tip" -#: ../lib/modules/quota.inc:214 ../lib/modules/quota.inc:220 +#: ../lib/modules/quota.inc:218 ../lib/modules/quota.inc:224 msgid "hours" msgstr "uren" -#: ../lib/modules/windowsUser.inc:522 ../lib/modules/windowsUser.inc:528 +#: ../lib/modules/windowsLDSUser.inc:441 ../lib/modules/windowsLDSUser.inc:447 +#: ../lib/modules/windowsUser.inc:532 ../lib/modules/windowsUser.inc:538 #: ../lib/modules/inetOrgPerson.inc:407 msgid "http://www.company.com" msgstr "http://www.bedrijf.nl" @@ -19252,7 +19717,7 @@ msgstr "lijst" #: ../templates/3rdParty/pla/lib/ds.php:297 #: ../templates/3rdParty/pla/lib/HTMLTree.php:496 msgid "login" -msgstr "Login" +msgstr "log in" #: ../lib/modules/posixAccount.inc:288 msgid "machines" @@ -19276,7 +19741,8 @@ msgstr "nieuw" #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 -#: ../lib/modules/kopanoServer.inc:311 ../lib/modules/zarafaDynamicGroup.inc:417 +#: ../lib/modules/windowsLDSUser.inc:1514 ../lib/modules/kopanoServer.inc:311 +#: ../lib/modules/zarafaDynamicGroup.inc:417 #: ../lib/modules/zarafaDynamicGroup.inc:420 ../lib/modules/zarafaContact.inc:638 #: ../lib/modules/zarafaGroup.inc:653 ../lib/modules/zarafaGroup.inc:660 #: ../lib/modules/zarafaGroup.inc:663 ../lib/modules/kopanoGroup.inc:604 @@ -19293,18 +19759,18 @@ msgstr "nieuw" #: ../lib/modules/sambaSamAccount.inc:2322 ../lib/modules/zarafaUser.inc:633 #: ../lib/modules/zarafaUser.inc:1279 ../lib/modules/zarafaUser.inc:1294 #: ../lib/modules/zarafaUser.inc:1305 ../lib/modules/zarafaUser.inc:1311 -#: ../lib/modules/kopanoContact.inc:590 ../lib/modules/windowsUser.inc:534 -#: ../lib/modules/windowsUser.inc:535 ../lib/modules/windowsUser.inc:536 -#: ../lib/modules/windowsUser.inc:542 ../lib/modules/windowsUser.inc:543 -#: ../lib/modules/windowsUser.inc:544 ../lib/modules/windowsUser.inc:556 -#: ../lib/modules/windowsUser.inc:557 ../lib/modules/windowsUser.inc:558 -#: ../lib/modules/windowsUser.inc:564 ../lib/modules/windowsUser.inc:565 -#: ../lib/modules/windowsUser.inc:566 ../lib/modules/windowsUser.inc:2208 -#: ../lib/modules/windowsUser.inc:2723 ../lib/modules/windowsUser.inc:2728 -#: ../lib/modules/windowsUser.inc:2734 ../lib/modules/windowsUser.inc:2739 -#: ../lib/modules/ppolicy.inc:34 ../lib/modules/ppolicy.inc:473 -#: ../lib/modules/ppolicy.inc:483 ../lib/modules/ppolicy.inc:488 -#: ../lib/modules/ppolicy.inc:495 ../lib/modules/ppolicy.inc:498 +#: ../lib/modules/kopanoContact.inc:590 ../lib/modules/windowsUser.inc:544 +#: ../lib/modules/windowsUser.inc:545 ../lib/modules/windowsUser.inc:546 +#: ../lib/modules/windowsUser.inc:552 ../lib/modules/windowsUser.inc:553 +#: ../lib/modules/windowsUser.inc:554 ../lib/modules/windowsUser.inc:566 +#: ../lib/modules/windowsUser.inc:567 ../lib/modules/windowsUser.inc:568 +#: ../lib/modules/windowsUser.inc:574 ../lib/modules/windowsUser.inc:575 +#: ../lib/modules/windowsUser.inc:576 ../lib/modules/windowsUser.inc:2371 +#: ../lib/modules/windowsUser.inc:2890 ../lib/modules/windowsUser.inc:2895 +#: ../lib/modules/windowsUser.inc:2901 ../lib/modules/windowsUser.inc:2906 +#: ../lib/modules/ppolicy.inc:34 ../lib/modules/ppolicy.inc:486 +#: ../lib/modules/ppolicy.inc:496 ../lib/modules/ppolicy.inc:501 +#: ../lib/modules/ppolicy.inc:508 ../lib/modules/ppolicy.inc:511 #: ../lib/modules/kopanoDynamicGroup.inc:357 #: ../lib/modules/kopanoDynamicGroup.inc:360 ../lib/modules/kopanoUser.inc:595 #: ../lib/modules/kopanoUser.inc:1198 ../lib/modules/kopanoUser.inc:1213 @@ -19312,13 +19778,13 @@ msgstr "nieuw" #: ../lib/modules/generalInformation.inc:101 #: ../lib/modules/kopanoAddressList.inc:296 #: ../lib/modules/kopanoAddressList.inc:299 ../lib/modules/zarafaServer.inc:331 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:772 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 msgid "no" msgstr "nee" #: ../templates/3rdParty/pla/lib/functions.php:1814 msgid "no description available" -msgstr "Geen omschrijving" +msgstr "geen beschrijving beschikbaar" #: ../templates/3rdParty/pla/htdocs/entry_chooser.php:65 msgid "no entries" @@ -19348,7 +19814,7 @@ msgid "" "subtree." msgstr "" "ou=People,dc=yourcompany,dc=com zal alle accounts in deze subtree lezen en " -"opslaan" +"opslaan." #: ../lib/modules/eduPerson.inc:201 ../lib/modules/eduPerson.inc:207 #: ../lib/modules/eduPerson.inc:213 @@ -19359,7 +19825,7 @@ msgstr "ou=accounts,dc=uwbedrijf, dc=nl" msgid "pc01$" msgstr "pc01$" -#: ../lib/modules/posixAccount.inc:2433 +#: ../lib/modules/posixAccount.inc:2497 msgid "pc01,Room 2.34" msgstr "pc01,Kamer 2.34" @@ -19379,11 +19845,11 @@ msgstr "printer01" msgid "printergroup1" msgstr "printergroup1" -#: ../templates/selfService/adminMain.php:555 +#: ../templates/selfService/adminMain.php:559 msgid "reCAPTCHA secret key" msgstr "reCAPTCHA geheime sleutel" -#: ../templates/selfService/adminMain.php:554 +#: ../templates/selfService/adminMain.php:558 msgid "reCAPTCHA site key" msgstr "reCAPTCHA website key" @@ -19422,10 +19888,11 @@ msgstr "zoek" msgid "seconds" msgstr "seconden" -#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/asteriskAccount.inc:325 -#: ../lib/modules/posixGroup.inc:412 ../lib/modules/sambaSamAccount.inc:435 -#: ../lib/modules/posixAccount.inc:2401 ../lib/modules/windowsUser.inc:420 -#: ../lib/modules/inetOrgPerson.inc:2193 ../lib/modules/asteriskVoicemail.inc:166 +#: ../lib/modules/mitKerberos.inc:243 ../lib/modules/windowsLDSUser.inc:345 +#: ../lib/modules/asteriskAccount.inc:325 ../lib/modules/posixGroup.inc:413 +#: ../lib/modules/sambaSamAccount.inc:435 ../lib/modules/posixAccount.inc:2465 +#: ../lib/modules/windowsUser.inc:430 ../lib/modules/inetOrgPerson.inc:2211 +#: ../lib/modules/asteriskVoicemail.inc:166 #: ../lib/modules/heimdalKerberos.inc:212 msgid "secret" msgstr "geheim" @@ -19434,12 +19901,12 @@ msgstr "geheim" msgid "select the rdn attribute" msgstr "selecteer het RDN attribuut" -#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/uidObject.inc:68 -#: ../lib/modules/posixAccount.inc:212 ../lib/modules/windowsUser.inc:412 -#: ../lib/modules/windowsUser.inc:659 ../lib/modules/windowsUser.inc:668 -#: ../lib/modules/pykotaUser.inc:195 ../lib/modules/pykotaUser.inc:719 -#: ../lib/modules/inetOrgPerson.inc:2184 ../lib/modules/heimdalKerberos.inc:181 -#: ../lib/modules/nisMailAlias.inc:109 +#: ../lib/modules/mitKerberos.inc:212 ../lib/modules/windowsLDSUser.inc:337 +#: ../lib/modules/uidObject.inc:68 ../lib/modules/posixAccount.inc:212 +#: ../lib/modules/windowsUser.inc:422 ../lib/modules/windowsUser.inc:669 +#: ../lib/modules/windowsUser.inc:678 ../lib/modules/pykotaUser.inc:195 +#: ../lib/modules/pykotaUser.inc:719 ../lib/modules/inetOrgPerson.inc:2202 +#: ../lib/modules/heimdalKerberos.inc:181 ../lib/modules/nisMailAlias.inc:109 msgid "smiller" msgstr "smiller" @@ -19451,7 +19918,7 @@ msgstr "smiller@otherdomain.org" msgid "smiller@yourdomain.org" msgstr "smiller@yourdomain.org" -#: ../lib/modules/windowsUser.inc:603 +#: ../lib/modules/windowsLDSUser.inc:460 ../lib/modules/windowsUser.inc:613 msgid "smtp:user@example.com" msgstr "smtp:user@example.com" @@ -19479,30 +19946,30 @@ msgstr "test-start" msgid "true" msgstr "waar" -#: ../lib/modules/ipHost.inc:105 ../lib/modules/windowsUser.inc:756 -#: ../lib/modules/inetOrgPerson.inc:293 ../lib/modules/aliasEntry.inc:71 -#: ../lib/modules/qmailGroup.inc:246 ../lib/modules/qmailGroup.inc:254 -#: ../lib/modules/qmailGroup.inc:262 +#: ../lib/modules/windowsLDSUser.inc:587 ../lib/modules/ipHost.inc:105 +#: ../lib/modules/windowsUser.inc:766 ../lib/modules/inetOrgPerson.inc:293 +#: ../lib/modules/aliasEntry.inc:71 ../lib/modules/qmailGroup.inc:246 +#: ../lib/modules/qmailGroup.inc:254 ../lib/modules/qmailGroup.inc:262 msgid "uid=smiller,ou=People,dc=company,dc=com" msgstr "uid=smiller,ou=People,dc=uwBedrijf,dc=nl" -#: ../templates/config/mainmanage.php:336 +#: ../templates/config/mainmanage.php:367 msgid "use custom CA certificates" -msgstr "Gebruik aangepaste CA-certificaten" +msgstr "gebruik aangepaste CA-certificaten" -#: ../templates/config/mainmanage.php:333 +#: ../templates/config/mainmanage.php:364 msgid "use system certificates" -msgstr "Gebruik systeem certificaten" +msgstr "gebruik systeem certificaten" #: ../lib/modules/posixGroup.inc:87 msgid "user01,user02,user03" msgstr "gebruiker01,gebruiker02,gebruiker03" -#: ../lib/modules/qmailUser.inc:239 ../lib/modules/qmailUser.inc:245 -#: ../lib/modules/qmailUser.inc:791 ../lib/modules/eduPerson.inc:162 -#: ../lib/modules/windowsUser.inc:498 ../lib/modules/windowsUser.inc:504 -#: ../lib/modules/pykotaUser.inc:729 ../lib/modules/inetOrgPerson.inc:389 -#: ../lib/modules/kolabSharedFolder.inc:153 +#: ../lib/modules/windowsLDSUser.inc:423 ../lib/modules/qmailUser.inc:239 +#: ../lib/modules/qmailUser.inc:245 ../lib/modules/qmailUser.inc:791 +#: ../lib/modules/eduPerson.inc:162 ../lib/modules/windowsUser.inc:508 +#: ../lib/modules/windowsUser.inc:514 ../lib/modules/pykotaUser.inc:729 +#: ../lib/modules/inetOrgPerson.inc:389 ../lib/modules/kolabSharedFolder.inc:153 #: ../lib/modules/asteriskVoicemail.inc:179 ../lib/modules/qmailGroup.inc:304 #: ../lib/modules/qmailGroup.inc:312 ../lib/modules/qmailGroup.inc:320 msgid "user@company.com" @@ -19518,11 +19985,12 @@ msgstr "bekijk items" #: ../templates/3rdParty/pla/htdocs/compare_form.php:33 msgid "with " -msgstr "met" +msgstr "met " #: ../templates/config/confmain.php:197 ../templates/schema/schema.php:234 #: ../templates/schema/schema.php:316 ../templates/schema/schema.php:339 #: ../templates/schema/schema.php:341 ../templates/schema/schema.php:343 +#: ../lib/modules/windowsLDSUser.inc:523 ../lib/modules/windowsLDSUser.inc:1514 #: ../lib/modules/kopanoServer.inc:313 ../lib/modules/zarafaDynamicGroup.inc:415 #: ../lib/modules/zarafaDynamicGroup.inc:422 ../lib/modules/zarafaContact.inc:640 #: ../lib/modules/zarafaGroup.inc:655 ../lib/modules/zarafaGroup.inc:658 @@ -19538,22 +20006,22 @@ msgstr "met" #: ../lib/modules/sambaSamAccount.inc:2010 ../lib/modules/zarafaUser.inc:633 #: ../lib/modules/zarafaUser.inc:1281 ../lib/modules/zarafaUser.inc:1297 #: ../lib/modules/zarafaUser.inc:1307 ../lib/modules/zarafaUser.inc:1313 -#: ../lib/modules/kopanoContact.inc:592 ../lib/modules/windowsUser.inc:536 -#: ../lib/modules/windowsUser.inc:544 ../lib/modules/windowsUser.inc:558 -#: ../lib/modules/windowsUser.inc:566 ../lib/modules/windowsUser.inc:692 -#: ../lib/modules/windowsUser.inc:2208 ../lib/modules/windowsUser.inc:2610 -#: ../lib/modules/windowsUser.inc:2725 ../lib/modules/windowsUser.inc:2730 -#: ../lib/modules/windowsUser.inc:2736 ../lib/modules/windowsUser.inc:2741 -#: ../lib/modules/ppolicy.inc:35 ../lib/modules/ppolicy.inc:485 -#: ../lib/modules/ppolicy.inc:490 ../lib/modules/ppolicy.inc:493 -#: ../lib/modules/ppolicy.inc:500 ../lib/modules/kopanoDynamicGroup.inc:355 +#: ../lib/modules/kopanoContact.inc:592 ../lib/modules/windowsUser.inc:546 +#: ../lib/modules/windowsUser.inc:554 ../lib/modules/windowsUser.inc:568 +#: ../lib/modules/windowsUser.inc:576 ../lib/modules/windowsUser.inc:702 +#: ../lib/modules/windowsUser.inc:2371 ../lib/modules/windowsUser.inc:2776 +#: ../lib/modules/windowsUser.inc:2892 ../lib/modules/windowsUser.inc:2897 +#: ../lib/modules/windowsUser.inc:2903 ../lib/modules/windowsUser.inc:2908 +#: ../lib/modules/ppolicy.inc:35 ../lib/modules/ppolicy.inc:498 +#: ../lib/modules/ppolicy.inc:503 ../lib/modules/ppolicy.inc:506 +#: ../lib/modules/ppolicy.inc:513 ../lib/modules/kopanoDynamicGroup.inc:355 #: ../lib/modules/kopanoDynamicGroup.inc:362 ../lib/modules/inetOrgPerson.inc:463 #: ../lib/modules/kopanoUser.inc:595 ../lib/modules/kopanoUser.inc:1200 #: ../lib/modules/kopanoUser.inc:1216 ../lib/modules/kopanoUser.inc:1226 #: ../lib/modules/kopanoUser.inc:1232 ../lib/modules/generalInformation.inc:103 #: ../lib/modules/kopanoAddressList.inc:294 #: ../lib/modules/kopanoAddressList.inc:301 ../lib/modules/zarafaServer.inc:333 -#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:770 +#: ../lib/modules/customFields.inc:3519 ../lib/modules/fixed_ip.inc:768 msgid "yes" msgstr "ja" @@ -19567,6 +20035,39 @@ msgstr "ja - oplopend gesorteerd" msgid "yes - ordered descending" msgstr "ja - aflopend gesorteerd" +#~ msgid "Additional options" +#~ msgstr "Meer opties" + +#~ msgid "Default (\\r\\n)" +#~ msgstr "Default (\\r\\n)" + +#~ msgid "Email format" +#~ msgstr "Emailformaat" + +#~ msgid "Non-standard (\\n)" +#~ msgstr "Niet-standaard (\\n)" + +#~ msgid "" +#~ "Please change this setting only if you experience problems in receiving " +#~ "emails from LAM. This defines the line ending of emails." +#~ msgstr "" +#~ "Activeer dit alleen als u problemen ondervindt bij het ontvangen van e-" +#~ "mails van LAM. Dit definieert de lijn einde van e-mails." + +#~ msgid "" +#~ "This email address will be set as sender address of all mails. If empty the " +#~ "system default (php.ini) will be used." +#~ msgstr "" +#~ "Dit e-mailadres wordt ingesteld als afzender adres voor alle mails. Indien " +#~ "leeg dan zal het systeem default (php.ini) worden gebruikt." + +#~ msgid "" +#~ "This email address will be set as sender address of the mails. If empty the " +#~ "system default (php.ini) will be used." +#~ msgstr "" +#~ "Dit e-mailadres wordt ingesteld als afzender adres voorde mails. Indien " +#~ "leeg dan zal het systeem default (php.ini) worden gebruikt." + #~ msgid "Mailbox already exists on IMAP server." #~ msgstr "Mailbox bestaat reeds op IMAP-server." @@ -19835,9 +20336,6 @@ msgstr "ja - aflopend gesorteerd" #~ "De tweede optie is de LDAP-attribuutnaam en de derde is voor een " #~ "beschrijvend label." -#~ msgid "User ID" -#~ msgstr "Gebruiker ID" - #~ msgid "Deleted account" #~ msgstr "Verwijderde account"