more translations (RFE 1702140)

This commit is contained in:
Roland Gruber 2007-06-10 14:51:35 +00:00
parent 1f444481bc
commit 33017686ee
5 changed files with 12 additions and 11 deletions

View File

@ -3,6 +3,7 @@
- usability improvements - usability improvements
- LDAP accounts including child entries can now be moved - LDAP accounts including child entries can now be moved
- group list can show primary members (RFE 1517679 and patch 1722460) - group list can show primary members (RFE 1517679 and patch 1722460)
- more translated example texts (RFE 1702140)
- fixed bugs: - fixed bugs:
-> OU editor: help images (1702132) -> OU editor: help images (1702132)
-> config editor: extra space (1702269) -> config editor: extra space (1702269)

View File

@ -91,19 +91,19 @@ class inetLocalMailRecipient extends baseModule {
'name' => 'inetLocalMailRecipient_routingAdr', 'name' => 'inetLocalMailRecipient_routingAdr',
'description' => _('Routing address'), 'description' => _('Routing address'),
'help' => 'routingAdr', 'help' => 'routingAdr',
'example' => 'smiller@otherdomain.org' 'example' => _('smiller@otherdomain.org')
), ),
array( array(
'name' => 'inetLocalMailRecipient_localAdr', 'name' => 'inetLocalMailRecipient_localAdr',
'description' => _('Local address list'), 'description' => _('Local address list'),
'help' => 'localAdrList', 'help' => 'localAdrList',
'example' => 'smiller@yourdomain.org' 'example' => _('smiller@yourdomain.org')
), ),
array( array(
'name' => 'inetLocalMailRecipient_server', 'name' => 'inetLocalMailRecipient_server',
'description' => _('Mail server'), 'description' => _('Mail server'),
'help' => 'host', 'help' => 'host',
'example' => 'mail.yourdomain.org' 'example' => _('mail.yourdomain.org')
) )
); );
// available PDF fields // available PDF fields

View File

@ -176,7 +176,7 @@ class inetOrgPerson extends baseModule {
'name' => 'inetOrgPerson_manager', 'name' => 'inetOrgPerson_manager',
'description' => _('Manager'), 'description' => _('Manager'),
'help' => 'manager', 'help' => 'manager',
'example' => 'uid=smiller,ou=People,dc=company,dc=com' 'example' => _('uid=smiller,ou=People,dc=company,dc=com')
), ),
array( array(
'name' => 'inetOrgPerson_street', 'name' => 'inetOrgPerson_street',
@ -188,7 +188,7 @@ class inetOrgPerson extends baseModule {
'name' => 'inetOrgPerson_postalCode', 'name' => 'inetOrgPerson_postalCode',
'description' => _('Postal code'), 'description' => _('Postal code'),
'help' => 'postalCode', 'help' => 'postalCode',
'example' => '12345' 'example' => _('GB-12345')
), ),
array( array(
'name' => 'inetOrgPerson_address', 'name' => 'inetOrgPerson_address',
@ -200,25 +200,25 @@ class inetOrgPerson extends baseModule {
'name' => 'inetOrgPerson_postOfficeBox', 'name' => 'inetOrgPerson_postOfficeBox',
'description' => _('Post office box'), 'description' => _('Post office box'),
'help' => 'postOfficeBox', 'help' => 'postOfficeBox',
'example' => '12345' 'example' => _('12345')
), ),
array( array(
'name' => 'inetOrgPerson_telephone', 'name' => 'inetOrgPerson_telephone',
'description' => _('Telephone number'), 'description' => _('Telephone number'),
'help' => 'telephoneNumber', 'help' => 'telephoneNumber',
'example' => '123-123-1234' 'example' => _('123-123-1234')
), ),
array( array(
'name' => 'inetOrgPerson_mobile', 'name' => 'inetOrgPerson_mobile',
'description' => _('Mobile number'), 'description' => _('Mobile number'),
'help' => 'mobileTelephoneNumber', 'help' => 'mobileTelephoneNumber',
'example' => '123-123-1234' 'example' => _('123-123-1235')
), ),
array( array(
'name' => 'inetOrgPerson_fax', 'name' => 'inetOrgPerson_fax',
'description' => _('Fax number'), 'description' => _('Fax number'),
'help' => 'facsimileTelephoneNumber', 'help' => 'facsimileTelephoneNumber',
'example' => '123-123-1234' 'example' => _('123-123-1236')
), ),
array( array(
'name' => 'inetOrgPerson_email', 'name' => 'inetOrgPerson_email',

View File

@ -69,7 +69,7 @@ class ldapPublicKey extends baseModule {
'name' => 'ldapPublicKey_sshPublicKey', 'name' => 'ldapPublicKey_sshPublicKey',
'description' => _('SSH public key'), 'description' => _('SSH public key'),
'help' => 'keyList', 'help' => 'keyList',
'example' => 'ssh-dss 234234 user@host' 'example' => _('ssh-dss 234234 user@host')
) )
); );
// available PDF fields // available PDF fields

View File

@ -156,7 +156,7 @@ function showMainPage($scope) {
echo "<br>\n"; echo "<br>\n";
echo "<ul>\n"; echo "<ul>\n";
echo "<li><b>" . _("Identifier") . ":</b> " . "dn_suffix</li>\n"; echo "<li><b>" . _("Identifier") . ":</b> " . "dn_suffix</li>\n";
echo "<li><b>" . _("Example value") . ":</b> " . "ou=accounts,dc=yourdomain,dc=org</li>\n"; echo "<li><b>" . _("Example value") . ":</b> " . _("ou=accounts,dc=yourdomain,dc=org") . "</li>\n";
echo "<li><b>" . _("Default value") . ":</b> " . $_SESSION['config']->get_Suffix($scope) . "</li>\n"; echo "<li><b>" . _("Default value") . ":</b> " . $_SESSION['config']->get_Suffix($scope) . "</li>\n";
echo "</ul>\n"; echo "</ul>\n";
echo "</td>\n"; echo "</td>\n";