translation update

This commit is contained in:
Roland Gruber 2010-04-02 11:39:09 +00:00
parent dc4fe124bc
commit 55058e6dae
7 changed files with 467 additions and 296 deletions

View File

@ -93,7 +93,7 @@ class asteriskAccount extends baseModule implements passwordService {
),
'AsteriskRealm' => array(
"Headline" => _("Asterisk realm"),
"Text" => _("Authentication realm for asterisk server (default: asterisk). This value set in sip.conf (option: \"realm\").")
"Text" => _("Authentication realm for Asterisk server (default: asterisk). This value set in sip.conf (option: \"realm\").")
),
);
// config options

View File

@ -209,7 +209,7 @@ class asteriskVoicemail extends baseModule implements passwordService {
$this->messages['AstVoicemailFullname'][0] = array('ERROR', _('The full name name is invalid.'));
$this->messages['AstVoicemailEmail'][01] = array('ERROR', _('The email address is invalid.'));
$this->messages['AstVoicemailPager'][0] = array('ERROR', _('The pager has bad format.'));
$this->messages['AstVoicemailPager'][0] = array('ERROR', _('The pager number has bad format.'));
$this->messages['AstVoicemailOptions'][0] = array('ERROR', _('The options have bad format.'));
$this->messages['AstVoicemailOptions'][1] = array('ERROR', _('Account %s:') . ' asteriskVoicemail_AstVoicemailOptions', _('The options have bad format.'));
$this->messages['AstVoicemailContext'][0] = array('ERROR', _('The voicemail context name is invalid.'));

View File

@ -82,8 +82,8 @@ class inetOrgPerson extends baseModule implements passwordService {
$this->messages['mobileTelephone'][1] = array('ERROR', _('Account %s:') . " inetOrgPerson_mobile", _('Please enter a valid mobile number!'));
$this->messages['facsimileNumber'][0] = array('ERROR', _('Fax number'), _('Please enter a valid fax number!'));
$this->messages['facsimileNumber'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_fax', _('Please enter a valid fax number!'));
$this->messages['email'][0] = array('ERROR', _('eMail address'), _('Please enter a valid eMail address!'));
$this->messages['email'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_email', _('Please enter a valid eMail address!'));
$this->messages['email'][0] = array('ERROR', _('Email address'), _('Please enter a valid email address!'));
$this->messages['email'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_email', _('Please enter a valid email address!'));
$this->messages['street'][0] = array('ERROR', _('Street'), _('Please enter a valid street name!'));
$this->messages['street'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_street', _('Please enter a valid street name!'));
$this->messages['postalAddress'][0] = array('ERROR', _('Postal address'), _('Please enter a valid postal address!'));
@ -146,7 +146,7 @@ class inetOrgPerson extends baseModule implements passwordService {
$return['selfServiceSearchAttributes'] = array('uid', 'mail', 'cn', 'surname', 'givenName');
// self service field settings
$return['selfServiceFieldSettings'] = array('firstName' => _('First name'), 'lastName' => _('Last name'),
'mail' => _('eMail address'), 'telephoneNumber' => _('Telephone number'), 'mobile' => _('Mobile number'),
'mail' => _('Email address'), 'telephoneNumber' => _('Telephone number'), 'mobile' => _('Mobile number'),
'faxNumber' => _('Fax number'), 'street' => _('Street'), 'postalAddress' => _('Postal address'),
'postalCode' => _('Postal code'), 'postOfficeBox' => _('Post office box'), 'jpegPhoto' => _('Photo'),
'homePhone' => _('Home telephone number'), 'roomNumber' => _('Room number'), 'carLicense' => _('Car license'),
@ -255,7 +255,7 @@ class inetOrgPerson extends baseModule implements passwordService {
array('kind' => 'text', 'text' => _('Fax number')),
array('kind' => 'text', 'text' => ' '),
array('kind' => 'input', 'name' => 'inetOrgPerson_hideEMailAddress', 'type' => 'checkbox'),
array('kind' => 'text', 'text' => _('eMail address')),
array('kind' => 'text', 'text' => _('Email address')),
array('kind' => 'text', 'text' => ' '),
array('kind' => 'input', 'name' => 'inetOrgPerson_hideJobTitle', 'type' => 'checkbox'),
array('kind' => 'text', 'text' => _('Job title')),
@ -419,7 +419,7 @@ class inetOrgPerson extends baseModule implements passwordService {
if (!$this->isBooleanConfigOptionSet('inetOrgPerson_hideEMailAddress')) {
$return['upload_columns'][] = array(
'name' => 'inetOrgPerson_email',
'description' => _('eMail address'),
'description' => _('Email address'),
'help' => 'mail',
'example' => _('user@company.com')
);
@ -612,8 +612,8 @@ class inetOrgPerson extends baseModule implements passwordService {
"Text" => _("Fax number")
),
'mail' => array (
"Headline" => _("eMail address"),
"Text" => _("eMail address")
"Headline" => _("Email address"),
"Text" => _("Email address")
),
'cn' => array (
"Headline" => _("Common name"),
@ -1063,7 +1063,7 @@ class inetOrgPerson extends baseModule implements passwordService {
$email = '';
if (isset($this->attributes['mail'][0])) $email = $this->attributes['mail'][0];
$return[] = array(
array('kind' => 'text', 'text' => _('eMail address')),
array('kind' => 'text', 'text' => _('Email address')),
array('kind' => 'input', 'name' => 'mail', 'type' => 'text', 'size' => '30',
'maxlength' => '255', 'value' => $email),
array('kind' => 'help', 'value' => 'mail'));
@ -1232,7 +1232,7 @@ class inetOrgPerson extends baseModule implements passwordService {
get_class($this) . '_homePhone' => array('<block><key>' . _('Home telephone number') . '</key><value>' . $this->attributes['homePhone'][0] . '</value></block>'),
get_class($this) . '_mobileTelephoneNumber' => array('<block><key>' . _('Mobile number') . '</key><value>' . $this->attributes['mobile'][0] . '</value></block>'),
get_class($this) . '_facimileTelephoneNumber' => array('<block><key>' . _('Fax number') . '</key><value>' . $this->attributes['facsimileTelephoneNumber'][0] . '</value></block>'),
get_class($this) . '_mail' => array('<block><key>' . _('eMail address') . '</key><value>' . $this->attributes['mail'][0] . '</value></block>'),
get_class($this) . '_mail' => array('<block><key>' . _('Email address') . '</key><value>' . $this->attributes['mail'][0] . '</value></block>'),
get_class($this) . '_cn' => array('<block><key>' . _('Common name') . '</key><value>' . $this->attributes['cn'][0] . '</value></block>'),
get_class($this) . '_roomNumber' => array('<block><key>' . _('Room number') . '</key><value>' . $this->attributes['roomNumber'][0] . '</value></block>'),
get_class($this) . '_businessCategory' => array('<block><key>' . _('Business category') . '</key><value>' . $this->attributes['businessCategory'][0] . '</value></block>'),
@ -1598,7 +1598,7 @@ class inetOrgPerson extends baseModule implements passwordService {
$mail = '';
if (isset($attributes['mail'][0])) $mail = $attributes['mail'][0];
$return['mail'] = array(
array('kind' => 'text', 'text' => _('eMail address')),
array('kind' => 'text', 'text' => _('Email address')),
array('kind' => 'input', 'name' => 'inetOrgPerson_mail', 'type' => 'text', 'size' => '30',
'maxlength' => '255', 'value' => $mail));
}

View File

@ -148,11 +148,11 @@ class kolabUser extends baseModule {
"Text" => _("This is a comma separated list of delegates.")
),
'alias' => array(
"Headline" => _("EMail alias"),
"Text" => _("EMail alias for this account.")
"Headline" => _("Email alias"),
"Text" => _("Email alias for this account.")
),
'aliasList' => array(
"Headline" => _("EMail alias list"),
"Headline" => _("Email alias list"),
"Text" => _("This is a comma separated list of eMail aliases.")
),
'country' => array(
@ -198,7 +198,7 @@ class kolabUser extends baseModule {
),
array(
'name' => 'kolabUser_aliases',
'description' => _('EMail aliases'),
'description' => _('Email aliases'),
'help' => 'aliasList',
'example' => 'user@domain,user2@domain'
),
@ -234,8 +234,8 @@ class kolabUser extends baseModule {
function load_Messages() {
$this->messages['invPol'][0] = array('ERROR', _('Target of invitation policy is invalid!')); // third array value is set dynamically
$this->messages['invPol'][1] = array('ERROR', _('Account %s:') . ' kolabUser_invPol', _('Policy list has invalid format!'));
$this->messages['alias'][0] = array('ERROR', _('EMail alias is invalid!')); // third array value is set dynamically
$this->messages['alias'][1] = array('ERROR', _('Account %s:') . ' kolabUser_aliases', _('EMail alias list has invalid format!'));
$this->messages['alias'][0] = array('ERROR', _('Email alias is invalid!')); // third array value is set dynamically
$this->messages['alias'][1] = array('ERROR', _('Account %s:') . ' kolabUser_aliases', _('Email alias list has invalid format!'));
$this->messages['country'][0] = array('ERROR', _('Country name is invalid!')); // third array value is set dynamically
$this->messages['country'][1] = array('ERROR', _('Account %s:') . ' kolabUser_country', _('Country name is invalid!'));
$this->messages['homeServer'][0] = array('ERROR', _('Mailbox home server name is invalid!')); // third array value is set dynamically
@ -357,7 +357,7 @@ class kolabUser extends baseModule {
array('kind' => 'input', 'type' => 'submit', 'name' => 'addAlias', 'value' => _("Add")),
array('kind' => 'help', 'value' => 'alias'));
$returnAliases = array(
array('kind' => 'fieldset', 'legend' => _('EMail aliases'), 'value' => $returnAliases, 'td' => array('colspan' => 3))
array('kind' => 'fieldset', 'legend' => _('Email aliases'), 'value' => $returnAliases, 'td' => array('colspan' => 3))
);
$return[] = $returnAliases;
// delegates
@ -788,7 +788,7 @@ class kolabUser extends baseModule {
}
// email aliases
if (sizeof($this->attributes['alias']) > 0) {
$return['kolabUser_aliases'][0] = '<block><key>' . _('EMail aliases') . '</key><value>' . implode(", ", $this->attributes['alias']) . '</value></block>';
$return['kolabUser_aliases'][0] = '<block><key>' . _('Email aliases') . '</key><value>' . implode(", ", $this->attributes['alias']) . '</value></block>';
}
// delegates
if (sizeof($this->attributes['kolabDelegate']) > 0) {

View File

@ -97,7 +97,7 @@ class user extends baseType {
"sn" => _("Last name"),
"homedirectory" => _("Home directory"),
"loginshell" => _("Login shell"),
"mail" => _("E-Mail"),
"mail" => _("Email"),
"gecos" => _("Description"),
"jpegphoto" => _('Photo')
);

File diff suppressed because it is too large Load Diff