From 00abda4682b7e05cc16e20aeeeab5cc2af4751cb Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 28 Mar 2016 18:51:38 +0000 Subject: [PATCH] moving emailadmin to api and admin, only emailadmin_hooks and tables still need moving --- admin/admin-cli.php | 45 +- admin/inc/class.admin_hooks.inc.php | 36 + admin/inc/class.admin_mail.inc.php | 1520 ++++ admin/inc/class.admin_passwordreset.inc.php | 20 +- admin/js/app.js | 253 +- admin/lang/egw_bg.lang | 48 + admin/lang/egw_ca.lang | 78 + admin/lang/egw_cs.lang | 158 + admin/lang/egw_da.lang | 75 + admin/lang/egw_de.lang | 213 + admin/lang/egw_el.lang | 55 + admin/lang/egw_en.lang | 213 + admin/lang/egw_es-es.lang | 158 + admin/lang/egw_et.lang | 52 + admin/lang/egw_eu.lang | 34 + admin/lang/egw_fa.lang | 75 + admin/lang/egw_fi.lang | 167 + admin/lang/egw_fr.lang | 171 + admin/lang/egw_hr.lang | 76 + admin/lang/egw_hu.lang | 158 + admin/lang/egw_id.lang | 99 + admin/lang/egw_it.lang | 210 + admin/lang/egw_iw.lang | 77 + admin/lang/egw_ja.lang | 7 + admin/lang/egw_ko.lang | 9 + admin/lang/egw_lo.lang | 27 + admin/lang/egw_lv.lang | 70 + admin/lang/egw_nl.lang | 164 + admin/lang/egw_no.lang | 80 + admin/lang/egw_pl.lang | 161 + admin/lang/egw_pt-br.lang | 193 + admin/lang/egw_pt.lang | 105 + admin/lang/egw_ru.lang | 175 + admin/lang/egw_rw.lang | 1 + admin/lang/egw_sk.lang | 207 + admin/lang/egw_sl.lang | 152 + admin/lang/egw_sv.lang | 106 + admin/lang/egw_tr.lang | 6 + admin/lang/egw_uk.lang | 6 + admin/lang/egw_vi.lang | 2 + admin/lang/egw_zh-tw.lang | 133 + admin/lang/egw_zh.lang | 135 + admin/templates/default/app.css | 54 + admin/templates/default/images/progress.gif | Bin 0 -> 3951 bytes admin/templates/default/mailaccount.xet | 344 + admin/templates/default/mailwizard.folder.xet | 59 + admin/templates/default/mailwizard.sieve.xet | 53 + admin/templates/default/mailwizard.smtp.xet | 55 + admin/templates/default/mailwizard.xet | 59 + admin/templates/mobile/mailaccount.xet | 349 + admin/templates/mobile/mailwizard.folder.xet | 64 + admin/templates/mobile/mailwizard.sieve.xet | 58 + admin/templates/mobile/mailwizard.smtp.xet | 60 + admin/templates/mobile/mailwizard.xet | 64 + admin/templates/pixelegg/app.css | 54 + api/src/Accounts.php | 42 + api/src/Accounts/Sql.php | 35 +- api/src/Accounts/Univention.php | 7 +- api/src/Auth/Pam.php | 5 +- api/src/Html/HtmLawed.php | 3 +- api/src/Mail.php | 6987 +++++++++++++++++ api/src/Mail/Account.php | 1683 ++++ api/src/Mail/Cache.php | 100 + api/src/Mail/Credentials.php | 477 ++ api/src/Mail/Imap.php | 1388 ++++ api/src/Mail/Imap/Cyrus.php | 233 + api/src/Mail/Imap/Dbmailqmailuser.php | 160 + api/src/Mail/Imap/Dbmailuser.php | 183 + api/src/Mail/Imap/Dovecot.php | 284 + api/src/Mail/Imap/Iface.php | 163 + api/src/Mail/Notifications.php | 183 + api/src/Mail/Script.php | 619 ++ api/src/Mail/Sieve.php | 224 + api/src/Mail/Smtp.php | 266 + api/src/Mail/Smtp/Ads.php | 169 + api/src/Mail/Smtp/Dbmailuser.php | 66 + api/src/Mail/Smtp/Ldap.php | 815 ++ api/src/Mail/Smtp/Mandriva.php | 87 + api/src/Mail/Smtp/Oldqmailuser.php | 69 + api/src/Mail/Smtp/Qmail.php | 79 + api/src/Mail/Smtp/Sql.php | 382 + api/src/Mail/Smtp/Suse.php | 74 + api/src/Mail/Smtp/Univention.php | 110 + api/src/Mail/Types.php | 115 + api/src/Mailer.php | 843 ++ api/src/Preferences.php | 1009 +++ mail/inc/class.mail_acl.inc.php | 30 +- mail/inc/class.mail_bo.inc.php | 10 +- mail/inc/class.mail_compose.inc.php | 146 +- mail/inc/class.mail_hooks.inc.php | 33 +- mail/inc/class.mail_integration.inc.php | 22 +- mail/inc/class.mail_sieve.inc.php | 71 +- mail/inc/class.mail_tree.inc.php | 203 +- mail/inc/class.mail_ui.inc.php | 189 +- mail/inc/class.mail_wizard.inc.php | 10 +- mail/inc/class.mail_zpush.inc.php | 64 +- mail/profile.php | 3 + mail/setup/setup.inc.php | 6 +- phpgwapi/categories.php | 2 + phpgwapi/inc/class.common.inc.php | 78 +- phpgwapi/inc/class.egw_mailer.inc.php | 815 +- phpgwapi/inc/class.preferences.inc.php | 929 +-- setup/inc/class.setup_cmd_ldap.inc.php | 11 +- setup/setup-cli.php | 27 - 104 files changed, 24205 insertions(+), 2307 deletions(-) create mode 100644 admin/inc/class.admin_mail.inc.php create mode 100644 admin/templates/default/images/progress.gif create mode 100644 admin/templates/default/mailaccount.xet create mode 100644 admin/templates/default/mailwizard.folder.xet create mode 100644 admin/templates/default/mailwizard.sieve.xet create mode 100644 admin/templates/default/mailwizard.smtp.xet create mode 100644 admin/templates/default/mailwizard.xet create mode 100644 admin/templates/mobile/mailaccount.xet create mode 100644 admin/templates/mobile/mailwizard.folder.xet create mode 100644 admin/templates/mobile/mailwizard.sieve.xet create mode 100644 admin/templates/mobile/mailwizard.smtp.xet create mode 100644 admin/templates/mobile/mailwizard.xet create mode 100644 api/src/Mail.php create mode 100644 api/src/Mail/Account.php create mode 100644 api/src/Mail/Cache.php create mode 100644 api/src/Mail/Credentials.php create mode 100644 api/src/Mail/Imap.php create mode 100644 api/src/Mail/Imap/Cyrus.php create mode 100644 api/src/Mail/Imap/Dbmailqmailuser.php create mode 100755 api/src/Mail/Imap/Dbmailuser.php create mode 100644 api/src/Mail/Imap/Dovecot.php create mode 100644 api/src/Mail/Imap/Iface.php create mode 100644 api/src/Mail/Notifications.php create mode 100644 api/src/Mail/Script.php create mode 100644 api/src/Mail/Sieve.php create mode 100644 api/src/Mail/Smtp.php create mode 100644 api/src/Mail/Smtp/Ads.php create mode 100755 api/src/Mail/Smtp/Dbmailuser.php create mode 100644 api/src/Mail/Smtp/Ldap.php create mode 100644 api/src/Mail/Smtp/Mandriva.php create mode 100644 api/src/Mail/Smtp/Oldqmailuser.php create mode 100644 api/src/Mail/Smtp/Qmail.php create mode 100644 api/src/Mail/Smtp/Sql.php create mode 100644 api/src/Mail/Smtp/Suse.php create mode 100644 api/src/Mail/Smtp/Univention.php create mode 100644 api/src/Mail/Types.php create mode 100644 api/src/Mailer.php create mode 100644 api/src/Preferences.php diff --git a/admin/admin-cli.php b/admin/admin-cli.php index c5be2c7380..e651ab2111 100755 --- a/admin/admin-cli.php +++ b/admin/admin-cli.php @@ -6,7 +6,7 @@ * @link http://www.egroupware.org * @package admin * @author Ralf Becker - * @copyright (c) 2006-13 by Ralf Becker + * @copyright (c) 2006-16 by Ralf Becker * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @version $Id$ */ @@ -60,9 +60,10 @@ switch($action) case '--change-account-id': return do_change_account_id($arg0s); + /* ToDo: get this working again case '--subscribe-other': return do_subscribe_other($arg0s[2],$arg0s[3]); - + */ case '--check-acl'; return do_check_acl(); @@ -281,11 +282,12 @@ function _check_pw($hash_or_cleartext,$pw) /** * Give a usage message and exit * - * @param string $action=null - * @param int $ret=0 exit-code + * @param string $action =null + * @param int $ret =0 exit-code */ function usage($action=null,$ret=0) { + unset($action); $cmd = basename($_SERVER['argv'][0]); echo "Usage: $cmd --command admin-account[@domain],admin-password,options,... [--schedule {YYYY-mm-dd|+1 week|+5 days}] [--requested 'Name '] [--comment 'comment ...'] [--remote {id|name}] [--skip-checks] [--dry-run]\n\n"; @@ -355,15 +357,16 @@ function do_edit_group($args) try { admin_cmd::parse_account($account,false); - foreach($data as $name => &$value) // existing account --> empty values mean dont change, not set them empty! + foreach($data as &$value) // existing account --> empty values mean dont change, not set them empty! { if ((string)$value === '') $value = null; } } catch (Exception $e) { // new group + unset($e); // not used $data['account_lid'] = $account; $account = false; - }; + } run_command(new admin_cmd_edit_group($account,$data)); } @@ -386,7 +389,7 @@ function do_change_pw($args) * Edit or add a user to EGroupware. If you specify groups, they *replace* the exiting memberships! * 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12 * @param array $args admin-account[@domain],admin-password,account[=new-account-name],first-name,last-name,password,email,expires{never(default)|YYYY-MM-DD|already},can-change-pw{true(default)|false},anon-user{true|false(default)},primary-group{Default(default)|...}[,groups,...][,homedirectory,loginshell] - * @param boolean $run_addaccount_hook=null default run hook depending on account existence, true=allways run addaccount hook + * @param boolean $run_addaccount_hook =null default run hook depending on account existence, true=allways run addaccount hook */ function do_edit_user($args,$run_addaccount_hook=null) { @@ -419,15 +422,16 @@ function do_edit_user($args,$run_addaccount_hook=null) try { admin_cmd::parse_account($account,true); - foreach($data as $name => &$value) // existing account --> empty values mean dont change, not set them empty! + foreach($data as &$value) // existing account --> empty values mean dont change, not set them empty! { if ((string)$value === '') $value = null; } } catch (Exception $e) { // new account + unset($e); // not used $data['account_lid'] = $account; $account = false; - }; + } run_command(new admin_cmd_edit_user($account,$data,null,$run_addaccount_hook)); } @@ -435,8 +439,8 @@ function do_edit_user($args,$run_addaccount_hook=null) * Delete a given acount from eGW * * @param int/string $account account-name of -id - * @param int/string $new_user=0 for users only: account to move the entries too - * @param boolean $is_user=true are we called for a user or group + * @param int/string $new_user =0 for users only: account to move the entries too + * @param boolean $is_user =true are we called for a user or group * @return int 0 on success, 2-4 otherwise (see source) */ function do_delete_account($account,$new_user=0,$is_user=true) @@ -487,8 +491,9 @@ function list_exit_codes() error_reporting(error_reporting() & ~E_NOTICE); $codes = array('Ok'); - foreach(file(__FILE__) as $n => $line) + foreach(file(__FILE__) as $line) { + $matches = null; if (preg_match('/fail\(([0-9]+),(.*)\);/',$line,$matches)) { //echo "Line $n: $matches[1]: $matches[2]\n"; @@ -510,6 +515,8 @@ function list_exit_codes() */ function do_subscribe_other($account_lid,$pw=null) { + unset($account_lid, $pw); + /* ToDo: this cant work, not even in 14.x if (!($account_id = $GLOBALS['egw']->accounts->name2id($account_lid))) { throw new egw_exception_wrong_userinput(lang("Unknown account: %1 !!!",$account_lid),15); @@ -544,14 +551,14 @@ function do_subscribe_other($account_lid,$pw=null) if (!$pw) $mailbox = str_replace('INBOX','user'.$delimiter.$account_lid,$mailbox); -/* $rights = $icServer->getACL($mailbox); - echo "getACL($mailbox)\n"; - foreach($rights as $data) - { - echo $data['USER'].' '.$data['RIGHTS']."\n"; - }*/ + //$rights = $icServer->getACL($mailbox); + //echo "getACL($mailbox)\n"; + //foreach($rights as $data) + //{ + // echo $data['USER'].' '.$data['RIGHTS']."\n"; + //} echo "subscribing $mailbox for $account_lid\n"; //$icServer->subscribeMailbox($mailbox); //exit; - } + }*/ } diff --git a/admin/inc/class.admin_hooks.inc.php b/admin/inc/class.admin_hooks.inc.php index 8255608607..cf9344003d 100644 --- a/admin/inc/class.admin_hooks.inc.php +++ b/admin/inc/class.admin_hooks.inc.php @@ -219,6 +219,42 @@ class admin_hooks 'icon' => 'cancel', ); } + + // currently no way to deny Admins access to administrate mail + // we could add a deny check as for other admin functionality + { + $actions[] = array( + 'id' => 'mail_account', + 'caption' => 'mail account', + 'url' => 'menuaction=admin.admin_mail.edit&account_id=$id', + 'popup' => '720x530', + 'icon' => 'mail/navbar', + ); + + $emailadmin = Api\Mail\Account::get_default(); + if ($emailadmin->acc_smtp_type && $emailadmin->acc_smtp_type !== 'EGroupware\Api\Mail\Smtp') + { + $actions[] = array ( + 'id' => 'mail_activeAccounts', + 'caption' => '(de)activate mail accounts', + 'icon' => 'mail/navbar', + 'children' => array ( + 'active' => array ( + 'caption' => 'activate', + 'onExecute' => 'javaScript:app.admin.emailadminActiveAccounts', + 'icon' => 'check', + 'allowOnMultiple' => true + ), + 'inactive' => array ( + 'caption' => 'deactivate', + 'onExecute' => 'javaScript:app.admin.emailadminActiveAccounts', + 'icon' => 'bullet', + 'allowOnMultiple' => true + ) + ) + ); + } + } return $actions; } } diff --git a/admin/inc/class.admin_mail.inc.php b/admin/inc/class.admin_mail.inc.php new file mode 100644 index 0000000000..162635f93b --- /dev/null +++ b/admin/inc/class.admin_mail.inc.php @@ -0,0 +1,1520 @@ + + * @copyright (c) 2013-16 by Ralf Becker + * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License + * @version $Id$ + */ + +use EGroupware\Api; +use EGroupware\Api\Mail; + +/** + * Wizard to create mail accounts + * + * Wizard uses follow heuristic to search for IMAP accounts: + * 1. query Mozilla ISPDB for domain from email (perfering SSL over STARTTLS over insecure connection) + * 2. guessing and verifying in DNS server-names based on domain from email: + * - (imap|smtp).$domain, mail.$domain + * - MX is *.mail.protection.outlook.com use (outlook|smtp).office365.com + * - MX for $domain + * - replace host in MX with (imap|smtp) or mail + */ +class admin_mail +{ + /** + * Enable logging of IMAP communication to given path, eg. /tmp/autoconfig.log + */ + const DEBUG_LOG = null; + /** + * Connection timeout in seconds used in autoconfig, can and should be really short! + */ + const TIMEOUT = 3; + /** + * Prefix for callback names + * + * Used as static::APP_CLASS in etemplate::exec(), to allow mail app extending this class. + */ + const APP_CLASS = 'admin.admin_mail.'; + + /** + * 0: No SSL + */ + const SSL_NONE = Mail\Account::SSL_NONE; + /** + * 1: STARTTLS on regular tcp connection/port + */ + const SSL_STARTTLS = Mail\Account::SSL_STARTTLS; + /** + * 3: SSL (inferior to TLS!) + */ + const SSL_SSL = Mail\Account::SSL_SSL; + /** + * 2: require TLS version 1+, no SSL version 2 or 3 + */ + const SSL_TLS = Mail\Account::SSL_TLS; + /** + * 8: if set, verify certifcate (currently not implemented in Horde_Imap_Client!) + */ + const SSL_VERIFY = Mail\Account::SSL_VERIFY; + + /** + * Log exception including trace to error-log, instead of just displaying the message. + * + * @var boolean + */ + public static $debug = false; + + /** + * Methods callable via menuaction + * + * @var array + */ + public $public_functions = array( + 'add' => true, + 'edit' => true, + 'ajax_activeAccounts' => true + ); + + /** + * Supported ssl types including none + * + * @var array + */ + public static $ssl_types = array( + self::SSL_TLS => 'TLS', // SSL with minimum TLS (no SSL v.2 or v.3), requires Horde_Imap_Client-2.16.0/Horde_Socket_Client-1.1.0 + self::SSL_SSL => 'SSL', + self::SSL_STARTTLS => 'STARTTLS', + 'no' => 'no', + ); + /** + * Convert ssl-type to Horde secure parameter + * + * @var array + */ + public static $ssl2secure = array( + 'SSL' => 'ssl', + 'STARTTLS' => 'tls', + 'TLS' => 'tlsv1', // SSL with minimum TLS (no SSL v.2 or v.3), requires Horde_Imap_Client-2.16.0/Horde_Socket_Client-1.1.0 + ); + /** + * Convert ssl-type to eMailAdmin acc_(imap|sieve|smtp)_ssl integer value + * + * @var array + */ + public static $ssl2type = array( + 'TLS' => self::SSL_TLS, + 'SSL' => self::SSL_SSL, + 'STARTTLS' => self::SSL_STARTTLS, + 'no' => self::SSL_NONE, + ); + + /** + * Available IMAP login types + * + * @var array + */ + public static $login_types = array( + '' => 'Username specified below for all', + 'standard' => 'username from account', + 'vmailmgr' => 'username@domainname', + //'admin' => 'Username/Password defined by admin', + 'uidNumber' => 'UserId@domain eg. u1234@domain', + 'email' => 'EMail-address from account', + ); + + /** + * List of domains know to not support Sieve + * + * Used to switch Sieve off by default, thought users can allways try switching it on. + * Testing not existing Sieve with google takes a long time, as ports are open, + * but not answering ... + * + * @var array + */ + public static $no_sieve_blacklist = array('gmail.com', 'googlemail.com', 'outlook.office365.com'); + + /** + * Is current use a mail administrator / has run rights for EMailAdmin + * + * @var boolean + */ + protected $is_admin = false; + + /** + * Constructor + */ + public function __construct() + { + $this->is_admin = isset($GLOBALS['egw_info']['user']['apps']['admin']); + + // for some reason most translation for account-wizard are in mail + Api\Translation::add_app('mail'); + + // Horde use locale for translation of error messages + Api\Preferences::setlocale(LC_MESSAGES); + } + + /** + * Step 1: IMAP account + * + * @param array $content + * @param type $msg + */ + public function add(array $content=array(), $msg='', $msg_type='success') + { + // otherwise we cant switch to ckeditor in edit + Api\Html\CkEditorConfig::set_csp_script_src_attrs(); + + $tpl = new Api\Etemplate('admin.mailwizard'); + if (empty($content['account_id'])) + { + $content['account_id'] = $GLOBALS['egw_info']['user']['account_id']; + } + // add some defaults if not already set (+= does not overwrite existing values!) + $content += array( + 'ident_realname' => $GLOBALS['egw']->accounts->id2name($content['account_id'], 'account_fullname'), + 'ident_email' => $GLOBALS['egw']->accounts->id2name($content['account_id'], 'account_email'), + 'acc_imap_port' => 993, + 'manual_class' => 'emailadmin_manual', + ); + egw_framework::message($msg ? $msg : (string)$_GET['msg'], $msg_type); + + if (!empty($content['acc_imap_host']) || !empty($content['acc_imap_username'])) + { + $readonlys['button[manual]'] = true; + unset($content['manual_class']); + } + $tpl->exec(static::APP_CLASS.'autoconfig', $content, array( + 'acc_imap_ssl' => self::$ssl_types, + ), $readonlys, $content, 2); + } + + /** + * Try to autoconfig an account + * + * @param array $content + */ + public function autoconfig(array $content) + { + // user pressed [Skip IMAP] --> jump to SMTP config + if ($content['button'] && key($content['button']) == 'skip_imap') + { + unset($content['button']); + if (!isset($content['acc_smtp_host'])) $content['acc_smtp_host'] = ''; // do manual mode right away + return $this->smtp($content, lang('Skipping IMAP configuration!')); + } + $content['output'] = ''; + $sel_options = $readonlys = array(); + + $content['connected'] = $connected = false; + if (empty($content['acc_imap_username'])) + { + $content['acc_imap_username'] = $content['ident_email']; + } + if (!empty($content['acc_imap_host'])) + { + $hosts = array($content['acc_imap_host'] => true); + if ($content['acc_imap_port'] > 0 && !in_array($content['acc_imap_port'], array(143,993))) + { + $ssl_type = (string)array_search($content['acc_imap_ssl'], self::$ssl2type); + if ($ssl_type === '') $ssl_type = 'insecure'; + $hosts[$content['acc_imap_host']] = array( + $ssl_type => $content['acc_imap_port'], + ); + } + } + elseif (($ispdb = self::mozilla_ispdb($content['ident_email'])) && count($ispdb['imap'])) + { + $content['ispdb'] = $ispdb; + $content['output'] .= lang('Using data from Mozilla ISPDB for provider %1', $ispdb['displayName'])."\n"; + $hosts = array(); + foreach($ispdb['imap'] as $server) + { + if (!isset($hosts[$server['hostname']])) + { + $hosts[$server['hostname']] = array('username' => $server['username']); + } + if (strtoupper($server['socketType']) == 'SSL') // try TLS first + { + $hosts[$server['hostname']]['TLS'] = $server['port']; + } + $hosts[$server['hostname']][strtoupper($server['socketType'])] = $server['port']; + // make sure we prefer SSL over STARTTLS over insecure + if (count($hosts[$server['hostname']]) > 2) + { + $hosts[$server['hostname']] = self::fix_ssl_order($hosts[$server['hostname']]); + } + } + } + else + { + $hosts = $this->guess_hosts($content['ident_email'], 'imap'); + } + + // iterate over all hosts and try to connect + foreach($hosts as $host => $data) + { + $content['acc_imap_host'] = $host; + // by default we check SSL, STARTTLS and at last an insecure connection + if (!is_array($data)) $data = array('TLS' => 993, 'SSL' => 993, 'STARTTLS' => 143, 'insecure' => 143); + + foreach($data as $ssl => $port) + { + if ($ssl === 'username') continue; + + $content['acc_imap_ssl'] = (int)self::$ssl2type[$ssl]; + + $e = null; + try { + $content['output'] .= "\n".Api\DateTime::to('now', 'H:i:s').": Trying $ssl connection to $host:$port ...\n"; + $content['acc_imap_port'] = $port; + + $imap = self::imap_client($content, self::TIMEOUT); + + //$content['output'] .= array2string($imap->capability()); + $imap->login(); + $content['output'] .= "\n".lang('Successful connected to %1 server%2.', 'IMAP', ' '.lang('and logged in'))."\n"; + if (!$imap->isSecureConnection()) + { + $content['output'] .= lang('Connection is NOT secure! Everyone can read eg. your credentials.')."\n"; + $content['acc_imap_ssl'] = 'no'; + } + //$content['output'] .= "\n\n".array2string($imap->capability()); + $content['connected'] = $connected = true; + break 2; + } + catch(Horde_Imap_Client_Exception $e) + { + switch($e->getCode()) + { + case Horde_Imap_Client_Exception::LOGIN_AUTHENTICATIONFAILED: + $content['output'] .= "\n".$e->getMessage()."\n"; + break 3; // no need to try other SSL or non-SSL connections, if auth failed + + case Horde_Imap_Client_Exception::SERVER_CONNECT: + $content['output'] .= "\n".$e->getMessage()."\n"; + if ($ssl == 'STARTTLS') break 2; // no need to try insecure connection on same port + break; + + default: + $content['output'] .= "\n".get_class($e).': '.$e->getMessage().' ('.$e->getCode().')'."\n"; + //$content['output'] .= $e->getTraceAsString()."\n"; + } + if (self::$debug) _egw_log_exception($e); + } + catch(Exception $e) { + $content['output'] .= "\n".get_class($e).': '.$e->getMessage().' ('.$e->getCode().')'."\n"; + //$content['output'] .= $e->getTraceAsString()."\n"; + if (self::$debug) _egw_log_exception($e); + } + } + } + if ($connected) // continue with next wizard step: define folders + { + unset($content['button']); + return $this->folder($content, lang('Successful connected to %1 server%2.', 'IMAP', ' '.lang('and logged in')). + ($imap->isSecureConnection() ? '' : "\n".lang('Connection is NOT secure! Everyone can read eg. your credentials.'))); + } + // add validation error, if we can identify a field + if (!$connected && $e instanceof Horde_Imap_Client_Exception) + { + switch($e->getCode()) + { + case Horde_Imap_Client_Exception::LOGIN_AUTHENTICATIONFAILED: + Api\Etemplate::set_validation_error('acc_imap_username', lang($e->getMessage())); + Api\Etemplate::set_validation_error('acc_imap_password', lang($e->getMessage())); + break; + + case Horde_Imap_Client_Exception::SERVER_CONNECT: + Api\Etemplate::set_validation_error('acc_imap_host', lang($e->getMessage())); + break; + } + } + $readonlys['button[manual]'] = true; + unset($content['manual_class']); + $sel_options['acc_imap_ssl'] = self::$ssl_types; + $tpl = new Api\Etemplate('admin.mailwizard'); + $tpl->exec(static::APP_CLASS.'autoconfig', $content, $sel_options, $readonlys, $content, 2); + } + + /** + * Step 2: Folder - let user select trash, sent, drafs and template folder + * + * @param array $content + * @param string $msg ='' + * @param Horde_Imap_Client_Socket $imap =null + */ + public function folder(array $content, $msg='', Horde_Imap_Client_Socket $imap=null) + { + if (isset($content['button'])) + { + list($button) = each($content['button']); + unset($content['button']); + switch($button) + { + case 'back': + return $this->add($content); + + case 'continue': + return $this->sieve($content); + } + } + $content['msg'] = $msg; + if (!isset($imap)) $imap = self::imap_client ($content); + + try { + //_debug_array($content); + $sel_options['acc_folder_sent'] = $sel_options['acc_folder_trash'] = + $sel_options['acc_folder_draft'] = $sel_options['acc_folder_template'] = + $sel_options['acc_folder_junk'] = self::mailboxes($imap, $content); + } + catch(Exception $e) { + $content['msg'] = $e->getMessage(); + if (self::$debug) _egw_log_exception($e); + } + + $tpl = new Api\Etemplate('admin.mailwizard.folder'); + $tpl->exec(static::APP_CLASS.'folder', $content, $sel_options, array(), $content); + } + + /** + * Query mailboxes and (optional) detect special folders + * + * @param Horde_Imap_Client_Socket $imap + * @param array &$content=null on return values for acc_folder_(sent|trash|draft|template) + * @return array with folders as key AND value + * @throws Horde_Imap_Client_Exception + */ + public static function mailboxes(Horde_Imap_Client_Socket $imap, array &$content=null) + { + // query all subscribed mailboxes + $mailboxes = $imap->listMailboxes('*', Horde_Imap_Client::MBOX_SUBSCRIBED, array( + 'special_use' => true, + 'attributes' => true, // otherwise special_use is only queried, but not returned ;-) + 'delimiter' => true, + )); + //_debug_array($mailboxes); + // list mailboxes by special-use attributes + $folders = $attributes = $all = array(); + foreach($mailboxes as $mailbox => $data) + { + foreach($data['attributes'] as $attribute) + { + $attributes[$attribute][] = $mailbox; + } + $folders[$mailbox] = $mailbox.': '.implode(', ', $data['attributes']); + } + // pre-select send, trash, ... folder for user, by checking special-use attributes or common name(s) + foreach(array( + 'acc_folder_sent' => array('\\sent', 'sent'), + 'acc_folder_trash' => array('\\trash', 'trash'), + 'acc_folder_draft' => array('\\drafts', 'drafts'), + 'acc_folder_template' => array('', 'templates'), + 'acc_folder_junk' => array('\\junk', 'junk', 'spam'), + ) as $name => $common_names) + { + // first check special-use attributes + if (($special_use = array_shift($common_names))) + { + foreach((array)$attributes[$special_use] as $mailbox) + { + if (empty($content[$name]) || strlen($mailbox) < strlen($content[$name])) + { + $content[$name] = $mailbox; + } + } + } + // no special use folder found, try common names + if (empty($content[$name])) + { + foreach($mailboxes as $mailbox => $data) + { + $delimiter = !empty($data['delimiter']) ? $data['delimiter'] : '.'; + $name_parts = explode($delimiter, strtolower($mailbox)); + if (array_intersect($name_parts, $common_names) && + (empty($content[$name]) || strlen($mailbox) < strlen($content[$name]) && substr($content[$name], 0, 6) != 'INBOX'.$delimiter)) + { + //error_log(__METHOD__."() $mailbox --> ".substr($name, 11).' folder'); + $content[$name] = $mailbox; + } + //else error_log(__METHOD__."() $mailbox does NOT match array_intersect(".array2string($name_parts).', '.array2string($common_names).')='.array2string(array_intersect($name_parts, $common_names))); + } + } + $folders[(string)$content[$name]] .= ' --> '.substr($name, 11).' folder'; + } + // uncomment for infos about selection process + //$content['folder_output'] = implode("\n", $folders); + + return array_combine(array_keys($mailboxes), array_keys($mailboxes)); + } + + /** + * Step 3: Sieve + * + * @param array $content + * @param string $msg ='' + */ + public function sieve(array $content, $msg='') + { + static $sieve_ssl2port = array( + self::SSL_TLS => 5190, + self::SSL_SSL => 5190, + self::SSL_STARTTLS => array(4190, 2000), + self::SSL_NONE => array(4190, 2000), + ); + $content['msg'] = $msg; + + if (isset($content['button'])) + { + list($button) = each($content['button']); + unset($content['button']); + switch($button) + { + case 'back': + return $this->folder($content); + + case 'continue': + if (!$content['acc_sieve_enabled']) + { + return $this->smtp($content); + } + break; + } + } + // first try: hide manual config + if (!isset($content['acc_sieve_enabled'])) + { + list(, $domain) = explode('@', $content['acc_imap_username']); + $content['acc_sieve_enabled'] = (int)!in_array($domain, self::$no_sieve_blacklist); + $content['manual_class'] = 'emailadmin_manual'; + } + else + { + unset($content['manual_class']); + $readonlys['button[manual]'] = true; + } + // set default ssl and port + if (!isset($content['acc_sieve_ssl'])) list($content['acc_sieve_ssl']) = each(self::$ssl_types); + if (empty($content['acc_sieve_port'])) $content['acc_sieve_port'] = $sieve_ssl2port[$content['acc_sieve_ssl']]; + + // check smtp connection + if ($button == 'continue') + { + $content['sieve_connected'] = false; + $content['sieve_output'] = ''; + unset($content['manual_class']); + + if (empty($content['acc_sieve_host'])) + { + $content['acc_sieve_host'] = $content['acc_imap_host']; + } + // if use set non-standard port, use it + if (!in_array($content['acc_sieve_port'], (array)$sieve_ssl2port[$content['acc_sieve_ssl']])) + { + $data = array($content['acc_sieve_ssl'] => $content['acc_sieve_port']); + } + else // otherwise try all standard ports + { + $data = $sieve_ssl2port; + } + foreach($data as $ssl => $ports) + { + foreach((array)$ports as $port) + { + $content['acc_sieve_ssl'] = $ssl; + $ssl_label = self::$ssl_types[$ssl]; + + $e = null; + try { + $content['sieve_output'] .= "\n".Api\DateTime::to('now', 'H:i:s').": Trying $ssl_label connection to $content[acc_sieve_host]:$port ...\n"; + $content['acc_sieve_port'] = $port; + $sieve = new Horde\ManageSieve(array( + 'host' => $content['acc_sieve_host'], + 'port' => $content['acc_sieve_port'], + 'secure' => self::$ssl2secure[(string)array_search($content['acc_sieve_ssl'], self::$ssl2type)], + 'timeout' => self::TIMEOUT, + 'logger' => self::DEBUG_LOG ? new admin_mail_logger(self::DEBUG_LOG) : null, + )); + // connect to sieve server + $sieve->connect(); + $content['sieve_output'] .= "\n".lang('Successful connected to %1 server%2.', 'Sieve',''); + // and log in + $sieve->login($content['acc_imap_username'], $content['acc_imap_password']); + $content['sieve_output'] .= ' '.lang('and logged in')."\n"; + $content['sieve_connected'] = true; + + unset($content['button']); + return $this->smtp($content, lang('Successful connected to %1 server%2.', 'Sieve', + ' '.lang('and logged in'))); + } + catch(Horde\ManageSieve\Exception\ConnectionFailed $e) { + $content['sieve_output'] .= "\n".$e->getMessage().' '.$e->details."\n"; + } + catch(Exception $e) { + $content['sieve_output'] .= "\n".get_class($e).': '.$e->getMessage(). + ($e->details ? ' '.$e->details : '').' ('.$e->getCode().')'."\n"; + $content['sieve_output'] .= $e->getTraceAsString()."\n"; + if (self::$debug) _egw_log_exception($e); + } + } + } + // not connected, and default ssl/port --> reset again to secure settings + if ($data == $sieve_ssl2port) + { + list($content['acc_sieve_ssl']) = each(self::$ssl_types); + $content['acc_sieve_port'] = $sieve_ssl2port[$content['acc_sieve_ssl']]; + } + } + // add validation error, if we can identify a field + if (!$content['sieve_connected'] && $e instanceof Exception) + { + switch($e->getCode()) + { + case 61: // connection refused + case 60: // connection timed out (imap.googlemail.com returns that for none-ssl/4190/2000) + case 65: // no route ot host (imap.googlemail.com returns that for ssl/5190) + Api\Etemplate::set_validation_error('acc_sieve_host', lang($e->getMessage())); + Api\Etemplate::set_validation_error('acc_sieve_port', lang($e->getMessage())); + break; + } + $content['msg'] = lang('No sieve support detected, either fix configuration manually or leave it switched off.'); + $content['acc_sieve_enabled'] = 0; + } + $sel_options['acc_sieve_ssl'] = self::$ssl_types; + $tpl = new Api\Etemplate('admin.mailwizard.sieve'); + $tpl->exec(static::APP_CLASS.'sieve', $content, $sel_options, $readonlys, $content, 2); + } + + /** + * Step 4: SMTP + * + * @param array $content + * @param string $msg ='' + */ + public function smtp(array $content, $msg='') + { + static $smtp_ssl2port = array( + self::SSL_NONE => 25, + self::SSL_SSL => 465, + self::SSL_TLS => 465, + self::SSL_STARTTLS => 587, + ); + $content['msg'] = $msg; + + if (isset($content['button'])) + { + list($button) = each($content['button']); + unset($content['button']); + switch($button) + { + case 'back': + return $this->sieve($content); + } + } + // first try: hide manual config + if (!isset($content['acc_smtp_host'])) + { + $content['manual_class'] = 'emailadmin_manual'; + } + else + { + unset($content['manual_class']); + $readonlys['button[manual]'] = true; + } + // copy username/password from imap + if (!isset($content['acc_smtp_username'])) $content['acc_smtp_username'] = $content['acc_imap_username']; + if (!isset($content['acc_smtp_password'])) $content['acc_smtp_password'] = $content['acc_imap_password']; + // set default ssl + if (!isset($content['acc_smtp_ssl'])) list($content['acc_smtp_ssl']) = each(self::$ssl_types); + if (empty($content['acc_smtp_port'])) $content['acc_smtp_port'] = $smtp_ssl2port[$content['acc_smtp_ssl']]; + + // check smtp connection + if ($button == 'continue') + { + $content['smtp_connected'] = false; + $content['smtp_output'] = ''; + unset($content['manual_class']); + + if (!empty($content['acc_smtp_host'])) + { + $hosts = array($content['acc_smtp_host'] => true); + if ((string)$content['acc_smtp_ssl'] !== (string)self::SSL_TLS || $content['acc_smtp_port'] != $smtp_ssl2port[$content['acc_smtp_ssl']]) + { + $ssl_type = (string)array_search($content['acc_smtp_ssl'], self::$ssl2type); + $hosts[$content['acc_smtp_host']] = array( + $ssl_type => $content['acc_smtp_port'], + ); + } + } + elseif($content['ispdb'] && !empty($content['ispdb']['smtp'])) + { + $content['smtp_output'] .= lang('Using data from Mozilla ISPDB for provider %1', $content['ispdb']['displayName'])."\n"; + $hosts = array(); + foreach($content['ispdb']['smtp'] as $server) + { + if (!isset($hosts[$server['hostname']])) + { + $hosts[$server['hostname']] = array('username' => $server['username']); + } + if (strtoupper($server['socketType']) == 'SSL') // try TLS first + { + $hosts[$server['hostname']]['TLS'] = $server['port']; + } + $hosts[$server['hostname']][strtoupper($server['socketType'])] = $server['port']; + // make sure we prefer SSL over STARTTLS over insecure + if (count($hosts[$server['hostname']]) > 2) + { + $hosts[$server['hostname']] = self::fix_ssl_order($hosts[$server['hostname']]); + } + } + } + else + { + $hosts = $this->guess_hosts($content['ident_email'], 'smtp'); + } + foreach($hosts as $host => $data) + { + $content['acc_smtp_host'] = $host; + if (!is_array($data)) + { + $data = array('TLS' => 465, 'SSL' => 465, 'STARTTLS' => 587, '' => 25); + } + foreach($data as $ssl => $port) + { + if ($ssl === 'username') continue; + + $content['acc_smtp_ssl'] = (int)self::$ssl2type[$ssl]; + + $e = null; + try { + $content['smtp_output'] .= "\n".Api\DateTime::to('now', 'H:i:s').": Trying $ssl connection to $host:$port ...\n"; + $content['acc_smtp_port'] = $port; + + $mail = new Horde_Mail_Transport_Smtphorde($params=array( + 'username' => $content['acc_smtp_username'], + 'password' => $content['acc_smtp_password'], + 'host' => $content['acc_smtp_host'], + 'port' => $content['acc_smtp_port'], + 'secure' => self::$ssl2secure[(string)array_search($content['acc_smtp_ssl'], self::$ssl2type)], + 'timeout' => self::TIMEOUT, + 'debug' => self::DEBUG_LOG, + )); + // create smtp connection and authenticate, if credentials given + $smtp = $mail->getSMTPObject(); + $content['smtp_output'] .= "\n".lang('Successful connected to %1 server%2.', 'SMTP', + (!empty($content['acc_smtp_username']) ? ' '.lang('and logged in') : ''))."\n"; + if (!$smtp->isSecureConnection()) + { + if (!empty($content['acc_smtp_username'])) + { + $content['smtp_output'] .= lang('Connection is NOT secure! Everyone can read eg. your credentials.')."\n"; + } + $content['acc_smtp_ssl'] = 'no'; + } + // Horde_Smtp always try to use STARTTLS, adjust our ssl-parameter if successful + elseif (!($content['acc_smtp_ssl'] > self::SSL_NONE)) + { + //error_log(__METHOD__."() new Horde_Mail_Transport_Smtphorde(".array2string($params).")->getSMTPObject()->isSecureConnection()=".array2string($smtp->isSecureConnection())); + $content['acc_smtp_ssl'] = self::SSL_STARTTLS; + } + // try sending a mail to a different domain, if not authenticated, to see if that's required + if (empty($content['acc_smtp_username'])) + { + $smtp->send($content['ident_email'], 'noreply@example.com', ''); + $content['smtp_output'] .= "\n".lang('Relay access checked')."\n"; + } + $content['smtp_connected'] = true; + unset($content['button']); + return $this->edit($content, lang('Successful connected to %1 server%2.', 'SMTP', + empty($content['acc_smtp_username']) ? ' - '.lang('Relay access checked') : ' '.lang('and logged in'))); + } + // unfortunately LOGIN_AUTHENTICATIONFAILED and SERVER_CONNECT are thrown as Horde_Mail_Exception + // while others are thrown as Horde_Smtp_Exception --> using common base Horde_Exception_Wrapped + catch(Horde_Exception_Wrapped $e) + { + switch($e->getCode()) + { + case Horde_Smtp_Exception::LOGIN_AUTHENTICATIONFAILED: + case Horde_Smtp_Exception::LOGIN_REQUIREAUTHENTICATION: + case Horde_Smtp_Exception::UNSPECIFIED: + $content['smtp_output'] .= "\n".$e->getMessage()."\n"; + break; + case Horde_Smtp_Exception::SERVER_CONNECT: + $content['smtp_output'] .= "\n".$e->getMessage()."\n"; + break; + default: + $content['smtp_output'] .= "\n".$e->getMessage().' ('.$e->getCode().')'."\n"; + break; + } + if (self::$debug) _egw_log_exception($e); + } + catch(Horde_Smtp_Exception $e) + { + // prever $e->details over $e->getMessage() as it contains original message from SMTP server (eg. relay access denied) + $content['smtp_output'] .= "\n".(empty($e->details) ? $e->getMessage().' ('.$e->getCode().')' : $e->details)."\n"; + //$content['smtp_output'] .= $e->getTraceAsString()."\n"; + if (self::$debug) _egw_log_exception($e); + } + catch(Exception $e) { + $content['smtp_output'] .= "\n".get_class($e).': '.$e->getMessage().' ('.$e->getCode().')'."\n"; + //$content['smtp_output'] .= $e->getTraceAsString()."\n"; + if (self::$debug) _egw_log_exception($e); + } + } + } + } + // add validation error, if we can identify a field + if (!$content['smtp_connected'] && $e instanceof Horde_Exception_Wrapped) + { + switch($e->getCode()) + { + case Horde_Smtp_Exception::LOGIN_AUTHENTICATIONFAILED: + case Horde_Smtp_Exception::LOGIN_REQUIREAUTHENTICATION: + case Horde_Smtp_Exception::UNSPECIFIED: + Api\Etemplate::set_validation_error('acc_smtp_username', lang($e->getMessage())); + Api\Etemplate::set_validation_error('acc_smtp_password', lang($e->getMessage())); + break; + + case Horde_Smtp_Exception::SERVER_CONNECT: + Api\Etemplate::set_validation_error('acc_smtp_host', lang($e->getMessage())); + Api\Etemplate::set_validation_error('acc_smtp_port', lang($e->getMessage())); + break; + } + } + $sel_options['acc_smtp_ssl'] = self::$ssl_types; + $tpl = new Api\Etemplate('admin.mailwizard.smtp'); + $tpl->exec(static::APP_CLASS.'smtp', $content, $sel_options, $readonlys, $content, 2); + } + + /** + * Edit mail account(s) + * + * Gets either called with GET parameter: + * + * a) account_id from admin >> Manage users to edit / add mail accounts for a user + * --> shows selectbox to switch between different mail accounts of user and "create new account" + * + * b) via mail_wizard proxy class by regular mail user to edit (acc_id GET parameter) or create new mail account + * + * @param array $content =null + * @param string $msg ='' + * @param string $msg_type ='success' + */ + public function edit(array $content=null, $msg='', $msg_type='success') + { + // app is trying to tell something, while redirecting to wizard + if (empty($content) && $_GET['acc_id'] && empty($msg) && !empty( $_GET['msg'])) + { + if (stripos($_GET['msg'],'fatal error:')!==false || $_GET['msg_type'] == 'error') $msg_type = 'error'; + } + if ($content['acc_id'] || (isset($_GET['acc_id']) && (int)$_GET['acc_id'] > 0) ) Mail::unsetCachedObjects($content['acc_id']?$content['acc_id']:$_GET['acc_id']); + $tpl = new Api\Etemplate('admin.mailaccount'); + + if (!is_array($content) || !empty($content['acc_id']) && isset($content['old_acc_id']) && $content['acc_id'] != $content['old_acc_id']) + { + if (!is_array($content)) $content = array(); + if ($this->is_admin && isset($_GET['account_id'])) + { + $content['called_for'] = (int)$_GET['account_id']; + $content['accounts'] = iterator_to_array(Mail\Account::search($content['called_for'])); + if ($content['accounts']) + { + list($content['acc_id']) = each($content['accounts']); + //error_log(__METHOD__.__LINE__.'.'.array2string($content['acc_id'])); + // test if the "to be selected" acccount is imap or not + if (count($content['accounts'])>1 && Mail\Account::is_multiple($content['acc_id'])) + { + try { + $account = Mail\Account::read($content['acc_id'], $content['called_for']); + //try to select the first account that is of type imap + if (!$account->is_imap()) + { + list($content['acc_id']) = each($content['accounts']); + //error_log(__METHOD__.__LINE__.'.'.array2string($content['acc_id'])); + } + } + catch(Api\Exception\NotFound $e) { + if (self::$debug) _egw_log_exception($e); + } + } + } + if (!$content['accounts']) // no email account, call wizard + { + return $this->add(array('account_id' => (int)$_GET['account_id'])); + } + $content['accounts']['new'] = lang('Create new account'); + } + if (isset($_GET['acc_id']) && (int)$_GET['acc_id'] > 0) + { + $content['acc_id'] = (int)$_GET['acc_id']; + } + // clear current account-data, as account has changed and we going to read selected one + $content = array_intersect_key($content, array_flip(array('called_for', 'accounts', 'acc_id', 'tabs'))); + + if ($content['acc_id'] > 0) + { + try { + $account = Mail\Account::read($content['acc_id'], $this->is_admin && $content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id']); + $account->getUserData(); // quota, aliases, forwards etc. + $content += $account->params; + $content['acc_sieve_enabled'] = (string)($content['acc_sieve_enabled']); + $content['notify_use_default'] = !$content['notify_account_id']; + self::fix_account_id_0($content['account_id']); + + // read identities (of current user) and mark std identity + $content['identities'] = iterator_to_array(Mail\Account::identities($account, true, 'name', $content['called_for'])); + $content['std_ident_id'] = $content['ident_id']; + $content['identities'][$content['std_ident_id']] = lang('Standard identity'); + // change self::SSL_NONE (=0) to "no" used in sel_options + foreach(array('imap','smtp','sieve') as $type) + { + if (!$content['acc_'.$type.'_ssl']) $content['acc_'.$type.'_ssl'] = 'no'; + } + } + catch(Api\Exception\NotFound $e) { + if (self::$debug) _egw_log_exception($e); + egw_framework::window_close(lang('Account not found!')); + } + catch(Exception $e) { + if (self::$debug) _egw_log_exception($e); + egw_framework::window_close($e->getMessage().' ('.get_class($e).': '.$e->getCode().')'); + } + } + elseif ($content['acc_id'] === 'new') + { + $content['account_id'] = $content['called_for']; + $content['old_acc_id'] = $content['acc_id']; // to not call add/wizard, if we return from to + unset($content['tabs']); + return $this->add($content); + } + } + // some defaults for new accounts + if (!isset($content['account_id']) || empty($content['acc_id']) || $content['acc_id'] === 'new') + { + if (!isset($content['account_id'])) $content['account_id'] = array($GLOBALS['egw_info']['user']['account_id']); + $content['acc_user_editable'] = $content['acc_further_identities'] = true; + $readonlys['ident_id'] = true; // need to create standard identity first + } + if (empty($content['acc_name'])) + { + $content['acc_name'] = $content['ident_email']; + } + // disable some stuff for non-emailadmins (all values are preserved!) + if (!$this->is_admin) + { + $readonlys = array( + 'account_id' => true, 'button[multiple]' => true, 'acc_user_editable' => true, + 'acc_further_identities' => true, + 'acc_imap_type' => true, 'acc_imap_logintype' => true, 'acc_domain' => true, + 'acc_imap_admin_username' => true, 'acc_imap_admin_password' => true, + 'acc_smtp_type' => true, 'acc_smtp_auth_session' => true, + ); + } + // ensure correct values for single user mail accounts (we only hide them client-side) + if (!($is_multiple = Mail\Account::is_multiple($content))) + { + $content['acc_imap_type'] = 'EGroupware\\Api\\Mail\\Imap'; + unset($content['acc_imap_login_type']); + $content['acc_smtp_type'] = 'EGroupware\\Api\\Mail\\Smtp'; + unset($content['acc_smtp_auth_session']); + unset($content['notify_use_default']); + } + $edit_access = Mail\Account::check_access(EGW_ACL_EDIT, $content); + + // disable notification save-default and use-default, if only one account or no edit-rights + $tpl->disableElement('notify_save_default', !$is_multiple || !$edit_access); + $tpl->disableElement('notify_use_default', !$is_multiple); + + if (isset($content['button'])) + { + list($button) = each($content['button']); + unset($content['button']); + switch($button) + { + case 'wizard': + // if we just came from wizard, go back to last page/step + if (isset($content['smtp_connected'])) + { + return $this->smtp($content); + } + // otherwise start with first step + return $this->autoconfig($content); + + case 'delete_identity': + // delete none-standard identity of current user + if (($this->is_admin || $content['acc_further_identities']) && + $content['ident_id'] > 0 && $content['std_ident_id'] != $content['ident_id']) + { + Mail\Account::delete_identity($content['ident_id']); + $msg = lang('Identity deleted'); + unset($content['identities'][$content['ident_id']]); + $content['ident_id'] = $content['std_ident_id']; + } + break; + + case 'save': + case 'apply': + try { + // save none-standard identity for current user + if ($content['acc_id'] && $content['acc_id'] !== 'new' && + ($this->is_admin || $content['acc_further_identities']) && + $content['std_ident_id'] != $content['ident_id']) + { + $content['ident_id'] = Mail\Account::save_identity(array( + 'account_id' => $content['called_for'] ? $content['called_for'] : $GLOBALS['egw_info']['user']['account_id'], + )+$content); + $content['identities'][$content['ident_id']] = Mail\Account::identity_name($content); + $msg = lang('Identity saved.'); + if ($edit_access) $msg .= ' '.lang('Switch back to standard identity to save account.'); + } + elseif ($edit_access) + { + // if admin username/password given, check if it is valid + $account = new Mail\Account($content); + if ($account->acc_imap_administration) + { + $imap = $account->imapServer(true); + if ($imap) $imap->checkAdminConnection(); + } + // test sieve connection, if not called for other user, enabled and credentials available + if (!$content['called_for'] && $account->acc_sieve_enabled && $account->acc_imap_username) + { + $account->imapServer()->retrieveRules(); + } + $new_account = !($content['acc_id'] > 0); + // check for deliveryMode="forwardOnly", if a forwarding-address is given + if ($content['acc_smtp_type'] != 'EGroupware\\Api\\Mail\\Smtp' && + $content['deliveryMode'] == Mail\Smtp::FORWARD_ONLY && + empty($content['mailForwardingAddress'])) + { + Api\Etemplate::set_validation_error('mailForwardingAddress', lang('Field must not be empty !!!')); + throw new Api\Exception\WrongUserinput(lang('You need to specify a forwarding address, when checking "%1"!', lang('Forward only'))); + } + // set notifications to store according to checkboxes + if ($content['notify_save_default']) + { + $content['notify_account_id'] = 0; + } + elseif (!$content['notify_use_default']) + { + $content['notify_account_id'] = $content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id']; + } + self::fix_account_id_0($content['account_id'], true); + $content = Mail\Account::write($content, $content['called_for'] || !$this->is_admin ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id']); + self::fix_account_id_0($content['account_id']); + $msg = lang('Account saved.'); + // user wants default notifications + if ($content['acc_id'] && $content['notify_use_default']) + { + // delete own ones + Mail\Notifications::delete($content['acc_id'], $content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id']); + // load default ones + $content = array_merge($content, Mail\Notifications::read($content['acc_id'], 0)); + } + // add new std identity entry + if ($new_account) + { + $content['std_ident_id'] = $content['ident_id']; + $content['identities'] = array( + $content['std_ident_id'] => lang('Standard identity')); + } + if (isset($content['accounts'])) + { + if (!isset($content['accounts'][$content['acc_id']])) // insert new account as top, not bottom + { + $content['accounts'] = array($content['acc_id'] => '') + $content['accounts']; + } + $content['accounts'][$content['acc_id']] = Mail\Account::identity_name($content, false); + } + } + else + { + if ($content['notify_use_default'] && $content['notify_account_id']) + { + // delete own ones + if (Mail\Notifications::delete($content['acc_id'], $content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id'])) + { + $msg = lang('Notification folders updated.'); + } + // load default ones + $content = array_merge($content, Mail\Notifications::read($content['acc_id'], 0)); + } + if (!$content['notify_use_default']) + { + $content['notify_account_id'] = $content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id']; + if (Mail\Notifications::write($content['acc_id'], $content['notify_account_id'], + $content['notify_folders'])) + { + $msg = lang('Notification folders updated.'); + } + } + if ($content['acc_user_forward'] && !empty($content['acc_smtp_type']) && $content['acc_smtp_type'] != 'EGroupware\\Api\\Mail\\Smtp') + { + $account = new Mail\Account($content); + $account->smtpServer()->saveSMTPForwarding($content['called_for'] ? + $content['called_for'] : $GLOBALS['egw_info']['user']['account_id'], + $content['mailForwardingAddress'], + $content['forwardOnly'] ? null : 'yes'); + } + } + } + catch (Horde_Imap_Client_Exception $e) + { + _egw_log_exception($e); + $tpl->set_validation_error('acc_imap_admin_username', $msg=lang($e->getMessage())); + $msg_type = 'error'; + $content['tabs'] = 'admin.mailaccount.imap'; // should happen automatic + break; + } + catch (Horde\ManageSieve\Exception\ConnectionFailed $e) + { + _egw_log_exception($e); + $tpl->set_validation_error('acc_sieve_port', $msg=lang($e->getMessage())); + $msg_type = 'error'; + $content['tabs'] = 'admin.mailaccount.sieve'; // should happen automatic + break; + } + catch (Exception $e) { + $msg = lang('Error saving account!')."\n".$e->getMessage(); + $button = 'apply'; + $msg_type = 'error'; + } + if ($content['acc_id']) Mail::unsetCachedObjects($content['acc_id']); + if (stripos($msg,'fatal error:')!==false) $msg_type = 'error'; + egw_framework::refresh_opener($msg, 'emailadmin', $content['acc_id'], $new_account ? 'add' : 'update', null, null, null, $msg_type); + if ($button == 'save') egw_framework::window_close(); + break; + + case 'delete': + if (!Mail\Account::check_access(EGW_ACL_DELETE, $content)) + { + $msg = lang('Permission denied!'); + $msg_type = 'error'; + } + elseif (Mail\Account::delete($content['acc_id']) > 0) + { + if ($content['acc_id']) Mail::unsetCachedObjects($content['acc_id']); + egw_framework::refresh_opener(lang('Account deleted.'), 'emailadmin', $content['acc_id'], 'delete'); + egw_framework::window_close(); + } + else + { + $msg = lang('Failed to delete account!'); + $msg_type = 'error'; + } + } + } + + // disable delete button for new, not yet saved entries, if no delete rights or a non-standard identity selected + $readonlys['button[delete]'] = empty($content['acc_id']) || + !Mail\Account::check_access(EGW_ACL_DELETE, $content) || + $content['ident_id'] != $content['std_ident_id']; + + // if account is for multiple user, change delete confirmation to reflect that + if (Mail\Account::is_multiple($content)) + { + $tpl->setElementAttribute('button[delete]', 'onclick', "et2_dialog.confirm(widget,'This is NOT a personal mail account!\\n\\nAccount will be deleted for ALL users!\\n\\nAre you really sure you want to do that?','Delete this account')"); + } + + // if no edit access, make whole dialog readonly + if (!$edit_access) + { + $readonlys['__ALL__'] = true; + $readonlys['button[cancel]'] = false; + // allow to edit notification-folders + $readonlys['button[save]'] = $readonlys['button[apply]'] = + $readonlys['notify_folders'] = $readonlys['notify_use_default'] = false; + } + + $sel_options['acc_imap_ssl'] = $sel_options['acc_sieve_ssl'] = + $sel_options['acc_smtp_ssl'] = self::$ssl_types; + + // admin access to account with no credentials available + if ($this->is_admin && (empty($content['acc_imap_username']) || empty($content['acc_imap_host']) || $content['called_for'])) + { + // cant connection to imap --> allow free entries in taglists + foreach(array('acc_folder_sent', 'acc_folder_trash', 'acc_folder_draft', 'acc_folder_template', 'acc_folder_junk') as $folder) + { + $tpl->setElementAttribute($folder, 'allowFreeEntries', true); + } + } + else + { + try { + $sel_options['acc_folder_sent'] = $sel_options['acc_folder_trash'] = + $sel_options['acc_folder_draft'] = $sel_options['acc_folder_template'] = + $sel_options['acc_folder_junk'] = $sel_options['notify_folders'] = + self::mailboxes(self::imap_client ($content)); + } + catch(Exception $e) { + if (self::$debug) _egw_log_exception($e); + // let user know what the problem is and that he can fix it using wizard or deleting + $msg = lang($e->getMessage())."\n\n".lang('You can use wizard to fix account settings or delete account.'); + $msg_type = 'error'; + // cant connection to imap --> allow free entries in taglists + foreach(array('acc_folder_sent', 'acc_folder_trash', 'acc_folder_draft', 'acc_folder_template', 'acc_folder_junk') as $folder) + { + $tpl->setElementAttribute($folder, 'allowFreeEntries', true); + } + } + } + + $sel_options['acc_imap_type'] = Mail\Types::getIMAPServerTypes(false); + $sel_options['acc_smtp_type'] = Mail\Types::getSMTPServerTypes(false); + $sel_options['acc_imap_logintype'] = self::$login_types; + $sel_options['ident_id'] = $content['identities']; + $sel_options['acc_id'] = $content['accounts']; + + // user is allowed to create or edit further identities + if ($edit_access || $content['acc_further_identities']) + { + $sel_options['ident_id']['new'] = lang('Create new identity'); + $readonlys['ident_id'] = false; + + // if no edit-access and identity is not standard identity --> allow to edit identity + if (!$edit_access && $content['ident_id'] != $content['std_ident_id']) + { + $readonlys += array( + 'button[save]' => false, 'button[apply]' => false, + 'button[placeholders]' => false, + 'ident_name' => false, + 'ident_realname' => false, 'ident_email' => false, + 'ident_org' => false, 'ident_signature' => false, + ); + } + if ($content['ident_id'] != $content['old_ident_id'] && + ($content['old_ident_id'] || $content['ident_id'] != $content['std_ident_id'])) + { + if ($content['ident_id'] > 0) + { + $identity = Mail\Account::read_identity($content['ident_id'], false, $content['called_for']); + unset($identity['account_id']); + $content = array_merge($content, $identity); + } + else + { + $content['ident_name'] = $content['ident_realname'] = $content['ident_email'] = + $content['ident_org'] = $content['ident_signature'] = ''; + } + if (empty($msg) && $edit_access && $content['ident_id'] && $content['ident_id'] != $content['std_ident_id']) + { + $msg = lang('Switch back to standard identity to save other account data.'); + $msg_type = 'help'; + } + $content['old_ident_id'] = $content['ident_id']; + } + } + $content['old_acc_id'] = $content['acc_id']; + + // only allow to delete further identities, not a standard identity + $readonlys['button[delete_identity]'] = !($content['ident_id'] > 0 && $content['ident_id'] != $content['std_ident_id']); + + // disable aliases tab for default smtp class EGroupware\Api\Mail\Smtp + $readonlys['tabs']['admin.mailaccount.aliases'] = !$content['acc_smtp_type'] || + $content['acc_smtp_type'] == 'EGroupware\\Api\\Mail\\Smtp'; + + // allow smtp class to disable certain features in alias tab + if ($content['acc_smtp_type'] && class_exists($content['acc_smtp_type']) && + is_a($content['acc_smtp_type'], 'EGroupware\\Api\\Mail\\Smtp\\Ldap', true)) + { + $content['no_forward_available'] = !constant($content['acc_smtp_type'].'::FORWARD_ATTR'); + if (!constant($content['acc_smtp_type'].'::FORWARD_ONLY_ATTR')) + { + $readonlys['deliveryMode'] = true; + } + } + + // account allows users to change forwards + if (!$edit_access && !$readonlys['tabs']['admin.mailaccount.aliases'] && $content['acc_user_forward']) + { + $readonlys['mailForwardingAddress'] = false; + } + + // allow imap classes to disable certain tabs or fields + if (($class = Mail\Account::getIcClass($content['acc_imap_type'])) && class_exists($class) && + ($imap_ro = call_user_func(array($class, 'getUIreadonlys')))) + { + $readonlys = array_merge($readonlys, $imap_ro, array( + 'tabs' => array_merge((array)$readonlys['tabs'], (array)$imap_ro['tabs']), + )); + } + egw_framework::message($msg ? $msg : (string)$_GET['msg'], $msg_type); + + if (count($content['account_id']) > 1) + { + $tpl->setElementAttribute('account_id', 'multiple', true); + $readonlys['button[multiple]'] = true; + } + // when called by admin for existing accounts, display further administrative actions + if ($content['called_for'] && $content['acc_id'] > 0) + { + $admin_actions = array(); + foreach($GLOBALS['egw']->hooks->process(array( + 'location' => 'emailadmin_edit', + 'account_id' => $content['called_for'], + 'acc_id' => $content['acc_id'], + )) as $actions) + { + if ($actions) $admin_actions = array_merge($admin_actions, $actions); + } + if ($admin_actions) $tpl->setElementAttribute('admin_actions', 'actions', $admin_actions); + } + $content['admin_actions'] = (bool)$admin_actions; + + $tpl->exec(static::APP_CLASS.'edit', $content, $sel_options, $readonlys, $content, 2); + } + + /** + * Replace 0 with '' or back + * + * @param string|array &$account_id on return always array + * @param boolean $back =false + */ + private static function fix_account_id_0(&$account_id=null, $back=false) + { + if (!isset($account_id)) return; + + if (!is_array($account_id)) + { + $account_id = explode(',', $account_id); + } + if (($k = array_search($back?'':'0', $account_id)) !== false) + { + $account_id[$k] = $back ? '0' : ''; + } + } + + /** + * Instanciate imap-client + * + * @param array $content + * @param int $timeout =null default use value returned by Mail\Imap::getTimeOut() + * @return Horde_Imap_Client_Socket + */ + protected static function imap_client(array $content, $timeout=null) + { + return new Horde_Imap_Client_Socket(array( + 'username' => $content['acc_imap_username'], + 'password' => $content['acc_imap_password'], + 'hostspec' => $content['acc_imap_host'], + 'port' => $content['acc_imap_port'], + 'secure' => self::$ssl2secure[(string)array_search($content['acc_imap_ssl'], self::$ssl2type)], + 'timeout' => $timeout > 0 ? $timeout : Mail\Imap::getTimeOut(), + 'debug' => self::DEBUG_LOG, + )); + } + + /** + * Reorder SSL types to make sure we start with TLS, SSL, STARTTLS and insecure last + * + * @param array $data ssl => port pairs plus other data like value for 'username' + * @return array + */ + protected static function fix_ssl_order($data) + { + $ordered = array(); + foreach(array_merge(array('TLS', 'SSL', 'STARTTLS'), array_keys($data)) as $key) + { + if (array_key_exists($key, $data)) $ordered[$key] = $data[$key]; + } + return $ordered; + } + + /** + * Query Mozilla's ISPDB + * + * Some providers eg. 1-and-1 do not report their hosted domains to ISPDB, + * therefore we try it with the found MX and it's domain-part (host-name removed). + * + * @param string $domain domain or email + * @param boolean $try_mx =true if domain itself is not found, try mx or domain-part (host removed) of mx + * @return array with values for keys 'displayName', 'imap', 'smtp', 'pop3', which each contain + * array of arrays with values for keys 'hostname', 'port', 'socketType'=(SSL|STARTTLS), 'username'=%EMAILADDRESS% + */ + protected static function mozilla_ispdb($domain, $try_mx=true) + { + if (strpos($domain, '@') !== false) list(,$domain) = explode('@', $domain); + + $url = 'https://autoconfig.thunderbird.net/v1.1/'.$domain; + try { + $xml = @simplexml_load_file($url); + if (!$xml->emailProvider) throw new Api\Exception\NotFound(); + $provider = array( + 'displayName' => (string)$xml->emailProvider->displayName, + ); + foreach($xml->emailProvider->children() as $tag => $server) + { + if (!in_array($tag, array('incomingServer', 'outgoingServer'))) continue; + foreach($server->attributes() as $name => $value) + { + if ($name == 'type') $type = (string)$value; + } + $data = array(); + foreach($server as $name => $value) + { + foreach($value->children() as $tag => $val) + { + $data[$name][$tag] = (string)$val; + } + if (!isset($data[$name])) $data[$name] = (string)$value; + } + $provider[$type][] = $data; + } + } + catch(Exception $e) { + // ignore own not-found exception or xml parsing execptions + unset($e); + + if ($try_mx && ($dns = dns_get_record($domain, DNS_MX))) + { + $domain = $dns[0]['target']; + if (!($provider = self::mozilla_ispdb($domain, false))) + { + list(,$domain) = explode('.', $domain, 2); + $provider = self::mozilla_ispdb($domain, false); + } + } + else + { + $provider = array(); + } + } + //error_log(__METHOD__."('$email') returning ".array2string($provider)); + return $provider; + } + + /** + * Guess possible server hostnames from email address: + * - $type.$domain, mail.$domain + * - replace host in MX with imap or mail + * - MX for $domain + * + * @param string $email email address + * @param string $type ='imap' 'imap' or 'smtp', used as hostname beside 'mail' + * @return array of hostname => true pairs + */ + protected function guess_hosts($email, $type='imap') + { + list(,$domain) = explode('@', $email); + + $hosts = array(); + + // try usuall names + $hosts[$type.'.'.$domain] = true; + $hosts['mail.'.$domain] = true; + if ($type == 'smtp') $hosts['send.'.$domain] = true; + + if (($dns = dns_get_record($domain, DNS_MX))) + { + //error_log(__METHOD__."('$email') dns_get_record('$domain', DNS_MX) returned ".array2string($dns)); + // hosts for office365 are outlook|smpt.office365.com for MX *.mail.protection.outlook.com + if (substr($dns[0]['target'], -28) == '.mail.protection.outlook.com') + { + $hosts[($type == 'imap' ? 'outlook' : 'smtp').'.office365.com'] = true; + } + $hosts[preg_replace('/^[^.]+/', $type, $dns[0]['target'])] = true; + $hosts[preg_replace('/^[^.]+/', 'mail', $dns[0]['target'])] = true; + if ($type == 'smtp') $hosts[preg_replace('/^[^.]+/', 'send', $dns[0]['target'])] = true; + $hosts[$dns[0]['target']] = true; + } + + // verify hosts in dns + foreach(array_keys($hosts) as $host) + { + if (!dns_get_record($host, DNS_A)) unset($hosts[$host]); + } + //error_log(__METHOD__."('$email') returning ".array2string($hosts)); + return $hosts; + } + + /** + * Set mail account status wheter to 'active' or '' (inactive) + * + * @param array $_data account an array of data called via long task running dialog + * $_data:array ( + * id => account_id, + * qouta => quotaLimit, + * domain => mailLocalAddress, + * status => mail activation status('active'|'') + * ) + * @return json response + */ + public function ajax_activeAccounts($_data) + { + if (!$this->is_admin) die('no rights to be here!'); + $response = egw_json_response::get(); + if (($account = $GLOBALS['egw']->accounts->read($_data['id']))) + { + if ($_data['quota'] !== '' || $_data['accountStatus'] !== '' + || strpos($_data['domain'], '.')) + { + $emailadmin = Mail\Account::get_default(); + if (!Mail\Account::is_multiple($emailadmin)) + { + $msg = lang('No default account found!'); + return $response->data($msg); + } + + $ea_account = Mail\Account::read($emailadmin->acc_id, $_data['id']); + if (($userData = $ea_account->getUserData ())) + { + $userData = array( + 'acc_smtp_type' => $ea_account->acc_smtp_type, + 'accountStatus' => $_data['status'], + 'quotaLimit' => $_data['qouta']? $_data['qouta']: $userData['qoutaLimit'], + 'mailLocalAddress' => $userData['mailLocalAddress'] + ); + + if (strpos($_data['domain'], '.') !== false) + { + $userData['mailLocalAddress'] = preg_replace('/@'.preg_quote($ea_account->acc_domain).'$/', '@'.$_data['domain'], $userData['mailLocalAddress']); + + foreach($userData['mailAlternateAddress'] as &$alias) + { + $alias = preg_replace('/@'.preg_quote($ea_account->acc_domain).'$/', '@'.$_data['domain'], $alias); + } + } + // fullfill the saveUserData requirements + $userData += $ea_account->params; + $ea_account->saveUserData($_data['id'], $userData); + $msg = '#'.$_data['id'].' '.$account['account_fullname']. ' '.($userData['accountStatus'] == 'active'? lang('activated'):lang('deactivated')); + } + else + { + $msg .= lang('No profile defined for user %1', '#'.$_data['id'].' '.$account['account_fullname']."\n"); + + } + } + } + $response->data($msg); + } +} + +/** + * Trivial file logger, as Horde\ManageSieve does not support just a file + */ +class admin_mail_logger +{ + private $fp; + + public function __construct($log) + { + $this->fp = is_resource($log) ? $log : fopen($log, 'a'); + } + + public function debug($msg) + { + fwrite($this->fp, $msg."\n"); + } +} diff --git a/admin/inc/class.admin_passwordreset.inc.php b/admin/inc/class.admin_passwordreset.inc.php index 12a214c5c9..73ac36e5d2 100644 --- a/admin/inc/class.admin_passwordreset.inc.php +++ b/admin/inc/class.admin_passwordreset.inc.php @@ -5,13 +5,15 @@ * @link http://www.egroupware.org * @author Ralf Becker * @package admin - * @copyright (c) 2011-14 by Ralf Becker + * @copyright (c) 2011-16 by Ralf Becker * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @version $Id$ */ include_once(EGW_INCLUDE_ROOT.'/setup/inc/hook_config.inc.php'); // functions to return password hashes +use EGroupware\Api; + /** * Reset passwords */ @@ -72,13 +74,13 @@ class admin_passwordreset { if ($content['download_csv'] && $content['changed']) { - html::content_header('changed.csv','text/csv'); + Api\Header\Content::type('changed.csv', 'text/csv'); //echo "account_lid;account_password;account_email;account_firstname;account_lastname\n"; foreach($content['changed'] as $account) { echo "$account[account_lid];$account[account_password];$account[account_email];$account[account_firstname];$account[account_lastname]\n"; } - common::egw_exit(); + exit; } if (!$content['users']) { @@ -99,7 +101,7 @@ class admin_passwordreset { if ($content['hash'] && $content['hash'] != $current_hash) { - config::save_value($account_repository.'_encryption_type',$content['hash'],'phpgwapi'); + Api\Config::save_value($account_repository.'_encryption_type',$content['hash'],'phpgwapi'); $msg = lang('Changed password hash for %1 to %2.',strtoupper($account_repository),$content['hash'])."\n"; $GLOBALS['egw_info']['server'][$account_repository.'_encryption_type'] = $content['hash']; } @@ -113,7 +115,7 @@ class admin_passwordreset //_debug_array($account); //break; if ($content['random_pw']) { - $password = auth::randomstring(8); + $password = Api\Auth::randomstring(8); $old_password = null; } elseif ($change_pw && !preg_match('/^{plain}/i',$account['account_pwd']) && @@ -157,8 +159,8 @@ class admin_passwordreset { if (!isset($emailadmin)) { - $emailadmin = emailadmin_account::get_default(); - if (!emailadmin_account::is_multiple($emailadmin)) + $emailadmin = Api\Mail\Account::get_default(); + if (!Api\Mail\Account::is_multiple($emailadmin)) { $msg = lang('No default account found!'); break; @@ -218,7 +220,7 @@ class admin_passwordreset { $send->Send(); } - catch (phpmailerException $e) + catch (Exception $e) { unset ($e); $msg .= lang('Notifying account "%1" %2 failed!',$account['account_lid'],$account['account_email']). @@ -253,7 +255,7 @@ class admin_passwordreset $GLOBALS['egw_info']['flags']['app_header'] = lang('Bulk password reset'); - $tmpl = new etemplate_new('admin.passwordreset'); + $tmpl = new Api\Etemplate('admin.passwordreset'); $tmpl->exec('admin.admin_passwordreset.index',$content,$sel_options,$readonlys,array( 'changed' => $changed, )); diff --git a/admin/js/app.js b/admin/js/app.js index a1aba72bc6..ca97ca65b8 100644 --- a/admin/js/app.js +++ b/admin/js/app.js @@ -98,13 +98,15 @@ app.classes.admin = AppJS.extend( } break; - case 'admin.categories.index': - break; case 'admin.customfield_edit': // Load settings appropriate to currently set type var widget = _et2.widgetContainer.getWidgetById('cf_type'); this.cf_type_change(null,widget); break; + + case 'admin.mailaccount': + this.account_hide_not_applying(); + break; } }, @@ -809,19 +811,20 @@ app.classes.admin = AppJS.extend( jQuery(root.getWidgetById('cf_rows').getDOMNode()).toggle(attributes.cf_rows && true); jQuery(root.getWidgetById('cf_values').getParentDOMNode()).toggle(attributes.cf_values && true); }, - + /** * Activate none standard SMTP mail accounts for selected users - * - * @param {type} _selected selected users + * + * @param {egw_action} _action + * @param {array} _selected selected users * @todo remove under construction message */ emailadminActiveAccounts: function (_action, _selected){ - - var menuaction = 'emailadmin.emailadmin_wizard.ajax_activeAccounts'; + + var menuaction = 'admin.admin_mail.ajax_activeAccounts'; var accounts = []; var msg1 = egw.lang('%1 accounts being activated',Object.keys(_selected).length); - + for (var i=0;i< Object.keys(_selected).length;i++) { accounts[i] = {id:_selected[i]['id'].split('::')[1],qouta:"", domain:"", status:_action.id == 'active'?_action.id:''}; @@ -841,9 +844,241 @@ app.classes.admin = AppJS.extend( } }, msg1, 'Mail Acounts Activation', menuaction, accounts, 'admin'); } - } + }; // confirmation dialog et2_dialog.show_dialog(callbackDialog, egw.lang('Are you sure you want to %1 mail for selected accounts?', egw.lang(_action.id)), egw.lang('Active Mail Accounts'), {}, et2_dialog.BUTTON_YES_NO, et2_dialog.WARNING_MESSAGE, undefined, egw); + }, + + /** + * No SSL + */ + SSL_NONE: 0, + /** + * STARTTLS on regular tcp connection/port + */ + SSL_STARTTLS: 1, + /** + * SSL (inferior to TLS!) + */ + SSL_SSL: 3, + /** + * require TLS version 1+, no SSL version 2 or 3 + */ + SSL_TLS: 2, + /** + * if set, verify certifcate (currently not implemented in Horde_Imap_Client!) + */ + SSL_VERIFY: 8, + + /** + * Resize window methode + * + * @returns {undefined} + */ + wizard_popup_resize: function () + { + var $main_div = $j('#popupMainDiv'); + var $et2 = $j('.et2_container'); + var w = { + width: egw_getWindowInnerWidth(), + height: egw_getWindowInnerHeight() + }; + // Use et2_container for width since #popupMainDiv is full width, but we still need + // to take padding/margin into account + var delta_width = w.width - ($et2.outerWidth(true) + ($main_div.outerWidth(true) - $main_div.width())); + var delta_height = w.height - ($et2.outerHeight(true) + ($main_div.outerHeight(true) - $main_div.height())); + if(delta_width != 0 || delta_height != 0) + { + window.resizeTo(egw_getWindowOuterWidth() - delta_width,egw_getWindowOuterHeight() - delta_height); + } + }, + + /** + * Switch account wizard to manual entry + */ + wizard_manual: function() + { + jQuery('.emailadmin_manual').fadeToggle();// not sure how to to this et2-isch + this.wizard_popup_resize(); // popup needs to be resized after toggling + }, + + /** + * onclick for continue button to show progress animation + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + wizard_detect: function(_event, _widget) + { + // we need to do a manual asynchronious submit to show progress animation + // default synchronious submit stops animation! + if (this.et2._inst.submit('button[continue]', true)) // true = async submit + { + var sieve_enabled = this.et2.getWidgetById('acc_sieve_enabled'); + if (!sieve_enabled || sieve_enabled.get_value()) + { + jQuery('#admin-mailwizard_output').hide(); + jQuery('td.emailadmin_progress').show(); + } + } + return false; + }, + + /** + * Set default port, if imap ssl-type changes + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + wizard_imap_ssl_onchange: function(_event, _widget) + { + var ssl_type = _widget.get_value(); + this.et2.getWidgetById('acc_imap_port').set_value( + ssl_type == this.SSL_SSL || ssl_type == this.SSL_TLS ? 993 : 143); + }, + + /** + * Set default port, if imap ssl-type changes + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + wizard_smtp_ssl_onchange: function(_event, _widget) + { + var ssl_type = _widget.get_value(); + this.et2.getWidgetById('acc_smtp_port').set_value( + ssl_type == 'no' ? 25 : (ssl_type == this.SSL_SSL || ssl_type == this.SSL_TLS ? 465 : 587)); + }, + + /** + * Set default port, if imap ssl-type changes + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + wizard_sieve_ssl_onchange: function(_event, _widget) + { + var ssl_type = _widget.get_value(); + this.et2.getWidgetById('acc_sieve_port').set_value( + ssl_type == this.SSL_SSL || ssl_type == this.SSL_TLS ? 5190 : 4190); + this.wizard_sieve_onchange(_event, _widget); + }, + + /** + * Enable sieve, if user changes some setting + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + wizard_sieve_onchange: function(_event, _widget) + { + this.et2.getWidgetById('acc_sieve_enabled').set_value(1); + }, + + /** + * Switch to select multiple accounts + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + edit_multiple: function(_event, _widget) + { + // hide multiple button + _widget.set_disabled(true); + + // switch account-selection to multiple + var account_id = this.et2.getWidgetById('account_id'); + account_id.set_multiple(true); + }, + + /** + * Hide not applying fields, used as: + * - onchange handler on account_id + * - called from et2_ready for emailadmin.account template + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + account_hide_not_applying: function(_event, _widget) + { + var account_id = this.et2.getWidgetById('account_id'); + var ids = account_id && account_id.get_value ? account_id.get_value() : []; + if (typeof ids == 'string') ids = ids.split(','); + + var multiple = ids.length >= 2 || ids[0] === '' || ids[0] < 0; + //alert('multiple='+(multiple?'true':'false')+': '+ids.join(',')); + + // initial call + if (typeof _widget == 'undefined') + { + if (!multiple) + { + jQuery('.emailadmin_no_single').hide(); + } + if (!this.egw.user('apps').emailadmin) + { + jQuery('.emailadmin_no_user,#button\\[multiple\\]').hide(); + } + if (ids.length == 1) + { + // switch back to single selectbox + account_id.set_multiple(false); + this.et2.getWidgetById('button[multiple]').set_disabled(false); + } + } + // switched to single user + else if (!multiple) + { + jQuery('.emailadmin_no_single').fadeOut(); + // switch back to single selectbox + account_id.set_multiple(false); + this.et2.getWidgetById('button[multiple]').set_disabled(false); + } + // switched to multiple user + else + { + jQuery('.emailadmin_no_single').fadeIn(); + } + if (_event && _event.stopPropagation) _event.stopPropagation(); + return false; + }, + + /** + * Callback if user changed account selction + * + * @param {object} _event event-object or information about event + * @param {et2_baseWidget} _widget widget causing the event + */ + change_account: function(_event, _widget) + { + // todo check dirty and query user to a) save changes, b) discard changes, c) cancel selection + _widget.getInstanceManager().submit(); + }, + + /** + * Callback if user changes notification folders: unset use-default checkbox + * + * @param {object} _event + * @param {et2_widget} _widget + */ + change_folders: function(_event, _widget) + { + var use_default = this.et2.getWidgetById('notify_use_default'); + if (use_default) use_default.set_value(false); + }, + + /** + * default onExecute for admin actions + * + * @param {object} _action + * @param {object} _senders + */ + account_edit_action: function(_action, _senders) + { + if (_action.data.url) + { + this.egw.open_link(_action.data.url, _action.data.target || '_blank', _action.data.popup); + } } }); diff --git a/admin/lang/egw_bg.lang b/admin/lang/egw_bg.lang index 590a68d326..3c4f73a652 100644 --- a/admin/lang/egw_bg.lang +++ b/admin/lang/egw_bg.lang @@ -64,3 +64,51 @@ two weeks admin bg две Ñедмици type of customfield admin bg Тип на полето по избор up admin bg нагоре updated admin bg Ðктуализиран +(no subject) emailadmin bg (без тема) +admin password emailadmin bg Парола на админиÑтратора +admin username emailadmin bg ПотребителÑко име на админиÑтратора +bad login name or password. emailadmin bg Ðевалидно име или парола. +bad or malformed request. server responded: %s emailadmin bg Ðекоректна заÑвка. Сървърът отговори: %s +bad request: %s emailadmin bg Ðекоректна заÑвка: %s +connection dropped by imap server. emailadmin bg Връзката е прекъÑната от IMAP Ñървъра. +continue emailadmin bg Продължаване +could not complete request. reason given: %s emailadmin bg ÐеуÑпешно изпълнение на заÑвката поради: %s +could not open secure connection to the imap server. %s : %s. emailadmin bg ÐеуÑпешно изграждане на криптирана връзка Ñ IMAP Ñървъра. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin bg CRAM-MD5 или DIGEST-MD5 изиÑкват инÑталиране на пакета Auth_SASL. +default emailadmin bg по подразбиране +displaying html messages is disabled emailadmin bg Показването на HTML ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ðµ забранено! +do not validate certificate emailadmin bg не проверÑвай Ñертификати +email address emailadmin bg E-Mail Ð°Ð´Ñ€ÐµÑ +encrypted connection emailadmin bg криптирана връзка +entry saved emailadmin bg ЗапиÑÑŠÑ‚ е запазен +error connecting to imap server. %s : %s. emailadmin bg Грешка при връзка Ñ IMAP Ñървъра. %s : %s. +error connecting to imap server: [%s] %s. emailadmin bg Грешка при връзка Ñ IMAP Ñървъра: [%s] %s. +error saving the entry!!! emailadmin bg Грешка при запиÑ!!! +event details follow emailadmin bg Следват подробноÑти за Ñъбитието +if using ssl or tls, you must have the php openssl extension loaded. emailadmin bg Ðко използвате SSL или TLS, Ñ‚Ñ€Ñбва да заредите OpenSSL разширението на PHP. +imap server emailadmin bg IMAP Ñървър +imap server closed the connection. emailadmin bg IMAP Ñървъра прекрати връзката. +imap server closed the connection. server responded: %s emailadmin bg IMAP Ñървъра прекрати връзката Ñ Ð¾Ñ‚Ð³Ð¾Ð²Ð¾Ñ€: %s +mail settings admin bg ÐаÑтройки на пощата +no encryption emailadmin bg без криптиране +no message returned. emailadmin bg Ðе Ñа открити ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ +no plain text part found emailadmin bg липÑва текÑтова чаÑÑ‚ +no supported imap authentication method could be found. emailadmin bg Ðе Ñе поддържа зададениÑÑ‚ метод за IMAP оторизациÑ. +order emailadmin bg Ред +organisation emailadmin bg Ð¾Ñ€Ð³Ð°Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ +port emailadmin bg порт +remove emailadmin bg премахване +sieve settings emailadmin bg ÐаÑтройки на Sieve +smtp settings emailadmin bg SMTP наÑтройки +templates emailadmin bg Шаблони +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin bg IMAP Ñървъра вероÑтно не поддържа Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¼ÐµÑ‚Ð¾Ð´ на оторизациÑ. МолÑ, Ñвържете Ñе Ñ Ð’Ð°ÑˆÐ¸Ñ ÑиÑтемен ÐдминиÑтратор! +this php has no imap support compiled in!! emailadmin bg PHP нÑма включена поддръжка за IMAP!!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin bg За да използвате TLS е необходима верÑÐ¸Ñ Ð½Ð° PHP 5.1.0 или по-виÑока. +unexpected response from server to authenticate command. emailadmin bg Ðеочакван отговор от Ñървъра на команда AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin bg Ðеочакван отговор от Ñървъра на Digest-MD5. +unexpected response from server to login command. emailadmin bg Ðеочакван отговор от Ñървъра на команда LOGIN. +unknown imap response from the server. server responded: %s emailadmin bg ÐеизвеÑтен отговор от IMAP Ñървъра: %s +use default emailadmin bg Използване на ÑтойноÑÑ‚ по подразбиране +use smtp auth emailadmin bg използвай SMTP Ð¾Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ +users can define their own emailaccounts emailadmin bg Потребителите могат да дефинират ÑобÑтвени E-Mail акаунти +you have received a new message on the emailadmin bg Получено е ново Ñъобщение на diff --git a/admin/lang/egw_ca.lang b/admin/lang/egw_ca.lang index 1e7c770e48..03ce559df4 100644 --- a/admin/lang/egw_ca.lang +++ b/admin/lang/egw_ca.lang @@ -472,3 +472,81 @@ you must select a file type admin ca Heu de seleccionar un tipus d'arxiu you must select at least one group member. admin ca Heu de seleccionar un membre del grup com a mínim. you will need to remove the subcategories before you can delete this category admin ca Heu d'esborrar les subcategories abans de poder esborrar aquesta categoria ! your session could not be verified. admin ca La vostra sessió no s'ha pogut verificar. +(no subject) emailadmin ca (Sense assumpte) +add profile emailadmin ca Afegir perfil +admin dn emailadmin ca dn del administrador +admin password emailadmin ca Contrasenya del administrador +admin username emailadmin ca Mom d'usuari del administrador +advanced options emailadmin ca Opcions avançades +alternate email address emailadmin ca Adreça de correu alternativa +continue emailadmin ca Continuar +cyrus imap server emailadmin ca Servidor IMAP Cyrus +cyrus imap server administration emailadmin ca Administració del servidor IMAP Cyrus +default emailadmin ca predeterminada +deliver extern emailadmin ca entrega externa +do you really want to delete this profile emailadmin ca Realmente voleu esborrar aquest perfil? +domainname emailadmin ca Nom del domini +edit email settings emailadmin ca Editar configuració del compte +email account active emailadmin ca Compte de correu electrònic actiu +email address emailadmin ca Adreça de correu electrònic +enable cyrus imap server administration emailadmin ca activar administració del servidor Cyrus IMAP +enable sieve emailadmin ca Activar Sieve +enter your default mail domain (from: user@domain) emailadmin ca Entreu el domini predeterminat (de usuari@domini) +entry saved emailadmin ca Entrada guardada +event details follow emailadmin ca Segueixen els detalls de la cita +forward also to emailadmin ca Reenviar també a +forward email's to emailadmin ca Reenviar correus a +forward only emailadmin ca Només reenviar +imap admin password admin ca Contrasenya de l'administrador IMAP +imap admin user admin ca Usuari administrador IMAP +imap c-client version < 2001 emailadmin ca Versió C-Client IMAP < 2001 +imap server emailadmin ca Servidor IMAP +imap server hostname or ip address emailadmin ca Servidor IMAP o adreça IP +imap server logintyp emailadmin ca Tipus de sessió del servidor IMAP +imap server port emailadmin ca Port del servidor IMAP +imap/pop3 server name emailadmin ca Nom del servidor POP/IMAP +in mbyte emailadmin ca en MBytes +ldap basedn emailadmin ca basedn per a LDAP +ldap server emailadmin ca Aervidor LDAP +ldap server accounts dn emailadmin ca Comptes DN del servidor LDAP +ldap server admin dn emailadmin ca Administrador DN del servidor LDAP +ldap server admin password emailadmin ca Contrasenya del administrador del servidor LDAP +ldap server hostname or ip address emailadmin ca Nom del servidor LDAP o adreça IP +ldap settings emailadmin ca Configuració LDAP +leave empty for no quota emailadmin ca Deixar en blanc per a no posar quota +mail settings admin ca Configuració del correu +name of organisation emailadmin ca Nom de l'organització +no alternate email address emailadmin ca sense adreça de correu alternativa +no forwarding email address emailadmin ca sense adreça de correu per a reenviar +order emailadmin ca Ordre +organisation emailadmin ca Organització +pop3 server hostname or ip address emailadmin ca Nom del servidor POP3 o adreça IP +pop3 server port emailadmin ca Port del servidor POP3 +postfix with ldap emailadmin ca Postfix amb LDAP +profile list emailadmin ca Llista de perfils +profile name emailadmin ca Nom del perfil +qmaildotmode emailadmin ca Modus de punt de qmail +quota settings emailadmin ca Configuració de les quotas +quota size in mbyte emailadmin ca mida de la cita en MByte +remove emailadmin ca Esborrar +select type of imap/pop3 server emailadmin ca Seleccioneu el tipus de servidor IMAP/POP3 +select type of smtp server emailadmin ca Seleccioneu el tipus de servidor SMTP +sieve server hostname or ip address emailadmin ca Nom del servidor Sieve o adreça IP +sieve server port emailadmin ca Port del servidor Sieve +sieve settings emailadmin ca Configuració de Sieve +smtp server name emailadmin ca Nom del servidor SMTP +smtp settings emailadmin ca Opcions SMTP +smtp-server hostname or ip address emailadmin ca Nom del servidor SMTP o adreça IP +smtp-server port emailadmin ca Port del servidor SMTP +standard emailadmin ca Estàndar +standard imap server emailadmin ca Servidor IMAP estàndar +standard pop3 server emailadmin ca Servidor POP3 estàndar +standard smtp-server emailadmin ca Servidor SMTP estàndar +this php has no imap support compiled in!! emailadmin ca Aquesta instal·lació de PHP no té suport IMAP! +use default emailadmin ca Utilitza el valor per defecte +use ldap defaults emailadmin ca Usar les opcions predeterminades per LDAP +use smtp auth emailadmin ca Usar identificació SMTP +use tls authentication emailadmin ca Usar identificació TLS +use tls encryption emailadmin ca Usar xifrat TLS +users can define their own emailaccounts emailadmin ca Els usuaris poden definir els seus propis comptes de correu +virtual mail manager emailadmin ca Gestor de correu virtual diff --git a/admin/lang/egw_cs.lang b/admin/lang/egw_cs.lang index 8ea5ac29d5..e5382b57f0 100644 --- a/admin/lang/egw_cs.lang +++ b/admin/lang/egw_cs.lang @@ -587,3 +587,161 @@ you need to enter install id and password! admin cs Musíte zadat instalaÄní I you will need to remove the subcategories before you can delete this category admin cs Než smažete tuto kategorii, musíte smazat vÅ¡echny podkategorie ! your last submission was less then %1 days ago! admin cs Naposledy jste odeslal(a) údaje pÅ™ed ménÄ› jak %1 dnem/dny. your session could not be verified. admin cs VaÅ¡e relace nemohla být ověřena. +(no subject) emailadmin cs (žádný pÅ™edmÄ›t) +account '%1' not found !!! emailadmin cs ÚÄet '%1' nebyl nalezen !!! +active templates emailadmin cs Aktivní Å¡ablony +add new email address: emailadmin cs PÅ™idat novou e-mailovou adresu: +add profile emailadmin cs PÅ™idat profil +admin dn emailadmin cs Dn (distiguished name) administrátora +admin password emailadmin cs Heslo administrátora +admin username emailadmin cs Uživatelské jméno administrátora +advanced options emailadmin cs Rozšířené volby +alternate email address emailadmin cs Alternativní e-mailová adresa +any application emailadmin cs Kterákoli aplikace +any group emailadmin cs Kterákoli skupina +any user emailadmin cs Kterýkoli uživatel +back to admin/grouplist emailadmin cs ZpÄ›t na Administrátor/Skupiny uživatelů +back to admin/userlist emailadmin cs ZpÄ›t na Administrátor/Uživatelské úÄty +bad login name or password. emailadmin cs Chybné pÅ™ihlaÅ¡ovací jméno nebo heslo. +bad or malformed request. server responded: %s emailadmin cs Chybný nebo Å¡patnÄ› fomulovaný požadavek. Server odpovÄ›dÄ›l: %s +bad request: %s emailadmin cs Chybný požadavek: %s +can be used by application emailadmin cs Může být použit aplikací +can be used by group emailadmin cs Může být použit skupinou +can be used by user emailadmin cs Může být použit uživatelem +connection dropped by imap server. emailadmin cs PÅ™ipojení ukonÄeno IMAP serverem. +continue emailadmin cs PokraÄovat +could not complete request. reason given: %s emailadmin cs Nemohu dokonÄit požadavek. Důvod: %s +could not open secure connection to the imap server. %s : %s. emailadmin cs Nemohu otevřít zabezpeÄené pÅ™ipojení na IMAP server. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin cs CRAM-MD5 nebo DIGEST-MD5 vyžadují nainstalovaný balíÄek Auth_SASL. +cyrus imap server emailadmin cs Cyrus IMAP Server +cyrus imap server administration emailadmin cs Administrace Cyrus IMAP serveru +default emailadmin cs výchozí +deliver extern emailadmin cs doruÄit externÄ› +displaying html messages is disabled emailadmin cs zobrazování HTML zpráv je zakázáno +do not validate certificate emailadmin cs Neověřovat certifikát +do you really want to delete this profile emailadmin cs Opravdu chcete smazat tento profil +do you really want to reset the filter for the profile listing emailadmin cs Opravdu chcete vyresetovat filtr pro seznam profilů +domainname emailadmin cs Doménové jméno +edit email settings emailadmin cs Editovat nastavení e-mailu +email account active emailadmin cs E-mailový úÄet aktivní +email address emailadmin cs E-mailová adresa +email settings common cs Nastavení e-mailu +emailadmin emailadmin cs Administrátor poÅ¡ty +emailadmin: group assigned profile common cs Administrátor poÅ¡ty: profil pÅ™idÄ›lený skupinÄ› +emailadmin: user assigned profile common cs Administrátor poÅ¡ty: profil pÅ™idÄ›lený uživateli +enable cyrus imap server administration emailadmin cs Povolit administraci Cyrus IMAP serveru +enable sieve emailadmin cs Povolit Sieve +encrypted connection emailadmin cs Å ifrované pÅ™ipojení +encryption settings emailadmin cs Nastavení Å¡ifrování +enter your default mail domain (from: user@domain) emailadmin cs Zadejte VaÅ¡i výchozí poÅ¡tovní doménu (z: uživatel@doména) +entry saved emailadmin cs Záznam uložen +error connecting to imap server. %s : %s. emailadmin cs Chyba spojení na IMAP server. %s : %s. +error connecting to imap server: [%s] %s. emailadmin cs Chyba spojení na IMAP server: [%s] %s. +error saving account! emailadmin cs Chyba pÅ™i ukládání úÄtu! +error saving the entry!!! emailadmin cs Chyba pÅ™i ukládání záznamu!!! +event details follow emailadmin cs Následují detaily události +filtered by account emailadmin cs filtrováno podle úÄtu +filtered by group emailadmin cs filtrováno podle skupiny +forward also to emailadmin cs PÅ™eposlat také na +forward email's to emailadmin cs PÅ™eposílat e-maily na +forward only emailadmin cs Jen pÅ™eposlat +global options emailadmin cs Globální volby +if using ssl or tls, you must have the php openssl extension loaded. emailadmin cs Pokud chcete používat SSL nebo TLS, musíte mít nahráno openssl rozšíření PHP. +imap admin password admin cs Heslo IMAP administrátora +imap admin user admin cs Uživatelský úÄet IMAP administrátora +imap c-client version < 2001 emailadmin cs IMAP C-klient verze < 2001 +imap server emailadmin cs IMAP Server +imap server closed the connection. emailadmin cs IMAP server ukonÄil spojení. +imap server closed the connection. server responded: %s emailadmin cs IMAP server ukonÄil spojení. Server odpovÄ›dÄ›l: %s +imap server hostname or ip address emailadmin cs DNS jméno nebo IP adresa IMAP serveru +imap server logintyp emailadmin cs Typ pÅ™ihlášení na IMAP server +imap server name emailadmin cs Název IMAP serveru +imap server port emailadmin cs Port IMAP serveru +imap/pop3 server name emailadmin cs Název IMAP/POP3 serveru +importance emailadmin cs Důležitost +in mbyte emailadmin cs v MBytech +inactive emailadmin cs neaktivní +ldap basedn emailadmin cs LDAP basedn +ldap server emailadmin cs LDAP server +ldap server accounts dn emailadmin cs DN (distinguished name) úÄtů na LDAP serveru +ldap server admin dn emailadmin cs DN (distinguished name) administrátora LDAP serveru +ldap server admin password emailadmin cs Heslo administrátora LDAP serveru +ldap server hostname or ip address emailadmin cs DNS jméno nebo IP adresa LDAP serveru +ldap settings emailadmin cs LDAP nastavení +leave empty for no quota emailadmin cs ponechte prázdné, nechcete-li kvótu +mail settings admin cs Nastavení poÅ¡ty +manage stationery templates emailadmin cs Spravovat Å¡ablony dopisů +name of organisation emailadmin cs Název organizace +no alternate email address emailadmin cs bez alternativní e-mailové adresy +no encryption emailadmin cs bez Å¡ifrování +no forwarding email address emailadmin cs bez e-mailové adresy pro pÅ™eposílání +no message returned. emailadmin cs Žádná zpráva se nevrátila. +no plain text part found emailadmin cs nebyla nalezena Äást ve formÄ› prostého textu +no supported imap authentication method could be found. emailadmin cs Nebyla nalezena žádná podporovaná metoda IMAP autentikace. +order emailadmin cs PoÅ™adí +organisation emailadmin cs Organizace +plesk can't rename users --> request ignored emailadmin cs Plesk nemůže pÅ™ejmenovávat uživatele --> požadavek ignorován +plesk imap server (courier) emailadmin cs Plesk IMAP server (Courier) +plesk mail script '%1' not found !!! emailadmin cs Plesk poÅ¡tovní skript '%1' nebyl nalezen !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin cs Plesk vyžaduje, aby mÄ›la hesla nejménÄ› 5 znaků a neobsahovala název úÄtu --> heslo nebylo nastaveno!!! +plesk smtp-server (qmail) emailadmin cs Plesk SMTP server (Qmail) +pop3 server hostname or ip address emailadmin cs DNS jméno nebo IP adresa POP3 serveru +pop3 server port emailadmin cs Port POP3 serveru +port emailadmin cs port +postfix with ldap emailadmin cs Postfix s LDAP +profile access rights emailadmin cs přístupová práva profilu +profile is active emailadmin cs Profil je aktivní +profile list emailadmin cs Seznam profilů +profile name emailadmin cs Název profilu +qmaildotmode emailadmin cs TeÄkový režim Qmail +quota settings emailadmin cs Nastavení kvóty +quota size in mbyte emailadmin cs velikost kvóty v MBytech +remove emailadmin cs Odstranit +reset filter emailadmin cs vyresetovat filtr +select type of imap server emailadmin cs Vyberte typ IMAP serveru +select type of imap/pop3 server emailadmin cs Vyberte typ IMAP/POP3 serveru +select type of smtp server emailadmin cs Vyberte typ SMTP serveru +send using this email-address emailadmin cs Odeslat s touto e-mailovou adresou +server settings emailadmin cs Nastavení serveru +sieve server hostname or ip address emailadmin cs DNS jméno nebo IP adresa Sieve serveru +sieve server port emailadmin cs Port Sieve serveru +sieve settings emailadmin cs Nastavení sieve +smtp authentication emailadmin cs SMTP autentikace +smtp options emailadmin cs Volby SMTP +smtp server name emailadmin cs Jméno SMTP serveru +smtp settings emailadmin cs Nastavení SMTP +smtp-server hostname or ip address emailadmin cs DNS jméno nebo IP adresa SMTP serveru +smtp-server port emailadmin cs Port SMTP serveru +standard emailadmin cs Standardní +standard imap server emailadmin cs Standardní IMAP server +standard pop3 server emailadmin cs Standardní POP3 server +standard smtp-server emailadmin cs Standardní SMTP server +stationery emailadmin cs Å ablony +templates emailadmin cs Å ablony +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin cs Vypadá to, že IMAP server nepodporuje vybranou autentikaÄní metodu. Zkontaktujte prosím VaÅ¡eho systémového administrátora. +the mimeparser can not parse this message. emailadmin cs Mimeparser nemůže zpracovat tuto zprávu. +this php has no imap support compiled in!! emailadmin cs Toto PHP nemá zkompilovanou podporu IMAPu. +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin cs Pro použití TLS pÅ™ipojení musíte provozovat verzi PHP 5.1.0 nebo vyšší. +unexpected response from server to authenticate command. emailadmin cs NeoÄekávaná odpovÄ›Ä serveru na příkaz AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin cs NeoÄekávaná odpovÄ›Ä serveru na Digest-MD5 odpovÄ›Ä. +unexpected response from server to login command. emailadmin cs NeoÄekávaná odpovÄ›Ä serveru na příkaz LOGIN. +unknown imap response from the server. server responded: %s emailadmin cs Neznámá IMAP odpovÄ›Ä server. OdpovÄ›dÄ›l: %s +unsupported action '%1' !!! emailadmin cs Nepodporovaná akce '%1' !!! +update current email address: emailadmin cs Aktualizovat souÄasnou e-mailovou adresu: +use default emailadmin cs Použít výchozí +use ldap defaults emailadmin cs Použít výchozí hodnoty LDAP +use predefined username and password defined below emailadmin cs Použít pÅ™eddefinované uživatelské jméno a heslo uvedené níže +use smtp auth emailadmin cs Použít SMTP autentikaci +use tls authentication emailadmin cs Použít TLS autentikaci +use tls encryption emailadmin cs Použít TLS Å¡ifrování +user can edit forwarding address emailadmin cs Uživatel smí editovat adresu pro pÅ™eposílání +username (standard) emailadmin cs uživatelské jméno (standardní) +username/password defined by admin emailadmin cs Uživatelské jméno/Heslo definované administrátorem +username@domainname (virtual mail manager) emailadmin cs uživatelskéjméno@doména (Virtuální správce poÅ¡ty) +users can define their own emailaccounts emailadmin cs Uživatelé smí definovat vlastní poÅ¡tovní úÄty +users can define their own identities emailadmin cs Uživatelé smí definovat své vlastní identity +users can define their own signatures emailadmin cs Uživatelé smí definovat své vlastní podpisy +users can utilize these stationery templates emailadmin cs Uživatelé mohou využívat tyto Å¡ablony dopisů +virtual mail manager emailadmin cs Virtuální správce poÅ¡ty +you have received a new message on the emailadmin cs PÅ™iÅ¡la Vám nová zpráva na +your name emailadmin cs VaÅ¡e jméno diff --git a/admin/lang/egw_da.lang b/admin/lang/egw_da.lang index f1c7b1be7a..f9ed94d15b 100644 --- a/admin/lang/egw_da.lang +++ b/admin/lang/egw_da.lang @@ -413,3 +413,78 @@ you must enter an application title. admin da Du skal indtaste en applikations t you must select a file type admin da Du skal vælge en type you will need to remove the subcategories before you can delete this category admin da Du blive nød til at fjerne underkategorierne for du kan slette denne kategori! your session could not be verified. admin da Din session kunne ikke verificeres +(no subject) emailadmin da (ingen emne) +add profile emailadmin da Tilføj Profil +admin dn emailadmin da admin dn +admin password emailadmin da admin adgangskode +admin username emailadmin da admin brugernavn +advanced options emailadmin da avanceret indstillinger +alternate email address emailadmin da alternativ e-mail adresse +cyrus imap server emailadmin da Cyrus IMAP Server +cyrus imap server administration emailadmin da Cyrus IMAP server administration +default emailadmin da standart +deliver extern emailadmin da lever ekstern +do you really want to delete this profile emailadmin da Vil du virkelig slette denne profil +domainname emailadmin da domæne navn +edit email settings emailadmin da redigere e-mail indstillingerne +email account active emailadmin da e-mail konto aktiv +email address emailadmin da e-mail adresse +enable cyrus imap server administration emailadmin da aktivere Cyrus IMAP server administration +enable sieve emailadmin da aktiver Sieve +enter your default mail domain (from: user@domain) emailadmin da Indtast dit standart post domæne (fra: bruger@domæne) +event details follow emailadmin da Hændelses detajler følger +forward also to emailadmin da videresend ogsÃ¥ til +forward email's to emailadmin da videresend e-mails til +forward only emailadmin da videresend kun +imap admin password admin da IMAP admin adgangskode +imap admin user admin da IMAP admin bruger +imap c-client version < 2001 emailadmin da IMAP C-Klient Version < 2001 +imap server emailadmin da IMAP Server +imap server hostname or ip address emailadmin da IMAP server domænenavn eller IP adresse +imap server logintyp emailadmin da IMAP server login type +imap server port emailadmin da IMAP server port +imap/pop3 server name emailadmin da IMAP/POP3 server navn +in mbyte emailadmin da i Megabytes +ldap basedn emailadmin da LDAP basedn +ldap server emailadmin da LDAP server +ldap server accounts dn emailadmin da LDAP server konto DN +ldap server admin dn emailadmin da LDAP server admin DN +ldap server admin password emailadmin da LDAP server admin adgangskode +ldap server hostname or ip address emailadmin da LDAP server domænenavn eller IP adresse +ldap settings emailadmin da LDAP indstillinger +leave empty for no quota emailadmin da efterlad tom hvis ingen citat +mail settings admin da Post indstillinger +name of organisation emailadmin da Navn pÃ¥ organisation +no alternate email address emailadmin da ingen alternativ e-mail adresse +no forwarding email address emailadmin da ingen viderestillet e-mail adresse +order emailadmin da Rækkefølge +organisation emailadmin da Organisation +pop3 server hostname or ip address emailadmin da POP3 server domænenavn eller IP adresse +pop3 server port emailadmin da POP server port +postfix with ldap emailadmin da Postfix med LDAP +profile list emailadmin da Profil liste +profile name emailadmin da Profil navn +qmaildotmode emailadmin da qmaildotmode +quota settings emailadmin da quota indstillinger +remove emailadmin da fjern +select type of imap/pop3 server emailadmin da Vælg type IMAP/POP3 server +select type of smtp server emailadmin da Vælg time POP3 server +sieve server hostname or ip address emailadmin da Sieve server domænenavn eller IP adresse +sieve server port emailadmin da Sieve server port +sieve settings emailadmin da Sieve indstillinger +smtp server name emailadmin da SMTP server navn +smtp settings emailadmin da SMTP indstillinger +smtp-server hostname or ip address emailadmin da SMTP server domænenavn eller IP adresse +smtp-server port emailadmin da SMTP server port +standard emailadmin da Standart +standard imap server emailadmin da Standart IMAP server +standard pop3 server emailadmin da Standart POP3 server +standard smtp-server emailadmin da Standart SMTP server +this php has no imap support compiled in!! emailadmin da Der er ikke understøttelse for IMAP i din PHP kode. +use default emailadmin da Brug standard +use ldap defaults emailadmin da brug LDAP standarter +use smtp auth emailadmin da Brug SMTP autorisation +use tls authentication emailadmin da Brug TLS autorisation +use tls encryption emailadmin da Brug TLS kryptering +users can define their own emailaccounts emailadmin da Brugere kan selv definere deres egne e-mail kontoer +virtual mail manager emailadmin da Virtuel post hÃ¥ndtering diff --git a/admin/lang/egw_de.lang b/admin/lang/egw_de.lang index af3be0e26e..c2d5df24c6 100644 --- a/admin/lang/egw_de.lang +++ b/admin/lang/egw_de.lang @@ -715,3 +715,216 @@ you need to select some users first! admin de Sie müssen zuerst einige Benutzer you will need to remove the subcategories before you can delete this category admin de Sie müssen erst die Unterkategorien löschen bevor Sie diese Kategorie löschen können! your last submission was less then %1 days ago! admin de Ihre letzte Ãœbertragung liegt weniger als %1 Tage zurück! your session could not be verified. admin de Ihre Sitzung konnte nicht verifiziert werden. +%1 entries deleted. emailadmin de %1 Einträge gelöscht +(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) emailadmin de (Die IMAP Klasse muss dieses Verfahren unterstützen indem es den entsprechenden Konfigurationswert der Instanz ausliest und als Default Quota an den IMAP Server meldet.) +(no subject) emailadmin de (Kein Betreff) +account '%1' not found !!! emailadmin de Mailkonto '%1' nicht gefunden ! +account deleted. emailadmin de Mailkonto gelöscht. +account not found! common de Mailkonto nicht gefunden! +account saved. emailadmin de Mailkonto gespeichert. +active templates emailadmin de Aktive Vorlagen +add new email address: emailadmin de Neue E-Mailadresse hinzufügen +add profile emailadmin de Profil hinzufügen +admin dn emailadmin de Admin DN +admin password emailadmin de Admin Passwort +admin username emailadmin de Administrator Benutzername +advanced options emailadmin de erweiterte Einstellungen +allow users to change forwards emailadmin de Anwender dürfen Weiterleitung bearbeiten +alternate email address emailadmin de zusätzliche E-Mail-Adressen +and logged in emailadmin de und eingeloggt +any application emailadmin de jede Anwendung +any group emailadmin de jede Gruppe +any user emailadmin de jeder Benutzer +back to admin/grouplist emailadmin de Zurück zu: Admin / Gruppenverwaltung +back to admin/userlist emailadmin de Zurück zu: Admin / Benutzerverwaltung +bad login name or password. emailadmin de Falscher Benutzername oder Passwort. +bad or malformed request. server responded: %s emailadmin de Falsche oder ungültige Anfrage. Server antwortet: %s +bad request: %s emailadmin de Falsche Anfrage: %s +can be used by application emailadmin de Kann von folgender Anwendung verwendet werden +can be used by group emailadmin de Kann von folgender Gruppe verwendet werden +can be used by user emailadmin de Kann von folgendem Benutzer verwendet werden +connection dropped by imap server. emailadmin de Verbindung von IMAP-Server beendet. +connection is not secure! everyone can read eg. your credentials. emailadmin de Die Verbindung ist NICHT sicher! Jeder kann zB. Ihr Passwort lesen. +continue emailadmin de Weiter +could not append message: emailadmin de Diese Mail lässt sich nicht anzeigen +could not complete request. reason given: %s emailadmin de Konnte Anfrage nicht beenden. Grund: %s +could not open secure connection to the imap server. %s : %s. emailadmin de Konnte keine sichere Verbindung zum IMAP Server aufbauen. %s: %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin de CRAM-MD5 oder DIGEST-MD5 erfordert, das das Auth_SASL Packet installiert ist. +create new account emailadmin de Neues Mailkonto erstellen +create new identity emailadmin de Neue Identität erstellen +cyrus imap server emailadmin de Cyrus IMAP-Server +cyrus imap server administration emailadmin de Cyrus IMAP-Server Administration +default emailadmin de Vorgabe +delete identity emailadmin de Identität löschen +delete this account emailadmin de Diese Konto löschen +deliver extern emailadmin de extern ausliefern +displaying html messages is disabled emailadmin de Das Anzeigen von HTML Nachrichten ist deaktiviert +displaying plain messages is disabled emailadmin de Das Anzeigen von Text Nachrichten ist deaktiviert +do not validate certificate emailadmin de Zertifikat nicht überprüfen +do you really want to delete this profile emailadmin de Wollen Sie dieses Profil wirklich löschen +do you really want to reset the filter for the profile listing emailadmin de Möchten Sie den Filter für die Profilliste wirklich zurücksetzen? +domainname emailadmin de Domänenname +edit email settings emailadmin de E-Mail-Einstellungen +email account active emailadmin de E-Mail-Konto aktiv +email address emailadmin de E-Mail-Adresse +email settings common de E-Mail-Konto +emailadmin emailadmin de E-Mail-Admin +emailadmin: group assigned profile common de E-Mail-Admin: Vordefiniertes Gruppenprofil +emailadmin: user assigned profile common de E-Mail-Admin: Vordefiniertes Benutzerprofil +enable cyrus imap server administration emailadmin de Cyrus IMAP-Server Administration aktivieren +enable sieve emailadmin de Sieve aktivieren +encrypted connection emailadmin de verschlüsselte Verbindung +encryption settings emailadmin de Verschlüsselungseinstellungen +enter your default mail domain (from: user@domain) emailadmin de Standard E-Mail-Domain (Von: benutzer@domain) +entry saved emailadmin de Eintrag gespeichert +error connecting to imap server. %s : %s. emailadmin de Fehler beim Verbinden mit dem IMAP Server. %s : %s. +error connecting to imap server: [%s] %s. emailadmin de Fehler beim Verbinden mit dem IMAP Server. [%s] %s. +error deleting entry! emailadmin de Fehler beim Löschen des Eintrags +error saving account! emailadmin de Fehler beim Speichern des Mailkontos! +error saving the entry!!! emailadmin de Fehler beim Speichern ! +error, no username! emailadmin de Fehler, kein Benutzername! +event details follow emailadmin de Hier die Details des Termins +failed to delete account! emailadmin de Fehler beim Löschen des Mailkontos! +file rejected, no %2. is:%1 emailadmin de Datei wurde abgewiesen, kein %2. ist:%1 +filtered by account emailadmin de Suche nach Benutzerprofilen +filtered by group emailadmin de Suche nach Gruppenprofilen +folder acl emailadmin de Zugriffsrechte +forward also to emailadmin de zusätzlich weiterleiten +forward email's to emailadmin de E-Mails weiterleiten an +forward only emailadmin de nur weiterleiten +forward only disables imap mailbox / storing of mails and just forwards them to given address. emailadmin de Nur weiterleiten schaltet die IMAP Mailbox / das Speichern der Mails aus und leitet diese an die angegebene Adresse weiter. +global options emailadmin de Globale Optionen +hostname or ip emailadmin de Hostname oder IP +how username get constructed emailadmin de Wie wird der Benutzername gebildet +identity deleted emailadmin de Identität gelöscht. +identity saved. emailadmin de Identität gespeichert. +if different from email address emailadmin de falls unterschiedlich zu E-Mail-Adresse +if using ssl or tls, you must have the php openssl extension loaded. emailadmin de Wenn Sie SSL oder TLS benutzen, müssen Sie die openssl PHP Erweiterung geladen haben. +if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) emailadmin de Wenn Sie als SIEVE Server Port 5190 eintragen, wird für die Kommunikation mit dem SIEVE-Server eine SSL-Verbindung verwendet (der Server muss das natürlich unterstützen) +imap admin password admin de IMAP Administrator Passwort +imap admin user admin de IMAP Administrator Benutzer +imap c-client version < 2001 emailadmin de IMAP C-Client Version < 2001 +imap server emailadmin de IMAP Server +imap server closed the connection. emailadmin de IMAP Server hat die Verbindung beendet. +imap server closed the connection. server responded: %s emailadmin de IMAP Server hat die Verbindung beendet. Server Antwort: %s +imap server hostname or ip address emailadmin de IMAP-Server Hostname oder IP-Adresse +imap server logintyp emailadmin de IMAP-Server Loginverfahren +imap server name emailadmin de IMAP-Server Name +imap server port emailadmin de IMAP-Server Port +imap/pop3 server name emailadmin de IMAP/POP3-Server Name +importance emailadmin de wichtig +in mbyte emailadmin de in MByte +inactive emailadmin de inaktiv +ldap basedn emailadmin de LDAP BaseDN +ldap server emailadmin de LDAP Server +ldap server accounts dn emailadmin de LDAP-Server Benutzerkonten DN +ldap server admin dn emailadmin de LDAP-Server Administrator DN +ldap server admin password emailadmin de LDAP-Server Administrator-Passwort +ldap server hostname or ip address emailadmin de LDAP-Server Hostname oder IP-Adresse +ldap settings emailadmin de LDAP-Einstellungen +leave empty for no quota emailadmin de leer lassen um Quota zu deaktivieren +mail settings admin de E-Mail-Einstellungen +manage stationery templates emailadmin de Briefpapiervorlagen verwalten +manual entry emailadmin de Manuelle Eingabe +mb used emailadmin de MB belegt +name of organisation emailadmin de Name der Organisation +no alternate email address emailadmin de keine zusätzlichen E-Mail-Adressen +no encryption emailadmin de keine Verschlüsselung +no forwarding email address emailadmin de keine Weiterleitungsadresse definiert +no message returned. emailadmin de Keine Nachricht zurückgeliefert. +no plain text part found emailadmin de Kein Nachrichten Text-Teil gefunden +no sieve support detected, either fix configuration manually or leave it switched off. emailadmin de Keine Sieve-Unterstützung gefunden. Konfiguration entweder manuell anpassen oder Sieve ausgeschalten lassen. +no supported imap authentication method could be found. emailadmin de Keine unterstützte IMAP-Authentifizierungsmethode gefunden. +order emailadmin de Reihenfolge +organisation emailadmin de Organisation +plesk can't rename users --> request ignored emailadmin de Plesk kann keine Benutzer umbenennen --> Anforderung ignoriert +plesk imap server (courier) emailadmin de Plesk IMAP Server (Courier) +plesk mail script '%1' not found !!! emailadmin de Plesk Mail Skript '%1' nicht gefunden !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin de Plesk verlangt, dass Passwörter mindestens 5 Zeichen lang sind und nicht den Benutzernamen enthalten --> Passwort nicht gesetzt!!! +plesk smtp-server (qmail) emailadmin de Plesk SMTP-Server (Qmail) +pop3 server hostname or ip address emailadmin de POP3-Server Hostname oder IP-Adresse +pop3 server port emailadmin de POP3-Server Port +port emailadmin de Port +postfix with ldap emailadmin de Postfix mit LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin de Die Verarbeitung der Datei %1 fehlgeschlagen. Die Basis Voraussetzungen wurden nicht erfülltt +profile access rights emailadmin de Profilzugriffsrechte +profile is active emailadmin de Profil ist aktiv +profile list emailadmin de Profilliste +profile name emailadmin de Profilname +qmaildotmode emailadmin de qmaildotmode +quota settings emailadmin de Quota Einstellungen +quota size in mbyte emailadmin de Quota Größe in MByte +relay access checked emailadmin de nicht angemeldetes Senden überprüft +remove emailadmin de Entfernen +required pear class mail/mimedecode.php not found. emailadmin de Die benötigte Classe PEAR (Mail/mimeDecode.php) wurde nicht gefunden. +reset filter emailadmin de Filter zurücksetzen +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Die Nachricht konnte nicht in das Verzeichniss %2 bzw.: %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin de Das Speichern der Nachricht %1 ist fehlgeschlagen. Der Ordner %2 ist nicht vorhanden. +secure connection emailadmin de Sichere Verbindung +select type of imap server emailadmin de IMAP-Server Typ auswählen +select type of imap/pop3 server emailadmin de IMAP/POP3-Server Typ auswählen +select type of smtp server emailadmin de SMTP-Server Typ auswählen +send using this email-address emailadmin de zum Versenden wird diese E-Mail Adresse benutzt +server settings emailadmin de Server-Einstellungen +sieve server hostname or ip address emailadmin de Sieve-Server Hostname oder IP-Adresse +sieve server port emailadmin de Sieve-Server Port +sieve settings emailadmin de Sieve Einstellungen +skip imap emailadmin de IMAP auslassen +skipping imap configuration! emailadmin de IMAP Konfiguration ausgelassen! +smtp authentication emailadmin de SMTP Anmeldung +smtp options emailadmin de SMTP Optionen +smtp server emailadmin de SMTP Server +smtp server name emailadmin de SMTP Server Name +smtp settings emailadmin de SMTP Einstellungen +smtp-server hostname or ip address emailadmin de SMTP Server Hostname oder IP-Adresse +smtp-server port emailadmin de SMTP Server Port +standard emailadmin de Vorgabe +standard identity emailadmin de Standard Identität +standard imap server emailadmin de Standard IMAP-Server +standard pop3 server emailadmin de Standard POP3-Server +standard smtp-server emailadmin de Standard SMTP-Server +starts with emailadmin de startet mit +stationery emailadmin de Briefpapier +successful connected to %1 server%2. emailadmin de Erfolgreich zu %1 Server verbunden%2. +switch back to standard identity to save account. emailadmin de Kehren Sie zur Standard-Identität zurück um das Konto zu speichern. +switch back to standard identity to save other account data. emailadmin de Kehren Sie zur Standard-Identität zurück um andere Kontendaten zu speichern. +templates emailadmin de Templates +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin de Der IMAP Server scheint die eingestellte Authentifizierungsmethode nicht zu unterstützen. Bitte fragen Sie Ihren Systemadministrator. +the mimeparser can not parse this message. emailadmin de Der Mimiparser versteht diese Nachricht nicht +this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? emailadmin de Das ist KEIN persönliches Mailkonto!\n\nDas Konto wird für ALLE Benutzer gelöscht!\n\nSind Sie wirklich sicher, dass Sie das wollen? +this php has no imap support compiled in!! emailadmin de Dieses PHP hat keine IMAP Unterstützung!!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin de Um eine TLS Verbindung zu verwenden, benötigen Sie PHP 5.1.0 oder aktueller. +unexpected response from server to authenticate command. emailadmin de Unerwartete Antwort des Servers auf das AUTHENTICATE Kommando. +unexpected response from server to digest-md5 response. emailadmin de Unerwartete Antwort des Servers auf die Digest-MD5 Antwort. +unexpected response from server to login command. emailadmin de Unerwartete Antwort des Servers auf das LOGIN Kommando. +unknown imap response from the server. server responded: %s emailadmin de Unbekannte IMAP Antwort vom Server. Server antwortet: %s +unsupported action '%1' !!! emailadmin de Nicht unterstützte Aktion '%1' !!! +update current email address: emailadmin de Aktualisiere aktuelle E-Mailadresse +use default emailadmin de Vorgabe verwenden +use ldap defaults emailadmin de LDAP Standardeinstellungen benutzen +use predefined username and password defined below emailadmin de Verwende den unten vordefinierten Benutzernamen und Passwort +use smtp auth emailadmin de SMTP Authentifizierung benutzen +use tls authentication emailadmin de TLS Authentifizierung benutzen +use tls encryption emailadmin de TLS Verschlüsselung benutzen +use users email-address (as seen in useraccount) emailadmin de Benutzt E-Mail Adresse des Benutzers (Die unter seinem Mailkonto angezeigt wird) +user can edit forwarding address emailadmin de Anwender können ihre Weiterleitungsadresse bearbeiten +userid@domain eg. u1234@domain emailadmin de UserId@domain z.B. u1234@domain +username (standard) emailadmin de Benutzername (Standard) +username specified below for all emailadmin de Unter angegebener Benutzername für alle +username/password defined by admin emailadmin de Benutzername / Passwort vordefiniert +username@domainname (virtual mail manager) emailadmin de Benutzername@Domänenname (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin de Anwender können ihre eigenen Konten definieren +users can define their own identities emailadmin de Anwender können ihre eigenen Identitäten definieren +users can define their own signatures emailadmin de Anwender können ihre eigenen Signaturen definieren +users can utilize these stationery templates emailadmin de Benutzer können diese Briefpapiervorlagen verwenden +using data from mozilla ispdb for provider %1 emailadmin de Benutzer Mozilla ISPDB für Provider %1 +vacation messages with start- and end-date require an admin account to be set emailadmin de Abwesenheitsnotizen mit Start- und Enddatum benötigen einen gesetzten Administrator Benutzer! +vacation notice emailadmin de Abwesenheitsnotiz +virtual mail manager emailadmin de Virtual MAIL ManaGeR +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin de Ja, die Daten darunter nur für Alarme und Benachrichtigungen verwenden, ansonsten die Daten des aktiven Benutzers. +yes, use credentials of current user or if given credentials below emailadmin de Ja, benutze Daten des aktuellen Benutzers oder wenn angegeben die Daten darunter +you can use wizard to fix account settings or delete account. emailadmin de Sie können jetzt den Wizard verwenden um die Konteneinstellungen zu ändern oder das Konto löschen. +you have received a new message on the emailadmin de Sie haben eine neue Nachricht erhalten. +you need to specify a forwarding address, when checking "%1"! emailadmin de Sie müssen eine Weiterleitungsadresse angeben, wenn "%1" abgehackt ist! +your message to %1 was displayed. emailadmin de Ihre Nachricht %1 wurde angezeigt +your name emailadmin de Ihr Name diff --git a/admin/lang/egw_el.lang b/admin/lang/egw_el.lang index eff481f7e7..4f168d21d6 100644 --- a/admin/lang/egw_el.lang +++ b/admin/lang/egw_el.lang @@ -459,3 +459,58 @@ you must select a file type admin el ΠÏέπει να επιλέξετε ένα you must select at least one group member. admin el ΠÏέπει να επιλέξετε τουλάχιστον ένα μέλος ομάδας you will need to remove the subcategories before you can delete this category admin el Θα Ï€Ïέπει να διαγÏαφοÏν οι υποκατηγοÏίες Ï€Ïιν διαγÏάψετε αυτή την κατηγοÏία ! your session could not be verified. admin el Η πεÏίοδος εÏγασίας δεν μπόÏεσε να επαληθευθεί +(no subject) emailadmin el (κανένα θέμα) +advanced options emailadmin el επιλογές για Ï€ÏοχωÏημένους +alternate email address emailadmin el εναλλακτική διεÏθυνση email +bad login name or password. emailadmin el Λάθος όνομα ή κωδικός Ï€Ïόσβασης +bad request: %s emailadmin el ΆκυÏη απαίτηση: % +connection dropped by imap server. emailadmin el Έπεσε η σÏνδεση από τον IMAP server +could not complete request. reason given: %s emailadmin el Δεν ολοκληÏώθηκε το αίτημα. Αιτία: %s +could not open secure connection to the imap server. %s : %s. emailadmin el Δεν έγινε ασφαλής σÏνδεση με τον IMAP server. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin el CRAM-MD5 ή DIGEST-MD5 απαιτεί το Auth_SASL πακέτο να εγκατασταθεί. +default emailadmin el Ï€ÏοκαθοÏισμένο +deliver extern emailadmin el παÏάδοση ÎµÎ¾Ï‰Ï„ÎµÏ +displaying html messages is disabled emailadmin el η Ï€Ïοβολή των html μηνυμάτων είναι απενεÏγοποιημένη +do not validate certificate emailadmin el μην επικυÏώνετε το πιστοποιητικό +edit email settings emailadmin el επεξεÏγασία Ïυθμίσεων email +email account active emailadmin el ενεÏγός κατάλογος email +email address emailadmin el διεÏθυνση email +encrypted connection emailadmin el αποκÏυπτογÏαφημένη σÏνδεση +error connecting to imap server. %s : %s. emailadmin el Σφάλμα κατά τη σÏνδεση με τον IMAP server. %s : %s. +error connecting to imap server: [%s] %s. emailadmin el Σφάλμα κατά τη σÏνδεση με τον IMAP server. [%s] : %s. +event details follow emailadmin el ΑκολουθοÏν λεπτομέÏειες γεγονότων +forward also to emailadmin el Ï€Ïοώθηση επίσης στο +forward only emailadmin el μόνο Ï€Ïοώθηση +if using ssl or tls, you must have the php openssl extension loaded. emailadmin el Αν χÏησιμοποιείται SSL ή TLS, Ï€Ïέπει να έχετε την PHP openssl επέκταση φοÏτωμένη. +imap server emailadmin el IMAP Server +imap server closed the connection. emailadmin el Ο IMAP Server έκλεισε τη σÏνδεση +imap server closed the connection. server responded: %s emailadmin el Ο IMAP Server έκλεισε τη σÏνδεση. Ο Server απάντησε: %s +in mbyte emailadmin el σε MByte +leave empty for no quota emailadmin el να μείνει κενό για μη ποσοστόσεις +mail settings admin el Ρυθμίσεις μηνυμάτων +no alternate email address emailadmin el δεν υπάÏχει εναλλακτική διεÏθυνση email +no encryption emailadmin el Καμία κÏυπτογÏάφηση +no message returned. emailadmin el Δεν επεστÏάφη κάποιο μήνυμα. +no plain text part found emailadmin el δεν βÏέθηκε μέÏος αποκÏυπτογÏαφημένου κειμένου +no supported imap authentication method could be found. emailadmin el Δεν βÏέθηκε καμία υποστηÏιζόμενη IMAP επικυÏωμένη μέθοδος. +order emailadmin el Ταξινόμηση +organisation emailadmin el οÏγανισμός +port emailadmin el θÏÏα +quota settings emailadmin el Ïυθμίσεις ποσοστών +quota size in mbyte emailadmin el μέγεθος ποσοστών σε MByte +remove emailadmin el αφαίÏεση +sieve settings emailadmin el Ρυθμίσεις Sieve +smtp settings emailadmin el Ρυθμίσεις SMTP +standard emailadmin el συνήθης +standard imap server emailadmin el συνήθης IMAP server +standard pop3 server emailadmin el συνήθης POP3 server +standard smtp-server emailadmin el συνήθης SMTP-server +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin el Ο IMAP server δεν υποστηÏίζει την επιλεγμένη μέθοδο αυθεντικότητας.ΠαÏακαλώ επικοινωνήστε με τον διαχειÏιστή σας. +this php has no imap support compiled in!! emailadmin el Αυτό το PHP δεν έχει καθόλου IMAP υποστήÏιξη μεταφÏασμένη!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin el Για τη χÏησιμοποίηση TLS σÏνδεσης, Ï€Ïέπει να έχετε PHP 5.1.0 ή υψηλότεÏη έκδοση. +unexpected response from server to authenticate command. emailadmin el ΑπÏόσμενη απάντηση από τον server στην ΕΞΑΚΡΙΒΩΣΗ ΓÎΗΣΙΟΤΗΤΑΣ εντολής. +unexpected response from server to digest-md5 response. emailadmin el ΑπÏόσμενη απάντηση από τον server στην Digest-MD5 απάντηση. +unexpected response from server to login command. emailadmin el ΑπÏόσμενη απάντηση από τον server στην εντολή ΕΙΣΟΔΟΥ +unknown imap response from the server. server responded: %s emailadmin el Άγνωστη IMAP απάντηση από τον server.Απάντηση Server:%s +use smtp auth emailadmin el ΧÏήση SMTP αυθ +users can define their own emailaccounts emailadmin el Οι χÏήστες μποÏοÏν να οÏίσουν τους δικοÏÏ‚ τους email λογαÏιασμοÏÏ‚ diff --git a/admin/lang/egw_en.lang b/admin/lang/egw_en.lang index 5e0ed3e587..905cd47c39 100644 --- a/admin/lang/egw_en.lang +++ b/admin/lang/egw_en.lang @@ -715,3 +715,216 @@ you need to select some users first! admin en You need to select some users firs you will need to remove the subcategories before you can delete this category admin en Remove the sub categories before deleting this category! your last submission was less then %1 days ago! admin en Your last submission was less than %1 days ago! your session could not be verified. admin en Your session could not be verified. +%1 entries deleted. emailadmin en %1 entries deleted. +(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) emailadmin en (imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) +(no subject) emailadmin en (no subject) +account '%1' not found !!! emailadmin en Account '%1' not found! +account deleted. emailadmin en Account deleted. +account not found! common en Account not found! +account saved. emailadmin en Account saved. +active templates emailadmin en Active templates +add new email address: emailadmin en Add new email address: +add profile emailadmin en Add profile +admin dn emailadmin en Admin dn +admin password emailadmin en Admin password +admin username emailadmin en Admin user name +advanced options emailadmin en Advanced options +allow users to change forwards emailadmin en Allow users to change forwards +alternate email address emailadmin en Alternate email address +and logged in emailadmin en and logged in +any application emailadmin en Any application +any group emailadmin en Any group +any user emailadmin en Any user +back to admin/grouplist emailadmin en Back to Admin / Group list +back to admin/userlist emailadmin en Back to Admin / User list +bad login name or password. emailadmin en Bad login name or password. +bad or malformed request. server responded: %s emailadmin en Bad or malformed request. %s +bad request: %s emailadmin en Bad request: %s +can be used by application emailadmin en Can be used by application +can be used by group emailadmin en Can be used by group +can be used by user emailadmin en Can be used by user +connection dropped by imap server. emailadmin en Connection dropped by IMAP server. +connection is not secure! everyone can read eg. your credentials. emailadmin en Connection is NOT secure! Everyone can read eg. your credentials. +continue emailadmin en Continue +could not append message: emailadmin en Could not append Message: +could not complete request. reason given: %s emailadmin en Could not complete request. %s +could not open secure connection to the imap server. %s : %s. emailadmin en Could not open secure connection to the IMAP server. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin en CRAM-MD5 or DIGEST-MD5 requires the Auth_SASL package to be installed. +create new account emailadmin en Create new account +create new identity emailadmin en Create new identity +cyrus imap server emailadmin en Cyrus IMAP server +cyrus imap server administration emailadmin en Cyrus IMAP server administration +default emailadmin en Default +delete identity emailadmin en Delete identity +delete this account emailadmin en Delete this account +deliver extern emailadmin en Deliver extern +displaying html messages is disabled emailadmin en displaying html messages is disabled +displaying plain messages is disabled emailadmin en displaying plain messages is disabled +do not validate certificate emailadmin en Do not validate certificate +do you really want to delete this profile emailadmin en Do you really want to delete this profile? +do you really want to reset the filter for the profile listing emailadmin en Do you really want to reset the filter for the profile listing? +domainname emailadmin en Domain name +edit email settings emailadmin en Edit email settings +email account active emailadmin en Email account active +email address emailadmin en Email address +email settings common en Email settings +emailadmin emailadmin en eMailAdmin +emailadmin: group assigned profile common en eMailAdmin: Group assigned profile +emailadmin: user assigned profile common en eMailAdmin: User assigned profile +enable cyrus imap server administration emailadmin en Enable Cyrus IMAP server administration +enable sieve emailadmin en Enable Sieve +encrypted connection emailadmin en Encrypted connection +encryption settings emailadmin en Encryption settings +enter your default mail domain (from: user@domain) emailadmin en Enter your default mail domain from: user@domain +entry saved emailadmin en Entry saved +error connecting to imap server. %s : %s. emailadmin en Error connecting to IMAP server. %s : %s. +error connecting to imap server: [%s] %s. emailadmin en Error connecting to IMAP server: [%s] %s. +error deleting entry! emailadmin en Error deleting entry! +error saving account! emailadmin en Error saving account! +error saving the entry!!! emailadmin en Error saving the entry! +error, no username! emailadmin en Error, no username! +event details follow emailadmin en Event Details follow +failed to delete account! emailadmin en Failed to delete account! +file rejected, no %2. is:%1 emailadmin en File rejected, no %2. Is:%1 +filtered by account emailadmin en Filtered by account +filtered by group emailadmin en Filtered by group +folder acl emailadmin en Folder ACL +forward also to emailadmin en Forward also to +forward email's to emailadmin en Forward email's to +forward only emailadmin en Forward only +forward only disables imap mailbox / storing of mails and just forwards them to given address. emailadmin en Forward only disables IMAP mailbox / storing of mails and just forwards them to given address. +global options emailadmin en Global options +hostname or ip emailadmin en Hostname or IP +how username get constructed emailadmin en How username get constructed +identity deleted emailadmin en Identity deleted +identity saved. emailadmin en Identity saved. +if different from email address emailadmin en if different from EMail address +if using ssl or tls, you must have the php openssl extension loaded. emailadmin en If using SSL or TLS, you must have the PHP openssl extension loaded. +if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) emailadmin en if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) +imap admin password admin en IMAP admin password +imap admin user admin en IMAP admin user +imap c-client version < 2001 emailadmin en IMAP C-Client Version < 2001 +imap server emailadmin en IMAP server +imap server closed the connection. emailadmin en IMAP server closed the connection. +imap server closed the connection. server responded: %s emailadmin en IMAP Server closed the connection. Server Responded: %s +imap server hostname or ip address emailadmin en IMAP server hostname or ip address +imap server logintyp emailadmin en IMAP server login type +imap server name emailadmin en IMAP server name +imap server port emailadmin en IMAP server port +imap/pop3 server name emailadmin en IMAP/POP3 server name +importance emailadmin en importance +in mbyte emailadmin en in MByte +inactive emailadmin en Inactive +ldap basedn emailadmin en LDAP basedn +ldap server emailadmin en LDAP server +ldap server accounts dn emailadmin en LDAP server accounts DN +ldap server admin dn emailadmin en LDAP server admin DN +ldap server admin password emailadmin en LDAP server admin password +ldap server hostname or ip address emailadmin en LDAP server host name or IP address +ldap settings emailadmin en LDAP settings +leave empty for no quota emailadmin en Leave empty for no quota +mail settings admin en Mail settings +manage stationery templates emailadmin en Manage stationery templates +manual entry emailadmin en Manual entry +mb used emailadmin en MB used +name of organisation emailadmin en Name of organization +no alternate email address emailadmin en No alternate email address +no encryption emailadmin en No encryption +no forwarding email address emailadmin en No forwarding email address +no message returned. emailadmin en No message returned +no plain text part found emailadmin en no plain text part found +no sieve support detected, either fix configuration manually or leave it switched off. emailadmin en No sieve support detected, either fix configuration manually or leave it switched off. +no supported imap authentication method could be found. emailadmin en No supported IMAP authentication method could be found. +order emailadmin en Order +organisation emailadmin en Organisation +plesk can't rename users --> request ignored emailadmin en Plesk can't rename users --> request ignored +plesk imap server (courier) emailadmin en Plesk IMAP Server (Courier) +plesk mail script '%1' not found !!! emailadmin en Plesk mail script '%1' not found! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin en Plesk requires passwords to have at least 5 characters and not contain the account name --> password NOT set! +plesk smtp-server (qmail) emailadmin en Plesk SMTP-Server (Qmail) +pop3 server hostname or ip address emailadmin en POP3 server hostname or IP address +pop3 server port emailadmin en POP3 server port +port emailadmin en Port +postfix with ldap emailadmin en Postfix with LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin en Processing of file %1 failed. Failed to meet basic restrictions. +profile access rights emailadmin en Profile access rights +profile is active emailadmin en Profile is active +profile list emailadmin en Profile list +profile name emailadmin en Profile name +qmaildotmode emailadmin en qmaildotmode +quota settings emailadmin en Quota settings +quota size in mbyte emailadmin en Quota size in MByte +relay access checked emailadmin en Relay access checked +remove emailadmin en Remove +required pear class mail/mimedecode.php not found. emailadmin en Required PEAR class Mail/mimeDecode.php not found. +reset filter emailadmin en Reset filter +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin en Save of message %1 failed. Could not save message to folder %2 due to: %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin en Saving of message %1 failed. Destination Folder %2 does not exist. +secure connection emailadmin en Secure connection +select type of imap server emailadmin en Select type of IMAP server +select type of imap/pop3 server emailadmin en Select type of IMAP/POP3 server +select type of smtp server emailadmin en Select type of SMTP server +send using this email-address emailadmin en Send using this email address +server settings emailadmin en Server settings +sieve server hostname or ip address emailadmin en Sieve server hostname or IP address +sieve server port emailadmin en Sieve server port +sieve settings emailadmin en Sieve settings +skip imap emailadmin en Skip IMAP +skipping imap configuration! emailadmin en Skipping IMAP configuration! +smtp authentication emailadmin en SMTP authentication +smtp options emailadmin en SMTP options +smtp server emailadmin en SMTP server +smtp server name emailadmin en SMTP server name +smtp settings emailadmin en SMTP settings +smtp-server hostname or ip address emailadmin en SMTP server hostname or IP address +smtp-server port emailadmin en SMTP server port +standard emailadmin en Standard +standard identity emailadmin en Standard identity +standard imap server emailadmin en Standard IMAP server +standard pop3 server emailadmin en Standard POP3 server +standard smtp-server emailadmin en Standard SMTP server +starts with emailadmin en Starts with +stationery emailadmin en Stationery +successful connected to %1 server%2. emailadmin en Successful connected to %1 server%2. +switch back to standard identity to save account. emailadmin en Switch back to standard identity to save account. +switch back to standard identity to save other account data. emailadmin en Switch back to standard identity to save other account data. +templates emailadmin en Templates +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin en The IMAP server does not appear to support the authentication method selected. Contact your system administrator. +the mimeparser can not parse this message. emailadmin en The mimeparser can not parse this message. +this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? emailadmin en This is NOT a personal mail account!\n\nAccount will be deleted for ALL users!\n\nAre you really sure you want to do that? +this php has no imap support compiled in!! emailadmin en This PHP has no IMAP support compiled in!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin en To use a TLS connection, you must be running a version of PHP 5.1.0 or higher. +unexpected response from server to authenticate command. emailadmin en Unexpected response from server to AUTHENTICATE command. +unexpected response from server to digest-md5 response. emailadmin en Unexpected response from server to Digest-MD5 response. +unexpected response from server to login command. emailadmin en Unexpected response from server to LOGIN command. +unknown imap response from the server. server responded: %s emailadmin en Unknown IMAP response from the server. %s +unsupported action '%1' !!! emailadmin en Unsupported action '%1' ! +update current email address: emailadmin en Update current email address: +use default emailadmin en use default +use ldap defaults emailadmin en Use LDAP defaults +use predefined username and password defined below emailadmin en Use predefined username and password defined below +use smtp auth emailadmin en Use SMTP authentication +use tls authentication emailadmin en Use TLS authentication +use tls encryption emailadmin en Use TLS encryption +use users email-address (as seen in useraccount) emailadmin en Use users email address, as set in user account +user can edit forwarding address emailadmin en User can edit forwarding address +userid@domain eg. u1234@domain emailadmin en UserId@domain eg. u1234@domain +username (standard) emailadmin en Username (standard) +username specified below for all emailadmin en Username specified below for all +username/password defined by admin emailadmin en Username / Password defined by admin +username@domainname (virtual mail manager) emailadmin en username@domainname (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin en Users can define their own email accounts +users can define their own identities emailadmin en Users can define their own identities +users can define their own signatures emailadmin en Users can define their own signatures +users can utilize these stationery templates emailadmin en Users can utilize these stationery templates +using data from mozilla ispdb for provider %1 emailadmin en Using data from Mozilla ISPDB for provider %1 +vacation messages with start- and end-date require an admin account to be set emailadmin en Vacation messages with start and end date require an admin account to be set! +vacation notice emailadmin en Vacation notice +virtual mail manager emailadmin en Virtual MAIL ManaGeR +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin en Yes, use credentials below only for alarms and notifications, otherwise use credentials of current user +yes, use credentials of current user or if given credentials below emailadmin en Yes, use credentials of current user or if given credentials below +you can use wizard to fix account settings or delete account. emailadmin en You can use wizard to fix account settings or delete account. +you have received a new message on the emailadmin en You have received a new message on the +you need to specify a forwarding address, when checking "%1"! emailadmin en You need to specify a forwarding address, when checking "%1"! +your message to %1 was displayed. emailadmin en Your message to %1 was displayed. +your name emailadmin en Your name diff --git a/admin/lang/egw_es-es.lang b/admin/lang/egw_es-es.lang index ae4fe6354e..47ae73fe51 100644 --- a/admin/lang/egw_es-es.lang +++ b/admin/lang/egw_es-es.lang @@ -691,3 +691,161 @@ you need to select some users first! admin es-es ¡Necesita seleccionar antes al you will need to remove the subcategories before you can delete this category admin es-es Deberá eliminar las subcategorías antes de poder borrar esta categoría your last submission was less then %1 days ago! admin es-es ¡Su último envío fue hace menos de %1 días! your session could not be verified. admin es-es Su sesión no pudo ser verificada. +(no subject) emailadmin es-es (Sin asunto) +account '%1' not found !!! emailadmin es-es ¡No se encontró la cuenta '%1'! +active templates emailadmin es-es Plantillas activas +add new email address: emailadmin es-es Añadir nueva dirección de correo +add profile emailadmin es-es Añadir perfil +admin dn emailadmin es-es dn del administrador +admin password emailadmin es-es contraseña del administrador +admin username emailadmin es-es usuario del administrador +advanced options emailadmin es-es opciones avanzadas +alternate email address emailadmin es-es dirección de correo alternativa +any application emailadmin es-es cualquier aplicación +any group emailadmin es-es cualquier grupo +any user emailadmin es-es cualquier usuario +back to admin/grouplist emailadmin es-es Volver a Administración/Lista de grupos +back to admin/userlist emailadmin es-es Volver a Administración/Lista de usuarios +bad login name or password. emailadmin es-es Nombre de usuario o contraseña incorrectos +bad or malformed request. server responded: %s emailadmin es-es Petición errónea o mal formado. El servidor respondió: %s +bad request: %s emailadmin es-es Petición errónea: %s +can be used by application emailadmin es-es puede usarse por la aplicación +can be used by group emailadmin es-es puede usarse por el grupo +can be used by user emailadmin es-es puede usarse por el usuario +connection dropped by imap server. emailadmin es-es El servidor IMAP ha interrumpido la conexión +continue emailadmin es-es Continuar +could not complete request. reason given: %s emailadmin es-es No se pudo completar la solicitud. Motivo: %s +could not open secure connection to the imap server. %s : %s. emailadmin es-es No se pudo abrir una conexión segura con el servidor IMAP. %s: %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin es-es CRAM-MD5 o DIGEST-MD5 necesitan el paquete Auth_SASL para estar instalado. +cyrus imap server emailadmin es-es Servidor IMAP Cyrus +cyrus imap server administration emailadmin es-es Administración del servidor IMAP Cyrus +default emailadmin es-es predeterminada +deliver extern emailadmin es-es entrega externa +displaying html messages is disabled emailadmin es-es Mostrar los mensajes en HTML está desactivado +do not validate certificate emailadmin es-es No validar el certificado +do you really want to delete this profile emailadmin es-es ¿Realmente desea borrar este perfil? +do you really want to reset the filter for the profile listing emailadmin es-es Realmente desea restablecer el filtro para la lista de perfiles +domainname emailadmin es-es nombre del dominio +edit email settings emailadmin es-es editar configuración de la cuenta +email account active emailadmin es-es cuenta de correo electrónico activa +email address emailadmin es-es dirección de correo electrónico +email settings common es-es Configuración del correo electrónico +emailadmin emailadmin es-es Administración del correo electrónico +emailadmin: group assigned profile common es-es eMailAdmin: perfil asignado al grupo +emailadmin: user assigned profile common es-es eMailAdmin: perfil asignado al usuario +enable cyrus imap server administration emailadmin es-es activar administración del servidor Cyrus IMAP +enable sieve emailadmin es-es activar Sieve +encrypted connection emailadmin es-es conexión cifrada +encryption settings emailadmin es-es configuración del cifrado +enter your default mail domain (from: user@domain) emailadmin es-es introduzca el dominio predeterminado (de usuario@dominio) +entry saved emailadmin es-es La entrada ha sido guardada +error connecting to imap server. %s : %s. emailadmin es-es Error al conectar con el servidor IMAP. %s: %s. +error connecting to imap server: [%s] %s. emailadmin es-es Error al conectar con el servidor IMAP: [%s] %s. +error saving account! emailadmin es-es ¡Error al guardar la cuenta! +error saving the entry!!! emailadmin es-es Error guardando el elemento!!! +event details follow emailadmin es-es A continuación, los detalles del evento +filtered by account emailadmin es-es filtrado por cuenta +filtered by group emailadmin es-es filtrado por grupo +forward also to emailadmin es-es reenviar también a +forward email's to emailadmin es-es reenviar correos a +forward only emailadmin es-es sólo reenviar +global options emailadmin es-es opciones globales +if using ssl or tls, you must have the php openssl extension loaded. emailadmin es-es Si usa SSL o TLS, debe tener cargada la extensión openssl de PHP. +imap admin password admin es-es contraseña del administrador IMAP +imap admin user admin es-es usuario administrador IMAP +imap c-client version < 2001 emailadmin es-es Versión C-Cliente IMAP < 2001 +imap server emailadmin es-es Servidor IMAP +imap server closed the connection. emailadmin es-es El servidor IMAP cerró la conexión. +imap server closed the connection. server responded: %s emailadmin es-es El servidor IMAP cerró la conexión. El servidor respondió: %s +imap server hostname or ip address emailadmin es-es Servidor IMAP o dirección IP +imap server logintyp emailadmin es-es Tipo de sesión del servidor IMAP +imap server name emailadmin es-es Nombre del servidor IMAP +imap server port emailadmin es-es Puerto del servidor IMAP +imap/pop3 server name emailadmin es-es Nombre del servidor POP/IMAP +importance emailadmin es-es Importancia +in mbyte emailadmin es-es en MBytes +inactive emailadmin es-es inactivo +ldap basedn emailadmin es-es basedn para LDAP +ldap server emailadmin es-es servidor LDAP +ldap server accounts dn emailadmin es-es DN para cuentas del servidor LDAP +ldap server admin dn emailadmin es-es DN del administrador del servidor LDAP +ldap server admin password emailadmin es-es contraseña del administrador del servidor LDAP +ldap server hostname or ip address emailadmin es-es Nombre del servidor LDAP o dirección IP +ldap settings emailadmin es-es Configuración LDAP +leave empty for no quota emailadmin es-es Dejar en blanco para no poner cuota +mail settings admin es-es Configuración del correo. +manage stationery templates emailadmin es-es Gestionar plantillas preimpresas +name of organisation emailadmin es-es Nombre de la organización +no alternate email address emailadmin es-es Sin dirección de correo alternativa +no encryption emailadmin es-es Sin cifrar +no forwarding email address emailadmin es-es Sin dirección de correo para reenviar +no message returned. emailadmin es-es No se devolvió ningún mensaje. +no plain text part found emailadmin es-es No se encontró ninguna parte con texto sencillo +no supported imap authentication method could be found. emailadmin es-es No se pudo encontrar ningún método soportado de identificación IMAP. +order emailadmin es-es orden +organisation emailadmin es-es organización +plesk can't rename users --> request ignored emailadmin es-es Plesk no puede renombrar usuarios --> Se ignora la solicitud +plesk imap server (courier) emailadmin es-es Servidor IMAP Plesk (Courier) +plesk mail script '%1' not found !!! emailadmin es-es ¡No se encontró el script de correo de Plesk '%1'! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin es-es Plesk requiere que las contraseñas tengan al menos 5 caracteres y no contengan el nombre de la cuenta --> NO se establece la contraseña +plesk smtp-server (qmail) emailadmin es-es Servidor SMTP de Plesk (Qmail) +pop3 server hostname or ip address emailadmin es-es Nombre del servidor POP3 o dirección IP +pop3 server port emailadmin es-es Puerto del servidor POP3 +port emailadmin es-es puerto +postfix with ldap emailadmin es-es Postfix con LDAP +profile access rights emailadmin es-es Derechos de acceso del perfil +profile is active emailadmin es-es el perfil está activo +profile list emailadmin es-es Lista de perfiles +profile name emailadmin es-es Nombre del perfil +qmaildotmode emailadmin es-es Modo de punto de qmail +quota settings emailadmin es-es Configuración de las cuotas +quota size in mbyte emailadmin es-es tamaño de la cuota en MBytes +remove emailadmin es-es borrar +reset filter emailadmin es-es restablecer filtro +select type of imap server emailadmin es-es Seleccione el tipo de servidor IMAP +select type of imap/pop3 server emailadmin es-es Seleccione el tipo de servidor IMAP/POP3 +select type of smtp server emailadmin es-es Seleccione el tipo de servidor SMTP +send using this email-address emailadmin es-es enviar usando esta dirección de correo electrónico +server settings emailadmin es-es configuración del servidor +sieve server hostname or ip address emailadmin es-es Nombre del servidor Sieve o dirección IP +sieve server port emailadmin es-es Puerto del servidor Sieve +sieve settings emailadmin es-es Configuración de Sieve +smtp authentication emailadmin es-es identificación SMTP +smtp options emailadmin es-es opciones SMTP +smtp server name emailadmin es-es Nombre del servidor SMTP +smtp settings emailadmin es-es configuración SMTP +smtp-server hostname or ip address emailadmin es-es Nombre del servidor SMTP o dirección IP +smtp-server port emailadmin es-es Puerto del servidor SMTP +standard emailadmin es-es Estándar +standard imap server emailadmin es-es Servidor IMAP estándar +standard pop3 server emailadmin es-es Servidor POP3 estándar +standard smtp-server emailadmin es-es Servidor SMTP estándar +stationery emailadmin es-es material preimpreso +templates emailadmin es-es Plantillas +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin es-es El servidor IMAP no parece soportar el método de identificación seleccionado. Por favor, póngase en contacto el administrador de su sistema. +the mimeparser can not parse this message. emailadmin es-es El intérprete mime no puede interpretar este mensaje +this php has no imap support compiled in!! emailadmin es-es ¡¡Esta instalación de PHP no tiene soporte IMAP!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin es-es Para usar una conexión TLS, debe ejecutar una versión de PHP 5.1.0 o superior. +unexpected response from server to authenticate command. emailadmin es-es Respuesta inesperada del servidor al comando AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin es-es Respuesta inesperada del servidor a la respuesta Digest-MD5. +unexpected response from server to login command. emailadmin es-es Respuesta inesperada del servidor al comando LOGIN. +unknown imap response from the server. server responded: %s emailadmin es-es Respuesta IMAP desconocida del servidor. El servidor respondió: %s +unsupported action '%1' !!! emailadmin es-es ¡La acción '%1' no está soportada! +update current email address: emailadmin es-es Actualizar la dirección de correo actual: +use default emailadmin es-es Usar predeterminado +use ldap defaults emailadmin es-es usar las opciones predeterminadas para LDAP +use predefined username and password defined below emailadmin es-es Usar el usuario predefinido y las contraseñas definidas debajo +use smtp auth emailadmin es-es Usar identificación SMTP +use tls authentication emailadmin es-es Usar identificación TLS +use tls encryption emailadmin es-es Usar cifrado TLS +user can edit forwarding address emailadmin es-es El usuario puede editar la dirección de reenvío +username (standard) emailadmin es-es usuario (estándar) +username/password defined by admin emailadmin es-es Usuario/contraseña definida por el administrador +username@domainname (virtual mail manager) emailadmin es-es usuario@dominio (Gestor de correo virtual) +users can define their own emailaccounts emailadmin es-es Los usuarios pueden definir sus propias cuentas de correo +users can define their own identities emailadmin es-es Los usuarios pueden definir sus propias identidades +users can define their own signatures emailadmin es-es Los usuarios pueden definir sus propias firmas +users can utilize these stationery templates emailadmin es-es Los usuarios pueden utilizar estas plantillas preimpresas +virtual mail manager emailadmin es-es Gestor de correo virtual +you have received a new message on the emailadmin es-es Ha recibido un mensaje nuevo en la +your name emailadmin es-es Su nombre diff --git a/admin/lang/egw_et.lang b/admin/lang/egw_et.lang index fefab3bfb1..e3ad5f846b 100644 --- a/admin/lang/egw_et.lang +++ b/admin/lang/egw_et.lang @@ -239,3 +239,55 @@ you must enter an application title. admin et Pead sisesestama rakenduse pealkir you must select a file type admin et Pead valima failitüübi you must select at least one group member. admin et Pead valima vähemalt ühe grupiliikme. you will need to remove the subcategories before you can delete this category admin et Pead eemaldama kõigepealt alamkategoorjad kustutamaks seda kategooriat ! +account '%1' not found !!! emailadmin et Kontot '%1' ei leitud !!! +add new email address: emailadmin et Lisa uus email aadress +add profile emailadmin et Lisa Profiil +admin password emailadmin et admin parool +admin username emailadmin et admin kasutajanimi +alternate email address emailadmin et Alternatiivne email aadress +bad login name or password. emailadmin et Vale kasutajanimi või parool +continue emailadmin et Jätka +cyrus imap server emailadmin et Cyrus IMAP Server +cyrus imap server administration emailadmin et Cyrus IMAP server administreerimine +default emailadmin et vaikimisi +displaying html messages is disabled emailadmin et html kirjade näitamine on välja lülitatud +do not validate certificate emailadmin et ära valideeri sertifikaati +do you really want to delete this profile emailadmin et Tahad tõesti kustutada seda Profiili +domainname emailadmin et Doomeninimi +edit email settings emailadmin et muuda emaili setinguid +email account active emailadmin et email konto aktiivne +email address emailadmin et email aadress +email settings common et Email setingud +encrypted connection emailadmin et krüpteeritud ühendus +encryption settings emailadmin et Krüpteerimise setingud +enter your default mail domain (from: user@domain) emailadmin et Sisesta oma vaikimisi mail doomen (kasutaja@doomen) +entry saved emailadmin et Kirje salvestatud +error saving the entry!!! emailadmin et Viga kirje salvestamisel !!! +global options emailadmin et Globaalsed omadused +imap admin password admin et IMAP admin parool +imap admin user admin et IMAP admin kasutaja +imap c-client version < 2001 emailadmin et IMAP C-Client Versioon < 2001 +imap server emailadmin et IMAP Server +imap server closed the connection. emailadmin et IMAP server sulges ühenduse. +imap server closed the connection. server responded: %s emailadmin et IMAP Server sulges ühenduse. Server Vastas: %s +imap server name emailadmin et imap serveri nimi +imap server port emailadmin et IMAP serveri port +imap/pop3 server name emailadmin et IMAP/POP3 server nimi +ldap settings emailadmin et LDAP setingud +mail settings admin et Mail setingud +no alternate email address emailadmin et pole alternatiivset email aadressi +no encryption emailadmin et ilna krüpteeringutta +organisation emailadmin et Organisatsioon +pop3 server port emailadmin et POP3 serveri port +port emailadmin et port +remove emailadmin et eemalda +select type of imap server emailadmin et vali IMAP serveri tüüp +select type of imap/pop3 server emailadmin et vali IMAP/POP3 serveri tüüp +select type of smtp server emailadmin et Vali SMTP serveri tüüp +server settings emailadmin et Serveri setingud +sieve server port emailadmin et Sieve serveri port +sieve settings emailadmin et Sieve setingud +smtp server name emailadmin et SMTP serveri nimi +smtp settings emailadmin et SMTP setingud +smtp-server port emailadmin et SMTP serveri port +use default emailadmin et Kasuta vaikimisi diff --git a/admin/lang/egw_eu.lang b/admin/lang/egw_eu.lang index c9f4ad5180..38954ff4e1 100644 --- a/admin/lang/egw_eu.lang +++ b/admin/lang/egw_eu.lang @@ -361,3 +361,37 @@ you must enter an application name. admin eu Aplikazioari izen bat eman behar di you must enter an application title. admin eu Aplikazioari izenburu bat jarri behar diozu. you must select a file type admin eu Fitxategi mota bat aukeratu behar duzu your session could not be verified. admin eu Zure saioa ezin izan da egiaztatu +(no subject) emailadmin eu (gai gabe) +advanced options emailadmin eu Aukera aurreratuak +alternate email address emailadmin eu Helbide elektroniko alternatiboa +bad login name or password. emailadmin eu Izen edo pasahitz okerra +default emailadmin eu Lehenetsia +email address emailadmin eu Helbide elektronikoa +encrypted connection emailadmin eu konexioa enkriptatua +entry saved emailadmin eu Sarrera gordeta +error saving the entry!!! emailadmin eu Errorea sarrera gordetzerakoan +event details follow emailadmin eu Gertakariaren detaileak +imap server emailadmin eu IMAP Zerbitzaria +imap server closed the connection. emailadmin eu IMAP zerbitzariak konexioa itxi du +in mbyte emailadmin eu MByte-sen +leave empty for no quota emailadmin eu zurian utzi kuotarik ez badago +mail settings admin eu Posta elektronikoaren konfigurazioa +no alternate email address emailadmin eu ez da ordezko helbide elektronikorik +no message returned. emailadmin eu Ez da mezurik itzuli +order emailadmin eu Ordena +organisation emailadmin eu antolaketa +port emailadmin eu ataka +postfix with ldap emailadmin eu Postfix-ak LDAP-arekin +quota settings emailadmin eu kuotaren konfigurazioa +quota size in mbyte emailadmin eu kuotaren tamaina MBytes-etan +remove emailadmin eu ezabatu +sieve settings emailadmin eu SIEVE ren lehentasunak +smtp settings emailadmin eu SMTP lehentasunak +standard emailadmin eu estandar +standard imap server emailadmin eu IMAP zerbitzari estandarra +standard pop3 server emailadmin eu POP3 zerbitzari estandarra +standard smtp-server emailadmin eu SMTP zerbitzari estandarra +this php has no imap support compiled in!! emailadmin eu PHParendako IMAPa konpilatu gabe +use default emailadmin eu Lehenetsia erabili +use smtp auth emailadmin eu SMTP autentifikazioa erabili +users can define their own emailaccounts emailadmin eu Erabiltzaileek euren posta kontuak defini ditzazkete diff --git a/admin/lang/egw_fa.lang b/admin/lang/egw_fa.lang index 4be47f662b..cddb43e79d 100644 --- a/admin/lang/egw_fa.lang +++ b/admin/lang/egw_fa.lang @@ -440,3 +440,78 @@ you must enter an application name. admin fa شما باید یک نام کار you must enter an application title. admin fa شما باید یک عنوان کاربرد وارد کنید you must select a file type admin fa شما باید یک نوع پرونده انتخاب کنید you will need to remove the subcategories before you can delete this category admin fa شما باید قبل از حذ٠این دسته، زیر مجموعه ها را حذ٠کنید! +(no subject) emailadmin fa (بدون عنوان) +add profile emailadmin fa اÙزودن مجموعه تنظیمات +admin dn emailadmin fa dn مدیر +admin password emailadmin fa گذرواژه مدیر +admin username emailadmin fa نام کاربری مدیر +advanced options emailadmin fa تنظیمات پیشرÙته +alternate email address emailadmin fa نشانی پست الکترونیکی دیگر +any application emailadmin fa همه کاربردها +any group emailadmin fa همه گروهها +can be used by application emailadmin fa استÙاده شود توسط کاربرد +can be used by group emailadmin fa استÙاده شود توسط گروه +continue emailadmin fa ادامه +default emailadmin fa پیش Ùرض +deliver extern emailadmin fa حمل بیرونی +do you really want to delete this profile emailadmin fa آیا واقعا Ù…ÛŒ خواهید این مجموعه تنظیمات را حذ٠کنید؟ +domainname emailadmin fa نام حوزه +edit email settings emailadmin fa ویرایش تنظیمات نامه الکترونیکی +email account active emailadmin fa حساب نامه الکترونیکی Ùعال +email address emailadmin fa نشانی الکترونیکی +emailadmin emailadmin fa مدیر رایانامه +enable sieve emailadmin fa Ùعالسازی Sieve +encryption settings emailadmin fa تنظیمات رمز نگاری +enter your default mail domain (from: user@domain) emailadmin fa حوزه پیش Ùرض خود را وارد کنید:(مثلا: fgpars.net) +entry saved emailadmin fa ورودی ذخیره شد +error saving the entry!!! emailadmin fa خطای ذخیره ورودی!!! +event details follow emailadmin fa پیگیری جزئیات رویداد +forward also to emailadmin fa همچنین ارسال به +forward email's to emailadmin fa ارسال نامه ها به +forward only emailadmin fa Ùقط ارسال به +global options emailadmin fa گزینه های عمومی +imap admin password admin fa گذرواژه مدیر IMAP +imap admin user admin fa کاربر مدیر IMAP +imap server emailadmin fa کارگزار Ø¢ÛŒ مپ +imap server hostname or ip address emailadmin fa نام میزبان یا نشانی IP کارگزار IMAP +imap server logintyp emailadmin fa نوع ورود کارگزار IMAP +imap server port emailadmin fa درگاه کارگزار IMAP +imap/pop3 server name emailadmin fa نام کارگزار IMAP/POP3 +in mbyte emailadmin fa به مگابایت +leave empty for no quota emailadmin fa برای بدون سهمیه بودن، خالی بگذارید +mail settings admin fa تنظیمات نامه +name of organisation emailadmin fa نام سازمان +no alternate email address emailadmin fa بدون نشانی نامه الکترونیکی دیگر +no forwarding email address emailadmin fa بدون نشانی نامه الکترونیکی ارسال به دیگری +order emailadmin fa ترتیب +organisation emailadmin fa سازمان +pop3 server hostname or ip address emailadmin fa نام میزبان یا نشانی IP کارگزار POP3 +pop3 server port emailadmin fa درگاه کارگزار POP3 +profile access rights emailadmin fa حقوق دسترسی مجموعه تنظیمات +profile list emailadmin fa لیست مجموعه تنظیمات +profile name emailadmin fa نام مجموعه تنظیمات +quota settings emailadmin fa تنظیمات سهمیه +quota size in mbyte emailadmin fa سهمیه به مگابایت +remove emailadmin fa حذ٠+select type of imap/pop3 server emailadmin fa نوع کارگزار IMAP/POP3 را انتخاب کنید +select type of smtp server emailadmin fa نوع کارگزار SMTP را انتخاب کنید +server settings emailadmin fa تنظیمات کارگزار +sieve server hostname or ip address emailadmin fa نام میزبان یا نشانی IP کارگزار Sieve +sieve server port emailadmin fa درگاه کارگزار Sieve +sieve settings emailadmin fa تنظیمات Sieve +smtp authentication emailadmin fa تصدیق smtp +smtp server name emailadmin fa نام کارگزار SMTP +smtp settings emailadmin fa تنظیمات smtp +smtp-server hostname or ip address emailadmin fa نشانی IP یا نام میزبان SMTP +smtp-server port emailadmin fa درگاه کارگزار SMTP +standard emailadmin fa استاندارد +standard imap server emailadmin fa کارگزار استاندارد IMAP +standard pop3 server emailadmin fa کارگزار استاندارد POP3 +standard smtp-server emailadmin fa کارگزار استاندارد SMTP +the mimeparser can not parse this message. emailadmin fa تشخیص دهنده نوع Ùایل قادر به تشخیص این پیام نیست +this php has no imap support compiled in!! emailadmin fa این PHP پشتیبانی از Ø¢ÛŒ مپ را در خود ندارد! +use default emailadmin fa استÙاده از پیش Ùرض +use ldap defaults emailadmin fa از پیش Ùرضهای LDAP استÙاده شود +use smtp auth emailadmin fa استÙاده از تصدیق در SMTP +users can define their own emailaccounts emailadmin fa کاربران Ù…ÛŒ توانند حسابهای کاربری را خودشان تعری٠کنند +your name emailadmin fa نام شما diff --git a/admin/lang/egw_fi.lang b/admin/lang/egw_fi.lang index 2d292f5b39..2fb595e740 100644 --- a/admin/lang/egw_fi.lang +++ b/admin/lang/egw_fi.lang @@ -621,3 +621,170 @@ you need to select some users first! admin fi Valitse ensin käyttäjät! you will need to remove the subcategories before you can delete this category admin fi Alikategoriat on poistettava ennen kuin voit poistaa tämän kategorian! your last submission was less then %1 days ago! admin fi Viimeisin lähettämäsi tieto on vähemmän kuin %1 päivää sitten! your session could not be verified. admin fi Istuntoasi ei voitu varmentaa. +%1 entries deleted. emailadmin fi %1 tapahtumaa poistettu +(no subject) emailadmin fi Ei aihetta +account '%1' not found !!! emailadmin fi Tiliä '%1' ei löytynyt! +active templates emailadmin fi Aktiiviset mallipohjat +add new email address: emailadmin fi Lisää uusi sähköpostiosoite +add profile emailadmin fi Lisää profiili +admin dn emailadmin fi Ylläpitäjän dn +admin password emailadmin fi Ylläpitäjän salasana +admin username emailadmin fi Ylläpitäjän käyttäjätunnus +advanced options emailadmin fi Lisäasetukset +alternate email address emailadmin fi Vaihtoehtoinen sähköpostiosoite +any application emailadmin fi Mikä tahansa sovellus +any group emailadmin fi Mikä tahansa ryhmä +any user emailadmin fi Kuka tahansa käyttäjä +back to admin/grouplist emailadmin fi Takaisin ylläpitoon / Ryhmäluetteloon +back to admin/userlist emailadmin fi Takaisin ylläpitoon / Käyttäjäluetteloon +bad login name or password. emailadmin fi Väärä käyttäjätunnus tai salasana +bad or malformed request. server responded: %s emailadmin fi Väärä tai viallinen pyyntö. %s +bad request: %s emailadmin fi Väärä pyyntö: %s +can be used by application emailadmin fi Sovellukselle +can be used by group emailadmin fi Ryhmälle +can be used by user emailadmin fi Käyttäjälle +connection dropped by imap server. emailadmin fi Yhteys IMAP palvelimeen katkesi. +continue emailadmin fi Jatka +could not complete request. reason given: %s emailadmin fi Pyyntöä ei voitu toteuttaa. %s +could not open secure connection to the imap server. %s : %s. emailadmin fi Turvattua yhteyttä IMAP palvelimeen ei voitu avata. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin fi CRAM-MD5 tai DIGEST-MD5 käyttö edellyttää Auth_SASL paketin asentamista. +cyrus imap server emailadmin fi Cyrus IMAP -palvelin +cyrus imap server administration emailadmin fi Cyrus IMAP -palvelimen hallinta +default emailadmin fi Oletus +deliver extern emailadmin fi Deliver extern +displaying html messages is disabled emailadmin fi HTML viestien näyttäminen on estetty +do not validate certificate emailadmin fi Älä tarkista sertifikaattia +do you really want to delete this profile emailadmin fi Haluatko varmasti poistaa tämän profiilin? +do you really want to reset the filter for the profile listing emailadmin fi Haluatko varmasti uudelleenasettaa suotimen profiililuetteloon? +domainname emailadmin fi Verkkotunnus +edit email settings emailadmin fi Muokkaa sähköpostin asetuksia +email account active emailadmin fi Sähköpostitili käytössä +email address emailadmin fi Sähköpostiosoite +email settings common fi Sähköpostin asetukset +emailadmin emailadmin fi Sähköpostin ylläpito +emailadmin: group assigned profile common fi Sähköpostin ylläpito: Ryhmälle suunnattu profiili +emailadmin: user assigned profile common fi Sähköpostin ylläpito: Käyttäjälle suunnattu profiili +enable cyrus imap server administration emailadmin fi Ota Cyrus IMAP -palvelimen hallinta käyttöön +enable sieve emailadmin fi Ota Sieve käyttöön +encrypted connection emailadmin fi Yhteyden suojaus +encryption settings emailadmin fi Yhteyden suojausasetukset +enter your default mail domain (from: user@domain) emailadmin fi Anna oletusverkkotunnus (käyttäjä@verkkotunnus) +entry saved emailadmin fi Tallennettu +error connecting to imap server. %s : %s. emailadmin fi Virhe yhdistettäessä IMAP palvelimeen. %s : %s. +error connecting to imap server: [%s] %s. emailadmin fi Virhe yhdistettäessä IMAP palvelimeen. [%s] %s. +error deleting entry! emailadmin fi Virhe poistettaessa! +error saving account! emailadmin fi Virhe tallennettaessa käyttäjätiliä! +error saving the entry!!! emailadmin fi Virhe tallennettaessa! +event details follow emailadmin fi Tapahtuman yksityiskohdat alla +filtered by account emailadmin fi Käyttäjätilien mukaan +filtered by group emailadmin fi Ryhmän mukaan +forward also to emailadmin fi Välitä osoitteeseen +forward email's to emailadmin fi Välitä osoitteeseen +forward only emailadmin fi Ainoastaan edelleenlähetys +global options emailadmin fi Yleiset asetukset +if using ssl or tls, you must have the php openssl extension loaded. emailadmin fi Jos SSL tai TLS on käytössä, PHP openssl lisäosa pitää olla ladattuna. +imap admin password admin fi IMAP admin salasana +imap admin user admin fi IMAP admin käyttäjätunnus +imap c-client version < 2001 emailadmin fi IMAP C-Client versio < 2001 +imap server emailadmin fi IMAP -palvelin +imap server closed the connection. emailadmin fi IMAP palvelin katkaisi yhteyden. +imap server closed the connection. server responded: %s emailadmin fi IMAP palvelin katkaisi yhteyden. %s +imap server hostname or ip address emailadmin fi IMAP -palvelimen nimi tai IP-osoite +imap server logintyp emailadmin fi IMAP -palvelimen käyttäjätunnistus +imap server name emailadmin fi IMAP -palvelimen nimi +imap server port emailadmin fi IMAP -palvelimen portti +imap/pop3 server name emailadmin fi IMAP / POP3 -palvelimen nimi +importance emailadmin fi Tärkeys +in mbyte emailadmin fi Megatavua +inactive emailadmin fi Ei käytössä +ldap basedn emailadmin fi LDAP basedn +ldap server emailadmin fi LDAP -palvelin +ldap server accounts dn emailadmin fi LDAP -tunnusten DN +ldap server admin dn emailadmin fi LDAP -ylläpidon DN +ldap server admin password emailadmin fi LDAP -hallinnan salasana +ldap server hostname or ip address emailadmin fi LDAP -palvelimen nimi tai IP-osoite +ldap settings emailadmin fi LDAP -asetukset +leave empty for no quota emailadmin fi Jätä tyhjäksi, jos ei rajoiteta +mail settings admin fi Sähköpostin asetukset +manage stationery templates emailadmin fi Hallitse sähköpostin taustakuvamallipohjia +mb used emailadmin fi MB käytetty +name of organisation emailadmin fi Organisaation nimi +no alternate email address emailadmin fi Ei vaihtoehtoista osoitetta +no encryption emailadmin fi Ei suojausta +no forwarding email address emailadmin fi Välityksen sähköpostiosoitetta ei löytynyt +no message returned. emailadmin fi Viestiä ei palautettu +no plain text part found emailadmin fi Pelkkää tekstiä ei löytynyt +no supported imap authentication method could be found. emailadmin fi Tuettua IMAP tunnistustapaa ei löydetty. +order emailadmin fi Järjestys +organisation emailadmin fi Organisaatio +plesk can't rename users --> request ignored emailadmin fi Plesk ei voi nimetä käyttäjiä --> pyyntö hylätty +plesk imap server (courier) emailadmin fi Plesk IMAP palvelin (Courier) +plesk mail script '%1' not found !!! emailadmin fi Plesk sähköpostiskriptiä '%1' ei löydy !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin fi Plesk:n salasanassa pitää olla vähintään 5 merkkiä, eikä se saa olla käyttäjätilin nimi --> salasanaa EI ole asetettu !!! +plesk smtp-server (qmail) emailadmin fi Plesk SMTP-palvelin (Qmail) +pop3 server hostname or ip address emailadmin fi POP3 -palvelimen nimi tai IP-osoite +pop3 server port emailadmin fi POP3 -palvelimen portti +port emailadmin fi Portti +postfix with ldap emailadmin fi Postfix ja LDAP +profile access rights emailadmin fi Profiilin käyttöoikeudet +profile is active emailadmin fi Profiili on aktiivinen +profile list emailadmin fi Profiileiluettelo +profile name emailadmin fi Profiilin nimi +qmaildotmode emailadmin fi qmaildotmode +quota settings emailadmin fi Tallennuskiintiön asetukset +quota size in mbyte emailadmin fi Rajoituksen koko Mb:nä +remove emailadmin fi Poista +reset filter emailadmin fi Poista suodatin +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin fi Viestin %1 tallennus epäonnistui. Viestiä ei voitu tallentaa kansioon %2. Syy: %3 +select type of imap server emailadmin fi Valitse IMAP -palvelimen tyyppi +select type of imap/pop3 server emailadmin fi Valitse IMAP / POP3 -palvelimen tyyppi +select type of smtp server emailadmin fi Valitse SMTP -palvelimen tyyppi +send using this email-address emailadmin fi Lähetä käyttäen tätä sähköpostiosoitetta +server settings emailadmin fi Palvelimen asetukset +sieve server hostname or ip address emailadmin fi Sieve -palvelimen nimi tai IP-osoite +sieve server port emailadmin fi Sieve -palvelimen portti +sieve settings emailadmin fi Sieven asetukset +smtp authentication emailadmin fi SMTP -tunnistus +smtp options emailadmin fi SMTP -asetukset +smtp server name emailadmin fi SMTP -palvelimen nimi +smtp settings emailadmin fi SMTP -asetukset +smtp-server hostname or ip address emailadmin fi SMTP -palvelimen nimi tai IP-osoite +smtp-server port emailadmin fi SMTP -palvelimen portti +standard emailadmin fi Vakio +standard imap server emailadmin fi Vakio IMAP -palvelin +standard pop3 server emailadmin fi Vakio POP3 -palvelin +standard smtp-server emailadmin fi Vakio SMTP -palvelin +starts with emailadmin fi Alkaa: +stationery emailadmin fi Sähköpostin taustakuvamallipohjat +templates emailadmin fi Mallipohjat +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin fi IMAP palvelimelta ei löydy tukea valitulle tunnistusmuodolle, ota yhteyttä järjestelmän pääkäyttäjään. +the mimeparser can not parse this message. emailadmin fi Mimeparseri ei voi jäsentää tätä viestiä +this php has no imap support compiled in!! emailadmin fi Tämä PHP ei sisällä IMAP tukea!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin fi Käyttääksesi TLS yhteyttä, sinulla pitää olla käytössä PHP 5.1.0 tai uudempi versio. +unexpected response from server to authenticate command. emailadmin fi Odottamaton vastaus palvelimen AUTHENTICATE komennolta. +unexpected response from server to digest-md5 response. emailadmin fi Odottamaton vastaus palvelimen Digest-MD5 vastauksesta. +unexpected response from server to login command. emailadmin fi Odottamaton vastaus palvelimen LOGIN komennolta. +unknown imap response from the server. server responded: %s emailadmin fi Tuntematon IMAP vastaus palvelimelta. Palvelin vastasi: %s +unsupported action '%1' !!! emailadmin fi Toiminto, jota ei tueta '%1' !!! +update current email address: emailadmin fi Päivitä nykyinen sähköpostiosoite: +use default emailadmin fi Käytä oletusta +use ldap defaults emailadmin fi Käytä LDAP -oletuksia +use predefined username and password defined below emailadmin fi Käytä esimääriteltyä käyttäjänimeä ja salasanaa +use smtp auth emailadmin fi Käytä SMTP -käyttäjätunnistusta +use tls authentication emailadmin fi Käytä TLS -käyttäjätunnistusta +use tls encryption emailadmin fi Käytä TLS -salausta +use users email-address (as seen in useraccount) emailadmin fi Käytä käyttäjän sähköpostiosoitetta +user can edit forwarding address emailadmin fi Käyttäjä voi muokata välitys osoitetta +userid@domain eg. u1234@domain emailadmin fi käyttäjätunnus@verkkotunnus +username (standard) emailadmin fi Käyttäjätunnus (standardi) +username/password defined by admin emailadmin fi Ylläpidon määrittelemä käyttäjätunnus/salasana +username@domainname (virtual mail manager) emailadmin fi käyttäjätunnus@verkkotunnus (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin fi Käyttäjät voivat määritellä omia sähköpostitilejä +users can define their own identities emailadmin fi Käyttäjät voivat määritellä omia identiteettejä +users can define their own signatures emailadmin fi Käyttäjät voivat määritellä omia allekirjoituksia +users can utilize these stationery templates emailadmin fi Käyttäjät voivat määritellä omia sähköpostin taustakuvamallipohjia +virtual mail manager emailadmin fi Virtual MAIL ManaGeR +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin fi Kyllä, Käytä annettua salasanaa vain hälytyksiin ja huomautusviesteihin, muulloin käyttäjän tunnuksia +yes, use credentials of current user or if given credentials below emailadmin fi Kyllä, käyttäjän tunnukset, tai mahdolliset allaolevat tunnukset +you have received a new message on the emailadmin fi Sinulle on uusi viesti +your name emailadmin fi Nimesi diff --git a/admin/lang/egw_fr.lang b/admin/lang/egw_fr.lang index 6b633a7526..a270f9551f 100644 --- a/admin/lang/egw_fr.lang +++ b/admin/lang/egw_fr.lang @@ -706,3 +706,174 @@ you need to select some users first! admin fr Vous devez sélectionner quelques you will need to remove the subcategories before you can delete this category admin fr Vous allez devoir enlever les sous-catégories avant de pouvoir effacer cette catégorie ! your last submission was less then %1 days ago! admin fr Votre dernier envoi était il y a moins de %1 jour(s) ! your session could not be verified. admin fr Votre session n'a pas pu être vérifiée. +%1 entries deleted. emailadmin fr %1 éléments supprimés. +(no subject) emailadmin fr Pas de sujet +account '%1' not found !!! emailadmin fr Le compte %1 n'a pas été trouvé!!! +active templates emailadmin fr Modèles actifs +add new email address: emailadmin fr Ajouter une nouvelle adresse email: +add profile emailadmin fr Ajouter un profil +admin dn emailadmin fr DN administrateur +admin password emailadmin fr Mot de passe administrateur +admin username emailadmin fr Nom d'utilisateur de l'administrateur +advanced options emailadmin fr Options avancées +alternate email address emailadmin fr Adresse email alternative +any application emailadmin fr Toutes les applications +any group emailadmin fr Tous les groupes +any user emailadmin fr Tous les utilisateurs +back to admin/grouplist emailadmin fr Retour à l'admin / liste des groupes +back to admin/userlist emailadmin fr Retour à l'admin / liste des utilisateurs +bad login name or password. emailadmin fr ID login ou mot de passe erroné +bad or malformed request. server responded: %s emailadmin fr Requête invalide ou erronnée. Réponse serveur: %s +bad request: %s emailadmin fr Requête invalide: %s +can be used by application emailadmin fr Peut être utilisée par application +can be used by group emailadmin fr Peut être utilisée par un groupe +can be used by user emailadmin fr Peut être utilisée par un utilisateur +connection dropped by imap server. emailadmin fr Connexion interrompue par le serveur IMAP. +continue emailadmin fr Continuer +could not complete request. reason given: %s emailadmin fr Impossible d'effectuer la requête. Raison invoquée: %s +could not open secure connection to the imap server. %s : %s. emailadmin fr Impossible d'ouvrir la connexion sécurisée avec le serveur IMAP. %s: %s +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin fr CRAM-MD5 ou DIGEST-MD5 requiert l'installation du progiciel Auth_SASL +create new account emailadmin fr Créer un nouveau compte +cyrus imap server emailadmin fr Serveur Cyrus IMAP +cyrus imap server administration emailadmin fr Administration du serveur Cyrus IMAP +default emailadmin fr défaut +deliver extern emailadmin fr Relais de messagerie +displaying html messages is disabled emailadmin fr L'affichage des messages html est désactivé. +displaying plain messages is disabled emailadmin fr L'affichage des texte brut est désactivé. +do not validate certificate emailadmin fr ne pas valider le certificat +do you really want to delete this profile emailadmin fr Voulez-vous vraiment supprimer ce profil ? +do you really want to reset the filter for the profile listing emailadmin fr Voulez-vous vraiment réinitialiser le filtre pour le listage des profils ? +domainname emailadmin fr Nom de domaine +edit email settings emailadmin fr Modifier les paramètres de messagerie +email account active emailadmin fr Compte de messagerie actif +email address emailadmin fr Adresse de messagerie +email settings common fr Paramètres de messagerie +emailadmin emailadmin fr Administration de la messagerie +emailadmin: group assigned profile common fr eMailAdmin : profil assigné par groupe +emailadmin: user assigned profile common fr eMailAdmin : profil assigné par utilisateur +enable cyrus imap server administration emailadmin fr Activer la gestion du serveur Cyrus IMAP +enable sieve emailadmin fr Activer Sieve +encrypted connection emailadmin fr connexion chiffrée +encryption settings emailadmin fr Paramètres de chiffrement +enter your default mail domain (from: user@domain) emailadmin fr Introduisez votre domaine par défaut (utilisateur@domaine.com) +entry saved emailadmin fr Entrée enregistrée +error connecting to imap server. %s : %s. emailadmin fr Erreur de connexion avec le serveur IMAP. %s: %s. +error connecting to imap server: [%s] %s. emailadmin fr Erreur de connexion avec le serveur IMAP. [%s] %s. +error deleting entry! emailadmin fr Erreur à la suppression de l'entrée ! +error saving account! emailadmin fr Erreur lors de l'enregistrement du compte ! +error saving the entry!!! emailadmin fr Erreur à l'enregistrement de l'entrée ! +event details follow emailadmin fr Les détails de l'événement suivent +filtered by account emailadmin fr Filtrage par compte +filtered by group emailadmin fr Filtrage par groupe +forward also to emailadmin fr Transférer aussi à +forward email's to emailadmin fr Transférer les emails à +forward only emailadmin fr Seulement transférer +global options emailadmin fr Options globales +hostname or ip emailadmin fr Serveur hôte ou IP +if different from email address emailadmin fr Si différent de l'adresse mail +if using ssl or tls, you must have the php openssl extension loaded. emailadmin fr Si vous utilisez SSl ou TLS, vous devez avoir chargé l'extension PHP openssl +if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) emailadmin fr Si vous spécifiez le port 5190 comme port du serveur SIEVE, vous forcer le SSL pour SIEVE (et le serveur doit le supporter...) +imap admin password admin fr Mot de passe de l'administrateur IMAP +imap admin user admin fr ID administrateur IMAP +imap c-client version < 2001 emailadmin fr IMAP C-Client Version < 2001 +imap server emailadmin fr Serveur IMAP +imap server closed the connection. emailadmin fr Le serveur IMAP a interrompu la connexion. +imap server closed the connection. server responded: %s emailadmin fr Le serveur IMAP a interrompu la connexion. Réponse du serveur: %s. +imap server hostname or ip address emailadmin fr Nom du serveur IMAP ou adresse IP +imap server logintyp emailadmin fr Type d'authentification IMAP +imap server name emailadmin fr Nom du serveur IMAP +imap server port emailadmin fr Port IMAP +imap/pop3 server name emailadmin fr Nom du serveur IMAP/POP3 +importance emailadmin fr Importance +in mbyte emailadmin fr en Mo +inactive emailadmin fr Inactif +ldap basedn emailadmin fr LDAP DN de base +ldap server emailadmin fr LDAP Serveur +ldap server accounts dn emailadmin fr LDAP DN contenant les comptes utilisateurs +ldap server admin dn emailadmin fr LDAP DN administrateur +ldap server admin password emailadmin fr LDAP Mot de passe administateur +ldap server hostname or ip address emailadmin fr LDAP Nom du serveur ou adresse IP +ldap settings emailadmin fr LDAP Paramètres +leave empty for no quota emailadmin fr Laisser vide pour ne pas avoir de quota +mail settings admin fr Paramètres de messagerie +mb used emailadmin fr Mo utilisés +name of organisation emailadmin fr Nom de l'organisation +no alternate email address emailadmin fr Pas d'adresse email alternative +no encryption emailadmin fr Pas de chiffrement +no forwarding email address emailadmin fr Pas d'adresse email de transfert +no message returned. emailadmin fr Aucun message n'est retourné. +no plain text part found emailadmin fr aucune section texte plein trouvée +no supported imap authentication method could be found. emailadmin fr Il n'a été trouvé aucune méthode d'authentification IMAP supportée +order emailadmin fr Ordre +organisation emailadmin fr Organisation +plesk can't rename users --> request ignored emailadmin fr Plesk ne peut pas renommer les utilisateurs --> requête ignorée +plesk imap server (courier) emailadmin fr Serveur IMAP Plesk (Courier) +plesk mail script '%1' not found !!! emailadmin fr Le script email Plesk '%1' introuvable!!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin fr Plesk requiert des mots de passe d'au moins 5 caractères qui ne comprennent pas le nom du compte --> le mot de passe n'est PAS fixé!!! +plesk smtp-server (qmail) emailadmin fr Serveur SMTP Plesk (Qmail) +pop3 server hostname or ip address emailadmin fr Nom d'hôte ou adresse IP du serveur POP3 +pop3 server port emailadmin fr Port du serveur POP3 +port emailadmin fr port +postfix with ldap emailadmin fr Postfix avec support LDAP +profile access rights emailadmin fr Droits d'accès du profil +profile is active emailadmin fr Le profil est actif +profile list emailadmin fr Liste des profils +profile name emailadmin fr Nom de profil +qmaildotmode emailadmin fr qmaildotmode +quota settings emailadmin fr Paramètres de quota +quota size in mbyte emailadmin fr Taille des quota en Mo +remove emailadmin fr Supprimer +required pear class mail/mimedecode.php not found. emailadmin fr Classe PEAR class Mail/mimeDecode.php non trouvée. +reset filter emailadmin fr Réinitialiser le filtre +select type of imap server emailadmin fr Sélectionner le type de serveur IMAP +select type of imap/pop3 server emailadmin fr Sélectionner le type de serveur IMAP/POP3 +select type of smtp server emailadmin fr Sélectionner le type de serveur SMTP +send using this email-address emailadmin fr Envoyer en utilisant cette adresse email +server settings emailadmin fr Configuration du serveur +sieve server hostname or ip address emailadmin fr Nom ou adresse IP du serveur Sieve +sieve server port emailadmin fr Port Sieve +sieve settings emailadmin fr Paramètres Sieve +smtp authentication emailadmin fr Authentication SMTP +smtp options emailadmin fr Options SMTP +smtp server name emailadmin fr Nom du serveur SMTP +smtp settings emailadmin fr Paramètres SMTP +smtp-server hostname or ip address emailadmin fr Nom ou adresse IP du serveur SMTP +smtp-server port emailadmin fr Port SMTP +standard emailadmin fr Standard +standard imap server emailadmin fr Serveur IMAP standard +standard pop3 server emailadmin fr Serveur POP3 standard +standard smtp-server emailadmin fr Serveur SMTP standard +starts with emailadmin fr commence par +stationery emailadmin fr Entrepôt +templates emailadmin fr Templates +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin fr Le serveur IMAP ne supporterait pas la méthode d'authentication sélectionnée. Veuillez contacter votre administrateur système. +the mimeparser can not parse this message. emailadmin fr L'analyseur mime ne peut pas décoder ce message. +this php has no imap support compiled in!! emailadmin fr Ce PHP n'est pas compilé avec le support de l'IMAP !! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin fr Pour utiliser une connexion TLS, vous devez utiliser une version PHP 5.1.0 ou supérieure. +unexpected response from server to authenticate command. emailadmin fr Réponse inattendue du serveur à la commande AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin fr Réponse inattendue du serveur à la réponse Digest-MD5. +unexpected response from server to login command. emailadmin fr Réponse inattendue du serveur à la commande LOGIN. +unknown imap response from the server. server responded: %s emailadmin fr Réponse IMAP inconnue du serveur. Le serveur a répondu: %s +unsupported action '%1' !!! emailadmin fr Action '%1' non supportée ! +update current email address: emailadmin fr Mettre à jour l'adresse email actuelle : +use default emailadmin fr Utiliser le défaut +use ldap defaults emailadmin fr Utiliser les paramètres LDAP par défaut +use predefined username and password defined below emailadmin fr Utiliser les login/mots de passe pré-définis ci-dessous +use smtp auth emailadmin fr Utiliser l'authentification SMTP +use tls authentication emailadmin fr Utiliser l'authentification TLS +use tls encryption emailadmin fr Utiliser le cryptage TLS +use users email-address (as seen in useraccount) emailadmin fr Utiliser les adresses email des utilisateurs, tel que défini dans leur profil de compte +user can edit forwarding address emailadmin fr L'utilisateur peut modifier l'adresse de transfert. +userid@domain eg. u1234@domain emailadmin fr UserId@domain ie. u1234@domain +username (standard) emailadmin fr nom de l'utilisateur (standard) +username/password defined by admin emailadmin fr Login / mot de passe définis par l'administrateur +username@domainname (virtual mail manager) emailadmin fr utilisateur@domaine (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin fr Les utilisateurs peuvent définir leurs propres comptes de messagerie +users can define their own identities emailadmin fr Les utilisateurs peuvent définir leurs propres identités +users can define their own signatures emailadmin fr les utilisateurs peuvent définir leurs propres signatures +vacation messages with start- and end-date require an admin account to be set emailadmin fr Les messages d'absence avec date de début et de fin doivent être définis par un administrateur ! +virtual mail manager emailadmin fr Virtual MAIL ManaGeR +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin fr Oui, utiliser les infos ci-dessous seulement pour les alarmes et les notifications, autrement utiliser les informations du compte utilisateur actif. +yes, use credentials of current user or if given credentials below emailadmin fr Oui, utiliser les informations du compte utilisateur actif ou bien de ces informations ci-dessous si elles sont renseignées +you have received a new message on the emailadmin fr Vous avez reçu un nouveau message sur le +your name emailadmin fr Votre nom diff --git a/admin/lang/egw_hr.lang b/admin/lang/egw_hr.lang index f41088faa0..18d37fcc73 100644 --- a/admin/lang/egw_hr.lang +++ b/admin/lang/egw_hr.lang @@ -431,3 +431,79 @@ you must enter an application title. admin hr Morate unijeti naslov aplikacije. you must select a file type admin hr Morate izabrati vrstu datoteke. you will need to remove the subcategories before you can delete this category admin hr Morate obrisati sve podkategorije prije noego Å¡to obriÅ¡ete ovu kategoriju ! your session could not be verified. admin hr VaÅ¡u sesiju nije moguće potvrditi. +(no subject) emailadmin hr (nema teme) +add profile emailadmin hr Add Profile +admin dn emailadmin hr admin dn +admin password emailadmin hr admin password +admin username emailadmin hr admin username +advanced options emailadmin hr advanced options +alternate email address emailadmin hr alternate email address +continue emailadmin hr Continue +cyrus imap server emailadmin hr Cyrus IMAP Server +cyrus imap server administration emailadmin hr Cyrus IMAP server administration +default emailadmin hr default +deliver extern emailadmin hr deliver extern +do you really want to delete this profile emailadmin hr Do you really want to delete this Profile +domainname emailadmin hr domainname +edit email settings emailadmin hr edit email settings +email account active emailadmin hr email account active +email address emailadmin hr email address +enable cyrus imap server administration emailadmin hr enable Cyrus IMAP server administration +enable sieve emailadmin hr enable Sieve +enter your default mail domain (from: user@domain) emailadmin hr Enter your default mail domain (from: user@domain) +entry saved emailadmin hr Entry saved +event details follow emailadmin hr Slijede detalji obveze +forward also to emailadmin hr forward also to +forward email's to emailadmin hr forward email's to +forward only emailadmin hr forward only +imap admin password admin hr IMAP admin password +imap admin user admin hr IMAP admin user +imap server emailadmin hr IMAP Poslužitelj +imap server hostname or ip address emailadmin hr IMAP server hostname or ip address +imap server logintyp emailadmin hr IMAP server login type +imap server port emailadmin hr IMAP server port +imap/pop3 server name emailadmin hr IMAP/POP3 server name +in mbyte emailadmin hr in MByte +ldap basedn emailadmin hr LDAP basedn +ldap server emailadmin hr LDAP server +ldap server accounts dn emailadmin hr LDAP server accounts DN +ldap server admin dn emailadmin hr LDAP server admin DN +ldap server admin password emailadmin hr LDAP server admin password +ldap server hostname or ip address emailadmin hr LDAP server hostname or ip address +ldap settings emailadmin hr LDAP settings +leave empty for no quota emailadmin hr leave empty for no quota +mail settings admin hr Mail settings +name of organisation emailadmin hr Name of organization +no alternate email address emailadmin hr no alternate email address +no forwarding email address emailadmin hr no forwarding email address +order emailadmin hr Naredba +organisation emailadmin hr organizacija +pop3 server hostname or ip address emailadmin hr POP3 server hostname or ip address +pop3 server port emailadmin hr POP3 server port +postfix with ldap emailadmin hr Postfix with LDAP +profile list emailadmin hr Profile List +profile name emailadmin hr Profile Name +qmaildotmode emailadmin hr qmaildotmode +quota settings emailadmin hr quota settings +remove emailadmin hr remove +select type of imap/pop3 server emailadmin hr Select type of IMAP/POP3 server +select type of smtp server emailadmin hr Select type of SMTP Server +sieve server hostname or ip address emailadmin hr Sieve server hostname or ip address +sieve server port emailadmin hr Sieve server port +sieve settings emailadmin hr Sieve settings +smtp server name emailadmin hr SMTP server name +smtp settings emailadmin hr Postavke SMTP +smtp-server hostname or ip address emailadmin hr SMTP server hostname or IP address +smtp-server port emailadmin hr SMTP server port +standard emailadmin hr Standard +standard imap server emailadmin hr Standard IMAP server +standard pop3 server emailadmin hr Standard POP3 server +standard smtp-server emailadmin hr Standard SMTP server +this php has no imap support compiled in!! emailadmin hr Ovaj PHP nema ugraÄ‘enu podrÅ¡ku za IMAP!! +use default emailadmin hr Use default +use ldap defaults emailadmin hr use LDAP defaults +use smtp auth emailadmin hr Use SMTP auth +use tls authentication emailadmin hr Use TLS authentication +use tls encryption emailadmin hr Use TLS encryption +users can define their own emailaccounts emailadmin hr Users can define their own email accounts +virtual mail manager emailadmin hr Virtual MAIL ManaGeR diff --git a/admin/lang/egw_hu.lang b/admin/lang/egw_hu.lang index 297edc19db..f4fa125835 100644 --- a/admin/lang/egw_hu.lang +++ b/admin/lang/egw_hu.lang @@ -486,3 +486,161 @@ you must select a file type admin hu KötelezÅ‘ fájltípust választani you must select at least one group member. admin hu Legalább egy csoport tagot ki kell jelölnie. you will need to remove the subcategories before you can delete this category admin hu MielÅ‘tt ezt a kategóriát törölné, el kell távolítania az összes alkategóriáját! your session could not be verified. admin hu Az ön munkamenete nem ellenÅ‘rizhetÅ‘. +(no subject) emailadmin hu (nincs tárgy) +account '%1' not found !!! emailadmin hu '%1' felhasználói azonosító nem található! +active templates emailadmin hu Aktív vázlatok +add new email address: emailadmin hu Új email cím hozzáadása: +add profile emailadmin hu Profil hozzáadása +admin dn emailadmin hu Admin dn +admin password emailadmin hu adminisztrátor jelszava +admin username emailadmin hu adminisztrátor neve +advanced options emailadmin hu haladó beállítások +alternate email address emailadmin hu alternatív emailcím +any application emailadmin hu Bármelyik modul +any group emailadmin hu Bármelyik csoport +any user emailadmin hu bármely felhasználó +back to admin/grouplist emailadmin hu Vissza az csoportok adminisztráláshoz +back to admin/userlist emailadmin hu Vissza a felhasználók adminisztráláshoz +bad login name or password. emailadmin hu Hibás belépési név vagy jelszó. +bad or malformed request. server responded: %s emailadmin hu Hibás kérés. Szerver válasza: %s +bad request: %s emailadmin hu Hibás kérés: %s +can be used by application emailadmin hu Ez a modul használhatja +can be used by group emailadmin hu Ez a csoport használhatja +can be used by user emailadmin hu a felhasználó alkalmazhatja +connection dropped by imap server. emailadmin hu A kapcsolatot az IMAP szerver eldobta. +continue emailadmin hu Folytat +could not complete request. reason given: %s emailadmin hu Kérést nem lehet teljesíteni. Az ok: %s +could not open secure connection to the imap server. %s : %s. emailadmin hu Nem létesíthetÅ‘ titkos csatorna az IMAP szerverhez. %s : %s +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin hu CRAM-MD5 vagy DIGEST-MD5 használatához az Auth_SASL csomagot telepíteni kell. +cyrus imap server emailadmin hu Cyrus IMAP-kiszolgáló +cyrus imap server administration emailadmin hu Cyrus IMAP-kiszolgáló adminisztrációja +default emailadmin hu Alapértelmezett +deliver extern emailadmin hu külsÅ‘ kézbesítés +displaying html messages is disabled emailadmin hu HTML levelek megjelenítése tiltva +do not validate certificate emailadmin hu ne ellenÅ‘rizze a tanúsítványt +do you really want to delete this profile emailadmin hu Valóban törölni kívánja ezt a profilt +do you really want to reset the filter for the profile listing emailadmin hu Valóban törölni szeretnéd a profillista szűrÅ‘t? +domainname emailadmin hu tartománynév +edit email settings emailadmin hu email beállítások szerkesztése +email account active emailadmin hu email azonosító aktív +email address emailadmin hu email cím +email settings common hu Email beállítások +emailadmin emailadmin hu EmailAdmin +emailadmin: group assigned profile common hu eMailAdmin: csoport a profilhoz hozzárendelve +emailadmin: user assigned profile common hu eMailAdmin: felhasználó a profilhoz hozzárendelve +enable cyrus imap server administration emailadmin hu Cyrus IMAP-kiszolgáló adminisztrációjának engedélyezése +enable sieve emailadmin hu Sieve engedélyezése +encrypted connection emailadmin hu titkosított kapcsolat +encryption settings emailadmin hu Titkosítás beállításai +enter your default mail domain (from: user@domain) emailadmin hu Adja meg az alapértelmezett levelezési tartományt (a felhasználó@tartomány-ból) +entry saved emailadmin hu Bejegyzés elmentve +error connecting to imap server. %s : %s. emailadmin hu Hiba történt az IMAP szerverhez csatlakozás közben. %s : %s +error connecting to imap server: [%s] %s. emailadmin hu Hiba történt az IMAP szerverhez csatlakozás közben. [%s ]: %s +error saving account! emailadmin hu Felhasználói hozzáférés mentése sikertelen! +error saving the entry!!! emailadmin hu Bejegyzés mentése közben hiba történt!!! +event details follow emailadmin hu Esemény jellemzÅ‘inek követése +filtered by account emailadmin hu Fiók szerint szűrve +filtered by group emailadmin hu Csoport szerint szűrve +forward also to emailadmin hu továbbítsd ide is +forward email's to emailadmin hu email továbbítása ide +forward only emailadmin hu továbbítás csak ide +global options emailadmin hu Globális opciók +if using ssl or tls, you must have the php openssl extension loaded. emailadmin hu SSL vagy TLS használatához a PHP openssl kiterjesztését telepíteni kell. +imap admin password admin hu IMAP adminisztrátor jelszava +imap admin user admin hu IMAP adminisztrátor felhasználóneve +imap c-client version < 2001 emailadmin hu IMAP C-Client verzió < 2001 +imap server emailadmin hu IMAP szerver +imap server closed the connection. emailadmin hu Az IMAP szerver lezárta a kapcsolatot. +imap server closed the connection. server responded: %s emailadmin hu Az IMAP szerver lezárta a kapcsolatot: %s +imap server hostname or ip address emailadmin hu IMAP szerver hosztneve vagy IP címe +imap server logintyp emailadmin hu IMAP szerver bejelentkezési típusa +imap server name emailadmin hu IMAP szerver neve +imap server port emailadmin hu IMAP szerver portja +imap/pop3 server name emailadmin hu IMAP/POP3 szerver neve +importance emailadmin hu Fontosság +in mbyte emailadmin hu MBájtban +inactive emailadmin hu inaktív +ldap basedn emailadmin hu LDAP basedn +ldap server emailadmin hu LDAP szerver +ldap server accounts dn emailadmin hu LDAP szerver accounts DN +ldap server admin dn emailadmin hu LDAP szerver admin DN +ldap server admin password emailadmin hu LDAP szerver adminisztrátorának jelszava +ldap server hostname or ip address emailadmin hu LDAP szerver hosztneve vagy IP címe +ldap settings emailadmin hu LDAP beállítások +leave empty for no quota emailadmin hu hagyja üresen a kvóta figyelmen kívül hagyásához +mail settings admin hu Levelezési beállítások +manage stationery templates emailadmin hu Irodaszer minták kezelése +name of organisation emailadmin hu Szervezet neve +no alternate email address emailadmin hu nincs alternatív email cím +no encryption emailadmin hu titkosítás nélkül +no forwarding email address emailadmin hu nincs továbbküldési email cím +no message returned. emailadmin hu Nincs visszaadott üzenet. +no plain text part found emailadmin hu nem található egyszerű szöveges tartalom +no supported imap authentication method could be found. emailadmin hu Nem található támogatott IMAP hitelesítés. +order emailadmin hu Rendezés +organisation emailadmin hu Szervezet +plesk can't rename users --> request ignored emailadmin hu A Plesk nem tudja átnevezni a felhasználókat -> kérés figyelmen kívül hagyva +plesk imap server (courier) emailadmin hu Plesk IMAP Szerver (Courier) +plesk mail script '%1' not found !!! emailadmin hu Plesk levél szkript '%1' nem található!!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin hu Plesk megköveteli, hogy a jelszó legalább 5 karakter legyen és ne tartalmazza a felhasználói nevet --> jelszó beállítása NEM történt meg!!! +plesk smtp-server (qmail) emailadmin hu Plesk SMTP-Szerver (Qmail) +pop3 server hostname or ip address emailadmin hu POP3 szerver hosztneve vagy IP címe +pop3 server port emailadmin hu POP3 szerver portja +port emailadmin hu portcím +postfix with ldap emailadmin hu Postfix LDAP-vel +profile access rights emailadmin hu profil elérési jogosultságok +profile is active emailadmin hu a profil inaktív +profile list emailadmin hu Profil lista +profile name emailadmin hu Profilnév +qmaildotmode emailadmin hu qmaildotmode +quota settings emailadmin hu kvóta beállításai +quota size in mbyte emailadmin hu kvóta Mbájtokban +remove emailadmin hu eltávolítás +reset filter emailadmin hu szűrö törlése +select type of imap server emailadmin hu IMAP szerver típusának kiválasztása +select type of imap/pop3 server emailadmin hu Válassza ki az IMAP/POP3 szerver típusát +select type of smtp server emailadmin hu Válassza ki az SMTP szerver típusát +send using this email-address emailadmin hu Küldés errÅ‘l az e-mail címrÅ‘l +server settings emailadmin hu Szerver beállítások +sieve server hostname or ip address emailadmin hu Sieve szerver hosztneve vagy IP címe +sieve server port emailadmin hu Sieve szerver port +sieve settings emailadmin hu SIEVE beállítások +smtp authentication emailadmin hu SMTP azonosítás +smtp options emailadmin hu SMTP opciók +smtp server name emailadmin hu SMTP szerver neve +smtp settings emailadmin hu SMTP beállítások +smtp-server hostname or ip address emailadmin hu SMTP szerver hosztneve vagy IP címe +smtp-server port emailadmin hu SMTP szerver portja +standard emailadmin hu Szabványos +standard imap server emailadmin hu Szabványos IMAP-kiszolgáló +standard pop3 server emailadmin hu Szabványos POP3-kiszolgáló +standard smtp-server emailadmin hu Szabványos SMTP-kiszolgáló +stationery emailadmin hu Irodaszer +templates emailadmin hu Sablonok +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin hu Az IMAP szerver úgy tűnik nem támogatja a kiválasztott hitelesítést. Lépjen kapcsolatba az adminisztrátorral. +the mimeparser can not parse this message. emailadmin hu A MIME feldolgozó nem tudta feldolgozni ezt az üzenetet. +this php has no imap support compiled in!! emailadmin hu A használt PHP verzió nem tartalmaz IMAP támogatást! (telepíteni kell) +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin hu TLS kapcsolat használatához legalább PHP 5.1.0-val kell rendelkeznie. +unexpected response from server to authenticate command. emailadmin hu Váratlan válasz a szervertÅ‘l az AUTHENTICATE parancsra. +unexpected response from server to digest-md5 response. emailadmin hu Váratlan válasz a szervertÅ‘l a Digest-MD5 parancsra. +unexpected response from server to login command. emailadmin hu Váratlan válasz a szervertÅ‘l a LOGIN parancsra. +unknown imap response from the server. server responded: %s emailadmin hu Váratlan válasz a szervertÅ‘l: %s +unsupported action '%1' !!! emailadmin hu Nem támogatott művelet '%1' !!! +update current email address: emailadmin hu Jelenlegi email cím frissítése: +use default emailadmin hu Használja az alapértelmezettet +use ldap defaults emailadmin hu használja az LDAP alapbeállításokat +use predefined username and password defined below emailadmin hu Használd a lent megadott felhasználónevet és jelszót +use smtp auth emailadmin hu SMTP hitelesítés használata +use tls authentication emailadmin hu TLS hitelesítés használata +use tls encryption emailadmin hu TLS kódolás használata +user can edit forwarding address emailadmin hu Felhasználó szerkesztheti a továbbításkor a címeket +username (standard) emailadmin hu felhasználó név (standard) +username/password defined by admin emailadmin hu Az adminisztrátok által meghatározott felhasználó és jelszó +username@domainname (virtual mail manager) emailadmin hu felhasználónév@tartománynév (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin hu A felhasználók saját maguk állíthatják be az email postafiókjaikat +users can define their own identities emailadmin hu A felhasználók beállíthatják a saját azonosítójukat +users can define their own signatures emailadmin hu A felhasználók beállíthatják a saját aláírásukat +users can utilize these stationery templates emailadmin hu A felhasználók alkalmazhatják az irodaszer mintákat +virtual mail manager emailadmin hu Virtuális MAIL ManaGeR +you have received a new message on the emailadmin hu Új üzenet érkezett a +your name emailadmin hu Az ön neve diff --git a/admin/lang/egw_id.lang b/admin/lang/egw_id.lang index 798578a71b..c70cb95ccd 100644 --- a/admin/lang/egw_id.lang +++ b/admin/lang/egw_id.lang @@ -334,3 +334,102 @@ view this user admin id lihat pengguna ini view user account admin id Lihat akoun pengguna xml-rpc admin id XML-RPC your session could not be verified. admin id Sesi anda tidak dapat diperiksa. +%1 entries deleted. emailadmin id %1 entri dihapus. +(no subject) emailadmin id (tanpa subyek) +account '%1' not found !!! emailadmin id Akoun '%1' tidak ditemukan !!! +active templates emailadmin id Templat yang aktif +add new email address: emailadmin id Tambah alamat email baru: +add profile emailadmin id Tambah Profil +admin dn emailadmin id Admin dn +admin password emailadmin id Password Admin +admin username emailadmin id Nama Admin +advanced options emailadmin id Opsi Canggih +alternate email address emailadmin id Alamat email pengganti +any application emailadmin id Semua aplikasi +any group emailadmin id Semua kelompok +any user emailadmin id semua pengguna +back to admin/grouplist emailadmin id Kembali ke Admin/Daftar Kelompok +back to admin/userlist emailadmin id Kembali ke Admin/Daftar pengguna +bad login name or password. emailadmin id Nama atau password tidak benar. +continue emailadmin id Lanjutkan +could not open secure connection to the imap server. %s : %s. emailadmin id Could not open secure connection to the IMAP server. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin id CRAM-MD5 or DIGEST-MD5 requires the Auth_SASL package to be installed. +cyrus imap server emailadmin id Server Cyrus IMAP +cyrus imap server administration emailadmin id Administrasi server Cyrus IMAP +default emailadmin id bawaan +deliver extern emailadmin id pengiriman eksternal +domainname emailadmin id Nama Domain +edit email settings emailadmin id Edit pengaturan email +email account active emailadmin id Akoun Email aktif +email address emailadmin id Alamat Email +email settings common id Pengaturan Email +emailadmin emailadmin id AdminEMail +emailadmin: group assigned profile common id AdminEMail: Profil menurut kelompok +emailadmin: user assigned profile common id AdminEMail: Profil menurut pengguna +enable sieve emailadmin id Bolehkan Sieve +encrypted connection emailadmin id koneksi ter-enkripsi +encryption settings emailadmin id Pengaturan Enkripsi +enter your default mail domain (from: user@domain) emailadmin id Berikan nama domain email anda (dari: pengguna@domain) +entry saved emailadmin id Entri disimpan +error saving account! emailadmin id Error menyimpan akoun! +error saving the entry!!! emailadmin id Error saving the entry!!! +event details follow emailadmin id Berikut adalah detil Kegiatan +filtered by account emailadmin id saringan menurut Akoun +filtered by group emailadmin id saringan menurut Kelompok +forward only emailadmin id Hanya Forward +global options emailadmin id Opsi Global +imap admin password admin id password admin IMAP +imap admin user admin id admin IMAP +imap c-client version < 2001 emailadmin id IMAP C-Client Version < 2001 +imap server emailadmin id IMAP Server +importance emailadmin id Importance +in mbyte emailadmin id dalam MByte +inactive emailadmin id tidak aktif +ldap basedn emailadmin id LDAP basedn +ldap server emailadmin id LDAP server +ldap settings emailadmin id Pengaturan LDAP +leave empty for no quota emailadmin id kosongkan bila tanpa kuota +mail settings admin id Pengaturan Mail +name of organisation emailadmin id Nama Organisasi +no alternate email address emailadmin id tanpa alamat email pengganti +no encryption emailadmin id tanpa enkripsi +order emailadmin id Urutan +organisation emailadmin id Organisasi +port emailadmin id port +postfix with ldap emailadmin id Postfix with LDAP +profile list emailadmin id Daftar Profil +profile name emailadmin id Nama Profil +qmaildotmode emailadmin id qmaildotmode +quota settings emailadmin id Pengaturan Kuota +quota size in mbyte emailadmin id ukuran kuota dalam MByte +remove emailadmin id Buang +reset filter emailadmin id ulangi penyaringan +select type of imap server emailadmin id Pilih tipe Server IMAP +select type of imap/pop3 server emailadmin id Pilih tipe Server IMAP/POP3 +select type of smtp server emailadmin id Pilih tipe Server SMTP +send using this email-address emailadmin id kirim menggunakan alamat eMail ini +server settings emailadmin id Pengaturan Server +sieve server hostname or ip address emailadmin id Sieve server hostname or ip address +sieve server port emailadmin id Sieve server port +sieve settings emailadmin id Pengaturan Sieve +smtp authentication emailadmin id Otentikasi SMTP +smtp options emailadmin id Opsi SMTP +smtp server name emailadmin id Nama server SMTP +smtp settings emailadmin id Pengaturan SMTP +smtp-server hostname or ip address emailadmin id Nama atau alamat IP server SMTP +smtp-server port emailadmin id Port server SMTP +standard emailadmin id Standar +standard imap server emailadmin id Server IMAP Standar +standard pop3 server emailadmin id Server POP3 Standar +standard smtp-server emailadmin id Server SMTP Standar +starts with emailadmin id diawali dengan +stationery emailadmin id Stationery +templates emailadmin id Templat +unexpected response from server to login command. emailadmin id Unexpected response from server to LOGIN command. +update current email address: emailadmin id Memperbarui alamat email saat ini: +use default emailadmin id Gunakan bawaan +username (standard) emailadmin id namapengguna (standar) +username/password defined by admin emailadmin id Namapengguna/Password dibuat oleh admin +username@domainname (virtual mail manager) emailadmin id username@domainname (Virtual MAIL ManaGeR) +virtual mail manager emailadmin id Virtual MAIL ManaGeR +your name emailadmin id Your name diff --git a/admin/lang/egw_it.lang b/admin/lang/egw_it.lang index 1b87d5227d..ceb12d3ded 100644 --- a/admin/lang/egw_it.lang +++ b/admin/lang/egw_it.lang @@ -708,3 +708,213 @@ you need to select some users first! admin it Devi prima selezionare alcuni uten you will need to remove the subcategories before you can delete this category admin it E' necessario rimuovere le sotto-categorie prima di cancellare questa categoria your last submission was less then %1 days ago! admin it Il tuo ultimo invio dati è stato meno di %1 giorni fa! your session could not be verified. admin it La sessione non può essere verificata. +%1 entries deleted. emailadmin it %1 inserimenti cancellati +(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) emailadmin it (imapclass deve supportare questa funzionalità interrogando il valore corrispondente in configurazione e passandolo come defaultquota al server imap) +(no subject) emailadmin it (nessun oggetto) +account '%1' not found !!! emailadmin it Account '%1' non trovato !!! +account deleted. emailadmin it Account cancellato +account not found! common it Account non trovato! +account saved. emailadmin it Account salvato. +active templates emailadmin it Modelli attivi +add new email address: emailadmin it Aggiungi un nuovo indirizzo di posta elettronica +add profile emailadmin it Aggiungi Profilo +admin dn emailadmin it dn amministratore +admin password emailadmin it password amministratore +admin username emailadmin it username amministratore +advanced options emailadmin it opzioni avanzate +alternate email address emailadmin it indirizzo email alternativo +and logged in emailadmin it e collegato +any application emailadmin it ogni applicazione +any group emailadmin it ogni gruppo +any user emailadmin it Qualsiasi utente +back to admin/grouplist emailadmin it Indietro alla lista Admin / Group +back to admin/userlist emailadmin it Indietro alla lista Admin / User +bad login name or password. emailadmin it Nome utente o password errati. +bad or malformed request. server responded: %s emailadmin it Richiesta errata o mal composta. Il Server ha risposto: %s +bad request: %s emailadmin it Richiesta errata: %s +can be used by application emailadmin it può essere usato da applicazione +can be used by group emailadmin it può essere usato da gruppo +can be used by user emailadmin it può essere usato dall'utente +connection dropped by imap server. emailadmin it Connessione interrotta dal sever IMAP. +connection is not secure! everyone can read eg. your credentials. emailadmin it La connessione NON è sicura! Chiunque può leggere, per esempio, le tue credenziali +continue emailadmin it Continua +could not append message: emailadmin it Impossibile accodare il Messaggio: +could not complete request. reason given: %s emailadmin it Impossibile completare la richiesta. Motivazione data: %s +could not open secure connection to the imap server. %s : %s. emailadmin it Non è possibile aprire una connessione sicura al server IMAP. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin it CRAM-MD5 o DIGEST-MD5 richiede che il pacchetto Auth_SASL sia installato. +create new account emailadmin it Crea un nuovo Account +create new identity emailadmin it Crea una nuova identità +cyrus imap server emailadmin it Server IMAP Cyrus +cyrus imap server administration emailadmin it Amministrazione Server IMAP Cyrus +default emailadmin it predefinito +delete identity emailadmin it Cancella identità +delete this account emailadmin it Cancella questo account +deliver extern emailadmin it Consegna esterna +displaying html messages is disabled emailadmin it la visualizzazione html dei messaggi è disabilitata +displaying plain messages is disabled emailadmin it la visualizzazione semplice dei messaggi è disabilitata +do not validate certificate emailadmin it Non convalidare il certificato +do you really want to delete this profile emailadmin it Vuoi davvero cancellare questo profilo? +do you really want to reset the filter for the profile listing emailadmin it Vuoi davvero reimpostare il filtro per l'elenco dei profili? +domainname emailadmin it nome dominio +edit email settings emailadmin it modifica impostazioni email +email account active emailadmin it account email attivo +email address emailadmin it indirizzo email +email settings common it Impostazioni email +emailadmin emailadmin it Gestione Email +emailadmin: group assigned profile common it eMailAdmin: Profilo assegnato al gruppo +emailadmin: user assigned profile common it eMailAdmin: Profilo assegnato all'utente +enable cyrus imap server administration emailadmin it abilita amministrazione Server IMAP Cyrus +enable sieve emailadmin it abilita Sieve +encrypted connection emailadmin it Connessione criptata +encryption settings emailadmin it impostazioni cifratura +enter your default mail domain (from: user@domain) emailadmin it Inserisci il tuo dominio di posta predefinito (da: utente@dominio) +entry saved emailadmin it Inserimento salvato +error connecting to imap server. %s : %s. emailadmin it Errore in connessione al server IMAP. %s : %s. +error connecting to imap server: [%s] %s. emailadmin it Errore in connessione al server IMAP: [%s] %s. +error deleting entry! emailadmin it Errore durante l'eliminazione dell'inserimento! +error saving account! emailadmin it Errore nel salvataggio dell'account +error saving the entry!!! emailadmin it Errore durante il salvataggio dell'inserimento +error, no username! emailadmin it Errore, nessun nome utente! +event details follow emailadmin it Errore, manca il nome utente +failed to delete account! emailadmin it Errore nella cancellazione dell'account +file rejected, no %2. is:%1 emailadmin it File rifiutato, non %2. è: %1 +filtered by account emailadmin it Filtrati per account +filtered by group emailadmin it Filtrati per gruppo +forward also to emailadmin it Inoltra anche a +forward email's to emailadmin it Inoltra email a +forward only emailadmin it Inoltra solo +forward only disables imap mailbox / storing of mails and just forwards them to given address. emailadmin it L'inoltro esclusivo disabilita l'archiviazione delle email degli account IMAP e si limita ad inoltrarle all'indirizzo specificato. +global options emailadmin it Opzioni globali +hostname or ip emailadmin it Nome del computer o indirizzo IP +how username get constructed emailadmin it Come viene costruito il nome utente +identity deleted emailadmin it Identità cancellata +identity saved. emailadmin it identità salvata +if different from email address emailadmin it se diverso dall'indirizzo email +if using ssl or tls, you must have the php openssl extension loaded. emailadmin it Se stai usando SSL oppure TLS, devi aver caricato l'estensione SSL in PHP +if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) emailadmin it se viene indicata la porta 5190 come porta del server sieve, verrà abilitato SSL per sieve (il serve deve supportarlo) +imap admin password admin it Password amministratore IMAP +imap admin user admin it User amministratore IMAP +imap c-client version < 2001 emailadmin it Versione C-Cliente < 2001 +imap server emailadmin it Server IMAP +imap server closed the connection. emailadmin it Il server IMAP ha chiuso la connessione +imap server closed the connection. server responded: %s emailadmin it Il server IMAP ha chiuso la connessione. Risposta del server: %s +imap server hostname or ip address emailadmin it Nome Host o IP del server IMAP +imap server logintyp emailadmin it Tipo login server IMAP +imap server name emailadmin it Nome del server IMAP +imap server port emailadmin it Porta server IMAP +imap/pop3 server name emailadmin it Nome server IMAP/POP3 +importance emailadmin it importanza +in mbyte emailadmin it in MByte +inactive emailadmin it Inattivo +ldap basedn emailadmin it LDAP basedn +ldap server emailadmin it server LDAP +ldap server accounts dn emailadmin it DN account server LDAP +ldap server admin dn emailadmin it DN amministratore server LDAP +ldap server admin password emailadmin it password amministratore server LDAP +ldap server hostname or ip address emailadmin it Nome host o IP server LDAP +ldap settings emailadmin it impostazioni LDAP +leave empty for no quota emailadmin it lascia vuoto per nessuna quota +mail settings admin it Impostazioni Posta +manage stationery templates emailadmin it Amministra i modelli +manual entry emailadmin it Inserimento manuale +mb used emailadmin it MB utilizzati +name of organisation emailadmin it Nome dell'organizzazione +no alternate email address emailadmin it nessun indirizzo email alternativo +no encryption emailadmin it Nessuna cifratura +no forwarding email address emailadmin it nessun indirizzo email di inoltro +no message returned. emailadmin it nessun messaggio ricevuto +no plain text part found emailadmin it non è stata trovata una parte in testo semplice +no sieve support detected, either fix configuration manually or leave it switched off. emailadmin it Non è stato rilevato il supporto per sieve, verificare la configurazione manualmente o disabilitarlo. +no supported imap authentication method could be found. emailadmin it Non è stato trovato alcun metodo di autenticazione supportato da IMAP +order emailadmin it ordine +organisation emailadmin it organizzazione +plesk can't rename users --> request ignored emailadmin it Plesk non può rinominare gli utenti --> richiesta ignorata +plesk imap server (courier) emailadmin it IMAP server Plesk (Courier) +plesk mail script '%1' not found !!! emailadmin it Script Plesk '%1' non trovato +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin it Plesk richiede password con almeno 5 caratteri e che non deve contenere il nome account --> password NON impostata +plesk smtp-server (qmail) emailadmin it Server SMTP Plesk (Qmail) +pop3 server hostname or ip address emailadmin it Nome host o IP server POP3 +pop3 server port emailadmin it porta server POP3 +port emailadmin it Porta +postfix with ldap emailadmin it Postfix con LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin it Elaborazione del file %1 fallita. Non sono rispettate le restrizioni di base +profile access rights emailadmin it diritti di accesso profilo +profile is active emailadmin it Il profilo è attivo +profile list emailadmin it Elenco Profili +profile name emailadmin it Nome Profilo +qmaildotmode emailadmin it qmaildotmode +quota settings emailadmin it impostazioni quota +quota size in mbyte emailadmin it dimensione quota in MByte +relay access checked emailadmin it Accesso Relay verificato +remove emailadmin it rimuovi +required pear class mail/mimedecode.php not found. emailadmin it Non è stata trovata la classe PEAR Mail/mimeDecode.php +reset filter emailadmin it Reimposta filtro +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin it Salvataggio del messaggio %1 fallito. Non è possibile salvare messaggi nella cartella %2 in quanto %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin it Salvataggio del messaggio %1 fallito. La cartella di destinazione %2 non esiste. +secure connection emailadmin it Connessione sicura +select type of imap server emailadmin it Seleziona il tipo di server IMAP +select type of imap/pop3 server emailadmin it Seleziona il tipo si server IMAP/POP3 +select type of smtp server emailadmin it Seleziona il tipo di server SMTP +send using this email-address emailadmin it Invia utilizzando questo indirizzo email +server settings emailadmin it impostazioni server +sieve server hostname or ip address emailadmin it Nome host o IP server Sieve +sieve server port emailadmin it porta server Sieve +sieve settings emailadmin it impostazioni SIeve +skip imap emailadmin it Salta IMAP +skipping imap configuration! emailadmin it Salta la configurazione IMAP +smtp authentication emailadmin it autenticazione smtp +smtp options emailadmin it opzioni smtp +smtp server emailadmin it Server SMT (posta in uscita) +smtp server name emailadmin it nome server SMTP +smtp settings emailadmin it impostazioni smtp +smtp-server hostname or ip address emailadmin it Nome host o IP server SMTP +smtp-server port emailadmin it porta server SMTP +standard emailadmin it Standard +standard identity emailadmin it Identità di base +standard imap server emailadmin it Server IMAP standard +standard pop3 server emailadmin it Server POP3 standard +standard smtp-server emailadmin it Server SMTP standard +starts with emailadmin it Comincia con +stationery emailadmin it Modeillo +successful connected to %1 server%2. emailadmin it Connessione avvenuta con success a %1 server %2. +switch back to standard identity to save account. emailadmin it Ritornare all'identità standard per conservare l'account +switch back to standard identity to save other account data. emailadmin it Ritornare all'identità standard per conservare gli altri dati dell'account +templates emailadmin it Modelli +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin it Il server IMAP sembra non supportare il metodo di autenticazione scelto. Contatta il tuo amministratore di sistema. +the mimeparser can not parse this message. emailadmin it Il parser MIME non riesce ad elaborare questo messaggio +this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? emailadmin it Questo non è un account personale di email!\n\nL'account verrà cancellato per TUTTI gli utenti!\n\nConfermi? +this php has no imap support compiled in!! emailadmin it PHP non è stato compilato con supporto IMAP! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin it Per utilizzare una connessione TLS devi utilizzare una versione PHP 5.1.0 o superiore +unexpected response from server to authenticate command. emailadmin it Risposta inaspettata dal server al comando AUTHENTICATE +unexpected response from server to digest-md5 response. emailadmin it Risposta inaspettata dal server alla risposta Digest-MD5 +unexpected response from server to login command. emailadmin it Risposta inaspettata dal server al comando LOGIN +unknown imap response from the server. server responded: %s emailadmin it Riposta non riconosciuta dal server IMAP %s +unsupported action '%1' !!! emailadmin it Azione non supportata '%1' !!! +update current email address: emailadmin it Aggiorna l'indirizzo email attuale: +use default emailadmin it Usa il predefinito +use ldap defaults emailadmin it usa predefiniti LDAP +use predefined username and password defined below emailadmin it Utilizza il nome utente e la password definiti qui sotto +use smtp auth emailadmin it usa autenticazione SMTP +use tls authentication emailadmin it usa autenticazione TLS +use tls encryption emailadmin it usa crittografia TLS +use users email-address (as seen in useraccount) emailadmin it Utilizza l'indirizzo email come impostato nell'account utente +user can edit forwarding address emailadmin it l'utente può modificare indirizzo di inoltro +userid@domain eg. u1234@domain emailadmin it UserId@dominio p.es. u1234@dominio +username (standard) emailadmin it Nome utente (standard) +username specified below for all emailadmin it Nome utente specificato per tutti +username/password defined by admin emailadmin it Nome utente / password definiti dall'amministratore +username@domainname (virtual mail manager) emailadmin it nomeutente@nome dominio (ManaGeR MAIL Virtuale) +users can define their own emailaccounts emailadmin it Gli utenti possono definire i propri account email +users can define their own identities emailadmin it Gli utenti possono definire le loro identità personali +users can define their own signatures emailadmin it Gli utenti possono definire le loro firme personali +users can utilize these stationery templates emailadmin it Gli utenti possono utilizzare questi modelli +using data from mozilla ispdb for provider %1 emailadmin it Utilizzo dei dati da Mozilla ISPDB per il provider %1 +vacation messages with start- and end-date require an admin account to be set emailadmin it Il messaggio di assenza (ferie) con data inizio e data fine richiede che sia impostato un account di amministratore +virtual mail manager emailadmin it ManaGeR MAIL Virtuale +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin it Sì, utilizza le credenziali sottostanti solo per allarmi e notifiche, altrimenti usa le credenziali dell'utente attuale +yes, use credentials of current user or if given credentials below emailadmin it Sì, utilizza le credenziali dell'utente attuale oppure, se date, e credenziali qui sotto +you can use wizard to fix account settings or delete account. emailadmin it Si può usare il wizard (procedura guidata) per riparare le impostazioni o eliminare un account +you have received a new message on the emailadmin it Hai ricevuto un nuovo messaggio sul +you need to specify a forwarding address, when checking "%1"! emailadmin it Bisogna specificare un indirizzo di inoltro, quando si contolla "%1"" +your message to %1 was displayed. emailadmin it Il tuo messaggio per %1 è stato visualizzato +your name emailadmin it Il tuo nome diff --git a/admin/lang/egw_iw.lang b/admin/lang/egw_iw.lang index 0cfd2fce9a..7aad68aaf2 100755 --- a/admin/lang/egw_iw.lang +++ b/admin/lang/egw_iw.lang @@ -425,3 +425,80 @@ you must enter an application title. admin iw עליך לציין כותרת ל you must select a file type admin iw עליך לבחור סןג קובץ you will need to remove the subcategories before you can delete this category admin iw !עליך להסיר ×ת תתי-הקטגוריות לפני ש×פשר ×™×”×™×” למחוק קטגוריה זו your session could not be verified. admin iw .×œ× ×”×¦×œ×—×ª×™ לשחזר ×ת המושב +(no subject) emailadmin iw (×œ×œ× × ×•×©×) +add profile emailadmin iw הוסף פרופיל +admin dn emailadmin iw של המנהל dn +admin password emailadmin iw סיסמת מנהל +admin username emailadmin iw ×©× ×ž×©×ª×ž×© של המנהל +advanced options emailadmin iw ×ופציות מתקדמות +alternate email address emailadmin iw כתובת דו×ר ×לקטרוני חילופי +continue emailadmin iw המשך +cyrus imap server emailadmin iw Cyrus IMAP שרת +cyrus imap server administration emailadmin iw Cyrus IMAP ניהול שרת +default emailadmin iw ברירת מחדל +deliver extern emailadmin iw מסירה חיצונית +do you really want to delete this profile emailadmin iw בטוח שברצונך למחוק פרופיל ×–×” +domainname emailadmin iw ×©× ×”×“×•×ž×™×™×Ÿ +edit email settings emailadmin iw ערוך הגדרות דו×ר ×לקטרוני +email account active emailadmin iw חשבון דו×ר ×לקטרוני פעיל +email address emailadmin iw כתובת דו×ר ×לקטרוני +enable cyrus imap server administration emailadmin iw Cyrus IMAP ×יפשור ניהול שרת +enable sieve emailadmin iw Sieve ×ישפור +enter your default mail domain (from: user@domain) emailadmin iw (user@domain :ציין ×ת דומיין דו×ר המחדלי שלך (×œ×“×•×’×ž× +entry saved emailadmin iw הרשומה נשמרה +event details follow emailadmin iw פרטי ×”×ירוע בהמשך +forward also to emailadmin iw להעביר ×’× ×ל +forward email's to emailadmin iw להעביר דו×ר ×לקטרוני ×ל +forward only emailadmin iw העבר בלבד +imap admin password admin iw IMAP סיסמת ניהול +imap admin user admin iw IMAP ×©× ×ž× ×”×œ +imap c-client version < 2001 emailadmin iw IMAP C-Client Version < 2001 +imap server emailadmin iw שרת IMAP +imap server hostname or ip address emailadmin iw שלו IP- ×ו כתובת ×”IMAP ×©× ×©×¨×ª +imap server logintyp emailadmin iw IMAP סוג כניסה לשרת +imap server port emailadmin iw IMAP פורט שרת +imap/pop3 server name emailadmin iw IMAP/POP3 ×©× ×©×¨×ª +in mbyte emailadmin iw MB-ב +ldap basedn emailadmin iw dn הביסי של LDAP +ldap server emailadmin iw LDAP שרת +ldap server accounts dn emailadmin iw LDAP של שרת חשבונות DN +ldap server admin dn emailadmin iw LDAP מנהל שרת של DN +ldap server admin password emailadmin iw LDAP סיסמה של מנהל שרת +ldap server hostname or ip address emailadmin iw IP ×ו כתובת LDAP ×©× ×©×¨×ª +ldap settings emailadmin iw LDAP הגדרות +leave empty for no quota emailadmin iw הש×ר ריק ×œ×œ× ×”×§×¦××” +mail settings admin iw הגדרות דו×ר +name of organisation emailadmin iw ×©× ×”×ירגון +no alternate email address emailadmin iw ×ין כתובת דו×ר ×לקטרוני חלופי +no forwarding email address emailadmin iw ×ין כתובת להעברת דו×ר ×לקטרוני +order emailadmin iw סדר +organisation emailadmin iw ×ירגון +pop3 server hostname or ip address emailadmin iw IP ×ו כתובת pop3 ×©× ×©×¨×ª +pop3 server port emailadmin iw POP3 פורט שרת +postfix with ldap emailadmin iw LDAP ×¢× Postfix +profile list emailadmin iw רשימת ×¤×¨×•×¤×™×œ×™× +profile name emailadmin iw ×©× ×¤×¨×•×¤×™×œ +qmaildotmode emailadmin iw qmaildotmode +quota settings emailadmin iw הגדרות הקצ××” +remove emailadmin iw הסר +select type of imap/pop3 server emailadmin iw IMAP/POP3 בחר סוג שרת +select type of smtp server emailadmin iw SMTP בחר סוג שרת +sieve server hostname or ip address emailadmin iw IP ×ו כתובת Sieve ×©× ×©×¨×ª +sieve server port emailadmin iw Sieve פורט שרת +sieve settings emailadmin iw Sieve הגדרות +smtp server name emailadmin iw SMTP ×©× ×©×¨×ª +smtp settings emailadmin iw הגדרות SMTP +smtp-server hostname or ip address emailadmin iw IP ×ו כתובת SMTP ×©× ×©×¨×ª +smtp-server port emailadmin iw SMTP פורת שרת +standard emailadmin iw תקני +standard imap server emailadmin iw תקני IMAP שרת +standard pop3 server emailadmin iw תקני POP3 שרת +standard smtp-server emailadmin iw תקני SMTP שרת +use default emailadmin iw השתמש בברירת המחדל +use ldap defaults emailadmin iw LDAP השתמש בברירות מחדל של +use smtp auth emailadmin iw LDAP השתמש ב×ימות ×ž×©×ª×ž×©×™× ×©×œ +use tls authentication emailadmin iw TLS השתמש ב×ימות +use tls encryption emailadmin iw TLS השתמש בהצפנת +users can define their own emailaccounts emailadmin iw ×ž×©×ª×ž×©×™× ×™×›×•×œ×™× ×œ×”×’×“×™×¨ ×‘×¢×¦×ž× ×ת חשבונות דו×ר ×”×לקטרוני ×©×œ×”× +virtual mail manager emailadmin iw מלהל דו×ר וירטו×לי +your name emailadmin iw ×”×©× ×©×œ×š diff --git a/admin/lang/egw_ja.lang b/admin/lang/egw_ja.lang index 7e3f50f6da..25390bac7c 100644 --- a/admin/lang/egw_ja.lang +++ b/admin/lang/egw_ja.lang @@ -213,3 +213,10 @@ you must enter a group name. admin ja グループåを入力ã—ã¦ä¸‹ã•ã„。 you must enter an application name and title. admin ja アプリケーションåã¨ã‚¿ã‚¤ãƒˆãƒ«ã‚’入力ã—ã¦ä¸‹ã•ã„。 you must select a file type admin ja ファイルタイプをé¸æŠžã—ã¦ãã ã•ã„。 your session could not be verified. admin ja Your session could not be verified. +admin password emailadmin ja パスワード +admin username emailadmin ja ユーザID +email settings common ja é›»å­ãƒ¡ãƒ¼ãƒ«è¨­å®š +mail settings admin ja é›»å­ãƒ¡ãƒ¼ãƒ«è¨­å®š +order emailadmin ja é †åº +remove emailadmin ja 削除 +standard emailadmin ja 標準 diff --git a/admin/lang/egw_ko.lang b/admin/lang/egw_ko.lang index 7f969eb5cf..67c26cee9f 100644 --- a/admin/lang/egw_ko.lang +++ b/admin/lang/egw_ko.lang @@ -405,3 +405,12 @@ you must enter an application title. admin ko ì‘용프로그램 ì œëª©ì„ ìž… you must select a file type admin ko íŒŒì¼ íƒ€ìž…ì„ ì„ íƒí•´ì•¼ 합니다. you will need to remove the subcategories before you can delete this category admin ko ì´ ì¹´í…Œê³ ë¦¬ë¥¼ 삭제하기 ì „ì— í•˜ìœ„ì¹´í…Œê³ ë¦¬ë¥¼ 삭제해야 합니다! your session could not be verified. admin ko ì„¸ì…˜ì´ ê²€ì¦ë˜ì§€ 않았습니다 +admin password emailadmin ko ê´€ë¦¬ìž ì•”í˜¸ +admin username emailadmin ko ê´€ë¦¬ì‚¬ìš©ìž ì´ë¦„ +continue emailadmin ko ê³„ì† +default emailadmin ko 기본 +event details follow emailadmin ko ** 다ìŒì€ ì´ë²¤íŠ¸-설명 +mail settings admin ko ë©”ì¼ ì„¤ì • +remove emailadmin ko ì‚­ì œ +standard emailadmin ko 기본 +use default emailadmin ko 기본 사용 diff --git a/admin/lang/egw_lo.lang b/admin/lang/egw_lo.lang index 3dd419e112..8d21254fb6 100644 --- a/admin/lang/egw_lo.lang +++ b/admin/lang/egw_lo.lang @@ -573,3 +573,30 @@ you need to enter install id and password! admin lo ທ່ານຕ້ອງໃ you will need to remove the subcategories before you can delete this category admin lo ທ່ານຕ້ອງລຶບà»àº§àº”à»àº¹à»ˆàºà»ˆàº­àºàºà»ˆàº­àº™àº—ີ່ຈະລຶບà»àº§àº”à»àº¹à»ˆàº™àºµà»‰ your last submission was less then %1 days ago! admin lo ຄັ້ງລ່າສຸດໃນàºàº²àº™àºªàº»à»ˆàº‡àº¢à»ˆàº²àº‡à»œà»‰àº­àº % 1 ມຶ້ທີ່ຜ່ານມາ your session could not be verified. admin lo ເຊສຊັ້ນຂອງທ່ານຈະບà»à»ˆàºªàº²àº¡àº²àº”ຢືນຢັນ +advanced options emailadmin lo àºàº²àº™àº•àº±à»‰àº‡àº„່າà»àºšàºšàºžàº´à»€àºªàº” +alternate email address emailadmin lo ທີ່ຢູ່ email ອື່ນ +cyrus imap server emailadmin lo Cyrus IMAP Server +default emailadmin lo ຄ່າເລີ່ມຕົ້ນ +deliver extern emailadmin lo ສົ່ງ extern +edit email settings emailadmin lo à»àºà»‰à»„ຂàºàº²àº™àº•àº±à»‰àº‡àº„່າ email +email account active emailadmin lo email ບັນຊີທີ່ໃຊ້ຢູ່ +email address emailadmin lo ທີ່ຢູ່ email +error saving account! emailadmin lo àºàº²àº™àºšàº±àº™àº—ຶàºàºšàº±àº™àºŠàºµàºžàº»àºšàº‚à»à»‰àºœàº´àº”ພາດ! +event details follow emailadmin lo ຕິດຕາມລາàºàº¥àº°àº­àº½àº”àºàº´àº”ຈະàºà»àº² +forward also to emailadmin lo ສົ່ງຕà»à»ˆà»„ປຫາ +forward only emailadmin lo ສົ່ງຕà»à»ˆà»€àº—ົ່ານັ້ນ +in mbyte emailadmin lo ໃນ Mbyte +leave empty for no quota emailadmin lo ອອàºàºˆàº²àºàº¥àº°àºšàº»àºšàºªà»àº²àº¥àº±àºšàºšà»à»ˆàº¡àºµà»‚àºàº•à»‰àº² +mail settings admin lo ຕັ້ງຄ່າ mail +no alternate email address emailadmin lo ບà»à»ˆàº¡àºµ email ສະຫຼັບàºàº±àº™ +order emailadmin lo Order +postfix with ldap emailadmin lo Postfix ດ້ວຠLDAP +qmaildotmode emailadmin lo qmaildotmode +quota settings emailadmin lo ໂàºàº•à»‰àº²àºàº²àº™àº•àº±à»‰àº‡àº„່າ +quota size in mbyte emailadmin lo ຂະໜາດໂàºàº•à»‰àº²à»ƒàº™ ເມàºàº°à»„ບທ +remove emailadmin lo ລຶບອອຠ+standard emailadmin lo ມາດຕະຖານ +standard imap server emailadmin lo ມາດຕະຖານ IMAP ເຊີເວີ້ +standard pop3 server emailadmin lo ມາດຕະຖານ POP3 ເຊີເວີ້ +standard smtp-server emailadmin lo ມາດຕະຖານ SMTP-ເຊີເວີ້ +use default emailadmin lo ໃຊ້ຄ່າເລີ່ມຕົ້ນ diff --git a/admin/lang/egw_lv.lang b/admin/lang/egw_lv.lang index 112fda14f5..5a76fb7427 100644 --- a/admin/lang/egw_lv.lang +++ b/admin/lang/egw_lv.lang @@ -419,3 +419,73 @@ you must enter an application title. admin lv Jums jÄievada aplikÄcijas virsra you must select a file type admin lv Jums jÄizvÄ“las faila tips you will need to remove the subcategories before you can delete this category admin lv Tev vajadzÄ“s izdzÄ“st apakÅ¡grpu pirms tu varÄ“si izdzÄ“st Å¡o kategoriju! your session could not be verified. admin lv NevarÄ“ju JÅ«s pÄrbaudÄ«t. MÄ“Ä£iniet pÄ“c 30sek. vÄ“lreiz. +(no subject) emailadmin lv (nav temata) +add profile emailadmin lv Pievienot profilu +admin dn emailadmin lv administratora dn +admin password emailadmin lv administratora parole +admin username emailadmin lv administratora lietotÄjvÄrds +advanced options emailadmin lv uzlabotÄs iespÄ“jas +alternate email address emailadmin lv alternatÄ«vas e-pasta adreses +continue emailadmin lv TurpinÄt +cyrus imap server emailadmin lv Cyrus IMAP serveris +cyrus imap server administration emailadmin lv Cyrus IMAP servera administrÄ“Å¡ana +default emailadmin lv noklusÄ“jums +do you really want to delete this profile emailadmin lv Vai tu tieÅ¡Äm vÄ“lies dzÄ“st Å¡o profilu? +domainname emailadmin lv domÄ“na vÄrds +edit email settings emailadmin lv rediģēt e-pasta uzstÄdÄ«jumus +email account active emailadmin lv e-pasta konts aktÄ«vs +email address emailadmin lv e-pasta adrese +enable cyrus imap server administration emailadmin lv atļaut Cyrus IMAP servera administrÄ“Å¡anu +enable sieve emailadmin lv atļaut Sieve +enter your default mail domain (from: user@domain) emailadmin lv Ievadi noklusÄ“to pasta domÄ“nu (no: lietotÄjs@domÄ“ns) +entry saved emailadmin lv Ieraksts saglabÄts +forward also to emailadmin lv pÄrsÅ«tÄ«t arÄ« +forward email's to emailadmin lv pÄrsÅ«tÄ«t e-pasta vÄ“stules +forward only emailadmin lv tikai pÄrsÅ«tÄ«t +imap admin password admin lv IMAP administratora parole +imap admin user admin lv IMAP administrators +imap c-client version < 2001 emailadmin lv IMAP C-Client Version <2001 +imap server emailadmin lv IMAP serveris +imap server hostname or ip address emailadmin lv IMAP servera hosta vÄrds vai IP adrese +imap server logintyp emailadmin lv IMAP servera autorizÄcijas veids +imap server port emailadmin lv IMAP servera ports +imap/pop3 server name emailadmin lv IMAP/POP3 servera nosaukums +ldap basedn emailadmin lv LDAP bÄzes dn +ldap server emailadmin lv LDAP serveris +ldap server accounts dn emailadmin lv LDAP servera konti DN +ldap server admin dn emailadmin lv LDAP servera administratora DN +ldap server admin password emailadmin lv LDAP servera administratora parole +ldap server hostname or ip address emailadmin lv LDAP servera hosta vÄrds vai IP adrese +ldap settings emailadmin lv LDAP uzstÄdÄ«jumi +mail settings admin lv Pasta uzstÄdÄ«jumi +name of organisation emailadmin lv OrganizÄcijas nosaukums +no alternate email address emailadmin lv nav alternatÄ«vas e-pasta adreses +no forwarding email address emailadmin lv nav pÄrsÅ«tÄmÄs e-pasta adreses +order emailadmin lv KÄrtÄ«ba +pop3 server hostname or ip address emailadmin lv POP3 servera hosta vÄrds vai IP adrese +pop3 server port emailadmin lv POP3 servera ports +profile list emailadmin lv Profila saraksts +profile name emailadmin lv Profila vÄrds +remove emailadmin lv pÄrvietot +select type of imap/pop3 server emailadmin lv AtzÄ«mÄ“t IMAP/POP3 servera tipu +select type of smtp server emailadmin lv AtzÄ«mÄ“t SMTP servera tipu +sieve server hostname or ip address emailadmin lv ?Sieve? servera hosta vÄrds vai IP adrese +sieve server port emailadmin lv Sieve servera ports +sieve settings emailadmin lv Sieve uzstadÄ«jumi +smtp server name emailadmin lv SMTP servera nosaukums +smtp settings emailadmin lv SMTP uzstÄdÄ«jumi +smtp-server hostname or ip address emailadmin lv SMTP servera hosta vÄrds vai IP adrese +smtp-server port emailadmin lv SMTP servera ports +standard emailadmin lv Standarta +standard imap server emailadmin lv Standarta IMAP serveris +standard pop3 server emailadmin lv Standarta POP3 serveris +standard smtp-server emailadmin lv Standarta SMTP serveris +this php has no imap support compiled in!! emailadmin lv Å im PHP nav IMAP nokompilÄ“ts atbalsts +use default emailadmin lv Lietot noklusÄ“jumu +use ldap defaults emailadmin lv lieto LDAP noklusÄ“jumus +use smtp auth emailadmin lv Lieto SMTP autentifikÄciju +use tls authentication emailadmin lv Lieto TLS autentifikÄciju +use tls encryption emailadmin lv Lieto TLS Å¡ifrÄ“Å¡anu +users can define their own emailaccounts emailadmin lv LIetotÄji paÅ¡i var definÄ“t savus e-pasta kontus +virtual mail manager emailadmin lv VIrtuÄlais MAIL ManaGeR +your name emailadmin lv Tavs vÄrds diff --git a/admin/lang/egw_nl.lang b/admin/lang/egw_nl.lang index 33129ac863..134647b98d 100644 --- a/admin/lang/egw_nl.lang +++ b/admin/lang/egw_nl.lang @@ -537,3 +537,167 @@ you must select at least one group member. admin nl U moet tenminse één groeps you need to enter install id and password! admin nl U moet het installatie ID EN wachtwoord invoeren! you will need to remove the subcategories before you can delete this category admin nl U moet eerst de subcategorieën verwijderen voordat u deze bovenliggende categorie kunt verwijderen! your session could not be verified. admin nl Uw sessie kon niet geverifieerd worden +(no subject) emailadmin nl (geen onderwerp) +account '%1' not found !!! emailadmin nl Account '%1' niet gevonden !!! +add new email address: emailadmin nl Voeg nieuw emailadres toe: +add profile emailadmin nl Profiel toevoegen +admin dn emailadmin nl admin dn +admin password emailadmin nl Admin wachtwoord +admin username emailadmin nl Admin gebruikersnaam +advanced options emailadmin nl Geavanceerde opties +alternate email address emailadmin nl Alternatief emailadres +any application emailadmin nl Iedere toepassing +any group emailadmin nl Iedere groep +any user emailadmin nl iedere gebruiker +back to admin/grouplist emailadmin nl Terug naar Beheer/Groepslijst +back to admin/userlist emailadmin nl Terug naar Beheer/Gebruikerslijst +bad login name or password. emailadmin nl Ongeldige login of paswoord +bad or malformed request. server responded: %s emailadmin nl Ongeldig of slecht geformuleerde aanvraag. Server reageerde: %s +bad request: %s emailadmin nl Slechte vraag: %s +can be used by application emailadmin nl Kan gebruikt worden door toepassing +can be used by group emailadmin nl Kan gebruikt worden door groep +can be used by user emailadmin nl kan door gebruiker gebruikt worden +connection dropped by imap server. emailadmin nl Verbinding viel uit door IMAP server +continue emailadmin nl Doorgaan +could not append message: emailadmin nl Kon niet aan bericht toevoegen: +could not complete request. reason given: %s emailadmin nl Kan verzoek niet afmaken. Opgegeven reden: %s +could not open secure connection to the imap server. %s : %s. emailadmin nl Kon geen veilige verbinding openen met de IMAP server. %s : %s +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin nl CRAM-MDS of DIGEST-MDS vereist de installatie van het Auth_SASL pakket. +create new account emailadmin nl Maak een nieuwe gebruiker aan +cyrus imap server emailadmin nl Cyrus IMAP-server +cyrus imap server administration emailadmin nl Cyrus IMAP-serverbeheer +default emailadmin nl standaard +deliver extern emailadmin nl bezorg extern +displaying html messages is disabled emailadmin nl weergeven van html berichten is uitgeschakeld +displaying plain messages is disabled emailadmin nl Weergeven standaard vericht is uitgeschakeld +do not validate certificate emailadmin nl het certificaat niet valideren +do you really want to delete this profile emailadmin nl Weet u zeker dat u dit profiel wilt verwijderen +do you really want to reset the filter for the profile listing emailadmin nl Wilt u werkelijk het filter voor de profielenlijst opnieuw instellen +domainname emailadmin nl Domeinnaam +edit email settings emailadmin nl Wijzig emailinstellingen +email account active emailadmin nl Emailaccount actief +email address emailadmin nl Emailadres +email settings common nl Emailinstellingen +emailadmin emailadmin nl EmailAdmin +emailadmin: group assigned profile common nl eMailAdmin: Groep heeft profiel toegewezen gekregen +emailadmin: user assigned profile common nl eMailAdmin: Gebruiker heeft profiel toegewezen gekregen +enable cyrus imap server administration emailadmin nl activier Cyrus IMAP serverbeheer +enable sieve emailadmin nl activeer Sieve +encrypted connection emailadmin nl versleutelde verbinding +encryption settings emailadmin nl encryptie instellingen +enter your default mail domain (from: user@domain) emailadmin nl Voer uw standaard emaildomein in (uit: gebruiker@domein) +entry saved emailadmin nl Record opgeslagen +error connecting to imap server. %s : %s. emailadmin nl Fout verbinden met de IMAP server. %s : %s +error connecting to imap server: [%s] %s. emailadmin nl Fout verbinden met de IMAP server: [%s] %s +error saving account! emailadmin nl Fout bij opslaan van account! +error saving the entry!!! emailadmin nl Fout bij het bewaren van de invoer!!! +event details follow emailadmin nl Afspraak details volgen +file rejected, no %2. is:%1 emailadmin nl Bestand geweigerd, geen %2.is:%1 +filtered by account emailadmin nl gefilterd op Account +filtered by group emailadmin nl gefilterd op Groep +forward also to emailadmin nl Ook doorsturen naar +forward email's to emailadmin nl Emails doorsturen naar +forward only emailadmin nl Alleen doorsturen +global options emailadmin nl Algemene opties +hostname or ip emailadmin nl Hostnaam of IP +if different from email address emailadmin nl Indien afwijkend van EMAIL adres +if using ssl or tls, you must have the php openssl extension loaded. emailadmin nl Indien SSL of TSL wordt gebruikt, moet u de PHP openssl extensie opgeladen hebben +imap admin password admin nl IMAP beheerders wachtwoord +imap admin user admin nl IMAP beheerdersgebruiker +imap c-client version < 2001 emailadmin nl IMAP C-Client Versie < 2001 +imap server emailadmin nl IMAP server +imap server closed the connection. emailadmin nl IMAP server sloot de verbinding +imap server closed the connection. server responded: %s emailadmin nl IMAP Server sloot de verbinding. Server reageerde: %s +imap server hostname or ip address emailadmin nl IMAP-server hostnaam of IP-adres +imap server logintyp emailadmin nl IMAP-server logintype +imap server name emailadmin nl imap server naam +imap server port emailadmin nl IMAP-serverpoort +imap/pop3 server name emailadmin nl IMAP/POP3-servernaam +importance emailadmin nl Belangrijk +in mbyte emailadmin nl in MBytes +inactive emailadmin nl inactief +ldap basedn emailadmin nl LDAP basedn +ldap server emailadmin nl LDAP-server +ldap server accounts dn emailadmin nl LDAP server accounts DN +ldap server admin dn emailadmin nl LDAP server admin DN +ldap server admin password emailadmin nl LDAP-server admin wachtwoord +ldap server hostname or ip address emailadmin nl LDAP-serverhostnaam of IP-adres +ldap settings emailadmin nl LDAP-instellingen +leave empty for no quota emailadmin nl Laat leeg voor geen quota +mail settings admin nl Mailinstellingen +name of organisation emailadmin nl Naam van de Organisatie +no alternate email address emailadmin nl geen alternatief emailadres +no encryption emailadmin nl geen versleuteling +no forwarding email address emailadmin nl geen emailadres om naar door te sturen +no message returned. emailadmin nl Geen bericht teruggekomen. +no plain text part found emailadmin nl geen platte tekst onderdeel gevonden +no supported imap authentication method could be found. emailadmin nl Geen ondersteunde IMAP authenticatiemethode kon gevonden worden. +order emailadmin nl Volgorde +organisation emailadmin nl Organisatie +plesk can't rename users --> request ignored emailadmin nl Plesk kan gebruikers niet hernoemen --> verzoek genegeerd +plesk imap server (courier) emailadmin nl Plesk IMAP Server (Courier) +plesk mail script '%1' not found !!! emailadmin nl Plesk mail script '%1' niet gevonden !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin nl Plesk vereist dat wachtwoorden minstens 5 karakters bevatten en niet de accountnaam mogen bevatten --> wachtwoord niet gewijzigd !!! +plesk smtp-server (qmail) emailadmin nl Plesk SMTP-Server (Qmail) +pop3 server hostname or ip address emailadmin nl POP3-server hostnaam of IP-adres +pop3 server port emailadmin nl POP3-serverpoort +port emailadmin nl poort +postfix with ldap emailadmin nl Postfix met LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin nl Uitvoeren van bestand %1 mislukt. Mislukt om aan de basis beperkingen te voldoen. +profile access rights emailadmin nl profiel toegangsrechten +profile is active emailadmin nl profiel is actief +profile list emailadmin nl Profiellijst +profile name emailadmin nl Profielnaam +qmaildotmode emailadmin nl qmaildotmode +quota settings emailadmin nl Quota-installingen +quota size in mbyte emailadmin nl quota grootte in MByte +remove emailadmin nl Verwijderen +required pear class mail/mimedecode.php not found. emailadmin nl PEAR benodigd, class MAIL/mimeDecode.php niet gevonden +reset filter emailadmin nl filter opnieuw instellen +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin nl Bewaren van bericht %1 is mislukt. Kon het bericht niet opslaan naar map %2 om de volgende reden %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin nl Bewaren van bericht %1 mislukt. De doelmap %2 bestaat niet. +select type of imap server emailadmin nl selecteer IMAP servertype +select type of imap/pop3 server emailadmin nl Selecteer IMAP/POP3-servertype +select type of smtp server emailadmin nl Selecteer SMTP-servertype +server settings emailadmin nl server instellingen +sieve server hostname or ip address emailadmin nl Sieve-serverhostnaam of IP-adres +sieve server port emailadmin nl Sieve-serverpoort +sieve settings emailadmin nl Sieve instellingen +smtp authentication emailadmin nl SMTP authenticatie +smtp options emailadmin nl SMTP opties +smtp server name emailadmin nl SMTP-servernaam +smtp settings emailadmin nl SMTP instellingen +smtp-server hostname or ip address emailadmin nl SMTP-serverhostnaam of IP-adres +smtp-server port emailadmin nl SMTP-serverpoort +standard emailadmin nl Standaard +standard imap server emailadmin nl Standaard IMAP-server +standard pop3 server emailadmin nl Standaard POP3-server +standard smtp-server emailadmin nl Standaard SMTP-server +stationery emailadmin nl stationery +templates emailadmin nl Sjablonen +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin nl The IMAP server blijkt geen authenticatiemethode te ondersteunen. Gelieve uw systeembeheerder te contacteren. +the mimeparser can not parse this message. emailadmin nl De mimeparsers kan dit bericht niet lezen. +this php has no imap support compiled in!! emailadmin nl Deze PHP heeft geen IMAP ondersteuning verzamelt in!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin nl Om een TLS verbinding te gebruiken, moet u een versie van PHP 5.1.0 of hoger gebruiken. +unexpected response from server to authenticate command. emailadmin nl Onverwachte reactie van de server om de opdracht te AUTHENTICEREN. +unexpected response from server to digest-md5 response. emailadmin nl Onverwachte reactie van de server op Digest-MD5 reactie. +unexpected response from server to login command. emailadmin nl Onverwachte reactie van de server op LOGIN opdracht. +unknown imap response from the server. server responded: %s emailadmin nl Onverwachte IMAP reactie van de server. Server reageerde: %s +unsupported action '%1' !!! emailadmin nl Niet-ondersteunde actie '%1' +update current email address: emailadmin nl Huidige emailadres bijwerken: +use default emailadmin nl Gebruik standaard +use ldap defaults emailadmin nl gebruik LDAP standaard instellingen +use predefined username and password defined below emailadmin nl Gebruik voorgekozen gebruikersnaam en wachtwoord zoals hieronder is ingesteld +use smtp auth emailadmin nl Gebruik SMTP authenticatie +use tls authentication emailadmin nl Gebruik TLS authenticatie +use tls encryption emailadmin nl Gebruik TLS-encryptie +user can edit forwarding address emailadmin nl Gebruiker kan het doorstuuradres aanpassen +username (standard) emailadmin nl gebruikersnaam (standaard) +username/password defined by admin emailadmin nl Gebruikersnaam/Wachtwoord ingesteld door beheerder +username@domainname (virtual mail manager) emailadmin nl gebruikersnaam@domeinnaam (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin nl Gebruikers kunnen hun eigen emailaccounts definiëren +users can define their own identities emailadmin nl gebruikers kunnen hun eigen identiteit instellen +users can define their own signatures emailadmin nl gebruikers kunnen hun eigen ondertekening instellen +virtual mail manager emailadmin nl Virtual MAIL ManaGeR +you have received a new message on the emailadmin nl U heeft een nieuw bericht ontvangen op de +your name emailadmin nl Uw naam diff --git a/admin/lang/egw_no.lang b/admin/lang/egw_no.lang index 5d6fee7390..83deaeb316 100644 --- a/admin/lang/egw_no.lang +++ b/admin/lang/egw_no.lang @@ -443,3 +443,83 @@ you must enter an application title. admin no Du mÃ¥ registrere et programtittel you must select a file type admin no Du mÃ¥ velge en filtype you will need to remove the subcategories before you can delete this category admin no Du mÃ¥ først fjerne underkategorier før du kan slette denne kategorien! your session could not be verified. admin no Din sesjon kunne ikke bekreftes +(no subject) emailadmin no (uten emne) +add profile emailadmin no Legg til profil +admin dn emailadmin no Admin dn +admin password emailadmin no Admin passord +admin username emailadmin no Admin brukernavn +advanced options emailadmin no Avanserte valg +alternate email address emailadmin no Alternativ e-mailadresse +continue emailadmin no Fortsette +cyrus imap server emailadmin no Cyrus IMAP tjener +cyrus imap server administration emailadmin no Cyrys IMAP tjeneradministrasjon +default emailadmin no standard +deliver extern emailadmin no lever eksternt +do you really want to delete this profile emailadmin no Ønsker du virkelig Ã¥ slette denne profilen +domainname emailadmin no Domenenavn +edit email settings emailadmin no Rediger e-mail oppsett +email account active emailadmin no E-mailkonto aktiv +email address emailadmin no E-mailadresse +enable cyrus imap server administration emailadmin no Tillat Cyrus IMAP-tjener administrasjon +enable sieve emailadmin no Tillat Sieve +enter your default mail domain (from: user@domain) emailadmin no Registrer ditt standard Emaildomene (fra: bruker@domene) +entry saved emailadmin no Registrering lagret +error saving the entry!!! emailadmin no Feil ved lagring av forekomst! +event details follow emailadmin no Hendelses Detaljer Følger +forward also to emailadmin no videresend ogsÃ¥ til +forward email's to emailadmin no videresend e-mailer til +forward only emailadmin no bare videresending +imap admin password admin no IMAP Administrasjonspassord +imap admin user admin no IMAP Administrasjonsbruker +imap c-client version < 2001 emailadmin no IMAP C-klient versjon < 2001 +imap server emailadmin no IMAP Tjener +imap server hostname or ip address emailadmin no Tjenernavn eller IP-adresse for IMAP tjener +imap server logintyp emailadmin no IMAP Tjener pÃ¥loggingstype +imap server port emailadmin no IMAP Tjenerport +imap/pop3 server name emailadmin no IMAP/POP3 tjenernavn +in mbyte emailadmin no i MByte +ldap basedn emailadmin no LDAP basedn +ldap server emailadmin no LDAP Tjener +ldap server accounts dn emailadmin no LDAP Tjenerkonti DN +ldap server admin dn emailadmin no LDAP Tjeneradmin. DN +ldap server admin password emailadmin no LDAP Tjeneradmin. passord +ldap server hostname or ip address emailadmin no Tjenernavn eller IP-adresse for LDAP tjener +ldap settings emailadmin no LDAP Instillinger +leave empty for no quota emailadmin no La stÃ¥ tomt for ingen begrensning. +mail settings admin no E-post innstillinger +name of organisation emailadmin no Navn pÃ¥ organisasjon +no alternate email address emailadmin no ingen alternativ e-mailadresse +no forwarding email address emailadmin no ingen e-mailadresse for videresending +order emailadmin no Ordre +organisation emailadmin no Organisasjon +pop3 server hostname or ip address emailadmin no Tjenernavn eller IP-adresse for POP3 tjener +pop3 server port emailadmin no POP3 Tjenerport +postfix with ldap emailadmin no Postfix med LDAP +profile list emailadmin no Profilliste +profile name emailadmin no Profilnavn +qmaildotmode emailadmin no qmaildotmodus +quota settings emailadmin no Grenseinstillinger +quota size in mbyte emailadmin no Grense Str. i Mbyte +remove emailadmin no fjern +select type of imap/pop3 server emailadmin no Velg type for IMAP/POP3 Tjener +select type of smtp server emailadmin no Velg type SMTP Tjener +sieve server hostname or ip address emailadmin no Tjenernavn eller IP-adresse for Sieve-tjener +sieve server port emailadmin no Sieve tjenerport +sieve settings emailadmin no Sieve innstillinger +smtp server name emailadmin no SMTP Tjenernavn +smtp settings emailadmin no SMTP innstillinger +smtp-server hostname or ip address emailadmin no Tjenernavn eller IP-Adresse for SMTP-Tjener +smtp-server port emailadmin no SMTP Tjenerport +standard emailadmin no standard +standard imap server emailadmin no Standard IMAP tjener +standard pop3 server emailadmin no Standard POP3 tjener +standard smtp-server emailadmin no Standard SMTP tjener +this php has no imap support compiled in!! emailadmin no PHP versjonen har ingen IMAP-støtte kompilert inn +use default emailadmin no Bruk standard +use ldap defaults emailadmin no Bruk LDAP standaroppsett +use smtp auth emailadmin no Bruk SMTP autentisering +use tls authentication emailadmin no Bruk TLS autentisering +use tls encryption emailadmin no Bruk TLS kryptering +users can define their own emailaccounts emailadmin no Brukere kan definere egne e-post kontoer +virtual mail manager emailadmin no Virtuell Mail Manager +your name emailadmin no Ditt navn diff --git a/admin/lang/egw_pl.lang b/admin/lang/egw_pl.lang index c795daa2a0..0dd73b6c6a 100755 --- a/admin/lang/egw_pl.lang +++ b/admin/lang/egw_pl.lang @@ -589,3 +589,164 @@ you need to enter install id and password! admin pl Musisz podać ID instalacji you will need to remove the subcategories before you can delete this category admin pl Należy usunąć kategorie podrzÄ™dne przed skasowaniem tej kategorii ! your last submission was less then %1 days ago! admin pl Swój ostatni wpis przesÅ‚aÅ‚eÅ› mniej niż %1 dni temu! your session could not be verified. admin pl Nie można zweryfikować sesji. +(no subject) emailadmin pl (bez tematu) +account '%1' not found !!! emailadmin pl Konto '%1' nie zostaÅ‚o znalezione! +active templates emailadmin pl Aktywne szablony +add new email address: emailadmin pl Dodaj nowy adres poczty elektronicznej: +add profile emailadmin pl Dodaj profil +admin dn emailadmin pl DN (nazwa wyróżniajÄ…ca) administratora +admin password emailadmin pl HasÅ‚o administratora +admin username emailadmin pl Nazwa użytkownika konta administratora +advanced options emailadmin pl Ustawienia zaawansowane +alternate email address emailadmin pl Alternatywny adres email +any application emailadmin pl Dowolna aplikacja +any group emailadmin pl Dowolna grupa +any user emailadmin pl Dowolny użytkownik +back to admin/grouplist emailadmin pl Powrót do konta administratora/ listy grup +back to admin/userlist emailadmin pl Powrót do konta administratora/ listy użytkowników +bad login name or password. emailadmin pl ZÅ‚a nazwa użytkownika lub hasÅ‚o +bad or malformed request. server responded: %s emailadmin pl NieprawidÅ‚owe lub źle skonstruowane żądane. Serwer odpowiedziaÅ‚: %s +bad request: %s emailadmin pl NieprawidÅ‚owe żądanie: %s +can be used by application emailadmin pl Może być używane przez aplikacjÄ™ +can be used by group emailadmin pl Może byc używane przez grupÄ™ +can be used by user emailadmin pl Może być używane przez użytkownika +connection dropped by imap server. emailadmin pl PoÅ‚Ä…czenie zerwane przez serwer IMAP +continue emailadmin pl Kontunuj +could not complete request. reason given: %s emailadmin pl Nie udaÅ‚o siÄ™ zrealizować żądania. Powód: %s +could not open secure connection to the imap server. %s : %s. emailadmin pl Nie udaÅ‚o siÄ™ stworzyć bezpiecznego poÅ‚Ä…czenia do serwera IMAP. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin pl CRAM-MD5 lub DIGEST-MD5 wymagajÄ…, aby pakiet Auth_SASL (Perl) byÅ‚ zainstalowany +cyrus imap server emailadmin pl Serwer IMAP Cyrus +cyrus imap server administration emailadmin pl Administracja serwerem IMAP Cyrus +default emailadmin pl domyÅ›lny +deliver extern emailadmin pl dostarczanie na zewnÄ…trz +displaying html messages is disabled emailadmin pl WyÅ›wietlanie wiadomoÅ›ci w HTML jest wyÅ‚Ä…czone +do not validate certificate emailadmin pl nie sprawdzaj poprawnoÅ›ci certyfikatu +do you really want to delete this profile emailadmin pl Czy na pewno chcesz usunąć ten profil? +do you really want to reset the filter for the profile listing emailadmin pl Czy na pewno chcesz zresetować filtr w liÅ›cie profilu? +domainname emailadmin pl Nazwa domeny +edit email settings emailadmin pl Edytuj ustawienia poczty elektronicznej +email account active emailadmin pl Konto poczty aktywne +email address emailadmin pl Adres poczty elektronicznej +email settings common pl Ustawienia poczty elektronicznej +emailadmin emailadmin pl Poczta Elektroniczna - Administracja +emailadmin: group assigned profile common pl Administrator Poczty: Grupa przypisana do profilu +emailadmin: user assigned profile common pl Administrator Poczty: użytkownik przypisany do profilu +enable cyrus imap server administration emailadmin pl aktywuj administracjÄ™ serwerem IMAP Cyrus +enable sieve emailadmin pl aktywuj sito (Sieve) +encrypted connection emailadmin pl poÅ‚Ä…czenie szyfrowane +encryption settings emailadmin pl ustawienia szyfrowania +enter your default mail domain (from: user@domain) emailadmin pl Wprowadź domyÅ›lnÄ… domenÄ™ pocztowÄ… (z użytkownik@domena) +entry saved emailadmin pl Wpis zachowany +error connecting to imap server. %s : %s. emailadmin pl BÅ‚Ä…d poÅ‚Ä…czenia do serwera IMAP. %s : %s +error connecting to imap server: [%s] %s. emailadmin pl BÅ‚Ä…d poÅ‚Ä…czenia do serwera IMAP. [%s] %s +error saving account! emailadmin pl BÅ‚Ä…d przy zapisie konta! +error saving the entry!!! emailadmin pl BÅ‚Ä…d przy zachowywaniu wpisu !!! +event details follow emailadmin pl Detale Wydarzenia NastÄ™pujÄ… +file rejected, no %2. is:%1 emailadmin pl Plik odrzucony. Jest %1 nie %2. +filtered by account emailadmin pl Filtrowane przez konto +filtered by group emailadmin pl Filtrowane przez grupe +forward also to emailadmin pl PrzeÅ›lij również do +forward email's to emailadmin pl PrzeÅ›lij wiadomoÅ›ci do +forward only emailadmin pl PrzeÅ›lij tylko +global options emailadmin pl Ustawienia globalne +if using ssl or tls, you must have the php openssl extension loaded. emailadmin pl Jeżeli korzystasz z SSL lub TLS, musisz zapewnić obsÅ‚ugÄ™ OpenSSL w PHP. +imap admin password admin pl HasÅ‚o administratora IMAP +imap admin user admin pl Login administratora IMAP +imap c-client version < 2001 emailadmin pl Wersja C-Client IMAP < 2001 +imap server emailadmin pl Serwer IMAP +imap server closed the connection. emailadmin pl Serwer IMAP zakoÅ„czyÅ‚ poÅ‚Ä…czenie. +imap server closed the connection. server responded: %s emailadmin pl Serwer IMAP zakoÅ„czyÅ‚ poÅ‚Ä…czenie. Jego odpowiedź: %s +imap server hostname or ip address emailadmin pl Nazwa hosta lub IP serwera IMAP +imap server logintyp emailadmin pl Sposób logowania do serwera IMAP +imap server name emailadmin pl Nazwa serwera IMAP +imap server port emailadmin pl Port serwera IMAP +imap/pop3 server name emailadmin pl Nazwa serwera IMAP/POP3 +importance emailadmin pl ważność +in mbyte emailadmin pl w megabajtach +inactive emailadmin pl nieaktywny +ldap basedn emailadmin pl Bazowy DN w LDAP +ldap server emailadmin pl Serwer LDAP +ldap server accounts dn emailadmin pl DN dla kont w LDAP +ldap server admin dn emailadmin pl DN administratora w LDAP +ldap server admin password emailadmin pl HasÅ‚o administratora serwera LDAP +ldap server hostname or ip address emailadmin pl Nazwa hosta lub IP serwera LDAP +ldap settings emailadmin pl Ustawienia LDAP +leave empty for no quota emailadmin pl zostaw puste aby wyÅ‚Ä…czyć quota +mail settings admin pl Ustawienia poczty elektronicznej +manage stationery templates emailadmin pl ZarzÄ…dzaj szablonami stacjonarnymi +name of organisation emailadmin pl Nazwa lub organizacja +no alternate email address emailadmin pl brak zapasowego adresu e-mail +no encryption emailadmin pl brak szyfrowania +no forwarding email address emailadmin pl brak adresu poczty przesyÅ‚anej +no message returned. emailadmin pl Nie otrzymano wiadomoÅ›ci. +no plain text part found emailadmin pl brak części 'czystym' tekstem +no supported imap authentication method could be found. emailadmin pl Nie znaleziono obsÅ‚ugiwanej metody autentykacji dla IMAP +order emailadmin pl PorzÄ…dek +organisation emailadmin pl Organizacja +plesk can't rename users --> request ignored emailadmin pl Plesk nie może zmienić nazwy użytkowników --> proÅ›ba odrzucona +plesk imap server (courier) emailadmin pl Plesk IMAP Serwea (Kurier) +plesk mail script '%1' not found !!! emailadmin pl Skrypt %1 mail Plesk nie zostaÅ‚ znaleziony!!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin pl Plesk wymaga hasÅ‚a skÅ‚adajÄ…cego siÄ™ z przynajmniej piÄ™ciu znaków i nie zawierajÄ…cego nazwy konta --> hasÅ‚o nie ustalone!!! +plesk smtp-server (qmail) emailadmin pl Plesk Serwera SMTP (Qmail) +pop3 server hostname or ip address emailadmin pl Nazwa hosta lub IP serwera POP3 +pop3 server port emailadmin pl Port serwera POP3 +port emailadmin pl port +postfix with ldap emailadmin pl Postfix z LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin pl Przetwarzanie pliku %1 nie powiodÅ‚o siÄ™. Nie dotrzymano podstawowych restrykcji. +profile access rights emailadmin pl prawa dostÄ™pu do profilu +profile is active emailadmin pl Profil jest aktywny +profile list emailadmin pl Lista profili +profile name emailadmin pl Nazwa Profilu +qmaildotmode emailadmin pl qmaildotmode +quota settings emailadmin pl ustawnienia quoty +quota size in mbyte emailadmin pl ograniczenie w megabajtach +remove emailadmin pl UsuÅ„ +reset filter emailadmin pl Resetuj filtr +select type of imap server emailadmin pl Wybierz rodzaj serwera IMAP +select type of imap/pop3 server emailadmin pl Wybierz rodzaj serwera IMAP/POP3 +select type of smtp server emailadmin pl Wybierz rodzaj serwera SMTP +send using this email-address emailadmin pl PrzeÅ›lij za pomocÄ… tego adresu e-mail +server settings emailadmin pl Ustawienia serwera +sieve server hostname or ip address emailadmin pl Adres IP lub nazwa Sieve +sieve server port emailadmin pl Port serwera Sieve +sieve settings emailadmin pl Ustawienia Sieve +smtp authentication emailadmin pl Autentykacja SMTP +smtp options emailadmin pl Opcje SMTP +smtp server name emailadmin pl Nazwa serwera SMTP +smtp settings emailadmin pl Ustawienia SMTP +smtp-server hostname or ip address emailadmin pl Nazwa hosta lub IP serwera SMTP +smtp-server port emailadmin pl Port serwera SMTP +standard emailadmin pl Standard +standard imap server emailadmin pl Standardowy serwer IMAP +standard pop3 server emailadmin pl Standardowy serwer POP3 +standard smtp-server emailadmin pl Standardowy serwer SMTP +stationery emailadmin pl Stacjonarny +templates emailadmin pl Szablony +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin pl Serwer IMAP nie obsÅ‚uguje wskazanej metody autentykacji. ProszÄ™ skontaktować siÄ™ z administratorem. +the mimeparser can not parse this message. emailadmin pl Nie udaÅ‚o siÄ™ przetworzyć zawartoÅ›ci MIME tej wiadomoÅ›ci +this php has no imap support compiled in!! emailadmin pl Interpreter PHP nie posiada obsÅ‚ugi IMAP! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin pl Aby skorzystać z poÅ‚Ä…czenia TLS, musisz posiadać wersjÄ™ PHP 5.1.0 lub wyższÄ…. +unexpected response from server to authenticate command. emailadmin pl Niespodziewana odpowiedź serwera na polecenie AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin pl Niespodziewana odpowiedź serwera na zapytanie Digest-MD5 +unexpected response from server to login command. emailadmin pl Niespodziewana odpowiedź serwera na polecenie LOGIN. +unknown imap response from the server. server responded: %s emailadmin pl Nieznana odpowiedź z serwera IMAP. Serwer przesÅ‚aÅ‚: %s +unsupported action '%1' !!! emailadmin pl Operacja nieobsÅ‚ugiwana '%1'! +update current email address: emailadmin pl Uaktualnij bieżący adres pocztowy +use default emailadmin pl DomyÅ›lne +use ldap defaults emailadmin pl Skorzystaj z domyÅ›lnych wartoÅ›ci LDAP +use predefined username and password defined below emailadmin pl Skorzystaj z predefiniowanych nazw użytkownika i hasÅ‚a podanego poniżej +use smtp auth emailadmin pl Skorzystaj z autentykacji SMTP +use tls authentication emailadmin pl Skorzystaj z autentykacji TLS +use tls encryption emailadmin pl Skorzystaj z szyfrowania TLS +use users email-address (as seen in useraccount) emailadmin pl użyj adresu użytkownika (taki jak widoczny w opcjach konta) +user can edit forwarding address emailadmin pl Użytkownik może zmieniać adres przekazywania +username (standard) emailadmin pl login (standardowo) +username/password defined by admin emailadmin pl Nazwa uzytkownika/HasÅ‚o okreÅ›lone przez administratora +username@domainname (virtual mail manager) emailadmin pl login@domena (wirtualny zarzÄ…dca kont) +users can define their own emailaccounts emailadmin pl Użytkownicy mogÄ… definiować swoje wÅ‚asne konta poczty elektronicznej +users can define their own identities emailadmin pl Użytkownicy mogÄ… definiować swoje wÅ‚asne tożsamoÅ›ci +users can define their own signatures emailadmin pl Użytkownicy mogÄ… definiować swoje wÅ‚asne podpisy +users can utilize these stationery templates emailadmin pl Użytkownicy mogÄ… użyć tych szablonów stacjonarnych +virtual mail manager emailadmin pl Wirtualny Serwer Pocztowy - zarzÄ…dca +you have received a new message on the emailadmin pl OtrzymaÅ‚eÅ› nowÄ… wiadomość o +your name emailadmin pl Twoje ImÄ™ diff --git a/admin/lang/egw_pt-br.lang b/admin/lang/egw_pt-br.lang index 478e27efa3..dc4d41037b 100644 --- a/admin/lang/egw_pt-br.lang +++ b/admin/lang/egw_pt-br.lang @@ -529,3 +529,196 @@ you must select at least one group member. admin pt-br Você deve selecionar ao you need to enter install id and password! admin pt-br Você deve informar um ID de instalação E senha! you will need to remove the subcategories before you can delete this category admin pt-br Você deverá remover as subcategorias antes de remover esta categoria ! your session could not be verified. admin pt-br Sua sessão não pôde ser verificada +%1 entries deleted. emailadmin pt-br % 1 cadastros excluídos. +(no subject) emailadmin pt-br (sem assunto) +account '%1' not found !!! emailadmin pt-br Conta '%1' não encontrada !!! +account deleted. emailadmin pt-br % 1 cadastros excluídos. +account not found! common pt-br Conta não encontrado! +account saved. emailadmin pt-br Conta salvo. +active templates emailadmin pt-br Modelos de Ativos +add new email address: emailadmin pt-br Adicionar novo e-mail: +add profile emailadmin pt-br Adicionar Perfil +admin dn emailadmin pt-br dn do administrador +admin password emailadmin pt-br senha do administrador +admin username emailadmin pt-br nome de usuário do administrador +advanced options emailadmin pt-br opções avançadas +alternate email address emailadmin pt-br endereço de e-mail alternativo +and logged in emailadmin pt-br e registrada no +any application emailadmin pt-br qualquer aplicação +any group emailadmin pt-br qualquer grupo +any user emailadmin pt-br qualquer usuário +back to admin/grouplist emailadmin pt-br Voltar para Administração/Lista de Grupos +back to admin/userlist emailadmin pt-br Voltar para Administração/Lista de Usuários +bad login name or password. emailadmin pt-br Nome de usuário ou senha inválido(s). +bad or malformed request. server responded: %s emailadmin pt-br Solicitação inválida. Resposta do servidor: %s +bad request: %s emailadmin pt-br Solicitação inválida: %s +can be used by application emailadmin pt-br pode ser usado pela aplicação +can be used by group emailadmin pt-br pode ser usado pelo grupo +can be used by user emailadmin pt-br pode ser usado pelo usuário +connection dropped by imap server. emailadmin pt-br Conexão interrompida pelo servidor IMAP. +continue emailadmin pt-br Continuar +could not append message: emailadmin pt-br Não foi possível anexar Mensagem: +could not complete request. reason given: %s emailadmin pt-br Não foi possível completar a solicitação. Resposta do servidor: %s +could not open secure connection to the imap server. %s : %s. emailadmin pt-br Não foi possível abrir conexão segura com o servidor IMAP. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin pt-br CRAM-MD5 ou DIGEST-MD5 necessitam que o pacote Auth_SASL esteja instalado. +create new account emailadmin pt-br Criar uma nova conta +create new identity emailadmin pt-br Criar uma nova identidade +cyrus imap server emailadmin pt-br Servidor Cyrus IMAP +cyrus imap server administration emailadmin pt-br Administração do Servidor Cyrus IMAP +default emailadmin pt-br padrão +delete identity emailadmin pt-br Excluir identidade +delete this account emailadmin pt-br Apagar esta conta +deliver extern emailadmin pt-br entrega externa +displaying html messages is disabled emailadmin pt-br exibir mensagens em HTML é desativada +displaying plain messages is disabled emailadmin pt-br exibição de mensagens simples é desativado +do not validate certificate emailadmin pt-br não validar certificado +do you really want to delete this profile emailadmin pt-br Tem certeza que deseja remover esse perfil? +do you really want to reset the filter for the profile listing emailadmin pt-br Tem certeza que deseja reiniciar o filtro para a listagem do perfil +domainname emailadmin pt-br nome do domínio +edit email settings emailadmin pt-br editar configurações de e-mail +email account active emailadmin pt-br conta de e-mail ativa +email address emailadmin pt-br endrereço de e-mail +email settings common pt-br Configurações do E-mail +emailadmin emailadmin pt-br Administração do E-Mail +emailadmin: group assigned profile common pt-br Administração de eMail: Perfil de Grupo +emailadmin: user assigned profile common pt-br Administração de eMail: Perfil de Usuário +enable cyrus imap server administration emailadmin pt-br habilitar administração do Servidor Cyrus IMAP +enable sieve emailadmin pt-br habilitar Sieve +encrypted connection emailadmin pt-br conexão criptografada +encryption settings emailadmin pt-br configurações de criptografia +enter your default mail domain (from: user@domain) emailadmin pt-br Entre com o domínio de e-mail padrão (de: usuario@dominio) +entry saved emailadmin pt-br Registro salvo +error connecting to imap server. %s : %s. emailadmin pt-br Erro conectando ao servidor IMAP. %s : %s. +error connecting to imap server: [%s] %s. emailadmin pt-br Erro conectando ao servidor IMAP: [%s] %s. +error deleting entry! emailadmin pt-br Erro ao excluir a entrada! +error saving account! emailadmin pt-br Erro ao salvar conta! +error saving the entry!!! emailadmin pt-br Erro salvando o registro!! +error, no username! emailadmin pt-br Erro, nenhum nome de usuário! +event details follow emailadmin pt-br Detalhes do Evento seguir +failed to delete account! emailadmin pt-br Falha ao excluir conta! +file rejected, no %2. is:%1 emailadmin pt-br Arquivo rejeitado, sem% 2. É: 1% +filtered by account emailadmin pt-br filtrado por Conta +filtered by group emailadmin pt-br filtrado por Grupo +forward also to emailadmin pt-br encaminhar também para +forward email's to emailadmin pt-br encaminhar mensagens para +forward only emailadmin pt-br encaminhar somente +global options emailadmin pt-br opções globais +hostname or ip emailadmin pt-br Nome do host ou IP +identity deleted emailadmin pt-br Identidade eliminado +identity saved. emailadmin pt-br Identidade salvo. +if different from email address emailadmin pt-br se for diferente do endereço de email +if using ssl or tls, you must have the php openssl extension loaded. emailadmin pt-br Se estiver usando SSL ou TLS, você deverá ter a extensão PHP 'openssl' carretada. +imap admin password admin pt-br Senha do administrador IMAP +imap admin user admin pt-br Usuário administrador do IMAP +imap c-client version < 2001 emailadmin pt-br IMAP C-Cliente Versão < 2001 +imap server emailadmin pt-br Servidor IMAP +imap server closed the connection. emailadmin pt-br O servidor IMAP fechou a conexão. +imap server closed the connection. server responded: %s emailadmin pt-br O servidor IMAP fechou a conexão. Resposta do servidor: %s +imap server hostname or ip address emailadmin pt-br Nome ou IP do servidor IMAP +imap server logintyp emailadmin pt-br Tipo de login do servidor IMAP +imap server name emailadmin pt-br nome do servidor imap +imap server port emailadmin pt-br Porta do servidor IMAP +imap/pop3 server name emailadmin pt-br Nome do servidor IMAP/POP3 +importance emailadmin pt-br importância +in mbyte emailadmin pt-br em Mbytes +inactive emailadmin pt-br inativo +ldap basedn emailadmin pt-br DN Base do LDAP +ldap server emailadmin pt-br Servidor LDAP +ldap server accounts dn emailadmin pt-br Contas DN de servidores LDAP +ldap server admin dn emailadmin pt-br Administrador DN de servidor LDAP +ldap server admin password emailadmin pt-br Senha do administrador DN de servidor LDAP +ldap server hostname or ip address emailadmin pt-br Nome ou endereço IP do servidor LDAP +ldap settings emailadmin pt-br Configurações do LDAP +leave empty for no quota emailadmin pt-br deixe em branco para nenhuma quota +mail settings admin pt-br Configurações de E-Mail +manage stationery templates emailadmin pt-br Gerenciar modelos de papelaria +manual entry emailadmin pt-br Entrada manual +mb used emailadmin pt-br MB usado +name of organisation emailadmin pt-br Nome da organização +no alternate email address emailadmin pt-br sem conta de e-mail alternativa +no encryption emailadmin pt-br sem criptografia +no forwarding email address emailadmin pt-br sem conta de e-mail para encaminhar +no message returned. emailadmin pt-br Nenhuma mensagem retornada. +no plain text part found emailadmin pt-br nenhuma parte de texto simples encontrado +no supported imap authentication method could be found. emailadmin pt-br Nenhum método de autenticação IMAP suportado pôde ser encontrado. +order emailadmin pt-br ordem +organisation emailadmin pt-br organização +plesk can't rename users --> request ignored emailadmin pt-br Plesk não pode renomear usuários --> solicitação ignorada +plesk imap server (courier) emailadmin pt-br Servidor IMAP Plesk (Courier) +plesk mail script '%1' not found !!! emailadmin pt-br Script de e-mail Plesk '%1' não encontrado !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin pt-br Plesk exige que senhas tenha no mínimo 5 caracteres e não contenham o nome da conta --> senha NÃO configurada!!! +plesk smtp-server (qmail) emailadmin pt-br Servidor SMTP Plesk (Qmail) +pop3 server hostname or ip address emailadmin pt-br Nome ou endereço IP do servidor POP3 +pop3 server port emailadmin pt-br Porta do servidor POP3 +port emailadmin pt-br porta +postfix with ldap emailadmin pt-br Postfix com LDAP +profile access rights emailadmin pt-br direito de acesso aos perfis +profile is active emailadmin pt-br perfil está ativo +profile list emailadmin pt-br Lista de perfis +profile name emailadmin pt-br Nome do perfil +qmaildotmode emailadmin pt-br modo dos arquivos qmail (.qmail) +quota settings emailadmin pt-br configurações de quota +quota size in mbyte emailadmin pt-br tamanho da cota em MByte +relay access checked emailadmin pt-br Acesso Relé verificado +remove emailadmin pt-br remover +required pear class mail/mimedecode.php not found. emailadmin pt-br Classe PEAR requeridos Correio / mimeDecode.php não encontrado. +reset filter emailadmin pt-br reiniciar filtro +secure connection emailadmin pt-br Conexão segura +select type of imap server emailadmin pt-br selecione o tipo de servidor IMAP +select type of imap/pop3 server emailadmin pt-br Selecione o tipo de servidor IMAP/POP3 +select type of smtp server emailadmin pt-br Selecione o tipo de servidor SMTP +send using this email-address emailadmin pt-br Enviar usando esse endereço de e-mail +server settings emailadmin pt-br configurações do servidor +sieve server hostname or ip address emailadmin pt-br Nome ou endereço IP do servidor Sieve +sieve server port emailadmin pt-br Porta do Servidor Sieve +sieve settings emailadmin pt-br Configurações Sieve +skip imap emailadmin pt-br Ir IMAP +skipping imap configuration! emailadmin pt-br Ignorando configuração IMAP! +smtp authentication emailadmin pt-br autenticação smtp +smtp options emailadmin pt-br opções smtp +smtp server emailadmin pt-br Servidor SMTP +smtp server name emailadmin pt-br Nome do Servidor SMTP +smtp settings emailadmin pt-br configurações SMTP +smtp-server hostname or ip address emailadmin pt-br Nome ou endereço IP do servidor SMTP +smtp-server port emailadmin pt-br Porta do servidor SMTP +standard emailadmin pt-br Padrão +standard identity emailadmin pt-br Identidade padrão +standard imap server emailadmin pt-br Servidor IMAP padrão +standard pop3 server emailadmin pt-br Servidor POP3 padrão +standard smtp-server emailadmin pt-br Servidor SMTP padrão +starts with emailadmin pt-br Começa com +stationery emailadmin pt-br Artigos de papelaria +successful connected to %1 server%2. emailadmin pt-br Successful ligado ao servidor% 1% 2. +switch back to standard identity to save account. emailadmin pt-br Volte para a identidade padrão para salvar conta. +templates emailadmin pt-br Templates +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin pt-br O servidor IMAP não parece suportar o método de autenticação selecionado. Por favor contacte o administrador do seu sistema. +the mimeparser can not parse this message. emailadmin pt-br O mimeparser não pode analisar essa mensagem. +this php has no imap support compiled in!! emailadmin pt-br Este PHP não tem suporte a IMAP compilado nele! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin pt-br Para usar uma conexão TLS, você deve estar rodando PHP versão 5.1.0 ou maior. +unexpected response from server to authenticate command. emailadmin pt-br Resposta inesperada do servidor para o comando AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin pt-br Resposta inesperada do servidor para a resposta Digest-MD5. +unexpected response from server to login command. emailadmin pt-br Resposta inesperada do servidor para o comando LOGIN. +unknown imap response from the server. server responded: %s emailadmin pt-br Resposta desconhecida do servidor IMAP. Resposta do servidor: %s +unsupported action '%1' !!! emailadmin pt-br Ação não suportada: '%1' !!! +update current email address: emailadmin pt-br Atualizar e-mail atual: +use default emailadmin pt-br Usar o padrão +use ldap defaults emailadmin pt-br usar padrões LDAP +use predefined username and password defined below emailadmin pt-br Usar usuário e senha pré-definidos abaixo +use smtp auth emailadmin pt-br usar SMTP Autenticado +use tls authentication emailadmin pt-br Usar autenticação TLS +use tls encryption emailadmin pt-br Usar encriptação TLS +use users email-address (as seen in useraccount) emailadmin pt-br Use usuários endereço de e-mail, conforme definido na conta do usuário +user can edit forwarding address emailadmin pt-br usuário pode editar endereço de encaminhamento +userid@domain eg. u1234@domain emailadmin pt-br Domínio @ UserID por exemplo. u1234 @ domínio +username (standard) emailadmin pt-br nome do usuário (padrão) +username/password defined by admin emailadmin pt-br Nome de usuário/Senha definidos pelo administrador +username@domainname (virtual mail manager) emailadmin pt-br nomedousuario@nomedodominio (Gerenciador Virtual Mail) +users can define their own emailaccounts emailadmin pt-br Os usuários podem definir sua próprias contas de correio +users can define their own identities emailadmin pt-br usuários podem definir suas próprias identidades +users can define their own signatures emailadmin pt-br usuários podem definir suas próprias assinaturas +users can utilize these stationery templates emailadmin pt-br Os usuários podem utilizar esses modelos de papel de carta +using data from mozilla ispdb for provider %1 emailadmin pt-br Usando dados da Mozilla ISPDB do fornecedor% 1 +virtual mail manager emailadmin pt-br Gerenciador Virtual Mail +you have received a new message on the emailadmin pt-br Você recebeu uma nova mensagem na +your message to %1 was displayed. emailadmin pt-br A sua mensagem para% 1 foi exibido. +your name emailadmin pt-br Seu nome diff --git a/admin/lang/egw_pt.lang b/admin/lang/egw_pt.lang index 9aa46209f1..6c7c6f8c2f 100644 --- a/admin/lang/egw_pt.lang +++ b/admin/lang/egw_pt.lang @@ -466,3 +466,108 @@ you must enter an application title. admin pt É necessário atribuir um título you must select a file type admin pt É necessário seleccionar um tipo de ficheiro you will need to remove the subcategories before you can delete this category admin pt É necessário remover as subcategorias para poder eliminar esta categoria ! your session could not be verified. admin pt A sua sessão expirou +(no subject) emailadmin pt (sem assunto) +add profile emailadmin pt Adicionar perfil +admin dn emailadmin pt DN do administrador +admin password emailadmin pt Senha do administrador +admin username emailadmin pt Nome do utilizador do administrador +advanced options emailadmin pt Opções avançadas +alternate email address emailadmin pt Endereço de correio electrónico alternativo +any application emailadmin pt Qualquer aplicação +any group emailadmin pt Qualquer grupo +can be used by application emailadmin pt Pode ser utilizado pela aplicação +can be used by group emailadmin pt Pode ser utilizado pelo grupo +continue emailadmin pt Continuar +could not append message: emailadmin pt Não foi possível anexar Mensagem: +create new account emailadmin pt criar nova conta +cyrus imap server emailadmin pt Servidor IMAP Cyrus +cyrus imap server administration emailadmin pt Administração do servidor IMAP Cyrus +default emailadmin pt Por omissão +deliver extern emailadmin pt Entrega externa +displaying html messages is disabled emailadmin pt exibir mensagens em HTML é desativada +displaying plain messages is disabled emailadmin pt exibição de mensagens simples é desativado +do you really want to delete this profile emailadmin pt Deseja relamente eliminar este perfil +domainname emailadmin pt Nome de domínio +edit email settings emailadmin pt Editar configurações do correio electrónico +email account active emailadmin pt Conta de correio electrónico activa +email address emailadmin pt Endereço de correio electrónico +enable cyrus imap server administration emailadmin pt Activar administração do servidor IMAP Cyrus +enable sieve emailadmin pt Activar Sieve +encryption settings emailadmin pt Definições de cifragem +enter your default mail domain (from: user@domain) emailadmin pt Insira o seu domínio de correio electrónico por omissão (de: utilizador@domínio) +entry saved emailadmin pt Registo guardado +error saving the entry!!! emailadmin pt Erro ao guardar o registo!!! +event details follow emailadmin pt Seguem detalhes do evento +file rejected, no %2. is:%1 emailadmin pt Arquivo rejeitado, sem% 2. É: 1% +forward also to emailadmin pt Reencaminhar também para +forward email's to emailadmin pt Reencaminhar mensagens para +forward only emailadmin pt Reencaminhar apenas +global options emailadmin pt Opções gerais +hostname or ip emailadmin pt Nome do host ou IP +if different from email address emailadmin pt se for diferente do endereço de email +imap admin password admin pt Senha do administrador IMAP +imap admin user admin pt Utilizador do administrador IMAP +imap c-client version < 2001 emailadmin pt Versão C-Client IMAP < 2001 +imap server emailadmin pt Servidor IMAP +imap server hostname or ip address emailadmin pt Nome do servidor ou endereço IP do servidor IMAP +imap server logintyp emailadmin pt Tipo de acesso do servidor IMAP +imap server port emailadmin pt Porto do servidor IMAP +imap/pop3 server name emailadmin pt Nome do servidor IMAP/POP3 +importance emailadmin pt Importância +in mbyte emailadmin pt em MBytes +ldap basedn emailadmin pt Base DN LDAP +ldap server emailadmin pt Servidor LDAP +ldap server accounts dn emailadmin pt DN das contas de servidor LDAP +ldap server admin dn emailadmin pt DN do administrador de servidor LDAP +ldap server admin password emailadmin pt Senha do administrador de servidor LDAP +ldap server hostname or ip address emailadmin pt Nome do servidor ou endereço IP do servidor LDAP +ldap settings emailadmin pt Configurações do LDAP +leave empty for no quota emailadmin pt Deixar vazio para quota sem limites +mail settings admin pt Configurações do correio electrónico +name of organisation emailadmin pt Nome da empresa +no alternate email address emailadmin pt Sem endereço de correio electrónico alternativo +no forwarding email address emailadmin pt Sem endereço de correio electrónico para reencaminhamento +no plain text part found emailadmin pt nenhuma parte de texto simples encontrado +order emailadmin pt Ordem +organisation emailadmin pt Empresa +pop3 server hostname or ip address emailadmin pt Nome do servidor ou endereço IP do servidor POP3 +pop3 server port emailadmin pt Porto de servidor POP3 +postfix with ldap emailadmin pt Postfix com LDAP +profile access rights emailadmin pt Perfil de direitos de acesso +profile list emailadmin pt Lista de perfis +profile name emailadmin pt Nome do perfil +qmaildotmode emailadmin pt Quota do correio electrónico no modo Idot +quota settings emailadmin pt Configurações da quota +quota size in mbyte emailadmin pt tamanho da quota em MBytes +remove emailadmin pt Remover +required pear class mail/mimedecode.php not found. emailadmin pt Classe PEAR requeridos Correio / mimeDecode.php não encontrado. +select type of imap/pop3 server emailadmin pt Seleccionar tipo de servidor IMAP/POP3 +select type of smtp server emailadmin pt Seleccionar tipo de servidor SMTP +server settings emailadmin pt Definições do servidor +sieve server hostname or ip address emailadmin pt Nome do servidor ou endereço IP do servidor Sieve +sieve server port emailadmin pt Porto do servidor Sieve +sieve settings emailadmin pt Configurações do SIeve +smtp authentication emailadmin pt Autenticação SMTP +smtp options emailadmin pt Opções do SMTP +smtp server name emailadmin pt Nome do servidor SMTP +smtp settings emailadmin pt Definições do SMTP +smtp-server hostname or ip address emailadmin pt Nome do servidor ou endereço IP do servidor SMTP +smtp-server port emailadmin pt Porto do servidor SMTP +standard emailadmin pt Por omissão +standard imap server emailadmin pt Servidor IMAP por omissão +standard pop3 server emailadmin pt Servidor POP3 por omissão +standard smtp-server emailadmin pt Servidor SMTP por omissão +templates emailadmin pt Templates +the mimeparser can not parse this message. emailadmin pt O mimeparser não pode analisar estas mensagem. +this php has no imap support compiled in!! emailadmin pt O PHP não tem suporte de IMAP compilado!! +use default emailadmin pt Utilizar definições por omissão +use ldap defaults emailadmin pt Utilizar definições por omissão do LDAP +use smtp auth emailadmin pt Utilizar autenticação SMTP +use tls authentication emailadmin pt Utilizar autenticação TLS +use tls encryption emailadmin pt Utilizar cifra TLS +user can edit forwarding address emailadmin pt O utilizador pode editar endereços reencaminhados +username (standard) emailadmin pt Nome de utilizador (por omissão) +username@domainname (virtual mail manager) emailadmin pt utilizador@dominio (Gestor virtual de correio electrónico) +users can define their own emailaccounts emailadmin pt Os utilizadores podem definir as suas contas de correio electrónico +virtual mail manager emailadmin pt Gestor virtual de correio electrónico +your name emailadmin pt O seu nome diff --git a/admin/lang/egw_ru.lang b/admin/lang/egw_ru.lang index 44ce217354..3ee5a9df1d 100644 --- a/admin/lang/egw_ru.lang +++ b/admin/lang/egw_ru.lang @@ -664,3 +664,178 @@ you need to select some users first! admin ru Сначала нужно выбр you will need to remove the subcategories before you can delete this category admin ru Категорию можно удалить только поÑле ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð²Ñех её подкатегорий! your last submission was less then %1 days ago! admin ru ПоÑледний ввод был менее %1 дней назад! your session could not be verified. admin ru СеÑÑÐ¸Ñ Ð½Ðµ может быть проверена +%1 entries deleted. emailadmin ru %1 запиÑи удалены. +(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) emailadmin ru (клаÑÑ IMAP должен поддерживать возможноÑÑ‚ÑŒ запроÑа ÑоответÑтвующего параметра конфигурации и передачи Ñерверу IMAP как квоту по умолчанию) +(no subject) emailadmin ru (без темы) +account '%1' not found !!! emailadmin ru Ð£Ñ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ '%1' не найдена !!! +active templates emailadmin ru Ðктивные шаблоны +add new email address: emailadmin ru Добавить новый Ð°Ð´Ñ€ÐµÑ Ñл. почты: +add profile emailadmin ru Добавить Профиль +admin dn emailadmin ru админиÑтратор домена +admin password emailadmin ru Пароль админиÑтратора +admin username emailadmin ru Ð˜Ð¼Ñ Ð²Ñ…Ð¾Ð´Ð° админиÑтратора +advanced options emailadmin ru РаÑширенные наÑтройки +alternate email address emailadmin ru Добавочный Ð°Ð´Ñ€ÐµÑ Ñл. почты +any application emailadmin ru Любое приложение +any group emailadmin ru Ð›ÑŽÐ±Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð° +any user emailadmin ru любой пользователь +back to admin/grouplist emailadmin ru Ðазад к ÐдминиÑтрированию/СпиÑку групп +back to admin/userlist emailadmin ru Ðазад к ÐдминиÑтрированию/СпиÑку пользователей +bad login name or password. emailadmin ru Ðеверное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ пароль. +bad or malformed request. server responded: %s emailadmin ru Ðеверный или нераÑпознанный запроÑ. Ответ Сервера: %s +bad request: %s emailadmin ru Ðеверный запроÑ: %s +can be used by application emailadmin ru Может быть иÑпользовано приложением +can be used by group emailadmin ru Может быть иÑпользовано группой +can be used by user emailadmin ru может быть иÑпользовано пользователем +connection dropped by imap server. emailadmin ru Соединение разорвано Ñервером IMAP +continue emailadmin ru Продолжить +could not append message: emailadmin ru Ðе могу добавить Ñообщение +could not complete request. reason given: %s emailadmin ru Ðе могу завершить запроÑ. Ð’Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð°Ñ ÐŸÑ€Ð¸Ñ‡Ð¸Ð½Ð°: %s +could not open secure connection to the imap server. %s : %s. emailadmin ru Ðе могу уÑтановить защищенное Ñоединение Ñ Ñервером IMAP. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin ru CRAM-MD5 и DIGEST-MD5 требуют уÑтановленного пакета Auth_SASL. +cyrus imap server emailadmin ru IMAP Ñервер Cyrus +cyrus imap server administration emailadmin ru админиÑтрирование IMAP Ñервера Cyrus +default emailadmin ru по умолчанию +deliver extern emailadmin ru доÑтавить внешний +displaying html messages is disabled emailadmin ru Показ Ñообщений как HTML отключен +displaying plain messages is disabled emailadmin ru Показ Ñообщений как текÑÑ‚ отключен. +do not validate certificate emailadmin ru не проверÑÑ‚ÑŒ Ñертификат +do you really want to delete this profile emailadmin ru Ð’Ñ‹ уверены, что хотите удалить Ñтот Профиль +do you really want to reset the filter for the profile listing emailadmin ru Ð’Ñ‹ уверены что хотите очиÑтить фильтр Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÑпиÑка Профилей +domainname emailadmin ru Ð˜Ð¼Ñ Ð”Ð¾Ð¼ÐµÐ½Ð° +edit email settings emailadmin ru Редактировать наÑтройки почты +email account active emailadmin ru Ð£Ñ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ включена +email address emailadmin ru ÐÐ´Ñ€ÐµÑ Ñл. почты +email settings common ru ÐаÑтройки почты +emailadmin emailadmin ru ÐдминиÑтрирование Почты +emailadmin: group assigned profile common ru ÐдминиÑтрирование почты: Ðазначение Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹. +emailadmin: user assigned profile common ru ÐдминиÑтрирование почты: ÐÐ°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ +enable cyrus imap server administration emailadmin ru включить админиÑтрирование IMAP Ñервера Cyrus +enable sieve emailadmin ru Включить Sieve +encrypted connection emailadmin ru зашифрованное Ñоединение +encryption settings emailadmin ru ÐаÑтройки ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +enter your default mail domain (from: user@domain) emailadmin ru Укажите ваш почтовый домен по умолчанию (от: user@domain) +entry saved emailadmin ru ЗапиÑÑŒ Ñохранена. +error connecting to imap server. %s : %s. emailadmin ru Ошибка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ Ñервером IMAP. %s : %s. +error connecting to imap server: [%s] %s. emailadmin ru Ошибка ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ Ñервером IMAP: [%s] %s. +error deleting entry! emailadmin ru Ошибка при удалении запиÑи! +error saving account! emailadmin ru Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ ÑƒÑ‡Ñ‘Ñ‚Ð½Ð¾Ð¹ запиÑи! +error saving the entry!!! emailadmin ru Ошибка при Ñохранении запиÑи! +event details follow emailadmin ru Детали ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ Ñледуют +file rejected, no %2. is:%1 emailadmin ru Файл отвергнут, no %2. Is:%1 +filtered by account emailadmin ru отфильтровано по Учетной запиÑи +filtered by group emailadmin ru отфильтровано по группе +forward also to emailadmin ru ПереÑлать также в +forward email's to emailadmin ru ПереÑлать пиÑьма в +forward only emailadmin ru Только переÑлать +global options emailadmin ru Общие наÑтройки +if using ssl or tls, you must have the php openssl extension loaded. emailadmin ru При иÑпользовании SSL или TLS, у Ð²Ð°Ñ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть уÑтановлен PHP Ñ Ð·Ð°Ð³Ñ€ÑƒÐ¶ÐµÐ½Ð½Ñ‹Ð¼ раÑширением openssl +imap admin password admin ru пароль админиÑтратора IMAP +imap admin user admin ru Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратора IMAP +imap c-client version < 2001 emailadmin ru ВерÑÐ¸Ñ C-клиента IMAP < 2001 +imap server emailadmin ru Сервер IMAP +imap server closed the connection. emailadmin ru Сервер IMAP разорвал Ñоединение. +imap server closed the connection. server responded: %s emailadmin ru Сервер IMAP разорвал Ñоединение. Сервер Ñообщил: %s +imap server hostname or ip address emailadmin ru Ð˜Ð¼Ñ Ñервера IMAP или его ip-Ð°Ð´Ñ€ÐµÑ +imap server logintyp emailadmin ru Тип входа Ñервера IMAP +imap server name emailadmin ru Ð˜Ð¼Ñ Ñервера imap +imap server port emailadmin ru Порт Ñервера IMAP +imap/pop3 server name emailadmin ru Ð˜Ð¼Ñ Ñервера IMAP/POP3 +importance emailadmin ru Значение +in mbyte emailadmin ru Ð’ мегабайтах +inactive emailadmin ru Ðеактивно +ldap basedn emailadmin ru Ðачальный DN LDAP +ldap server emailadmin ru Сервер LDAP +ldap server accounts dn emailadmin ru DN учетных запиÑей Ñервера LDAP +ldap server admin dn emailadmin ru DN админиÑтратора Ñервера LDAP +ldap server admin password emailadmin ru Пароль админиÑтратора Ñервера LDAP +ldap server hostname or ip address emailadmin ru Ð˜Ð¼Ñ Ñервера LDAP или его ip-Ð°Ð´Ñ€ÐµÑ +ldap settings emailadmin ru ÐаÑтройки LDAP +leave empty for no quota emailadmin ru ОÑтавьте пуÑтым Ð´Ð»Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ ÐºÐ²Ð¾Ñ‚ +mail settings admin ru ÐаÑтройки почты +manage stationery templates emailadmin ru Управление бланками шаблонов +mb used emailadmin ru ИÑпоьлзуетÑÑ MB +name of organisation emailadmin ru Ðазвание организации +no alternate email address emailadmin ru Ðет дополнительного Ñл. адреÑа +no encryption emailadmin ru Без ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +no forwarding email address emailadmin ru Ðет адреÑа Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ +no message returned. emailadmin ru Ðет ответа +no plain text part found emailadmin ru Ðе найдена текÑÑ‚Ð¾Ð²Ð°Ñ Ñ‡Ð°ÑÑ‚ÑŒ +no supported imap authentication method could be found. emailadmin ru Поддерживаемый метод авторизации IMAP не найден +order emailadmin ru УпорÑдочить +organisation emailadmin ru ÐžÑ€Ð³Ð°Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ +plesk can't rename users --> request ignored emailadmin ru Plesk не может переименовать пользователей --> Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ð½Ð¾Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½ +plesk imap server (courier) emailadmin ru Сервер IMAP Plesk (Courier) +plesk mail script '%1' not found !!! emailadmin ru Ðе найден Ñкрипт '%1' почты Plesk!!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin ru Plesk требует длины Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ менее 5 Ñимволов, не Ñодержащий имени аккаунта --> пароль ÐЕ уÑтановлен!!! +plesk smtp-server (qmail) emailadmin ru Plesk SMTP Ñервер (Qmail) +pop3 server hostname or ip address emailadmin ru Ð˜Ð¼Ñ ÐºÐ¾Ð¼Ð¿ÑŒÑŽÑ‚ÐµÑ€Ð° или ip-Ð°Ð´Ñ€ÐµÑ Ñервера POP3 +pop3 server port emailadmin ru Порт Ñервера POP3 +port emailadmin ru Порт +postfix with ldap emailadmin ru Postfix Ñ LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin ru Обработка файла %1 прервана. Ðе удалоÑÑŒ удовлетворить оÑновные ограничениÑ. +profile access rights emailadmin ru права доÑтупа к профилю +profile is active emailadmin ru профиль активен +profile list emailadmin ru СпиÑок Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ +profile name emailadmin ru Ðазвание Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ +qmaildotmode emailadmin ru режим qmaildot +quota settings emailadmin ru ÐаÑтройки ÐºÐ²Ð¾Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ +quota size in mbyte emailadmin ru Размер квоты в МБ +remove emailadmin ru Удалить +required pear class mail/mimedecode.php not found. emailadmin ru Ðеобходимый PEAR class Mail / mimeDecode.php не найден. +reset filter emailadmin ru ОчиÑтить фильтр +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin ru Ðевозможно Ñохранить Ñообщение %1 . Ðе могу Ñохранить Ñообщение в папку %2 по причине: %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin ru Сохранение ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ %1 не удалоÑÑŒ. Папка Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ %2 не ÑущеÑтвует. +select type of imap server emailadmin ru Выбор типа Ñервера IMAP +select type of imap/pop3 server emailadmin ru Выбор типа Ñервера IMAP/POP3 +select type of smtp server emailadmin ru Выбор типа Ñервера SMTP +send using this email-address emailadmin ru Отправить Ñ Ñтого адреÑа eMail +server settings emailadmin ru ÐаÑтройки Ñервера +sieve server hostname or ip address emailadmin ru Ð˜Ð¼Ñ ÐºÐ¾Ð¼Ð¿ÑŒÑŽÑ‚ÐµÑ€Ð° или IP Ñервера Sieve +sieve server port emailadmin ru Порт Ñервера Sieve +sieve settings emailadmin ru ÐаÑтройки Sieve +smtp authentication emailadmin ru ÐÐ²Ñ‚Ð¾Ñ€Ð¸Ð·Ð°Ñ†Ð¸Ñ SMTP +smtp options emailadmin ru Параметры SMTP +smtp server name emailadmin ru Ð˜Ð¼Ñ Ñервера SMTP +smtp settings emailadmin ru УÑтановки SMTP +smtp-server hostname or ip address emailadmin ru Ð˜Ð¼Ñ ÐºÐ¾Ð¼Ð¿ÑŒÑŽÑ‚ÐµÑ€Ð° или IP-Ð°Ð´Ñ€ÐµÑ Ñервера SMTP +smtp-server port emailadmin ru Порт Ñервера SMTP +standard emailadmin ru Стандартный +standard imap server emailadmin ru Стандартный IMAP Ñервер +standard pop3 server emailadmin ru Стандартный POP3 Ñервер +standard smtp-server emailadmin ru Стандартный SMTP Ñервер +starts with emailadmin ru ÐачинаетÑÑ Ñ +stationery emailadmin ru Бланк +templates emailadmin ru Шаблоны +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin ru Сервер IMAP не Ñообщил о поддержке выбранного метода авторизации. ПожалуйÑта ÑвÑжитеÑÑŒ Ñо Ñвоим ÑиÑтемным админиÑтратором. +the mimeparser can not parse this message. emailadmin ru Обработчик MIME не может обработать Ñто Ñообщение. +this php has no imap support compiled in!! emailadmin ru Эта верÑÐ¸Ñ PHP Ñобрана без поддержки IMAP!! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin ru Ð”Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ TLS, у Ð²Ð°Ñ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть запущен PHP 5.1.0 или выше. +unexpected response from server to authenticate command. emailadmin ru ÐепредуÑмотренный ответ Ñервера на команду AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin ru ÐепредуÑмотренный ответ Ñервера на Ñигнал Digest-MD5. +unexpected response from server to login command. emailadmin ru ÐепредуÑмотренный ответ Ñервера на команду LOGIN. +unknown imap response from the server. server responded: %s emailadmin ru ÐеизвеÑтный IMAP-ответ от Ñервера. Сервер Ñообщил: %s +unsupported action '%1' !!! emailadmin ru Ðеподдерживаемое дейÑтвие '%1' !!! +update current email address: emailadmin ru Обновить текущий Ð°Ð´Ñ€ÐµÑ Ñл.почты: +use default emailadmin ru ИÑпользуйте значение по умолчанию +use ldap defaults emailadmin ru ИÑпользовать наÑтройки LDAP по умолчанию +use predefined username and password defined below emailadmin ru ИÑпользовать предопределенное Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ пароль указанный ниже +use smtp auth emailadmin ru ИÑпользовать авторизацию SMTP +use tls authentication emailadmin ru ИÑпользовать авторизацию TLS +use tls encryption emailadmin ru ИÑпользовать шифрование TLS +use users email-address (as seen in useraccount) emailadmin ru ИÑпользуйте адреÑа Ñл.почты пользователÑ, как указано в наÑтройках аккаунта пользователÑ. +user can edit forwarding address emailadmin ru Ползователь может редактировать Ð°Ð´Ñ€ÐµÑ Ð¿ÐµÑ€ÐµÑылки. +userid@domain eg. u1234@domain emailadmin ru UserId@domain например u1234@domain +username (standard) emailadmin ru Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ (Ñтандартное) +username/password defined by admin emailadmin ru Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ/Пароль уÑтановлены админиÑтратором +username@domainname (virtual mail manager) emailadmin ru username@domainname (Менеджер Виртуальной почты) +users can define their own emailaccounts emailadmin ru Пользователь может назначать Ñвои ÑобÑтвенные учетные запиÑи Ñл. почты. +users can define their own identities emailadmin ru Пользователи могут уÑтанавливать Ñвои ÑобÑтвенные данные идентификации +users can define their own signatures emailadmin ru Пользователи могут уÑтанавливать Ñвои ÑобÑтвенные подпиÑи +users can utilize these stationery templates emailadmin ru Пользователи могут иÑпользовать Ñти бланки шаблонов +vacation messages with start- and end-date require an admin account to be set emailadmin ru Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð°Ð²Ñ‚Ð¾Ð¾Ñ‚Ð²ÐµÑ‚Ñ‡Ð¸ÐºÐ° Ñ Ð´Ð°Ñ‚Ð°Ð¼Ð¸ начала и Ð¾ÐºÐ¾Ð½Ñ‡Ð°Ð½Ð¸Ñ Ñ‚Ñ€ÐµÐ±ÑƒÑŽÑ‚ уÑтановленной учетной запиÑи админиÑтратора! +virtual mail manager emailadmin ru Менеджер Виртуальной почты +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin ru Да, иÑпользовать учётные данные, указанные ниже только Ð´Ð»Ñ Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ð¹ и напоминаний, в оÑтальных ÑлучаÑÑ… иÑпользовать учётные данные текущего пользователÑ. +yes, use credentials of current user or if given credentials below emailadmin ru Да, иÑпользовать учётные данные текущего пользователÑ, или еÑли указаны учётные данные ниже. +you have received a new message on the emailadmin ru Ð’Ñ‹ получили ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ð° +your name emailadmin ru Ваше Ð¸Ð¼Ñ diff --git a/admin/lang/egw_rw.lang b/admin/lang/egw_rw.lang index 0d67d39481..61884087a0 100644 --- a/admin/lang/egw_rw.lang +++ b/admin/lang/egw_rw.lang @@ -1,3 +1,4 @@ country admin rw igihugu email address admin rw email re-enter password admin rw Ongera wandike Urufunguzo +email address emailadmin rw email diff --git a/admin/lang/egw_sk.lang b/admin/lang/egw_sk.lang index eac1d4a4e1..b5204b663a 100644 --- a/admin/lang/egw_sk.lang +++ b/admin/lang/egw_sk.lang @@ -705,3 +705,210 @@ you need to select some users first! admin sk Najprv vyberte nejakého používa you will need to remove the subcategories before you can delete this category admin sk Než odstránite túto kategóriu, musíte odstrániÅ¥ vÅ¡etky podkategórie! your last submission was less then %1 days ago! admin sk Naposledy ste odosielali pred menej než %1 dňami! your session could not be verified. admin sk VaÅ¡u reláciu sa nepodarilo overiÅ¥. +%1 entries deleted. emailadmin sk %1 položiek bolo odstránených. +(imapclass must support this feature by querying the corresponding config value and pass it as defaultquota to the imapserver) emailadmin sk (imapclass musí podporovaÅ¥ túto funkcionalitu - získaÅ¥ prísluÅ¡nú hodnotu a odovzdaÅ¥ ju ako predvolenú kvótu serveru IMAP) +(no subject) emailadmin sk (bez predmetu) +account '%1' not found !!! emailadmin sk ÚÄet '%1' sa nenaÅ¡iel !!! +account deleted. emailadmin sk ÚÄet bol odstránený. +account not found! common sk ÚÄet sa nenaÅ¡iel! +account saved. emailadmin sk ÚÄet bol uložený. +active templates emailadmin sk Aktívne Å¡ablóny +add new email address: emailadmin sk PridaÅ¥ novú E-mailovú adresu: +add profile emailadmin sk PridaÅ¥ profil +admin dn emailadmin sk Správcov dn +admin password emailadmin sk Heslo správcu +admin username emailadmin sk Používateľské meno správcu +advanced options emailadmin sk PokroÄilé možnosti +alternate email address emailadmin sk Alternatívna E-mailová adresa +and logged in emailadmin sk a prihlásený +any application emailadmin sk Ktorákoľvek aplikácia +any group emailadmin sk Ktorákoľvek skupina +any user emailadmin sk Ktorýkoľvek používateľ +back to admin/grouplist emailadmin sk Späť na Správu/Skupiny +back to admin/userlist emailadmin sk Späť na Správu/Používateľov +bad login name or password. emailadmin sk Chybné prihlasovacie meno alebo heslo. +bad or malformed request. server responded: %s emailadmin sk Chybná požiadavka. OdpoveÄ servera: %s +bad request: %s emailadmin sk Chybná požiadavka: %s +can be used by application emailadmin sk Môže byÅ¥ použité aplikáciou +can be used by group emailadmin sk Môže byÅ¥ použité skupinou +can be used by user emailadmin sk Môže byÅ¥ použité používateľom +connection dropped by imap server. emailadmin sk Spojenie preruÅ¡ené IMAP serverom. +connection is not secure! everyone can read eg. your credentials. emailadmin sk Pripojenie NIE je bezpeÄné! Ktokoľvek si môže napr. preÄítaÅ¥ vaÅ¡e prihlasovacie údaje. +continue emailadmin sk PokraÄovaÅ¥ +could not append message: emailadmin sk Nepodarilo sa pripojiÅ¥ správu: +could not complete request. reason given: %s emailadmin sk Nemožno dokonÄiÅ¥ požiadavku. Dôvod: %s +could not open secure connection to the imap server. %s : %s. emailadmin sk Nepodarilo sa nadviazaÅ¥ zabezpeÄené pripojenie k IMAP serveru. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin sk CRAM-MD5 alebo DIGEST-MD5 vyžaduje, aby bol nainÅ¡talovaný balík Auth_SASL. +create new account emailadmin sk VytvoriÅ¥ nový úÄet +create new identity emailadmin sk VytvoriÅ¥ novú identitu +cyrus imap server emailadmin sk Cyrus IMAP Server +cyrus imap server administration emailadmin sk Správa servera Cyrus IMAP +default emailadmin sk Predvolené +delete identity emailadmin sk OdstrániÅ¥ identitu +delete this account emailadmin sk OdstrániÅ¥ tento úÄet +deliver extern emailadmin sk DoruÄiÅ¥ extern +displaying html messages is disabled emailadmin sk Zobrazovanie HTML správ je vypnuté +displaying plain messages is disabled emailadmin sk Zobrazovanie správ ako Äistého textu je vypnuté. +do not validate certificate emailadmin sk NeoverovaÅ¥ certifikát +do you really want to delete this profile emailadmin sk Naozaj chcete odstrániÅ¥ tento profil? +do you really want to reset the filter for the profile listing emailadmin sk Naozaj chcete vynulovaÅ¥ filter pre výpis profilu? +domainname emailadmin sk Názov domény +edit email settings emailadmin sk UpraviÅ¥ nastavenia E-mailu +email account active emailadmin sk E-mailový úÄet je aktívny +email address emailadmin sk E-mailová adresa +email settings common sk Nastavenia E-mailu +emailadmin emailadmin sk EMailAdmin +emailadmin: group assigned profile common sk EMailAdmin: skupinovo priradený profil +emailadmin: user assigned profile common sk EMailAdmin: používateľsky priradený profil +enable cyrus imap server administration emailadmin sk Zapnúť správu servera Cyrus IMAP +enable sieve emailadmin sk Zapnúť Sieve +encrypted connection emailadmin sk Å ifrované spojenie +encryption settings emailadmin sk Nastavenia Å¡ifrovania +enter your default mail domain (from: user@domain) emailadmin sk Zadajte vaÅ¡u predvolenú doménu (z tvaru: user@domain) +entry saved emailadmin sk Položka bola uložená +error connecting to imap server. %s : %s. emailadmin sk Chyba poÄas pripájania k IMAP serveru. %s : %s. +error connecting to imap server: [%s] %s. emailadmin sk Chyba poÄas pripájania k IMAP serveru: [%s] %s. +error deleting entry! emailadmin sk Chyba pri odstraňovaní položky! +error saving account! emailadmin sk Chyba pri ukladaní úÄtu! +error saving the entry!!! emailadmin sk Chyba pri ukladaní položky!!! +error, no username! emailadmin sk Chýba používateľské meno! +event details follow emailadmin sk Podrobnosti o udalosti: +failed to delete account! emailadmin sk Nepodarilo sa odstrániÅ¥ úÄet! +file rejected, no %2. is:%1 emailadmin sk Súbor odmietnutý, žiadny %2. Je:%1 +filtered by account emailadmin sk Filtrované podľa ÚÄtu +filtered by group emailadmin sk Filtrované podľa Skupiny +forward also to emailadmin sk Tiež preposlaÅ¥ (komu) +forward email's to emailadmin sk PreposlaÅ¥ emaily (komu) +forward only emailadmin sk PreposlaÅ¥ iba +forward only disables imap mailbox / storing of mails and just forwards them to given address. emailadmin sk Preposielanie iba vypne IMAP schránku / ukladanie správ a jednoducho ich prepoÅ¡le na uvedenú adresu. +global options emailadmin sk Globálne možnosti +hostname or ip emailadmin sk Názov stroja alebo IP +how username get constructed emailadmin sk Z Äoho sa skladá používateľské meno +identity deleted emailadmin sk Identita bola odstránená +identity saved. emailadmin sk Identita bola uložená. +if different from email address emailadmin sk ak sa líši od e-mailovej adresy +if using ssl or tls, you must have the php openssl extension loaded. emailadmin sk Ak používate SSL alebo TLS, musíte maÅ¥ nahraté rozšírenie PHP openssl. +if you specify port 5190 as sieve server port, you enforce ssl for sieve (server must support that) emailadmin sk Ak urÄíte port 5190 pre Sieve, vynútite tým SSL pre Sieve (je potrebná podpora na strane servera) +imap admin password admin sk Heslo správcu IMAP +imap admin user admin sk Používateľ pre správu IMAP +imap c-client version < 2001 emailadmin sk IMAP C-klient verzia < 2001 +imap server emailadmin sk IMAP server +imap server closed the connection. emailadmin sk IMAP server ukonÄil spojenie. +imap server closed the connection. server responded: %s emailadmin sk IMAP server ukonÄil spojenie. OdpoveÄ servera: %s +imap server hostname or ip address emailadmin sk Názov (hostname) alebo IP adresa IMAP servera +imap server logintyp emailadmin sk Typ prihlásenia IMAP servera +imap server name emailadmin sk Názov IMAP servera +imap server port emailadmin sk Port IMAP servera +imap/pop3 server name emailadmin sk názov IMAP/POP3 servera +importance emailadmin sk DôležitosÅ¥ +in mbyte emailadmin sk v Megabajtoch +inactive emailadmin sk Neaktívne +ldap basedn emailadmin sk LDAP basedn +ldap server emailadmin sk LDAP server +ldap server accounts dn emailadmin sk DN úÄtov LDAP servera +ldap server admin dn emailadmin sk DN správcu LDAP servera +ldap server admin password emailadmin sk Heslo správcu LDAP servera +ldap server hostname or ip address emailadmin sk Názov (hostname) alebo IP adresa LDAP servera +ldap settings emailadmin sk Nastavenia LDAP +leave empty for no quota emailadmin sk Ak nechcete kvóty, ponechajte prázdne +mail settings admin sk Nastavenia PoÅ¡ty +manual entry emailadmin sk RuÄná položka +name of organisation emailadmin sk Názov organizácie +no alternate email address emailadmin sk Bez alternatívnej E-mailovej adresy +no encryption emailadmin sk Bez Å¡ifrovania +no forwarding email address emailadmin sk Bez emailovej adresy pre preposielanie +no message returned. emailadmin sk Žiadne správy sa nevrátili. +no plain text part found emailadmin sk Nebola nájdená žiadna Äisto textová ÄasÅ¥ +no sieve support detected, either fix configuration manually or leave it switched off. emailadmin sk Nezistila sa podpora Sieve, prosím opravte nastavenia ruÄne alebo ponechajte voľbu vypnutú. +no supported imap authentication method could be found. emailadmin sk NenaÅ¡iel som žiadnu podporovanú overovaciu metódu IMAP. +order emailadmin sk Poradie +organisation emailadmin sk Organizácia +plesk can't rename users --> request ignored emailadmin sk Plesk používatelia sa nedajú premenovaÅ¥ --> požiadavka ignorovaná +plesk imap server (courier) emailadmin sk Plesk IMAP Server (Courier) +plesk mail script '%1' not found !!! emailadmin sk Plesk mail script '%1' sa nenaÅ¡lo !!! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin sk Plesk vyžaduje, aby heslá mali aspoň 5 znakov a neobsahovali názov úÄtu --> heslo NEBOLO nastavené!!! +plesk smtp-server (qmail) emailadmin sk Plesk SMTP-Server (qmail) +pop3 server hostname or ip address emailadmin sk Názov (hostname) alebo IP adresa POP3 servera +pop3 server port emailadmin sk Port POP3 servera +port emailadmin sk Port +postfix with ldap emailadmin sk Postfix + LDAP +processing of file %1 failed. failed to meet basic restrictions. emailadmin sk Spracovanie súboru %1 zlyhalo. Nesplnil základné obmedzenia. +profile access rights emailadmin sk Prístupové práva profilu +profile is active emailadmin sk Profil je aktívny +profile list emailadmin sk Zoznam profilov +profile name emailadmin sk Názov profilu +qmaildotmode emailadmin sk qmail bodkový režim +quota settings emailadmin sk Nastavenia kvóty +quota size in mbyte emailadmin sk VeľkosÅ¥ kvóty v Megabajtoch +relay access checked emailadmin sk RelaÄný prístup bol skontrolovaný +remove emailadmin sk OdstrániÅ¥ +required pear class mail/mimedecode.php not found. emailadmin sk NenaÅ¡la sa požadovaná trieda PEAR Mail / mimeDecode.php +reset filter emailadmin sk VynulovaÅ¥ filter +save of message %1 failed. could not save message to folder %2 due to: %3 emailadmin sk Uloženie správy %1 zlyhalo. Nepodarilo sa uložiÅ¥ správu do prieÄinka %2 z dôvodu: %3 +saving of message %1 failed. destination folder %2 does not exist. emailadmin sk Ukladanie správy %1 zlyhalo. Cieľový prieÄinok %2 neexistuje. +secure connection emailadmin sk BezpeÄné pripojenie +select type of imap server emailadmin sk Vyberte typ IMAP servera +select type of imap/pop3 server emailadmin sk Vyberte typ IMAP/POP3 servera +select type of smtp server emailadmin sk Vyberte typ SMTP servera +send using this email-address emailadmin sk OdoslaÅ¥ pomocou tejto e-mailovej adresy +server settings emailadmin sk Nastavenia servera +sieve server hostname or ip address emailadmin sk Názov (hostname) alebo IP Sieve servera +sieve server port emailadmin sk Nort Sieve servera +sieve settings emailadmin sk Nastavenia Sieve +skip imap emailadmin sk VynechaÅ¥ IMAP +skipping imap configuration! emailadmin sk Vynechávam nastavenia IMAP! +smtp authentication emailadmin sk SMTP overovanie +smtp options emailadmin sk SMTP možnosti +smtp server emailadmin sk SMTP server +smtp server name emailadmin sk Názov SMTP servera +smtp settings emailadmin sk SMTP nastavenia +smtp-server hostname or ip address emailadmin sk Názov (hostname) alebo IP adresa SMTP servera +smtp-server port emailadmin sk Port SMTP servera +standard emailadmin sk Å tandard +standard identity emailadmin sk Å tandardná identita +standard imap server emailadmin sk Å tandardný IMAP server +standard pop3 server emailadmin sk Å tandardný POP3 server +standard smtp-server emailadmin sk Å tandardný SMTP server +starts with emailadmin sk ZaÄaÅ¥ s +successful connected to %1 server%2. emailadmin sk Pripojenie na %1 server %2 bolo úspeÅ¡ne nadviazané. +switch back to standard identity to save account. emailadmin sk Prepnúť naspäť na Å¡tandardnú identitu pre uloženie úÄtu. +switch back to standard identity to save other account data. emailadmin sk Prepnúť naspäť na Å¡tandardnú identitu pre uloženie údajov úÄtu. +templates emailadmin sk Å ablóny +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin sk Tento IMAP server, zdá sa, nepodporuje zvolenú overovaciu metódu. Prosím kontaktujte správcu systému. +the mimeparser can not parse this message. emailadmin sk Analyzátor MIME nedokázal spracovaÅ¥ túto správu. +this is not a personal mail account!\n\naccount will be deleted for all users!\n\nare you really sure you want to do that? emailadmin sk Toto NIE je osobný poÅ¡tový úÄet!\n\nÚÄet bude ostránený pre VÅ ETKÃCH používateľov!\n\nSte si istí že to chcete urobiÅ¥? +this php has no imap support compiled in!! emailadmin sk Toto PHP nemá zakompilovanú podporu pre IMAP !! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin sk Ak chcete používaÅ¥ pripojenie TLS, musíte fungovaÅ¥ na verzii PHP 5.1.0 alebo vyÅ¡Å¡ej. +unexpected response from server to authenticate command. emailadmin sk NeoÄakávaná odpoveÄ od servera na príkaz AUTENTICATE. +unexpected response from server to digest-md5 response. emailadmin sk NeoÄakávaná odpoveÄ od servera na Digest-MD5 odpoveÄ. +unexpected response from server to login command. emailadmin sk NeoÄakávaná odpoveÄ od servera na príkaz LOGIN. +unknown imap response from the server. server responded: %s emailadmin sk Neznáma IMAP odpoveÄ od servera. Server odpovedal: %s +unsupported action '%1' !!! emailadmin sk Nepodporovaná akcia '%1' !!! +update current email address: emailadmin sk AktualizovaÅ¥ súÄasnú E-mailovú adresu: +use default emailadmin sk PoužiÅ¥ predvolené +use ldap defaults emailadmin sk PoužiÅ¥ predvolené hodnoty LDAP +use predefined username and password defined below emailadmin sk PoužiÅ¥ preddefinované používateľské meno a heslo, uvedené nižšie +use smtp auth emailadmin sk PoužiÅ¥ SMTP overovanie +use tls authentication emailadmin sk PoužiÅ¥ TLS overovanie +use tls encryption emailadmin sk PoužiÅ¥ TLS Å¡ifrovanie +use users email-address (as seen in useraccount) emailadmin sk PoužiÅ¥ emailové adresy používateľov (ako vidno v používateľskom úÄte) +user can edit forwarding address emailadmin sk Používateľ môže upraviÅ¥ adresu preposielania +userid@domain eg. u1234@domain emailadmin sk PoužívateľskéID@doména napr. u1234@domain +username (standard) emailadmin sk Používateľské meno (Å¡tandardné) +username specified below for all emailadmin sk Nižšieuvedené používateľské meno pre vÅ¡etkých +username/password defined by admin emailadmin sk Používateľské meno/heslo definované správcom +username@domainname (virtual mail manager) emailadmin sk používateľ@doména (Virtuálny Mail ManaGeR) +users can define their own emailaccounts emailadmin sk Používatelia môžu definovaÅ¥ svoje vlastné E-mailové úÄty +users can define their own identities emailadmin sk Používatelia môžu definovaÅ¥ svoje vlastné identity +users can define their own signatures emailadmin sk Používatelia môžu definovaÅ¥ svoje vlastné podpisy +users can utilize these stationery templates emailadmin sk Používatelia môžu využívaÅ¥ tieto statické Å¡ablóny +using data from mozilla ispdb for provider %1 emailadmin sk Používajú sa údaje z Mozilla ISPDB pre poskytovateľa %1 +vacation messages with start- and end-date require an admin account to be set emailadmin sk Oznámenia o neprítomnosti so zadaným dátumom zaÄiatku a konca vyžadujú,aby bol nastavený úÄet správcu! +virtual mail manager emailadmin sk Virtuálny MAIL ManaGeR +yes, use credentials below only for alarms and notifications, otherwise use credentials of current user emailadmin sk Ãno, použiÅ¥ nižšieuvedené prístupové údaje iba pre upozornenia, inÃ¡Ä použiÅ¥ prístupové údaje aktuálneho používateľa +yes, use credentials of current user or if given credentials below emailadmin sk Ãno, použiÅ¥ prístupové údaje aktuálneho používateľa, alebo prístupové údaje uvedené nižšie ak sú vyplnené +you can use wizard to fix account settings or delete account. emailadmin sk Ohľadom opravy nastavení úÄtu alebo odstránenia úÄtu môžete použiÅ¥ Sprievodcu. +you have received a new message on the emailadmin sk Obdržali ste novú správu ohľadom +you need to specify a forwarding address, when checking "%1"! emailadmin sk KeÄ vyberáte "%1" tak musíte zadaÅ¥ preposielaciu adresu! +your message to %1 was displayed. emailadmin sk VaÅ¡a správa pre %1 bola zobrazená. +your name emailadmin sk VaÅ¡e meno diff --git a/admin/lang/egw_sl.lang b/admin/lang/egw_sl.lang index 4c59138bfe..662df4490f 100644 --- a/admin/lang/egw_sl.lang +++ b/admin/lang/egw_sl.lang @@ -485,3 +485,155 @@ you must select a file type admin sl Izbrati morate tip datoteke you must select at least one group member. admin sl Izbrati morate najmanj enega Älana skupine. you will need to remove the subcategories before you can delete this category admin sl Preden lahko izbriÅ¡ete to kategorijo, morate izbrisati vse podkategorije! your session could not be verified. admin sl VaÅ¡a seja ne more biti preverjena. +(no subject) emailadmin sl (brez zadeve) +account '%1' not found !!! emailadmin sl RaÄun '%1' ni bil najden! +add new email address: emailadmin sl Dodaj nov e-naslov: +add profile emailadmin sl Dodaj profil +admin dn emailadmin sl Oskrbnikov dn +admin password emailadmin sl Oskrbnikovo geslo +admin username emailadmin sl Oskrbnikovo uporabniÅ¡ko ime +advanced options emailadmin sl Napredne izbire +alternate email address emailadmin sl Alternativen E-naslov +any application emailadmin sl Katerakoli aplikacija +any group emailadmin sl Katerakoli skupina +any user emailadmin sl Katerikoli uporabnik +back to admin/grouplist emailadmin sl Nazaj na Admin/Seznam skupin +back to admin/userlist emailadmin sl Nazaj na Admin/Seznam uporabnikov +bad login name or password. emailadmin sl NapaÄno uporabniÅ¡ko ime ali geslo. +bad or malformed request. server responded: %s emailadmin sl NapaÄna ali napaÄno oblikovana zahteva. Odgovor strežnika: %s +bad request: %s emailadmin sl NapaÄna zahteva: %s +can be used by application emailadmin sl Je lahko uporabljen iz aplikacije +can be used by group emailadmin sl Je lahko uporabljen iz skupine +can be used by user emailadmin sl Lahko uporablja uporabnik +connection dropped by imap server. emailadmin sl Strežnik IMAP je prekinil povezavo. +continue emailadmin sl Nadaljuj +could not complete request. reason given: %s emailadmin sl Ne morem dokonÄati zahteve. Podan vzrok: %s +could not open secure connection to the imap server. %s : %s. emailadmin sl Ne morem odpreti varne povezave s strežnikom IMAP. %s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin sl CRAM-MD5 ali DIGEST-MD5 zahteva, da je nameÅ¡Äen paket Auth_SASL. +cyrus imap server emailadmin sl Cyrus IMAP strežnik +cyrus imap server administration emailadmin sl Upravljanje Cyrus IMAP strežnika +default emailadmin sl Privzeto +deliver extern emailadmin sl Zunanja dostava +displaying html messages is disabled emailadmin sl Prikazovanje sporoÄil HTML je onemogoÄeno +do not validate certificate emailadmin sl Ne preverjaj certifikata +do you really want to delete this profile emailadmin sl Ali res želite izbrisati ta profil? +do you really want to reset the filter for the profile listing emailadmin sl Res želite ponastaviti filter za listanje profilov? +domainname emailadmin sl Ime domene +edit email settings emailadmin sl Uredi nastavitve E-poÅ¡te +email account active emailadmin sl Nabiralnik E-poÅ¡te je aktiven +email address emailadmin sl E-naslov +email settings common sl Nastavitve E-poÅ¡te +emailadmin emailadmin sl EMailAdmin +emailadmin: group assigned profile common sl eMailAdmin: profil, dodeljen skupini +emailadmin: user assigned profile common sl eMailAdmin: profil, dodeljen uprabniku +enable cyrus imap server administration emailadmin sl OmogoÄi upravljanje Cyrus IMAP strežnika +enable sieve emailadmin sl OmogoÄi Sieve +encrypted connection emailadmin sl Kodirana povezava +encryption settings emailadmin sl Nastavitve Å¡ifriranja +enter your default mail domain (from: user@domain) emailadmin sl Vnesite privzeto domeno (oblika: uporabnik@domena) +entry saved emailadmin sl Vnos shranjen +error connecting to imap server. %s : %s. emailadmin sl Napaka pri povezavi s strežnikom IMAP. %s: %s. +error connecting to imap server: [%s] %s. emailadmin sl Napaka pri povezavi s strežnikom IMAP: [%s] %s. +error saving the entry!!! emailadmin sl Napaka pri shranjevanju vnosa! +event details follow emailadmin sl Sledijo podrobnosti dogodka +filtered by account emailadmin sl Filtrirano s strani raÄuna +filtered by group emailadmin sl Filtrirano s strani skupine +forward also to emailadmin sl Posreduj tudi +forward email's to emailadmin sl Posreduj sporoÄila k +forward only emailadmin sl Samo posreduj +global options emailadmin sl Globalne možnosti +if using ssl or tls, you must have the php openssl extension loaded. emailadmin sl ÄŒe uporabljate SSL ali TLS, morate imeti naloženo razÅ¡iritev PHP openssl +imap admin password admin sl Geslo oskrbnika IMAPa +imap admin user admin sl UporabniÅ¡ko ime oskrbnika IMAP-a +imap c-client version < 2001 emailadmin sl IMAP C-klient razliÄica pred 2001 +imap server emailadmin sl Strežnik IMAP +imap server closed the connection. emailadmin sl Strežnik IMAP je prekinil povezavo. +imap server closed the connection. server responded: %s emailadmin sl Strežnik IMAP je prekinil povezavo. Odgovor strežnika: %s +imap server hostname or ip address emailadmin sl Ime ali IP strežnika IMAP +imap server logintyp emailadmin sl NaÄin prijave strežnik IMAP +imap server name emailadmin sl Ime strežnika IMAP +imap server port emailadmin sl Vrata strežnika IMAP +imap/pop3 server name emailadmin sl Ime strežnika IMAP/POP3 +in mbyte emailadmin sl v MB +inactive emailadmin sl Neaktivno +ldap basedn emailadmin sl Osnovni DN LDAP +ldap server emailadmin sl Strežnik LDAP +ldap server accounts dn emailadmin sl DN raÄunov LDAP strežnika +ldap server admin dn emailadmin sl Oskrbnikov DN LDAP strežnika +ldap server admin password emailadmin sl Geslo oskrbnika LDAP strežnika +ldap server hostname or ip address emailadmin sl Ime ali IP strežnika LDAP +ldap settings emailadmin sl Nastavitve LDAP +leave empty for no quota emailadmin sl Pustite prazno za neomejeno +mail settings admin sl Nastavitve E-poÅ¡te +name of organisation emailadmin sl Ime organizacije +no alternate email address emailadmin sl Ni alternativnega E-naslova +no encryption emailadmin sl Brez Å¡ifriranja +no forwarding email address emailadmin sl Ni E-naslova za posredovanje +no message returned. emailadmin sl Ni vrnjenega sporoÄila. +no plain text part found emailadmin sl Ni najdenega Äistega besedila +no supported imap authentication method could be found. emailadmin sl Ni najdena metoda avtentikacije IMAP. +order emailadmin sl Vrstni red +organisation emailadmin sl Organizacija +plesk can't rename users --> request ignored emailadmin sl Plesk ne more preimenovati uporabnikov --> zahteva presliÅ¡ana +plesk imap server (courier) emailadmin sl Strežnik Plesk IMAP (Courier) +plesk mail script '%1' not found !!! emailadmin sl PoÅ¡tni skript Plesk '%1' ni bil najden! +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin sl Plesk zahteva geslo, dolga najmanj 5 znakov in ne sme vsebovati imena raÄuna --> geslo ni bilo nastavljeno! +plesk smtp-server (qmail) emailadmin sl Strežnik Plesk IMAP (Qmail) +pop3 server hostname or ip address emailadmin sl Ime ali IP POP3 strežnika +pop3 server port emailadmin sl Vrata POP3 strežnika +port emailadmin sl Vrata +postfix with ldap emailadmin sl KonÄnica pri LDAP +profile access rights emailadmin sl Pravice dostopa do profila +profile is active emailadmin sl Profil je aktiven +profile list emailadmin sl Seznam profilov +profile name emailadmin sl Ime profila +qmaildotmode emailadmin sl NaÄin za qmaildot +quota settings emailadmin sl Nastavitvev kvote +quota size in mbyte emailadmin sl Velikost kvote v MB +remove emailadmin sl Odstrani +reset filter emailadmin sl Ponastavi filter +select type of imap server emailadmin sl Izberite vrsto strežnika IMAP +select type of imap/pop3 server emailadmin sl Izberite tip IMAP/POP3 strežnika +select type of smtp server emailadmin sl Izberite tip SMTP strežnika +server settings emailadmin sl Nastavitve strežnika +sieve server hostname or ip address emailadmin sl IP ali naslov strežnika za sito (Sieve) +sieve server port emailadmin sl Vrata strežnika za sito (Sieve) +sieve settings emailadmin sl Nastavitve sita (Sieve) +smtp authentication emailadmin sl SMTP avtentikacija +smtp options emailadmin sl SMTP možnosti +smtp server name emailadmin sl ime SMTP strežnika +smtp settings emailadmin sl SMTP nastavitve +smtp-server hostname or ip address emailadmin sl Ime ali IP SMTP strežnika +smtp-server port emailadmin sl Vrata SMTP strežnika +standard emailadmin sl Standarden +standard imap server emailadmin sl Standardni IMAP strežnik +standard pop3 server emailadmin sl Standardni POP3 strežnik +standard smtp-server emailadmin sl Standardni SMTP strežnik +stationery emailadmin sl Stacionarno +templates emailadmin sl Predloge +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin sl Strežnik IMAP ne podpira izbrane metode avtentikacije. Kontaktirajte sistemskega upravitelja. +the mimeparser can not parse this message. emailadmin sl Mimeparser ne more prebrati tega sporoÄila. +this php has no imap support compiled in!! emailadmin sl Ta PHP ne vsebuje podpore za IMAP! +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin sl ÄŒe želite uporabljati povezavo TLS, morate imeti nameÅ¡Äeno razliÄico PHP 5.1.0 ali viÅ¡jo. +unexpected response from server to authenticate command. emailadmin sl NepriÄakovan odgovor strežnika na ukaz AUTHENTICATE. +unexpected response from server to digest-md5 response. emailadmin sl NepriÄakovan odgovor strežnika na odgovor Digest-MD5. +unexpected response from server to login command. emailadmin sl NepriÄakovan odgovor strežnika na ukaz LOGIN. +unknown imap response from the server. server responded: %s emailadmin sl Neznan odgovor IMAP s strani strežnika. Odgovor strežnika: %s +unsupported action '%1' !!! emailadmin sl Nepodprto dejanje '%1'! +update current email address: emailadmin sl Posodobi trenutni e-naslov: +use default emailadmin sl Uporabi privzeto +use ldap defaults emailadmin sl Uporabi privzeto za LDAP +use predefined username and password defined below emailadmin sl Uporabi spodnje, vnaprej doloÄeno uporabniÅ¡ko ime in geslo +use smtp auth emailadmin sl Uporabi SMTP avtentikacijo +use tls authentication emailadmin sl Uporabi TLS avtentikacijo +use tls encryption emailadmin sl Uporabi TLS enkripcijo +user can edit forwarding address emailadmin sl Uporabnik lahko doloÄa posredovalni naslov +username (standard) emailadmin sl Uporabnik (standardno) +username/password defined by admin emailadmin sl UporabniÅ¡ko ime/geslo dodeljeno s strani administratorja +username@domainname (virtual mail manager) emailadmin sl uporabnik@domena (Virtual MAIL ManaGeR) +users can define their own emailaccounts emailadmin sl Uporabniki lahko doloÄajo lastne E-poÅ¡tne predale +users can define their own identities emailadmin sl Uporabniki lahko doloÄijo lastne identitete +users can define their own signatures emailadmin sl Uporabniki lahko doloÄijo lastne podpise +virtual mail manager emailadmin sl Virtualni upravljalec E-poÅ¡te +you have received a new message on the emailadmin sl Prejeli ste novo sporoÄilo na +your name emailadmin sl VaÅ¡e ime diff --git a/admin/lang/egw_sv.lang b/admin/lang/egw_sv.lang index 08773aa243..8c9cfe9bca 100644 --- a/admin/lang/egw_sv.lang +++ b/admin/lang/egw_sv.lang @@ -469,3 +469,109 @@ you must enter an application title. admin sv Du mÃ¥ste ange en titel för appli you must select a file type admin sv Du mÃ¥ste välja en filtyp you will need to remove the subcategories before you can delete this category admin sv Du mÃ¥ste ta bort underkategorierna innan du kan ta bort denna kategori your session could not be verified. admin sv Din session kunde inte verifieras +(no subject) emailadmin sv (ingen rubrik) +add profile emailadmin sv Skapa profil +admin dn emailadmin sv Admin dn +admin password emailadmin sv Admin lösenord +admin username emailadmin sv Admin användare +advanced options emailadmin sv Avanserade alternativ +alternate email address emailadmin sv Alternerande e-post adress +bad login name or password. emailadmin sv Ogiltigt användarna eller lösenord +bad or malformed request. server responded: %s emailadmin sv Ogiltig eller ofullständig förfrÃ¥gan. Server svarade: %s +bad request: %s emailadmin sv Ogiltig förfrÃ¥gan: %s +connection dropped by imap server. emailadmin sv Anslutningen stängd av IMAP server +continue emailadmin sv Fortsätt +could not complete request. reason given: %s emailadmin sv Kunde inte fullfölja förfrÃ¥gan. Svaret: %s +could not open secure connection to the imap server. %s : %s. emailadmin sv Kunde inte öppna en söker anslutning till IMAP servern. %s: %s +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin sv CRAM-MD5 och DIGEST-MD5 kräver att Auth_SASL paketet installerats +cyrus imap server emailadmin sv Cyrus IMAP Server +cyrus imap server administration emailadmin sv Cyrus IMAP server administration +default emailadmin sv Standard +deliver extern emailadmin sv Leverera extern +displaying html messages is disabled emailadmin sv Cisa HTML meddelanden är inaktiverat +do not validate certificate emailadmin sv Validera inte certifikat +do you really want to delete this profile emailadmin sv Vill du verkligen radera profilen? +domainname emailadmin sv Domän namn +edit email settings emailadmin sv Redigera e-post alternativ +email account active emailadmin sv Aktivt e-post konto +email address emailadmin sv E-post adress +enable cyrus imap server administration emailadmin sv Aktivera Cyrus IMAP server administration +enable sieve emailadmin sv Aktivera Sieve +encrypted connection emailadmin sv Krypterad anslutning +enter your default mail domain (from: user@domain) emailadmin sv Standard e-post domän (frÃ¥n: user@domain) +entry saved emailadmin sv Post sparad +error connecting to imap server. %s : %s. emailadmin sv Kunde inte ansluta till IMAP server %s : %s +error connecting to imap server: [%s] %s. emailadmin sv Kunde inte ansluta till IMAP server [%s] %s +error saving the entry!!! emailadmin sv Fel uppstod vid sparandet av posten! +event details follow emailadmin sv Händelse detaljer följer +forward also to emailadmin sv Vidarebefodra även till +forward email's to emailadmin sv Vidarebefodra e-post till +forward only emailadmin sv Vidarebefodra endast +if using ssl or tls, you must have the php openssl extension loaded. emailadmin sv Om du vill använda SSL eller TLS mÃ¥ste PHP openssl stödet laddas +imap admin password admin sv IMAP admin lösenord +imap admin user admin sv IMAP admin användare +imap c-client version < 2001 emailadmin sv IMAP C-Client version < 2001 +imap server emailadmin sv IMAP Server +imap server closed the connection. emailadmin sv IMAP server stängde anslutningen +imap server closed the connection. server responded: %s emailadmin sv IMAP server stängde anslutningen. Serverna svarade: %s +imap server hostname or ip address emailadmin sv IMAP server hostnamn eller IP adress +imap server logintyp emailadmin sv IMAP server inloggnings typ +imap server port emailadmin sv IMAP server port +imap/pop3 server name emailadmin sv IMAP/POP3 server namn +in mbyte emailadmin sv i MByte +ldap basedn emailadmin sv LDAP basedn +ldap server emailadmin sv LDAP server +ldap server accounts dn emailadmin sv LDAP server konton DN +ldap server admin dn emailadmin sv LDAP server admin DN +ldap server admin password emailadmin sv LDAP server admin lösenord +ldap server hostname or ip address emailadmin sv LDAP server hostnamn eller IP adress +ldap settings emailadmin sv LDAP alternativ +leave empty for no quota emailadmin sv Lämna tomt för ingen kvot +mail settings admin sv E-post alternativ +name of organisation emailadmin sv Organisations namn +no alternate email address emailadmin sv Ingen alternerande e-post adress +no encryption emailadmin sv Ingen kryptering +no forwarding email address emailadmin sv Ingen e-post vidarebefodrings adress +no message returned. emailadmin sv Inget svar meddelandes +no plain text part found emailadmin sv Hittade inget textfält +no supported imap authentication method could be found. emailadmin sv Kunde inte hitta supporterad IMAP autentiserings metod +order emailadmin sv Sortering +organisation emailadmin sv Organisation +pop3 server hostname or ip address emailadmin sv POP3 server hostnamn eller IP adress +pop3 server port emailadmin sv POP3 server port +port emailadmin sv Port +postfix with ldap emailadmin sv Postfix med LDAP +profile list emailadmin sv Profil lista +profile name emailadmin sv Profil namn +qmaildotmode emailadmin sv qmaildotmode +quota settings emailadmin sv Kvot alternativ +quota size in mbyte emailadmin sv Kvotstorlek i Mb +remove emailadmin sv Radera +select type of imap/pop3 server emailadmin sv Välj typ av IMAP/POP3 server +select type of smtp server emailadmin sv Välj typ av SMTP Server +sieve server hostname or ip address emailadmin sv Sieve server hostnamn eller IP adress +sieve server port emailadmin sv Sieve server port +sieve settings emailadmin sv Sieve alternativ +smtp server name emailadmin sv SMTP server namn +smtp settings emailadmin sv SMTP alternativ +smtp-server hostname or ip address emailadmin sv SMTP server hostnamn eller IP adress +smtp-server port emailadmin sv SMTP server port +standard emailadmin sv Standard +standard imap server emailadmin sv Standard IMAP server +standard pop3 server emailadmin sv Standard POP3 server +standard smtp-server emailadmin sv Standard SMTP server +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin sv IMAP servern verkar inte stödja den autentiserings metod du valt. Var god och kontakta administratör. +the mimeparser can not parse this message. emailadmin sv MIME-tolken kunde inte tolka meddelandet +this php has no imap support compiled in!! emailadmin sv Denna installation har inte IMAP stöd kompilerat i PHP. +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin sv För att använda TLS anslutning mÃ¥ste du ha PHP version 5.1.0 eller högre +unexpected response from server to authenticate command. emailadmin sv Oväntat svar frÃ¥n servern pÃ¥ AUTENTISERINGS kommandot +unexpected response from server to digest-md5 response. emailadmin sv Oväntat svar frÃ¥n servern pÃ¥ Digest-MD5 +unexpected response from server to login command. emailadmin sv Oväntat svar frÃ¥n servern pÃ¥ INLOGGINGS kommandot +unknown imap response from the server. server responded: %s emailadmin sv Okänt IMAP svar frÃ¥n server. Svarade: %s +use default emailadmin sv Använd standard +use ldap defaults emailadmin sv använd LDAP standarder +use smtp auth emailadmin sv Använd SMTP autentisering +use tls authentication emailadmin sv Använd TLS autentisering +use tls encryption emailadmin sv Använd TLS kryptering +users can define their own emailaccounts emailadmin sv Användare kan definiera egna epost konton? +virtual mail manager emailadmin sv Virtuell E-post administration diff --git a/admin/lang/egw_tr.lang b/admin/lang/egw_tr.lang index 2485cfdf4f..9fce751462 100644 --- a/admin/lang/egw_tr.lang +++ b/admin/lang/egw_tr.lang @@ -385,3 +385,9 @@ you must enter an application name. admin tr Bir uygulama ad you must enter an application title. admin tr Bir uygulama baþlýðý girmelisiniz you must select a file type admin tr Bir dosya tipi seçmelisiniz you will need to remove the subcategories before you can delete this category admin tr Bir kategoriyi silmeden önce o kategoriye ait tüm alt kategorileri kaldýrmalýsýnýz ! +default emailadmin tr Varsayýlan +event details follow emailadmin tr Etkinlik Detaylarý Ektedir +mail settings admin tr Mail ayarlarý +order emailadmin tr Sýralama +remove emailadmin tr Kaldýr +standard emailadmin tr standart diff --git a/admin/lang/egw_uk.lang b/admin/lang/egw_uk.lang index 72761fa81a..ab6ff8b52f 100644 --- a/admin/lang/egw_uk.lang +++ b/admin/lang/egw_uk.lang @@ -371,3 +371,9 @@ you must enter an application title. admin uk Ðеобхідно ввеÑти н you must select a file type admin uk Ðеобхідно визначити тип файлу you will need to remove the subcategories before you can delete this category admin uk Ðеобхідно видалити підкатегорії перед тим, Ñк Ви зможете видалити цю категорію ! your session could not be verified. admin uk Ðеможливо перевірити Ваш вхід +default emailadmin uk По замовченню +event details follow emailadmin uk Подробиці події +order emailadmin uk ПоÑлідовніÑÑ‚ÑŒ +remove emailadmin uk Видалити +standard emailadmin uk Ñтандарт +use default emailadmin uk По замовченню diff --git a/admin/lang/egw_vi.lang b/admin/lang/egw_vi.lang index a074f19099..84776f6ed0 100644 --- a/admin/lang/egw_vi.lang +++ b/admin/lang/egw_vi.lang @@ -11,3 +11,5 @@ order admin vi Thứ tự permission denied admin vi Không có quyền translation admin vi Dịch updated admin vi Đã cập nhật +event details follow emailadmin vi Theo dõi Chi tiết Sự kiện +order emailadmin vi Thứ tự diff --git a/admin/lang/egw_zh-tw.lang b/admin/lang/egw_zh-tw.lang index ce15f06048..8be21d0d81 100644 --- a/admin/lang/egw_zh-tw.lang +++ b/admin/lang/egw_zh-tw.lang @@ -476,3 +476,136 @@ you must select a file type admin zh-tw 您必須é¸æ“‡ä¸€ç¨®æª”案型態。 you must select at least one group member. admin zh-tw 您必須é¸æ“‡è‡³å°‘一個群組æˆå“¡ã€‚ you will need to remove the subcategories before you can delete this category admin zh-tw 您必須在刪除這個類別å‰åˆªé™¤æ‰€æœ‰çš„å­é¡žåˆ¥ï¼ your session could not be verified. admin zh-tw 您的連線ä¸åˆæ³•ã€‚ +(no subject) emailadmin zh-tw (沒有標題) +account '%1' not found !!! emailadmin zh-tw 找ä¸åˆ°å¸³è™Ÿ '%1'ï¼ +add new email address: emailadmin zh-tw 新增信箱: +add profile emailadmin zh-tw 新增資料 +admin dn emailadmin zh-tw ç®¡ç† dn +admin password emailadmin zh-tw 管ç†å¯†ç¢¼ +admin username emailadmin zh-tw 管ç†å¸³è™Ÿ +advanced options emailadmin zh-tw 進階é¸é … +alternate email address emailadmin zh-tw 替代郵件ä½å€ +any application emailadmin zh-tw 任何模組 +any group emailadmin zh-tw 任何群組 +bad login name or password. emailadmin zh-tw 帳號或密碼有誤。 +bad or malformed request. server responded: %s emailadmin zh-tw 錯誤的請求,伺æœå™¨å›žæ‡‰ï¼š %s +bad request: %s emailadmin zh-tw 錯誤的請求: %s +can be used by application emailadmin zh-tw å¯ä»¥å–用資料的模組 +can be used by group emailadmin zh-tw å¯ä»¥å–用資料的群組 +connection dropped by imap server. emailadmin zh-tw 連線被 IMAP 伺æœå™¨ä¸­æ–·äº† +continue emailadmin zh-tw 繼續 +could not complete request. reason given: %s emailadmin zh-tw 無法完æˆè«‹æ±‚,ç†ç”±ï¼š %s +could not open secure connection to the imap server. %s : %s. emailadmin zh-tw 無法開啟安全連線到 IMAP 伺æœå™¨ã€‚%s : %s. +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin zh-tw CRAM-MD5 或 DIGEST-MD5 需è¦å…ˆå®‰è£ Auth_SASL æ‰èƒ½ä½¿ç”¨ã€‚ +cyrus imap server emailadmin zh-tw Cyrus IMAP伺æœå™¨ +cyrus imap server administration emailadmin zh-tw Cyrus IMAP伺æœå™¨ç®¡ç† +default emailadmin zh-tw é è¨­ +deliver extern emailadmin zh-tw 傳é€åˆ°å¤–部 +displaying html messages is disabled emailadmin zh-tw 顯示 html 信件的功能åœç”¨ä¸­ +do not validate certificate emailadmin zh-tw 沒有å¯ç”¨çš„執照 +do you really want to delete this profile emailadmin zh-tw 您確定è¦åˆªé™¤é€™å€‹è³‡æ–™ +domainname emailadmin zh-tw 網域å稱 +edit email settings emailadmin zh-tw 編輯郵件設定 +email account active emailadmin zh-tw 郵件帳號啟用 +email address emailadmin zh-tw 郵件ä½å€ +email settings common zh-tw 郵件設定 +emailadmin emailadmin zh-tw éƒµä»¶ç®¡ç† +enable cyrus imap server administration emailadmin zh-tw 啟用Cyrus IMAP伺æœå™¨ç®¡ç† +enable sieve emailadmin zh-tw 啟用Sieve +encrypted connection emailadmin zh-tw 加密連線 +encryption settings emailadmin zh-tw 加密設定 +enter your default mail domain (from: user@domain) emailadmin zh-tw 輸入您的é è¨­éƒµä»¶ç¶²åŸŸ(å°è€é¼ å¾Œé¢æ‰€æœ‰å­—:帳號@網域) +entry saved emailadmin zh-tw 資料儲存了 +error connecting to imap server. %s : %s. emailadmin zh-tw 連線到 IMAP 伺æœå™¨æ™‚發生錯誤。 %s : %s +error connecting to imap server: [%s] %s. emailadmin zh-tw 連線到 IMAP 伺æœå™¨æ™‚發生錯誤。 [%s] %s +error saving the entry!!! emailadmin zh-tw å„²å­˜è³‡æ–™æ™‚ç™¼ç”ŸéŒ¯èª¤ï¼ +event details follow emailadmin zh-tw 事件細節 +forward also to emailadmin zh-tw åŒæ™‚轉寄到 +forward email's to emailadmin zh-tw 轉寄信件到 +forward only emailadmin zh-tw 轉寄 +global options emailadmin zh-tw 全域é¸é … +if using ssl or tls, you must have the php openssl extension loaded. emailadmin zh-tw 如果使用 SSL 或 TLS,您必須先載入 PHP openssl 外掛。 +imap admin password admin zh-tw IMAP管ç†è€…密碼 +imap admin user admin zh-tw IMAP管ç†è€…帳號 +imap c-client version < 2001 emailadmin zh-tw IMAP C-終端的版本å°æ–¼2001 +imap server emailadmin zh-tw IMAP伺æœå™¨ +imap server closed the connection. emailadmin zh-tw IMAP伺æœå™¨é—œé–‰é€£ç·š +imap server closed the connection. server responded: %s emailadmin zh-tw IMAP伺æœå™¨é—œé–‰é€£ç·šï¼Œä¼ºæœå™¨å›žæ‡‰ï¼š %s +imap server hostname or ip address emailadmin zh-tw IMAP伺æœå™¨çš„主機å稱或是IPä½å€ +imap server logintyp emailadmin zh-tw IMAP伺æœå™¨ç™»å…¥é¡žåž‹ +imap server name emailadmin zh-tw IMAP伺æœå™¨å稱 +imap server port emailadmin zh-tw IMAP伺æœå™¨é€£æŽ¥åŸ  +imap/pop3 server name emailadmin zh-tw IMAP/POP3伺æœå™¨å稱 +in mbyte emailadmin zh-tw 以MB顯示 +ldap basedn emailadmin zh-tw LDAP basedn +ldap server emailadmin zh-tw LDAP 伺æœå™¨ +ldap server accounts dn emailadmin zh-tw LDAP 伺æœå™¨å¸³è™Ÿ DN +ldap server admin dn emailadmin zh-tw LDAP 伺æœå™¨ç®¡ç†è€… DN +ldap server admin password emailadmin zh-tw LDAP 伺æœå™¨ç®¡ç†è€…密碼 +ldap server hostname or ip address emailadmin zh-tw LDAP 伺æœå™¨ä¸»æ©Ÿå稱或是IPä½å€ +ldap settings emailadmin zh-tw LDAP 設定 +leave empty for no quota emailadmin zh-tw ä¸å¡«å…¥ä»»ä½•è³‡æ–™è¡¨ç¤ºç„¡é™åˆ¶ +mail settings admin zh-tw 郵件設定 +name of organisation emailadmin zh-tw 組織å稱 +no alternate email address emailadmin zh-tw 沒有å¯æ›¿æ›çš„郵件ä½å€ +no encryption emailadmin zh-tw 沒有加密 +no forwarding email address emailadmin zh-tw 沒有轉寄郵件ä½å€ +no message returned. emailadmin zh-tw 沒有訊æ¯å›žæ‡‰ã€‚ +no plain text part found emailadmin zh-tw 找ä¸åˆ°ç´”文字部份 +no supported imap authentication method could be found. emailadmin zh-tw 找ä¸åˆ°å¯ä»¥æ”¯æ´çš„ IMAP èªè­‰æ–¹å¼ã€‚ +order emailadmin zh-tw é †åº +organisation emailadmin zh-tw 組織 +plesk can't rename users --> request ignored emailadmin zh-tw Plesk 無法修改使用者å稱 --> 忽略 +plesk imap server (courier) emailadmin zh-tw Plesk IMAP 伺æœå™¨(Courier) +plesk mail script '%1' not found !!! emailadmin zh-tw 找ä¸åˆ° Plesk 郵件指令 '%1' ï¼ +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin zh-tw Plesk è¦æ±‚密碼至少必須有 5 個字元而且ä¸èƒ½åŒ…å«å¸³è™Ÿå稱 --> å¯†ç¢¼æ²’æœ‰è¨­å®šï¼ +plesk smtp-server (qmail) emailadmin zh-tw Plesk SMTP伺æœå™¨ (Qmail) +pop3 server hostname or ip address emailadmin zh-tw POP3伺æœå™¨ä¸»æ©Ÿå稱或是IPä½å€ +pop3 server port emailadmin zh-tw POP3伺æœå™¨é€£æŽ¥åŸ  +port emailadmin zh-tw 連接埠 +postfix with ldap emailadmin zh-tw 使用LDAP與 Postfix +profile access rights emailadmin zh-tw å­˜å–è³‡æ–™æ¬Šé™ +profile list emailadmin zh-tw 資料清單 +profile name emailadmin zh-tw 資料å稱 +qmaildotmode emailadmin zh-tw qmaildotmode +quota settings emailadmin zh-tw é…é¡è¨­å®š +quota size in mbyte emailadmin zh-tw é…é¡å¤§å°ï¼ˆMB) +remove emailadmin zh-tw 移除 +select type of imap server emailadmin zh-tw é¸æ“‡IMAP伺æœå™¨é¡žåž‹ +select type of imap/pop3 server emailadmin zh-tw é¸æ“‡IMAP/POP3伺æœå™¨çš„æ ¼å¼ +select type of smtp server emailadmin zh-tw é¸æ“‡SMTP伺æœå™¨çš„æ ¼å¼ +server settings emailadmin zh-tw 伺æœå™¨è¨­å®š +sieve server hostname or ip address emailadmin zh-tw Sieve伺æœå™¨ä¸»æ©Ÿå稱或是IPä½å€ +sieve server port emailadmin zh-tw Sieve伺æœå™¨é€£æŽ¥åŸ  +sieve settings emailadmin zh-tw Sieve設定 +smtp authentication emailadmin zh-tw SMTP èªè­‰ +smtp options emailadmin zh-tw SMTP é¸é … +smtp server name emailadmin zh-tw SMTP伺æœå™¨å稱 +smtp settings emailadmin zh-tw SMTP 設定 +smtp-server hostname or ip address emailadmin zh-tw SMTP伺æœå™¨ä¸»æ©Ÿå稱或是IPä½å€ +smtp-server port emailadmin zh-tw SMTP伺æœå™¨é€£æŽ¥åŸ  +standard emailadmin zh-tw 標準 +standard imap server emailadmin zh-tw 標準IMAP伺æœå™¨ +standard pop3 server emailadmin zh-tw 標準POP3伺æœå™¨ +standard smtp-server emailadmin zh-tw 標準SMTP伺æœå™¨ +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin zh-tw IMAP 伺æœå™¨ä¸æ”¯æ´æŒ‡å®šçš„èªè­‰æ–¹å¼ï¼Œè«‹è¯çµ¡æ‚¨çš„系統管ç†å“¡ã€‚ +the mimeparser can not parse this message. emailadmin zh-tw mime 解æžç¨‹å¼ç„¡æ³•è™•ç†é€™å°éƒµä»¶ +this php has no imap support compiled in!! emailadmin zh-tw 您的PHP並未編譯為支æ´IMAP的狀態 +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin zh-tw è¦ä½¿ç”¨ TLS 連線,您必須執行在 PHP 5.1.0 或是更新版本。 +unexpected response from server to authenticate command. emailadmin zh-tw AUTHENTICATE 指令讓伺æœå™¨å‚³å›žä¸å¦‚é æœŸçš„回應。 +unexpected response from server to digest-md5 response. emailadmin zh-tw 伺æœå™¨å‚³å›žä¸å¦‚é æœŸçš„ Digest-MD5 回應。 +unexpected response from server to login command. emailadmin zh-tw 伺æœå™¨å‚³å›žä¸å¦‚é æœŸçš„ LOGIN 指令。 +unknown imap response from the server. server responded: %s emailadmin zh-tw ä¸çŸ¥åçš„ IMAP 伺æœå™¨å›žæ‡‰ï¼Œå›žæ‡‰å…§å®¹ï¼š %s +unsupported action '%1' !!! emailadmin zh-tw ä¸æ”¯æ´ '%1' 這個æ“ä½œï¼ +update current email address: emailadmin zh-tw æ›´æ–°ç›®å‰ä¿¡ç®±ï¼š +use default emailadmin zh-tw é è¨­å€¼ +use ldap defaults emailadmin zh-tw 使用LDAPé è¨­å€¼ +use smtp auth emailadmin zh-tw 使用SMTPèªè­‰ +use tls authentication emailadmin zh-tw 使用TLSèªè­‰ +use tls encryption emailadmin zh-tw 使用TLS加密 +user can edit forwarding address emailadmin zh-tw 使用者å¯ä»¥ç·¨è¼¯è‡ªå‹•è½‰å¯„ä¿¡ç®± +username (standard) emailadmin zh-tw 帳號(標準) +username@domainname (virtual mail manager) emailadmin zh-tw 帳號@網域(虛擬郵件管ç†ï¼‰ +users can define their own emailaccounts emailadmin zh-tw 使用者å¯ä»¥è‡ªè¡Œå®šç¾©éƒµä»¶å¸³è™Ÿ +virtual mail manager emailadmin zh-tw 虛擬郵件管ç†è€… +your name emailadmin zh-tw 您的å稱 diff --git a/admin/lang/egw_zh.lang b/admin/lang/egw_zh.lang index ba5c0e7270..80b63c13b5 100644 --- a/admin/lang/egw_zh.lang +++ b/admin/lang/egw_zh.lang @@ -526,3 +526,138 @@ you must select at least one group member. admin zh 您必须至少选择一个 you need to enter install id and password! admin zh 您需è¦è¾“入安装 ID 和密ç ï¼ you will need to remove the subcategories before you can delete this category admin zh 在删除该类别å‰ï¼Œå¿…须删除它的所有å­ç±»åˆ«ï¼ your session could not be verified. admin zh 本次会è¯æ— æ³•æ ¡éªŒã€‚ +(no subject) emailadmin zh (无主题) +account '%1' not found !!! emailadmin zh å¸æˆ· '%1' 未å‘çŽ°ï¼ +add new email address: emailadmin zh 添加新邮箱地å€ï¼š +add profile emailadmin zh 添加 profile +admin dn emailadmin zh ç®¡ç† DN +admin password emailadmin zh 管ç†å¯†ç  +admin username emailadmin zh 管ç†å¸æˆ· +advanced options emailadmin zh 高级选项 +alternate email address emailadmin zh å€™é€‰é‚®ç®±åœ°å€ +any application emailadmin zh ä»»ä½•ç”¨ç”¨ç¨‹åº +any group emailadmin zh 任何组 +bad login name or password. emailadmin zh 错误登录å和密ç ã€‚ +bad or malformed request. server responded: %s emailadmin zh ä¸æ­£ç¡®çš„请求。æœåŠ¡å™¨æˆ–应:%s +bad request: %s emailadmin zh 错误请求:%s +can be used by application emailadmin zh å¯ç”¨äºŽåº”ç”¨ç¨‹åº +can be used by group emailadmin zh å¯ç”¨äºŽç¾¤ç»„ +connection dropped by imap server. emailadmin zh 连接被 IMAP æœåŠ¡å™¨ä¸­æ–­ã€‚ +continue emailadmin zh 继续 +could not complete request. reason given: %s emailadmin zh 无法完æˆè¯·æ±‚。原因是:%s +could not open secure connection to the imap server. %s : %s. emailadmin zh 无法打开到 IMAP æœåŠ¡å™¨çš„安全连接。%s:%s。 +cram-md5 or digest-md5 requires the auth_sasl package to be installed. emailadmin zh CRAM-MD5 或 DIGEST-MD5 需è¦å®‰è£… auth_sasl 包。 +cyrus imap server emailadmin zh Cyrus IMAP æœåŠ¡å™¨ +cyrus imap server administration emailadmin zh Cyrus IMAP æœåŠ¡å™¨ç®¡ç† +default emailadmin zh 默认 +deliver extern emailadmin zh ä¼ é€å¤–部 +displaying html messages is disabled emailadmin zh 显示HTML邮件被ç¦ç”¨ +do not validate certificate emailadmin zh ä¸ç¡®è®¤è¯ä¹¦ +do you really want to delete this profile emailadmin zh 您确定è¦åˆ é™¤è¿™ä¸ª profile 文件 +domainname emailadmin zh 域å +edit email settings emailadmin zh 编辑邮箱设置 +email account active emailadmin zh 邮箱å¸æˆ·æ¿€æ´» +email address emailadmin zh é‚®ç®±åœ°å€ +email settings common zh 邮箱设置 +emailadmin emailadmin zh é‚®ç®±ç®¡ç† +enable cyrus imap server administration emailadmin zh å¯ç”¨ Cyrus IMAP æœåŠ¡å™¨ç®¡ç† +enable sieve emailadmin zh å¯ç”¨è¿‡æ»¤ +encrypted connection emailadmin zh 加密连接 +encryption settings emailadmin zh 加密设置 +enter your default mail domain (from: user@domain) emailadmin zh 输入您的默认邮箱域 (比如:user@domain,å–@之åŽçš„所有è¯æˆ–å­—æ¯) +entry saved emailadmin zh æ¡ç›®å·²å‚¨å­˜ +error connecting to imap server. %s : %s. emailadmin zh 连接到 IMAP æœåŠ¡å™¨é”™è¯¯ã€‚%s : %s。 +error connecting to imap server: [%s] %s. emailadmin zh 连接到 IMAP æœåŠ¡å™¨é”™è¯¯ï¼š[%s] %s。 +error saving account! emailadmin zh ä¿å­˜å¸æˆ·é”™è¯¯ï¼ +error saving the entry!!! emailadmin zh ä¿å­˜æ¡ç›®æ—¶å‘ç”Ÿé”™è¯¯ï¼ +event details follow emailadmin zh 事件细节 +forward also to emailadmin zh åŒæ—¶è½¬å‘到 +forward email's to emailadmin zh 转å‘邮件到 +forward only emailadmin zh è½¬å‘ +global options emailadmin zh 全局选项 +if using ssl or tls, you must have the php openssl extension loaded. emailadmin zh 如果使用 SSL 或 TLS,您必须加载 PHP openssl 扩展。 +imap admin password admin zh IMAP 管ç†è€…å¯†ç  +imap admin user admin zh IMAP 管ç†è€…å¸æˆ· +imap c-client version < 2001 emailadmin zh IMAP C-Clien ç‰ˆæœ¬å° < 2001 +imap server emailadmin zh IMAP æœåŠ¡å™¨ +imap server closed the connection. emailadmin zh IMAP æœåŠ¡å™¨å…³é—­è¿žæŽ¥ã€‚ +imap server closed the connection. server responded: %s emailadmin zh IMAP æœåŠ¡å™¨å…³é—­è¿žæŽ¥ã€‚æœåŠ¡å™¨å›žåº”:%s +imap server hostname or ip address emailadmin zh IMAP æœåŠ¡å™¨çš„主机å或 IP åœ°å€ +imap server logintyp emailadmin zh IMAP æœåŠ¡å™¨ç™»å½•ç±»åž‹ +imap server name emailadmin zh IMAP æœåŠ¡å™¨å +imap server port emailadmin zh IMAP æœåŠ¡å™¨ç«¯å£å· +imap/pop3 server name emailadmin zh IMAP / POP3 æœåŠ¡å™¨å +in mbyte emailadmin zh 以 MB 表示 +ldap basedn emailadmin zh LDAP basedn +ldap server emailadmin zh LDAP æœåŠ¡å™¨ +ldap server accounts dn emailadmin zh LDAP æœåŠ¡å™¨å¸æˆ· DN +ldap server admin dn emailadmin zh LDAP æœåŠ¡å™¨ç®¡ç†å‘˜ DN +ldap server admin password emailadmin zh LDAP æœåŠ¡å™¨ç®¡ç®¡ç†å‘˜å¯†ç  +ldap server hostname or ip address emailadmin zh LDAP æœåŠ¡å™¨ä¸»æœºå或 IP åœ°å€ +ldap settings emailadmin zh LDAP 设置 +leave empty for no quota emailadmin zh 留空表示无é™é¢ +mail settings admin zh 邮箱设置 +name of organisation emailadmin zh 组织å称 +no alternate email address emailadmin zh æ— å¤‡ç”¨é‚®ç®±åœ°å€ +no encryption emailadmin zh 未加密 +no forwarding email address emailadmin zh 没有转å‘é‚®ä»¶åœ°å€ +no message returned. emailadmin zh 无返回消æ¯ã€‚ +no plain text part found emailadmin zh 未找到纯文本部分 +no supported imap authentication method could be found. emailadmin zh æ— æ”¯æŒ IMAP 认è¯çš„方法å¯ä»¥æ‰¾åˆ°ã€‚ +order emailadmin zh æŽ’åº +organisation emailadmin zh 组织 +plesk can't rename users --> request ignored emailadmin zh Plesk ä¸èƒ½é‡å‘½å用户 --> 请求忽略 +plesk imap server (courier) emailadmin zh Plesk IMAP æœåŠ¡å™¨ (Courier) +plesk mail script '%1' not found !!! emailadmin zh Plesk 邮件脚本 '%1' æœªæ‰¾åˆ°ï¼ +plesk requires passwords to have at least 5 characters and not contain the account-name --> password not set!!! emailadmin zh Plesk 需è¦è‡³å°‘5个字符密ç å¹¶ä¸”ä¸åŒ…å«å¸æˆ·å --> 密ç æœªè®¾ç½®ï¼ +plesk smtp-server (qmail) emailadmin zh Plesk SMTP-Server (Qmail) +pop3 server hostname or ip address emailadmin zh POP3 æœåŠ¡å™¨ä¸»æœºå或 IP åœ°å€ +pop3 server port emailadmin zh POP3 æœåŠ¡å™¨ç«¯å£å· +port emailadmin zh ç«¯å£ +postfix with ldap emailadmin zh LDAP 用于 Postfix +profile access rights emailadmin zh profile 访问æƒé™ +profile list emailadmin zh profile 列表 +profile name emailadmin zh profile å +qmaildotmode emailadmin zh qmaildotmode +quota settings emailadmin zh é…é¢è®¾ç½® +quota size in mbyte emailadmin zh é…é¢å¤§å°(MB) +remove emailadmin zh 移除 +select type of imap server emailadmin zh 选择 IMAP æœåŠ¡å™¨ç±»åž‹ +select type of imap/pop3 server emailadmin zh 选择 IMAP / POP3 æœåŠ¡å™¨ç±»åž‹ +select type of smtp server emailadmin zh 选择 SMAP æœåŠ¡å™¨ç±»åž‹ +server settings emailadmin zh æœåŠ¡å™¨è®¾ç½® +sieve server hostname or ip address emailadmin zh Sieve æœåŠ¡å™¨ä¸»æœºå或 IP åœ°å€ +sieve server port emailadmin zh Sieve æœåŠ¡å™¨ç«¯å£å· +sieve settings emailadmin zh Sieve 设置 +smtp authentication emailadmin zh SMTP è®¤è¯ +smtp options emailadmin zh SMTP 选项 +smtp server name emailadmin zh SMTP æœåŠ¡å™¨å +smtp settings emailadmin zh SMTP 设置 +smtp-server hostname or ip address emailadmin zh SMTP æœåŠ¡å™¨ä¸»æœºå或 IP åœ°å€ +smtp-server port emailadmin zh SMTP æœåŠ¡å™¨ç«¯å£å· +standard emailadmin zh 标准 +standard imap server emailadmin zh 标准 IMAP æœåŠ¡å™¨ +standard pop3 server emailadmin zh 标准 POP3 æœåŠ¡å™¨ +standard smtp-server emailadmin zh 标准 SMTP æœåŠ¡å™¨ +the imap server does not appear to support the authentication method selected. please contact your system administrator. emailadmin zh IMAP æœåŠ¡å™¨ä¼¼ä¹Žä¸æ”¯æŒæ‰€é€‰æ‹©çš„认è¯æ–¹æ³•ã€‚请è”系系统管ç†å‘˜ã€‚ +the mimeparser can not parse this message. emailadmin zh mime 解æžå™¨ä¸èƒ½è§£æžè¿™ä¸ªé‚®ä»¶ã€‚ +this php has no imap support compiled in!! emailadmin zh PHP 没有 IMAP 支æŒçš„ç¼–è¯‘ï¼ +to use a tls connection, you must be running a version of php 5.1.0 or higher. emailadmin zh 未使用一个 TLS 连接,您必须è¿è¡Œ PHP 5.1.0 或更高版本。 +unexpected response from server to authenticate command. emailadmin zh æœåŠ¡å™¨ä¸º AUTHENTICATE 指令返回ä¸å½“以外回应。 +unexpected response from server to digest-md5 response. emailadmin zh æœåŠ¡å™¨ä¸º Digest-MD5 返回æ„外的ä¸å½“的回应。 +unexpected response from server to login command. emailadmin zh æœåŠ¡å™¨ä¸º LOGIN 指令返回æ„外的ä¸å½“回应。 +unknown imap response from the server. server responded: %s emailadmin zh INAP æœåŠ¡å™¨è¿”回未知回应。æœåŠ¡å™¨å›žåº”:%s +unsupported action '%1' !!! emailadmin zh ä¸æ”¯æŒ '%1' çš„æ“ä½œï¼ +update current email address: emailadmin zh 更新当å‰é‚®ä»¶åœ°å€ï¼š +use default emailadmin zh 使用默认值 +use ldap defaults emailadmin zh 使用 LDAP 默认值 +use smtp auth emailadmin zh 使用 SMTP è®¤è¯ +use tls authentication emailadmin zh 使用TLS è®¤è¯ +use tls encryption emailadmin zh 使用TLS 加密 +user can edit forwarding address emailadmin zh 用户å¯ä»¥ç¼–辑转å‘åœ°å€ +username (standard) emailadmin zh 用户å(标准) +username@domainname (virtual mail manager) emailadmin zh 用户å@域 (虚拟邮箱管ç†) +users can define their own emailaccounts emailadmin zh 用户å¯ä»¥è‡ªå®šä¹‰é‚®ç®±è´¦æˆ· +users can define their own signatures emailadmin zh 用户å¯ä»¥å®šä¹‰ä»–们自己的签å +virtual mail manager emailadmin zh è™šæ‹Ÿé‚®ç®±ç®¡ç† +your name emailadmin zh 您的åå­— diff --git a/admin/templates/default/app.css b/admin/templates/default/app.css index 9cfa8a8176..6b65e9ffaa 100644 --- a/admin/templates/default/app.css +++ b/admin/templates/default/app.css @@ -99,3 +99,57 @@ td.admin_userAgent span { #admin-acl_filter { max-width: 100% !important; } + +/** + * mail account wizard and edit + */ +.emailadmin_manual { + display: none; +} +.emailadmin_progress { + display: none; + padding-top: 5px; +} +.emailadmin_ssl { + margin-right: 10px; +} +.emailadmin_port { + width: 5em; +} +.emailadmin_header { + font-weight: bold; + font-size: 150%; +} +#admin-mailaccount_tabs { + padding-top: 10px; +} +#admin-mailaccount_acc_imap_logintype { + width: 100%; +} +span.emailadmin_diagnostic,.emailadmin_diagnostic { + color: lightgray; +} +span#admin-mailaccount_acc_id { + float: right; +} +#admin-mailaccount_acc_smtp_account_id { + padding-left: 5px; +} +#admin-mailaccount_button\[multiple\] { + height: auto; + padding-left: 5px; + margin:2px; + width: 16px; + vertical-align: top; +} +#admin-mailaccount_button\[placeholders\] { + height: 16px; + padding-left: 5px; + vertical-align: middle; +} +#admin-mailaccount_mailLocalAddress { + width: 98%; +} +select#admin-mailaccount_ident_id { + width: 95%; +} diff --git a/admin/templates/default/images/progress.gif b/admin/templates/default/images/progress.gif new file mode 100644 index 0000000000000000000000000000000000000000..e20b0a6f24c553839a52886fbf9255048a49ed48 GIT binary patch literal 3951 zcmc(iXHXN^7RMto7GM+BD6)tOx~OY=x~z*l(I+YjF1A$>EK#ZgBFG|5q=nES^iF`# z351f6N=UEtP6!Ev7LYDTRe88G@59b(`{m6$pYGhb_s-nkoc}rJf6esjSp%y800i&> z09apNKYiMwrA5qOG}zn2H`ajPLuXy(rt!VImyK>4|9J8gaMQ-7&KJ$gZgy7gcDCA{ z4(>0stsJeqUbo^*I+?*h0fctAdr?Yf7s_TV1t_ zH~*`@uW!Svd^y0|T9DHOD?2@wITE{JCEy%heC^_>Uh{HSM;OtTGv~=mvmV`XJN6C!yD!DU1`0RtUpO_%{)$gDA{LbFr z-aF92)9uYG*QoI5ZxI3UK_Out5%5q=P-YfrComTc%*o3wC@jt^MVA#p3M;@>`IS}J z8eA1Bi&RG_VPIJ0oN54`PGQ!w8_~6yA_0*{?r7*~>g6``gi;?x86Ovb(gfw@gP;ZZP#~rZSXz#$sH`r>ml3KUm1Hm#OQDj0 z#d$>>mVkj1)ie;BY5{dZ8ncDXhj0qJJKDNB>*b9@%_FVt(ryW_ST?Sp&&>?<4=xTb zkFH`Sd&Tn|AT7Zyn32!Yz^(;FfZQk$vi)eL1=5=JZ2FWfo-2pI$T2GytY?cM!x!ST zpc|U{XVv_kIUA}Gx*t%eEYzVGh`a}m3jMeoOVf^Xv@U3=l=l8-Zy6%XMw5QDD{I3)Sdbkla(Sx9uPJ?#h5GHVFrAeWbh$ebdlrFR*jGxc7u8_IAu zznA_l?;;(e9ZV2$?x8+m$w{e+=@ubb@F-+pu5S#wP!m*A3W8!v%duq;Aif3&CDf3} zL|iSE%pkBRbxaxAlv|6v6c#GHe9sFj&Blo2!JE!h(k4)gnNcJgE zyEJ1-9$@Z!#m(@Ik8PNJgeM#p>=NV`>mMKTHp)9RH1Kh9HY(TAG&Q3jH7gH|$SK9{ z1yxmppt$N90vU|w&7uFczT?1S!OT;p$7Go?hj$xxK62^Q zXgdjc%!cm0Z~yh3+v0{zkji_^4U4OFMG1%cp9Gl3qJR2k_nf?;c>dDO=yQ>}|BYX% zFJh^8tB18ke0Cc8nXXmm@Wa?+5+v!btAeEjl=ilUUH%mD33D6P*;`xg=%3dq2UxvH zIq#7`8gm-@{&M552k%FBR+FcX)fT-(O;|tln^+^zUiV$W7U)p~sh*8&GMzA!}2aS`DlD%)+aZj1kGqZqB z?-$CRx+r}Q-hWYS#!o$x_2bx7xS{fct1s`redBC;ukcDO=ZpjOR5N9iK$EsV*tfN0 z=FUReap^9_1sC_AK>s&NUU$8HeQfMwLV}IrEnO1>!XlA&;STAJak($iuS~OxB1%yD z`N`$*3T+S$4}#XU^y2NKhRYLqf_T-XIQJFgp&uhZ{xr})`jB-qM(2!| zs*hFiFS*S-{shOx6zzy!lMwqf^w1XTih3rl!7S-YKT^DSf%*NB&8s2IOi(=gOxo!J zy;XO$xNAcqO-_1#i>6l*E{Q*?t520FVSAsx4aPobzdN`0o9ygQ#sM(*w}^Wi#m+G3 zwZF@g=s@HJkBH|X;c1Zxuij<4Wyf4eN>534^s>r8mBmH{{87mpqGjOz$dOJZvxx1? zZnn6quH$!(EpqUHU{KU1?V0SI?gLDGkj+*NkBttEH-F+S&ntE1b;k^xgU^j-vH2}e z4FHPG>WN;l)~rC4y`yl_t&>mnqSa@dp$-+hFU23eadc8Jm&f<}%eupr;#}?8^sO$i zO4IqEU;H)wc&e+%|5Jb6E&RvCwf*~&q)~+OVM?IJrwBd0`@fnEsRtvEbsaq7t`>Mq zHl;}TA>&+O)0P5FxJkDf^~QB416LPKzj*#&!DLS-?14Dm;K>Pp#qwIpXAj`AzmfM% zpWu)?q2__E&bqIEc;|))ON@Xgc{n|ei;eWVl9HT&4o^#c5m1tW(gk5FK+wvHYFrhB zKm?O(aI{J~9s=ZWflwY-AmpB{Bx|}u zIx{u_XlMj4jfjT0iuLia8t7TbGum&ftKUk9x8(phP)A+$$mxBCPTS{C+k`bAmgz-k zLqej?x>?hr_HiBVrNuu!@2Lsf5oMq@3QGIY68n;L3rPC+6WiCm`ww=33D44d!(pYB zaTOYRHg-lH-$?Wc3S^f^#~p+)%sL*vW{`4m|4#Gc+sjWBCU#}|kRO?n^r0!jP8$_W z8!BnQQ-2zJZG?k)$h{!WcK7suY7c+y;O+F*FDN)I5>XmzYwDVcsqJlefDp{( zK_qOcMBLNbQa{qDXdW7!7@K-ODC4u{nS)EiGo9mWtKG|!gU%TKjYlM3fK)d)w9<;< z`+>3R;Mr$Ze~Vn#I@%$K-SgxM9ID%9lX4R%^gJX@s&%a{xDL>na7a!4Gjjbp-7jxD zQd;1sYc;G+RUb~CcUII23lsK7gy?=rJV zPN}0eHwoMLy{)qL0jYRcGFacy*Kjq1n z)X$HKD|LuI+uJ|?^~Ka4{cqH{R;r$Js+V|3tuwIHv+=tF{$xUJ*q@l3(mmqzq+oK@ zo3_{CGp=9C80lEPjcT+$dWXRy5zGwWs%v%?(}?-Y8s`#KQW1SF`6fu_Zt-L@vHs=r zl_;2`{~FN{LZ9(}{`#Spxewgm);A*HZcqsFU2r%eF3cM04oc4eK{GQ@*;x>D9=ISk zyCf5nlaDS>uPOup2}EFVMJct6hApb3SF`aHX04!3#Hb+=_<+`SRs*Mt*V)$FA(Y6P zTl$7%()xbIXyg0tu|_$0c>Ke}!qlXAWD!5Rj9cddtf6DmvbycFeGap{mvVB*ZjGZ+ p%dXbPLL0RVfwBKGX%t^=(H}(izqEv)*f`Mt$r7IXYJ-1|zXPDo7$pDz literal 0 HcmV?d00001 diff --git a/admin/templates/default/mailaccount.xet b/admin/templates/default/mailaccount.xet new file mode 100644 index 0000000000..32ce901ff9 --- /dev/null +++ b/admin/templates/default/mailaccount.xet @@ -0,0 +1,344 @@ + + + + + + + + + + +