translation updates
This commit is contained in:
parent
690b0ee77a
commit
23b6485417
|
@ -116,7 +116,7 @@ class imapAccess extends baseModule {
|
||||||
$mailDomainsInput = new htmlTableExtendedInputField(_('Mail domain(s)'), 'ImapAccess_ImapDomain', '', 'ImapMailDomain');
|
$mailDomainsInput = new htmlTableExtendedInputField(_('Mail domain(s)'), 'ImapAccess_ImapDomain', '', 'ImapMailDomain');
|
||||||
$mailDomainsInput->setRequired(true);
|
$mailDomainsInput->setRequired(true);
|
||||||
$configContainer->addElement($mailDomainsInput, true);
|
$configContainer->addElement($mailDomainsInput, true);
|
||||||
$configUserName = new htmlTableExtendedSelect('ImapAccess_UserNameAttribute', array(_('mail') => 'mail', _('uid') => 'uid'), array('mail'), _("User name attribute"), 'ImapUserNameAttr');
|
$configUserName = new htmlTableExtendedSelect('ImapAccess_UserNameAttribute', array('mail', 'uid'), array('mail'), _("User name attribute"), 'ImapUserNameAttr');
|
||||||
$configContainer->addElement($configUserName, true);
|
$configContainer->addElement($configUserName, true);
|
||||||
$return['config_options']['all'] = $configContainer;
|
$return['config_options']['all'] = $configContainer;
|
||||||
// configuration checks
|
// configuration checks
|
||||||
|
@ -280,7 +280,7 @@ class imapAccess extends baseModule {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$quotaLimit = "";
|
$quotaLimit = "";
|
||||||
$quotaLimitInput = new htmlTableExtendedInputField(_("Quota limit"), 'ImapUserQuotaLimit', $quotaLimit, 'ImapUserQuotaLimit');
|
$quotaLimitInput = new htmlTableExtendedInputField(_("Quota limit (kB)"), 'ImapUserQuotaLimit', $quotaLimit, 'ImapUserQuotaLimit');
|
||||||
$htmlTable->addElement($quotaLimitInput, false);
|
$htmlTable->addElement($quotaLimitInput, false);
|
||||||
$htmlTable->addElement(new htmlSpacer('10px', null), false);
|
$htmlTable->addElement(new htmlSpacer('10px', null), false);
|
||||||
$htmlTable->addElement(new htmlButton('updateQuota', _('Update quota')), true);
|
$htmlTable->addElement(new htmlButton('updateQuota', _('Update quota')), true);
|
||||||
|
|
Loading…
Reference in New Issue