English translation updated

This commit is contained in:
Boris Gulay
2018-12-29 15:07:21 +03:00
parent f1bd9679da
commit e79ec4e45b
2 changed files with 43 additions and 26 deletions

View File

@@ -4,47 +4,64 @@
*/ */
$labels = array(); $labels = array();
// IMAP // Plugin ident_switch
$labels['form.caption'] = 'IMAP'; $labels['form.common.caption'] = 'Plugin ident_switch';
// Enabled // Enabled
$labels['form.enabled'] = 'Enabled'; $labels['form.common.enabled'] = 'Enabled';
// Label // Label
$labels['form.label'] = 'Label'; $labels['form.common.label'] = 'Label';
// Value in \'Label\' field is too long (32 chars max).
$labels['err.label.long'] = 'Value in \'Label\' field is too long (32 chars max).';
// IMAP
$labels['form.imap.caption'] = 'IMAP';
// Server host name // Server host name
$labels['form.host']='Server host name'; $labels['form.imap.host']='Server host name';
// Secure connection (SSL/TLS) // Secure connection (TLS)
$labels['form.secure']='Connection security'; $labels['form.imap.tls'] = 'Secure connection (TLS)';
// Port // Port
$labels['form.port']='Port'; $labels['form.imap.port'] = 'Port';
// Username // Username
$labels['form.username'] = 'Username'; $labels['form.imap.username'] = 'Username';
// Password // Password
$labels['form.password'] = 'Password'; $labels['form.imap.password'] = 'Password';
// Folder hierarchy delimiter // Value in \'Username\' field is too long (64 chars max).
$labels['form.delimiter'] = 'Folder hierarchy delimiter'; $labels['err.user.long'] = 'Value in \'Username\' field is too long (64 chars max).';
// Value in \'Label\' field of IMAP section is too long (32 chars max).
$labels['err.label.long'] = 'Value in \'Label\' field of IMAP section is too long (32 chars max).';
// Value in \'Server host name\' field of IMAP section is too long (64 chars max). // SMTP
$labels['err.host.long'] = 'Value in \'Server host name\' field of IMAP section is too long (64 chars max).'; $labels['form.smtp.caption'] = 'SMTP';
// Value in \'Username\' field of IMAP section is too long (64 chars max). // Server host name
$labels['err.user.long'] = 'Value in \'Username\' field of IMAP section is too long (64 chars max).'; $labels['form.smtp.host'] = 'Server host name';
// Value in \'Folder hierarchy delimiter\' field of IMAP section is too long (1 char max). // Secure connection (TLS)
$labels['err.delim.long'] = 'Value in \'Folder hierarchy delimiter\' field of IMAP section is too long (1 char max).'; $labels['form.smtp.tls'] = 'Secure connection (TLS)';
// Value in \'Port\' field of IMAP section must be a number. // Port
$labels['err.port.num'] = 'Value in \'Port\' field of IMAP section must be a number.'; $labels['form.smtp.port'] = 'Port';
// Value in \'Port\' field of IMAP section must be between 1 and 65535. // Authorization required
$labels['err.port.range'] = 'Value in \'Port\' field of IMAP section must be between 1 and 65535.'; $labels['form.smtp.auth'] = 'Authorization required';
// Errors
// Value in \'Server host name\' field is too long (64 chars max).
$labels['err.host.long'] = 'Value in \'Server host name\' field is too long (64 chars max).';
// Value in \'Port\' field must be a number.
$labels['err.port.num'] = 'Value in \'Port\' field must be a number.';
// Value in \'Port\' field must be between 1 and 65535.
$labels['err.port.range'] = 'Value in \'Port\' field must be between 1 and 65535.';

View File

@@ -4,7 +4,7 @@
*/ */
$labels = array(); $labels = array();
// Common // Plugin ident_switch
$labels['form.common.caption'] = 'Плагин ident_switch'; $labels['form.common.caption'] = 'Плагин ident_switch';
// Enabled // Enabled
@@ -51,7 +51,7 @@ $labels['form.smtp.tls'] = 'Безопасное подключение (TLS)';
// Port // Port
$labels['form.smtp.port'] = 'Порт'; $labels['form.smtp.port'] = 'Порт';
// Authorization requtired // Authorization required
$labels['form.smtp.auth'] = 'Требуется авторизация'; $labels['form.smtp.auth'] = 'Требуется авторизация';