translation update
This commit is contained in:
parent
87fb509400
commit
101d378e80
|
@ -292,7 +292,7 @@ class asteriskAccount extends baseModule implements passwordService {
|
||||||
$configContainerOptions->addElement(new htmlOutputText(' '));
|
$configContainerOptions->addElement(new htmlOutputText(' '));
|
||||||
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountRegistrationContext', false, _('Registration context'), null, false));
|
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountRegistrationContext', false, _('Registration context'), null, false));
|
||||||
$configContainerOptions->addElement(new htmlOutputText(' '));
|
$configContainerOptions->addElement(new htmlOutputText(' '));
|
||||||
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountRegistrationExten', false, _('Registration extention'), null, false));
|
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountRegistrationExten', false, _('Registration extension'), null, false));
|
||||||
$configContainerOptions->addNewLine();
|
$configContainerOptions->addNewLine();
|
||||||
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountCanCallForward', false, _('Can call forward'), null, false));
|
$configContainerOptions->addElement(new htmlTableExtendedInputCheckbox('asteriskAccount_hideAstAccountCanCallForward', false, _('Can call forward'), null, false));
|
||||||
$configContainerOptions->addElement(new htmlOutputText(' '));
|
$configContainerOptions->addElement(new htmlOutputText(' '));
|
||||||
|
@ -352,7 +352,7 @@ class asteriskAccount extends baseModule implements passwordService {
|
||||||
'AstAccountMusicOnHold' => _('Music on hold'),
|
'AstAccountMusicOnHold' => _('Music on hold'),
|
||||||
'AstAccountExpirationTimestamp' => _('Expiration timestamp'),
|
'AstAccountExpirationTimestamp' => _('Expiration timestamp'),
|
||||||
'AstAccountRegistrationContext' => _('Registration context'),
|
'AstAccountRegistrationContext' => _('Registration context'),
|
||||||
'AstAccountRegistrationExten' => _('Registration extention'),
|
'AstAccountRegistrationExten' => _('Registration extension'),
|
||||||
'AstAccountCanCallForward' => _('Can call forward'),
|
'AstAccountCanCallForward' => _('Can call forward'),
|
||||||
'AstAccountIPAddress' => _('IP address'),
|
'AstAccountIPAddress' => _('IP address'),
|
||||||
'AstAccountDefaultUser' => _('Default user'),
|
'AstAccountDefaultUser' => _('Default user'),
|
||||||
|
@ -569,7 +569,7 @@ class asteriskAccount extends baseModule implements passwordService {
|
||||||
if (!$this->isBooleanConfigOptionSet('asteriskAccount_hideAstAccountRegistrationExten')) {
|
if (!$this->isBooleanConfigOptionSet('asteriskAccount_hideAstAccountRegistrationExten')) {
|
||||||
$return['upload_columns'][] = array(
|
$return['upload_columns'][] = array(
|
||||||
'name' => 'asteriskAccount_AstAccountRegistrationExten',
|
'name' => 'asteriskAccount_AstAccountRegistrationExten',
|
||||||
'description' => _('Registration extention'),
|
'description' => _('Registration extension'),
|
||||||
'help' => 'AstAccountRegistrationExten',
|
'help' => 'AstAccountRegistrationExten',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -914,7 +914,7 @@ class asteriskAccount extends baseModule implements passwordService {
|
||||||
if (isset($this->attributes['AstAccountRegistrationExten'][0])) {
|
if (isset($this->attributes['AstAccountRegistrationExten'][0])) {
|
||||||
$AstAccountRegistrationExten = $this->attributes['AstAccountRegistrationExten'][0];
|
$AstAccountRegistrationExten = $this->attributes['AstAccountRegistrationExten'][0];
|
||||||
}
|
}
|
||||||
$AstAccountRegistrationExtenInput = new htmlTableExtendedInputField(_("Registration extention"), 'AstAccountRegistrationExten', $AstAccountRegistrationExten, 'AstAccountRegistrationExten');
|
$AstAccountRegistrationExtenInput = new htmlTableExtendedInputField(_("Registration extension"), 'AstAccountRegistrationExten', $AstAccountRegistrationExten, 'AstAccountRegistrationExten');
|
||||||
$return->addElement($AstAccountRegistrationExtenInput, true);
|
$return->addElement($AstAccountRegistrationExtenInput, true);
|
||||||
}
|
}
|
||||||
// can call forward
|
// can call forward
|
||||||
|
|
|
@ -91,7 +91,7 @@ class imapAccess extends baseModule {
|
||||||
"Text" => _("Please enter a comma separated list of domain names (e.g. \"company.com,example.com\"). LAM will only manage mailboxes from these domains.")),
|
"Text" => _("Please enter a comma separated list of domain names (e.g. \"company.com,example.com\"). LAM will only manage mailboxes from these domains.")),
|
||||||
'ImapUserNameAttr' => array(
|
'ImapUserNameAttr' => array(
|
||||||
"Headline" => _("User name attribute"),
|
"Headline" => _("User name attribute"),
|
||||||
"Text" => _("Please choose the attribute to get the IMAP user name. The default is mail but you can also use uid.")),
|
"Text" => _("Please choose the attribute to get the IMAP user name. The default is \"mail\" but you can also use \"uid\".")),
|
||||||
'MailAddress' => array(
|
'MailAddress' => array(
|
||||||
"Headline" => _("Mailbox"),
|
"Headline" => _("Mailbox"),
|
||||||
"Text" => _("This mailbox will be created/deleted.")),
|
"Text" => _("This mailbox will be created/deleted.")),
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue