Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F9890784
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
231 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/program/include/main.inc b/program/include/main.inc
index 2d7cfeaad..019056a5e 100644
--- a/program/include/main.inc
+++ b/program/include/main.inc
@@ -1,1729 +1,1731 @@
<?php
/*
+-----------------------------------------------------------------------+
| program/include/main.inc |
| |
| This file is part of the RoundCube Webmail client |
| Copyright (C) 2005, RoundCube Dev, - Switzerland |
| Licensed under the GNU GPL |
| |
| PURPOSE: |
| Provide basic functions for the webmail package |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
require_once('lib/des.inc');
require_once('lib/utf7.inc');
require_once('lib/utf8.class.php');
// define constannts for input reading
define('RCUBE_INPUT_GET', 0x0101);
define('RCUBE_INPUT_POST', 0x0102);
define('RCUBE_INPUT_GPC', 0x0103);
// register session and connect to server
function rcmail_startup($task='mail')
{
global $sess_id, $sess_auth, $sess_user_lang;
global $CONFIG, $INSTALL_PATH, $BROWSER, $OUTPUT, $_SESSION, $IMAP, $DB, $JS_OBJECT_NAME;
// check client
$BROWSER = rcube_browser();
// load config file
include_once('config/main.inc.php');
$CONFIG = is_array($rcmail_config) ? $rcmail_config : array();
$CONFIG['skin_path'] = $CONFIG['skin_path'] ? preg_replace('/\/$/', '', $CONFIG['skin_path']) : 'skins/default';
// load db conf
include_once('config/db.inc.php');
$CONFIG = array_merge($CONFIG, $rcmail_config);
if (empty($CONFIG['log_dir']))
$CONFIG['log_dir'] = $INSTALL_PATH.'logs';
else
$CONFIG['log_dir'] = ereg_replace('\/$', '', $CONFIG['log_dir']);
// set PHP error logging according to config
if ($CONFIG['debug_level'] & 1)
{
ini_set('log_errors', 1);
ini_set('error_log', $CONFIG['log_dir'].'/errors');
}
if ($CONFIG['debug_level'] & 4)
ini_set('display_errors', 1);
else
ini_set('display_errors', 0);
// set session garbage collecting time according to session_lifetime
if (!empty($CONFIG['session_lifetime']))
ini_set('session.gc_maxlifetime', ($CONFIG['session_lifetime']+2)*60);
// prepare DB connection
require_once('include/rcube_'.(empty($CONFIG['db_backend']) ? 'db' : $CONFIG['db_backend']).'.inc');
$DB = new rcube_db($CONFIG['db_dsnw'], $CONFIG['db_dsnr'], $CONFIG['db_persistent']);
$DB->sqlite_initials = $INSTALL_PATH.'SQL/sqlite.initial.sql';
$DB->db_connect('w');
// we can use the database for storing session data
// session queries do not work with MDB2
if ($CONFIG['db_backend']!='mdb2' && !$DB->is_error())
include_once('include/session.inc');
// init session
session_start();
$sess_id = session_id();
// create session and set session vars
if (!$_SESSION['client_id'])
{
$_SESSION['client_id'] = $sess_id;
$_SESSION['user_lang'] = rcube_language_prop($CONFIG['locale_string']);
$_SESSION['auth_time'] = mktime();
$_SESSION['auth'] = rcmail_auth_hash($sess_id, $_SESSION['auth_time']);
unset($GLOBALS['_auth']);
}
// set session vars global
$sess_auth = $_SESSION['auth'];
$sess_user_lang = rcube_language_prop($_SESSION['user_lang']);
// overwrite config with user preferences
if (is_array($_SESSION['user_prefs']))
$CONFIG = array_merge($CONFIG, $_SESSION['user_prefs']);
// reset some session parameters when changing task
if ($_SESSION['task'] != $task)
unset($_SESSION['page']);
// set current task to session
$_SESSION['task'] = $task;
// create IMAP object
if ($task=='mail')
rcmail_imap_init();
// set localization
if ($CONFIG['locale_string'])
setlocale(LC_ALL, $CONFIG['locale_string']);
else if ($sess_user_lang)
setlocale(LC_ALL, $sess_user_lang);
register_shutdown_function('rcmail_shutdown');
}
// create authorization hash
function rcmail_auth_hash($sess_id, $ts)
{
global $CONFIG;
$auth_string = sprintf('rcmail*sess%sR%s*Chk:%s;%s',
$sess_id,
$ts,
$CONFIG['ip_check'] ? $_SERVER['REMOTE_ADDR'] : '***.***.***.***',
$_SERVER['HTTP_USER_AGENT']);
if (function_exists('sha1'))
return sha1($auth_string);
else
return md5($auth_string);
}
// create IMAP object and connect to server
function rcmail_imap_init($connect=FALSE)
{
global $CONFIG, $DB, $IMAP;
$IMAP = new rcube_imap($DB);
$IMAP->debug_level = $CONFIG['debug_level'];
$IMAP->skip_deleted = $CONFIG['skip_deleted'];
// connect with stored session data
if ($connect)
{
if (!($conn = $IMAP->connect($_SESSION['imap_host'], $_SESSION['username'], decrypt_passwd($_SESSION['password']), $_SESSION['imap_port'], $_SESSION['imap_ssl'])))
show_message('imaperror', 'error');
rcmail_set_imap_prop();
}
// enable caching of imap data
if ($CONFIG['enable_caching']===TRUE)
$IMAP->set_caching(TRUE);
if (is_array($CONFIG['default_imap_folders']))
$IMAP->set_default_mailboxes($CONFIG['default_imap_folders']);
// set pagesize from config
if (isset($CONFIG['pagesize']))
$IMAP->set_pagesize($CONFIG['pagesize']);
}
// set root dir and last stored mailbox
// this must be done AFTER connecting to the server
function rcmail_set_imap_prop()
{
global $CONFIG, $IMAP;
// set root dir from config
if (!empty($CONFIG['imap_root']))
$IMAP->set_rootdir($CONFIG['imap_root']);
if (!empty($_SESSION['mbox']))
$IMAP->set_mailbox($_SESSION['mbox']);
if (isset($_SESSION['page']))
$IMAP->set_page($_SESSION['page']);
}
// do these things on script shutdown
function rcmail_shutdown()
{
global $IMAP;
if (is_object($IMAP))
{
$IMAP->close();
$IMAP->write_cache();
}
// before closing the database connection, write session data
session_write_close();
}
// destroy session data and remove cookie
function rcmail_kill_session()
{
// save user preferences
$a_user_prefs = $_SESSION['user_prefs'];
if (!is_array($a_user_prefs))
$a_user_prefs = array();
if ((isset($_SESSION['sort_col']) && $_SESSION['sort_col']!=$a_user_prefs['message_sort_col']) ||
(isset($_SESSION['sort_order']) && $_SESSION['sort_order']!=$a_user_prefs['message_sort_order']))
{
$a_user_prefs['message_sort_col'] = $_SESSION['sort_col'];
$a_user_prefs['message_sort_order'] = $_SESSION['sort_order'];
rcmail_save_user_prefs($a_user_prefs);
}
$_SESSION = array();
session_destroy();
}
// return correct name for a specific database table
function get_table_name($table)
{
global $CONFIG;
// return table name if configured
$config_key = 'db_table_'.$table;
if (strlen($CONFIG[$config_key]))
return $CONFIG[$config_key];
return $table;
}
// return correct name for a specific database sequence
// (used for Postres only)
function get_sequence_name($sequence)
{
global $CONFIG;
// return table name if configured
$config_key = 'db_sequence_'.$sequence;
if (strlen($CONFIG[$config_key]))
return $CONFIG[$config_key];
return $table;
}
// check the given string and returns language properties
function rcube_language_prop($lang, $prop='lang')
{
global $INSTLL_PATH;
static $rcube_languages, $rcube_language_aliases, $rcube_charsets;
if (empty($rcube_languages))
@include($INSTLL_PATH.'program/localization/index.inc');
// check if we have an alias for that language
if (!isset($rcube_languages[$lang]) && isset($rcube_language_aliases[$lang]))
$lang = $rcube_language_aliases[$lang];
// try the first two chars
if (!isset($rcube_languages[$lang]) && strlen($lang)>2)
{
$lang = substr($lang, 0, 2);
$lang = rcube_language_prop($lang);
}
if (!isset($rcube_languages[$lang]))
$lang = 'en_US';
// language has special charset configured
if (isset($rcube_charsets[$lang]))
$charset = $rcube_charsets[$lang];
else
$charset = 'UTF-8';
if ($prop=='charset')
return $charset;
else
return $lang;
}
// init output object for GUI and add common scripts
function load_gui()
{
global $CONFIG, $OUTPUT, $COMM_PATH, $JS_OBJECT_NAME, $sess_user_lang;
// init output page
$OUTPUT = new rcube_html_page();
// add common javascripts
$javascript = "var $JS_OBJECT_NAME = new rcube_webmail();\n";
$javascript .= "$JS_OBJECT_NAME.set_env('comm_path', '$COMM_PATH');\n";
if (isset($CONFIG['javascript_config'] )){
foreach ($CONFIG['javascript_config'] as $js_config_var){
$javascript .= "$JS_OBJECT_NAME.set_env('$js_config_var', '" . $CONFIG[$js_config_var] . "');\n";
}
}
if (!empty($GLOBALS['_framed']))
$javascript .= "$JS_OBJECT_NAME.set_env('framed', true);\n";
$OUTPUT->add_script($javascript);
$OUTPUT->include_script('common.js');
$OUTPUT->include_script('app.js');
$OUTPUT->scripts_path = 'program/js/';
// set locale setting
rcmail_set_locale($sess_user_lang);
// set user-selected charset
if (!empty($CONFIG['charset']))
$OUTPUT->set_charset($CONFIG['charset']);
// add some basic label to client
rcube_add_label('loading');
}
// set localization charset based on the given language
function rcmail_set_locale($lang)
{
global $OUTPUT, $MBSTRING, $MBSTRING_ENCODING;
static $s_mbstring_loaded = NULL;
// settings for mbstring module (by Tadashi Jokagi)
if ($s_mbstring_loaded===NULL)
{
if ($s_mbstring_loaded = extension_loaded("mbstring"))
{
$MBSTRING = TRUE;
if (function_exists("mb_mbstring_encodings"))
$MBSTRING_ENCODING = mb_mbstring_encodings();
else
$MBSTRING_ENCODING = array("ISO-8859-1", "UTF-7", "UTF7-IMAP", "UTF-8",
"ISO-2022-JP", "EUC-JP", "EUCJP-WIN",
"SJIS", "SJIS-WIN");
$MBSTRING_ENCODING = array_map("strtoupper", $MBSTRING_ENCODING);
if (in_array("SJIS", $MBSTRING_ENCODING))
$MBSTRING_ENCODING[] = "SHIFT_JIS";
}
else
{
$MBSTRING = FALSE;
$MBSTRING_ENCODING = array();
}
}
if ($MBSTRING && function_exists("mb_language"))
{
if (!@mb_language(strtok($lang, "_")))
$MBSTRING = FALSE; // unsupport language
}
$OUTPUT->set_charset(rcube_language_prop($lang, 'charset'));
}
// perfom login to the IMAP server and to the webmail service
function rcmail_login($user, $pass, $host=NULL)
{
global $CONFIG, $IMAP, $DB, $sess_user_lang;
$user_id = NULL;
if (!$host)
$host = $CONFIG['default_host'];
// parse $host URL
$a_host = parse_url($host);
if ($a_host['host'])
{
$host = $a_host['host'];
$imap_ssl = (isset($a_host['scheme']) && in_array($a_host['scheme'], array('ssl','imaps','tls'))) ? TRUE : FALSE;
$imap_port = isset($a_host['port']) ? $a_host['port'] : ($imap_ssl ? 993 : $CONFIG['default_port']);
}
else
$imap_port = $CONFIG['default_port'];
/* Modify username with domain if required
Inspired by Marco <P0L0_notspam_binware.org>
*/
// Check if we need to add domain
if ($CONFIG['username_domain'] && !strstr($user, '@'))
{
if (is_array($CONFIG['username_domain']) && isset($CONFIG['username_domain'][$host]))
$user .= '@'.$CONFIG['username_domain'][$host];
else if (!empty($CONFIG['username_domain']))
$user .= '@'.$CONFIG['username_domain'];
}
// query if user already registered
$sql_result = $DB->query("SELECT user_id, username, language, preferences
FROM ".get_table_name('users')."
WHERE mail_host=? AND (username=? OR alias=?)",
$host,
$user,
$user);
// user already registered -> overwrite username
if ($sql_arr = $DB->fetch_assoc($sql_result))
{
$user_id = $sql_arr['user_id'];
$user = $sql_arr['username'];
}
// try to resolve email address from virtuser table
if (!empty($CONFIG['virtuser_file']) && strstr($user, '@'))
$user = rcmail_email2user($user);
// exit if IMAP login failed
if (!($imap_login = $IMAP->connect($host, $user, $pass, $imap_port, $imap_ssl)))
return FALSE;
// user already registered
if ($user_id && !empty($sql_arr))
{
// get user prefs
if (strlen($sql_arr['preferences']))
{
$user_prefs = unserialize($sql_arr['preferences']);
$_SESSION['user_prefs'] = $user_prefs;
array_merge($CONFIG, $user_prefs);
}
// set user specific language
if (strlen($sql_arr['language']))
$sess_user_lang = $_SESSION['user_lang'] = $sql_arr['language'];
// update user's record
$DB->query("UPDATE ".get_table_name('users')."
SET last_login=now()
WHERE user_id=?",
$user_id);
}
// create new system user
else if ($CONFIG['auto_create_user'])
{
$user_id = rcmail_create_user($user, $host);
}
if ($user_id)
{
$_SESSION['user_id'] = $user_id;
$_SESSION['imap_host'] = $host;
$_SESSION['imap_port'] = $imap_port;
$_SESSION['imap_ssl'] = $imap_ssl;
$_SESSION['username'] = $user;
$_SESSION['user_lang'] = $sess_user_lang;
$_SESSION['password'] = encrypt_passwd($pass);
// force reloading complete list of subscribed mailboxes
$IMAP->clear_cache('mailboxes');
return TRUE;
}
return FALSE;
}
// create new entry in users and identities table
function rcmail_create_user($user, $host)
{
global $DB, $CONFIG, $IMAP;
$user_email = '';
// try to resolve user in virtusertable
if (!empty($CONFIG['virtuser_file']) && strstr($user, '@')==FALSE)
$user_email = rcmail_user2email($user);
$DB->query("INSERT INTO ".get_table_name('users')."
(created, last_login, username, mail_host, alias, language)
VALUES (now(), now(), ?, ?, ?, ?)",
$user,
$host,
$user_email,
$_SESSION['user_lang']);
if ($user_id = $DB->insert_id(get_sequence_name('users')))
{
if (is_array($CONFIG['mail_domain']) && isset($CONFIG['mail_domain'][$host]))
$mail_domain = $CONFIG['mail_domain'][$host];
else if (!empty($CONFIG['mail_domain']))
$mail_domain = $CONFIG['mail_domain'];
else
$mail_domain = $host;
if ($user_email=='')
$user_email = strstr($user, '@') ? $user : sprintf('%s@%s', $user, $mail_domain);
$user_name = $user!=$user_email ? $user : '';
// try to resolve the e-mail address from the virtuser table
if (!empty($CONFIG['virtuser_query']))
{
$sql_result = $DB->query(preg_replace('/%u/', $user, $CONFIG['virtuser_query']));
if ($sql_arr = $DB->fetch_array($sql_result))
$user_email = $sql_arr[0];
}
// also create new identity records
$DB->query("INSERT INTO ".get_table_name('identities')."
(user_id, del, standard, name, email)
VALUES (?, 0, 1, ?, ?)",
$user_id,
$user_name,
$user_email);
// get existing mailboxes
$a_mailboxes = $IMAP->list_mailboxes();
}
else
{
raise_error(array('code' => 500,
'type' => 'php',
'line' => __LINE__,
'file' => __FILE__,
'message' => "Failed to create new user"), TRUE, FALSE);
}
return $user_id;
}
// load virtuser table in array
function rcmail_getvirtualfile()
{
global $CONFIG;
if (empty($CONFIG['virtuser_file']) || !is_file($CONFIG['virtuser_file']))
return FALSE;
// read file
$a_lines = file($CONFIG['virtuser_file']);
return $a_lines;
}
// find matches of the given pattern in virtuser table
function rcmail_findinvirtual($pattern)
{
$result = array();
$virtual = rcmail_getvirtualfile();
if ($virtual==FALSE)
return $result;
// check each line for matches
foreach ($virtual as $line)
{
$line = trim($line);
if (empty($line) || $line{0}=='#')
continue;
if (eregi($pattern, $line))
$result[] = $line;
}
return $result;
}
// resolve username with virtuser table
function rcmail_email2user($email)
{
$user = $email;
$r = rcmail_findinvirtual("^$email");
for ($i=0; $i<count($r); $i++)
{
$data = $r[$i];
$arr = preg_split('/\s+/', $data);
if(count($arr)>0)
{
$user = trim($arr[count($arr)-1]);
break;
}
}
return $user;
}
// resolve e-mail address with virtuser table
function rcmail_user2email($user)
{
$email = "";
$r = rcmail_findinvirtual("$user$");
for ($i=0; $i<count($r); $i++)
{
$data=$r[$i];
$arr = preg_split('/\s+/', $data);
if (count($arr)>0)
{
$email = trim($arr[0]);
break;
}
}
return $email;
}
function rcmail_save_user_prefs($a_user_prefs)
{
global $DB, $CONFIG, $sess_user_lang;
$DB->query("UPDATE ".get_table_name('users')."
SET preferences=?,
language=?
WHERE user_id=?",
serialize($a_user_prefs),
$sess_user_lang,
$_SESSION['user_id']);
if ($DB->affected_rows())
{
$_SESSION['user_prefs'] = $a_user_prefs;
$CONFIG = array_merge($CONFIG, $a_user_prefs);
return TRUE;
}
return FALSE;
}
// overwrite action variable
function rcmail_overwrite_action($action)
{
global $OUTPUT, $JS_OBJECT_NAME;
$GLOBALS['_action'] = $action;
$OUTPUT->add_script(sprintf("\n%s.set_env('action', '%s');", $JS_OBJECT_NAME, $action));
}
function show_message($message, $type='notice', $vars=NULL)
{
global $OUTPUT, $JS_OBJECT_NAME, $REMOTE_REQUEST;
$framed = $GLOBALS['_framed'];
$command = sprintf("display_message('%s', '%s');",
addslashes(rep_specialchars_output(rcube_label(array('name' => $message, 'vars' => $vars)))),
$type);
if ($REMOTE_REQUEST)
return 'this.'.$command;
else
$OUTPUT->add_script(sprintf("%s%s.%s",
$framed ? sprintf('if(parent.%s)parent.', $JS_OBJECT_NAME) : '',
$JS_OBJECT_NAME,
$command));
// console(rcube_label($message));
}
function console($msg, $type=1)
{
if ($GLOBALS['REMOTE_REQUEST'])
print "// $msg\n";
else
{
print $msg;
print "\n<hr>\n";
}
}
function encrypt_passwd($pass)
{
$cypher = des('rcmail?24BitPwDkeyF**ECB', $pass, 1, 0, NULL);
return base64_encode($cypher);
}
function decrypt_passwd($cypher)
{
$pass = des('rcmail?24BitPwDkeyF**ECB', base64_decode($cypher), 0, 0, NULL);
return trim($pass);
}
// send correct response on a remote request
function rcube_remote_response($js_code, $flush=FALSE)
{
global $OUTPUT, $CHARSET;
static $s_header_sent = FALSE;
if (!$s_header_sent)
{
$s_header_sent = TRUE;
send_nocacheing_headers();
- header('Content-Type: application/x-javascript');
+ header('Content-Type: application/x-javascript; charset='.$CHARSET);
print '/** remote response ['.date('d/M/Y h:i:s O')."] **/\n";
}
// send response code
print rcube_charset_convert($js_code, $CHARSET, $OUTPUT->get_charset());
if ($flush) // flush the output buffer
flush();
else // terminate script
exit;
}
// read directory program/localization/ and return a list of available languages
function rcube_list_languages()
{
global $CONFIG, $INSTALL_PATH;
static $sa_languages = array();
if (!sizeof($sa_languages))
{
@include($INSTLL_PATH.'program/localization/index.inc');
if ($dh = @opendir($INSTLL_PATH.'program/localization'))
{
while (($name = readdir($dh)) !== false)
{
if ($name{0}=='.' || !is_dir($INSTLL_PATH.'program/localization/'.$name))
continue;
if ($label = $rcube_languages[$name])
$sa_languages[$name] = $label ? $label : $name;
}
closedir($dh);
}
}
return $sa_languages;
}
// add a localized label to the client environment
function rcube_add_label()
{
global $OUTPUT, $JS_OBJECT_NAME;
$arg_list = func_get_args();
foreach ($arg_list as $i => $name)
$OUTPUT->add_script(sprintf("%s.add_label('%s', '%s');",
$JS_OBJECT_NAME,
$name,
rep_specialchars_output(rcube_label($name), 'js')));
}
// remove temp files of a session
function rcmail_clear_session_temp($sess_id)
{
global $CONFIG;
$temp_dir = $CONFIG['temp_dir'].(!eregi('\/$', $CONFIG['temp_dir']) ? '/' : '');
$cache_dir = $temp_dir.$sess_id;
if (is_dir($cache_dir))
{
clear_directory($cache_dir);
rmdir($cache_dir);
}
}
// remove all expired message cache records
function rcmail_message_cache_gc()
{
global $DB, $CONFIG;
// no cache lifetime configured
if (empty($CONFIG['message_cache_lifetime']))
return;
// get target timestamp
$ts = get_offset_time($CONFIG['message_cache_lifetime'], -1);
$DB->query("DELETE FROM ".get_table_name('messages')."
WHERE created < ".$DB->fromunixtime($ts));
}
// convert a string from one charset to another
// this function is not complete and not tested well
function rcube_charset_convert($str, $from, $to=NULL)
{
global $MBSTRING, $MBSTRING_ENCODING;
$from = strtoupper($from);
$to = $to==NULL ? strtoupper($GLOBALS['CHARSET']) : strtoupper($to);
if ($from==$to)
return $str;
// convert charset using mbstring module
if ($MBSTRING)
{
$to = $to=="UTF-7" ? "UTF7-IMAP" : $to;
$from = $from=="UTF-7" ? "UTF7-IMAP": $from;
if (in_array($to, $MBSTRING_ENCODING) && in_array($from, $MBSTRING_ENCODING))
return mb_convert_encoding($str, $to, $from);
}
// convert charset using iconv module
if (function_exists('iconv') && $from!='UTF-7' && $to!='UTF-7')
return iconv($from, $to, $str);
$conv = new utf8();
// convert string to UTF-8
if ($from=='UTF-7')
$str = rcube_charset_convert(UTF7DecodeString($str), 'ISO-8859-1');
else if ($from=='ISO-8859-1' && function_exists('utf8_encode'))
$str = utf8_encode($str);
else if ($from!='UTF-8')
{
$conv->loadCharset($from);
$str = $conv->strToUtf8($str);
}
// encode string for output
if ($to=='UTF-7')
return UTF7EncodeString($str);
else if ($to=='ISO-8859-1' && function_exists('utf8_decode'))
return utf8_decode($str);
else if ($to!='UTF-8')
{
$conv->loadCharset($to);
return $conv->utf8ToStr($str);
}
// return UTF-8 string
return $str;
}
// replace specials characters to a specific encoding type
function rep_specialchars_output($str, $enctype='', $mode='', $newlines=TRUE)
{
global $OUTPUT_TYPE, $OUTPUT;
static $html_encode_arr, $js_rep_table, $rtf_rep_table, $xml_rep_table;
if (!$enctype)
$enctype = $GLOBALS['OUTPUT_TYPE'];
// convert nbsps back to normal spaces if not html
if ($enctype!='html')
$str = str_replace(chr(160), ' ', $str);
// encode for plaintext
if ($enctype=='text')
return str_replace("\r\n", "\n", $mode=='remove' ? strip_tags($str) : $str);
// encode for HTML output
if ($enctype=='html')
{
if (!$html_encode_arr)
{
$html_encode_arr = get_html_translation_table(HTML_SPECIALCHARS);
unset($html_encode_arr['?']);
unset($html_encode_arr['&']);
}
$ltpos = strpos($str, '<');
$encode_arr = $html_encode_arr;
// don't replace quotes and html tags
if (($mode=='show' || $mode=='') && $ltpos!==false && strpos($str, '>', $ltpos)!==false)
{
unset($encode_arr['"']);
unset($encode_arr['<']);
unset($encode_arr['>']);
}
else if ($mode=='remove')
$str = strip_tags($str);
$out = strtr($str, $encode_arr);
return $newlines ? nl2br($out) : $out;
}
if ($enctype=='url')
return rawurlencode($str);
// if the replace tables for RTF, XML and JS are not yet defined
if (!$js_rep_table)
{
$js_rep_table = $rtf_rep_table = $xml_rep_table = array();
$xml_rep_table['&'] = '&';
for ($c=160; $c<256; $c++) // can be increased to support more charsets
{
$hex = dechex($c);
$rtf_rep_table[Chr($c)] = "\\'$hex";
$xml_rep_table[Chr($c)] = "&#$c;";
if ($OUTPUT->get_charset()=='ISO-8859-1')
$js_rep_table[Chr($c)] = sprintf("\u%s%s", str_repeat('0', 4-strlen($hex)), $hex);
}
$js_rep_table['"'] = sprintf("\u%s%s", str_repeat('0', 4-strlen(dechex(34))), dechex(34));
$xml_rep_table['"'] = '"';
}
// encode for RTF
if ($enctype=='xml')
return strtr($str, $xml_rep_table);
// encode for javascript use
if ($enctype=='js')
{
if ($OUTPUT->get_charset()!='UTF-8')
$str = rcube_charset_convert($str, $GLOBALS['CHARSET'], $OUTPUT->get_charset());
return preg_replace(array("/\r\n/", '/"/', "/([^\\\])'/"), array('\n', '\"', "$1\'"), strtr($str, $js_rep_table));
}
// encode for RTF
if ($enctype=='rtf')
return preg_replace("/\r\n/", "\par ", strtr($str, $rtf_rep_table));
// no encoding given -> return original string
return $str;
}
/**
* Read input value and convert it for internal use
* Performs stripslashes() and charset conversion if necessary
*
* @param string Field name to read
* @param int Source to get value from (GPC)
* @param boolean Allow HTML tags in field value
* @param string Charset to convert into
* @return string Field value or NULL if not available
*/
function get_input_value($fname, $source, $allow_html=FALSE, $charset=NULL)
{
global $OUTPUT;
$value = NULL;
if ($source==RCUBE_INPUT_GET && isset($_GET[$fname]))
$value = $_GET[$fname];
else if ($source==RCUBE_INPUT_POST && isset($_POST[$fname]))
$value = $_POST[$fname];
else if ($source==RCUBE_INPUT_GPC)
{
if (isset($_POST[$fname]))
$value = $_POST[$fname];
else if (isset($_GET[$fname]))
$value = $_GET[$fname];
else if (isset($_COOKIE[$fname]))
$value = $_COOKIE[$fname];
}
// strip slashes if magic_quotes enabled
if ((bool)get_magic_quotes_gpc())
$value = stripslashes($value);
// remove HTML tags if not allowed
if (!$allow_html)
$value = strip_tags($value);
// convert to internal charset
if (is_object($OUTPUT))
return rcube_charset_convert($value, $OUTPUT->get_charset(), $charset);
else
return $value;
}
// ************** template parsing and gui functions **************
// return boolean if a specific template exists
function template_exists($name)
{
global $CONFIG, $OUTPUT;
$skin_path = $CONFIG['skin_path'];
// check template file
return is_file("$skin_path/templates/$name.html");
}
// get page template an replace variable
// similar function as used in nexImage
function parse_template($name='main', $exit=TRUE)
{
global $CONFIG, $OUTPUT;
$skin_path = $CONFIG['skin_path'];
// read template file
$templ = '';
$path = "$skin_path/templates/$name.html";
if($fp = @fopen($path, 'r'))
{
$templ = fread($fp, filesize($path));
fclose($fp);
}
else
{
raise_error(array('code' => 500,
'type' => 'php',
'line' => __LINE__,
'file' => __FILE__,
'message' => "Error loading template for '$name'"), TRUE, TRUE);
return FALSE;
}
// parse for specialtags
$output = parse_rcube_xml($templ);
$OUTPUT->write(trim(parse_with_globals($output)), $skin_path);
if ($exit)
exit;
}
// replace all strings ($varname) with the content of the according global variable
function parse_with_globals($input)
{
$GLOBALS['__comm_path'] = $GLOBALS['COMM_PATH'];
$output = preg_replace('/\$(__[a-z0-9_\-]+)/e', '$GLOBALS["\\1"]', $input);
return $output;
}
function parse_rcube_xml($input)
{
$output = preg_replace('/<roundcube:([-_a-z]+)\s+([^>]+)>/Uie', "rcube_xml_command('\\1', '\\2')", $input);
return $output;
}
function rcube_xml_command($command, $str_attrib, $a_attrib=NULL)
{
global $IMAP, $CONFIG, $OUTPUT;
$attrib = array();
$command = strtolower($command);
preg_match_all('/\s*([-_a-z]+)=["]([^"]+)["]?/i', stripslashes($str_attrib), $regs, PREG_SET_ORDER);
// convert attributes to an associative array (name => value)
if ($regs)
foreach ($regs as $attr)
$attrib[strtolower($attr[1])] = $attr[2];
else if ($a_attrib)
$attrib = $a_attrib;
// execute command
switch ($command)
{
// return a button
case 'button':
if ($attrib['command'])
return rcube_button($attrib);
break;
// show a label
case 'label':
if ($attrib['name'] || $attrib['command'])
return rep_specialchars_output(rcube_label($attrib));
break;
// create a menu item
case 'menu':
if ($attrib['command'] && $attrib['group'])
rcube_menu($attrib);
break;
// include a file
case 'include':
$path = realpath($CONFIG['skin_path'].$attrib['file']);
if($fp = @fopen($path, 'r'))
{
$incl = fread($fp, filesize($path));
fclose($fp);
return parse_rcube_xml($incl);
}
break;
// return code for a specific application object
case 'object':
$object = strtolower($attrib['name']);
$object_handlers = array(
// GENERAL
'loginform' => 'rcmail_login_form',
'username' => 'rcmail_current_username',
// MAIL
'mailboxlist' => 'rcmail_mailbox_list',
'message' => 'rcmail_message_container',
'messages' => 'rcmail_message_list',
'messagecountdisplay' => 'rcmail_messagecount_display',
'quotadisplay' => 'rcmail_quota_display',
'messageheaders' => 'rcmail_message_headers',
'messagebody' => 'rcmail_message_body',
'messageattachments' => 'rcmail_message_attachments',
'blockedobjects' => 'rcmail_remote_objects_msg',
'messagecontentframe' => 'rcmail_messagecontent_frame',
'messagepartframe' => 'rcmail_message_part_frame',
'messagepartcontrols' => 'rcmail_message_part_controls',
'composeheaders' => 'rcmail_compose_headers',
'composesubject' => 'rcmail_compose_subject',
'composebody' => 'rcmail_compose_body',
'composeattachmentlist' => 'rcmail_compose_attachment_list',
'composeattachmentform' => 'rcmail_compose_attachment_form',
'composeattachment' => 'rcmail_compose_attachment_field',
'priorityselector' => 'rcmail_priority_selector',
'charsetselector' => 'rcmail_charset_selector',
'searchform' => 'rcmail_search_form',
'receiptcheckbox' => 'rcmail_receipt_checkbox',
// ADDRESS BOOK
'addresslist' => 'rcmail_contacts_list',
'addressframe' => 'rcmail_contact_frame',
'recordscountdisplay' => 'rcmail_rowcount_display',
'contactdetails' => 'rcmail_contact_details',
'contacteditform' => 'rcmail_contact_editform',
'ldappublicsearch' => 'rcmail_ldap_public_search_form',
'ldappublicaddresslist' => 'rcmail_ldap_public_list',
// USER SETTINGS
'userprefs' => 'rcmail_user_prefs_form',
'itentitieslist' => 'rcmail_identities_list',
'identityframe' => 'rcmail_identity_frame',
'identityform' => 'rcube_identity_form',
'foldersubscription' => 'rcube_subscription_form',
'createfolder' => 'rcube_create_folder_form',
'composebody' => 'rcmail_compose_body'
);
// execute object handler function
if ($object_handlers[$object] && function_exists($object_handlers[$object]))
return call_user_func($object_handlers[$object], $attrib);
else if ($object=='productname')
{
$name = !empty($CONFIG['product_name']) ? $CONFIG['product_name'] : 'RoundCube Webmail';
return rep_specialchars_output($name, 'html', 'all');
}
else if ($object=='version')
{
return (string)RCMAIL_VERSION;
}
else if ($object=='pagetitle')
{
$task = $GLOBALS['_task'];
$title = !empty($CONFIG['product_name']) ? $CONFIG['product_name'].' :: ' : '';
- if ($task=='mail' && isset($GLOBALS['MESSAGE']['subject']))
+ if ($task=='login')
+ $title = rcube_label(array('name' => 'welcome', 'vars' => array('product' => $CONFIG['product_name'])));
+ else if ($task=='mail' && isset($GLOBALS['MESSAGE']['subject']))
$title .= $GLOBALS['MESSAGE']['subject'];
else if (isset($GLOBALS['PAGE_TITLE']))
$title .= $GLOBALS['PAGE_TITLE'];
else if ($task=='mail' && ($mbox_name = $IMAP->get_mailbox_name()))
$title .= rcube_charset_convert($mbox_name, 'UTF-7', 'UTF-8');
else
- $title .= $task;
+ $title .= ucfirst($task);
return rep_specialchars_output($title, 'html', 'all');
}
break;
}
return '';
}
// create and register a button
function rcube_button($attrib)
{
global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $BROWSER, $COMM_PATH, $MAIN_TASKS;
static $sa_buttons = array();
static $s_button_count = 100;
$skin_path = $CONFIG['skin_path'];
if (!($attrib['command'] || $attrib['name']))
return '';
// try to find out the button type
if ($attrib['type'])
$attrib['type'] = strtolower($attrib['type']);
else
$attrib['type'] = ($attrib['image'] || $attrib['imagepas'] || $arg['imagect']) ? 'image' : 'link';
$command = $attrib['command'];
// take the button from the stack
if($attrib['name'] && $sa_buttons[$attrib['name']])
$attrib = $sa_buttons[$attrib['name']];
// add button to button stack
else if($attrib['image'] || $arg['imagect'] || $attrib['imagepas'] || $attrib['class'])
{
if(!$attrib['name'])
$attrib['name'] = $command;
if (!$attrib['image'])
$attrib['image'] = $attrib['imagepas'] ? $attrib['imagepas'] : $attrib['imageact'];
$sa_buttons[$attrib['name']] = $attrib;
}
// get saved button for this command/name
else if ($command && $sa_buttons[$command])
$attrib = $sa_buttons[$command];
//else
// return '';
// set border to 0 because of the link arround the button
if ($attrib['type']=='image' && !isset($attrib['border']))
$attrib['border'] = 0;
if (!$attrib['id'])
$attrib['id'] = sprintf('rcmbtn%d', $s_button_count++);
// get localized text for labels and titles
if ($attrib['title'])
$attrib['title'] = rep_specialchars_output(rcube_label($attrib['title']));
if ($attrib['label'])
$attrib['label'] = rep_specialchars_output(rcube_label($attrib['label']));
if ($attrib['alt'])
$attrib['alt'] = rep_specialchars_output(rcube_label($attrib['alt']));
// set title to alt attribute for IE browsers
if ($BROWSER['ie'] && $attrib['title'] && !$attrib['alt'])
{
$attrib['alt'] = $attrib['title'];
unset($attrib['title']);
}
// add empty alt attribute for XHTML compatibility
if (!isset($attrib['alt']))
$attrib['alt'] = '';
// register button in the system
if ($attrib['command'])
{
$OUTPUT->add_script(sprintf("%s.register_button('%s', '%s', '%s', '%s', '%s', '%s');",
$JS_OBJECT_NAME,
$command,
$attrib['id'],
$attrib['type'],
$attrib['imageact'] ? $skin_path.$attrib['imageact'] : $attrib['classact'],
$attirb['imagesel'] ? $skin_path.$attirb['imagesel'] : $attrib['classsel'],
$attrib['imageover'] ? $skin_path.$attrib['imageover'] : ''));
// make valid href to task buttons
if (in_array($attrib['command'], $MAIN_TASKS))
$attrib['href'] = ereg_replace('_task=[a-z]+', '_task='.$attrib['command'], $COMM_PATH);
}
// overwrite attributes
if (!$attrib['href'])
$attrib['href'] = '#';
if ($command)
$attrib['onclick'] = sprintf("return %s.command('%s','%s',this)", $JS_OBJECT_NAME, $command, $attrib['prop']);
if ($command && $attrib['imageover'])
{
$attrib['onmouseover'] = sprintf("return %s.button_over('%s','%s')", $JS_OBJECT_NAME, $command, $attrib['id']);
$attrib['onmouseout'] = sprintf("return %s.button_out('%s','%s')", $JS_OBJECT_NAME, $command, $attrib['id']);
}
$out = '';
// generate image tag
if ($attrib['type']=='image')
{
$attrib_str = create_attrib_string($attrib, array('style', 'class', 'id', 'width', 'height', 'border', 'hspace', 'vspace', 'align', 'alt'));
$img_tag = sprintf('<img src="%%s"%s />', $attrib_str);
$btn_content = sprintf($img_tag, $skin_path.$attrib['image']);
if ($attrib['label'])
$btn_content .= ' '.$attrib['label'];
$link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'title');
}
else if ($attrib['type']=='link')
{
$btn_content = $attrib['label'] ? $attrib['label'] : $attrib['command'];
$link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style');
}
else if ($attrib['type']=='input')
{
$attrib['type'] = 'button';
if ($attrib['label'])
$attrib['value'] = $attrib['label'];
$attrib_str = create_attrib_string($attrib, array('type', 'value', 'onclick', 'id', 'class', 'style'));
$out = sprintf('<input%s disabled />', $attrib_str);
}
// generate html code for button
if ($btn_content)
{
$attrib_str = create_attrib_string($attrib, $link_attrib);
$out = sprintf('<a%s>%s</a>', $attrib_str, $btn_content);
}
return $out;
}
function rcube_menu($attrib)
{
return '';
}
function rcube_table_output($attrib, $table_data, $a_show_cols, $id_col)
{
global $DB;
// allow the following attributes to be added to the <table> tag
$attrib_str = create_attrib_string($attrib, array('style', 'class', 'id', 'cellpadding', 'cellspacing', 'border', 'summary'));
$table = '<table' . $attrib_str . ">\n";
// add table title
$table .= "<thead><tr>\n";
foreach ($a_show_cols as $col)
$table .= '<td class="'.$col.'">' . rep_specialchars_output(rcube_label($col)) . "</td>\n";
$table .= "</tr></thead>\n<tbody>\n";
$c = 0;
if (!is_array($table_data))
{
while ($table_data && ($sql_arr = $DB->fetch_assoc($table_data)))
{
$zebra_class = $c%2 ? 'even' : 'odd';
$table .= sprintf('<tr id="rcmrow%d" class="contact '.$zebra_class.'">'."\n", $sql_arr[$id_col]);
// format each col
foreach ($a_show_cols as $col)
{
$cont = rep_specialchars_output($sql_arr[$col]);
$table .= '<td class="'.$col.'">' . $cont . "</td>\n";
}
$table .= "</tr>\n";
$c++;
}
}
else
{
foreach ($table_data as $row_data)
{
$zebra_class = $c%2 ? 'even' : 'odd';
$table .= sprintf('<tr id="rcmrow%d" class="contact '.$zebra_class.'">'."\n", $row_data[$id_col]);
// format each col
foreach ($a_show_cols as $col)
{
$cont = rep_specialchars_output($row_data[$col]);
$table .= '<td class="'.$col.'">' . $cont . "</td>\n";
}
$table .= "</tr>\n";
$c++;
}
}
// complete message table
$table .= "</tbody></table>\n";
return $table;
}
function rcmail_get_edit_field($col, $value, $attrib, $type='text')
{
$fname = '_'.$col;
$attrib['name'] = $fname;
if ($type=='checkbox')
{
$attrib['value'] = '1';
$input = new checkbox($attrib);
}
else if ($type=='textarea')
{
$attrib['cols'] = $attrib['size'];
$input = new textarea($attrib);
}
else
$input = new textfield($attrib);
// use value from post
if (!empty($_POST[$fname]))
$value = $_POST[$fname];
$out = $input->show($value);
return $out;
}
function create_attrib_string($attrib, $allowed_attribs=array('id', 'class', 'style'))
{
// allow the following attributes to be added to the <iframe> tag
$attrib_str = '';
foreach ($allowed_attribs as $a)
if (isset($attrib[$a]))
$attrib_str .= sprintf(' %s="%s"', $a, $attrib[$a]);
return $attrib_str;
}
function format_date($date, $format=NULL)
{
global $CONFIG, $sess_user_lang;
$ts = NULL;
if (is_numeric($date))
$ts = $date;
else if (!empty($date))
$ts = @strtotime($date);
if (empty($ts))
return '';
// get user's timezone
$tz = $CONFIG['timezone'];
if ($CONFIG['dst_active'])
$tz++;
// convert time to user's timezone
$timestamp = $ts - date('Z', $ts) + ($tz * 3600);
// get current timestamp in user's timezone
$now = time(); // local time
$now -= (int)date('Z'); // make GMT time
$now += ($tz * 3600); // user's time
$now_date = getdate();
$today_limit = mktime(0, 0, 0, $now_date['mon'], $now_date['mday'], $now_date['year']);
$week_limit = mktime(0, 0, 0, $now_date['mon'], $now_date['mday']-6, $now_date['year']);
// define date format depending on current time
if ($CONFIG['prettydate'] && !$format && $timestamp > $today_limit)
return sprintf('%s %s', rcube_label('today'), date('H:i', $timestamp));
else if ($CONFIG['prettydate'] && !$format && $timestamp > $week_limit)
$format = $CONFIG['date_short'] ? $CONFIG['date_short'] : 'D H:i';
else if (!$format)
$format = $CONFIG['date_long'] ? $CONFIG['date_long'] : 'd.m.Y H:i';
// parse format string manually in order to provide localized weekday and month names
// an alternative would be to convert the date() format string to fit with strftime()
$out = '';
for($i=0; $i<strlen($format); $i++)
{
if ($format{$i}=='\\') // skip escape chars
continue;
// write char "as-is"
if ($format{$i}==' ' || $format{$i-1}=='\\')
$out .= $format{$i};
// weekday (short)
else if ($format{$i}=='D')
$out .= rcube_label(strtolower(date('D', $timestamp)));
// weekday long
else if ($format{$i}=='l')
$out .= rcube_label(strtolower(date('l', $timestamp)));
// month name (short)
else if ($format{$i}=='M')
$out .= rcube_label(strtolower(date('M', $timestamp)));
// month name (long)
else if ($format{$i}=='F')
$out .= rcube_label(strtolower(date('F', $timestamp)));
else
$out .= date($format{$i}, $timestamp);
}
return $out;
}
// ************** functions delivering gui objects **************
function rcmail_message_container($attrib)
{
global $OUTPUT, $JS_OBJECT_NAME;
if (!$attrib['id'])
$attrib['id'] = 'rcmMessageContainer';
// allow the following attributes to be added to the <table> tag
$attrib_str = create_attrib_string($attrib, array('style', 'class', 'id'));
$out = '<div' . $attrib_str . "></div>";
$OUTPUT->add_script("$JS_OBJECT_NAME.gui_object('message', '$attrib[id]');");
return $out;
}
// return the IMAP username of the current session
function rcmail_current_username($attrib)
{
global $DB;
static $s_username;
// alread fetched
if (!empty($s_username))
return $s_username;
// get e-mail address form default identity
$sql_result = $DB->query("SELECT email AS mailto
FROM ".get_table_name('identities')."
WHERE user_id=?
AND standard=1
AND del<>1",
$_SESSION['user_id']);
if ($DB->num_rows($sql_result))
{
$sql_arr = $DB->fetch_assoc($sql_result);
$s_username = $sql_arr['mailto'];
}
else if (strstr($_SESSION['username'], '@'))
$s_username = $_SESSION['username'];
else
$s_username = $_SESSION['username'].'@'.$_SESSION['imap_host'];
return $s_username;
}
// return code for the webmail login form
function rcmail_login_form($attrib)
{
global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $SESS_HIDDEN_FIELD;
$labels = array();
$labels['user'] = rcube_label('username');
$labels['pass'] = rcube_label('password');
$labels['host'] = rcube_label('server');
$input_user = new textfield(array('name' => '_user', 'size' => 30));
$input_pass = new passwordfield(array('name' => '_pass', 'size' => 30));
$input_action = new hiddenfield(array('name' => '_action', 'value' => 'login'));
$fields = array();
$fields['user'] = $input_user->show(get_input_value('_user', RCUBE_INPUT_POST));
$fields['pass'] = $input_pass->show();
$fields['action'] = $input_action->show();
if (is_array($CONFIG['default_host']))
{
$select_host = new select(array('name' => '_host'));
foreach ($CONFIG['default_host'] as $key => $value)
$select_host->add($value, (is_numeric($key) ? $value : $key));
$fields['host'] = $select_host->show($_POST['_host']);
}
else if (!strlen($CONFIG['default_host']))
{
$input_host = new textfield(array('name' => '_host', 'size' => 30));
$fields['host'] = $input_host->show($_POST['_host']);
}
$form_name = strlen($attrib['form']) ? $attrib['form'] : 'form';
$form_start = !strlen($attrib['form']) ? '<form name="form" action="./" method="post">' : '';
$form_end = !strlen($attrib['form']) ? '</form>' : '';
if ($fields['host'])
$form_host = <<<EOF
</tr><tr>
<td class="title">$labels[host]</td>
<td>$fields[host]</td>
EOF;
$OUTPUT->add_script("$JS_OBJECT_NAME.gui_object('loginform', '$form_name');");
$out = <<<EOF
$form_start
$SESS_HIDDEN_FIELD
$fields[action]
<table><tr>
<td class="title">$labels[user]</td>
<td>$fields[user]</td>
</tr><tr>
<td class="title">$labels[pass]</td>
<td>$fields[pass]</td>
$form_host
</tr></table>
$form_end
EOF;
return $out;
}
function rcmail_charset_selector($attrib)
{
global $OUTPUT;
// pass the following attributes to the form class
$field_attrib = array('name' => '_charset');
foreach ($attrib as $attr => $value)
if (in_array($attr, array('id', 'class', 'style', 'size', 'tabindex')))
$field_attrib[$attr] = $value;
$charsets = array(
'US-ASCII' => 'ASCII (English)',
'EUC-JP' => 'EUC-JP (Japanese)',
'EUC-KR' => 'EUC-KR (Korean)',
'BIG5' => 'BIG5 (Chinese)',
'GB2312' => 'GB2312 (Chinese)',
'ISO-2022-JP' => 'ISO-2022-JP (Japanese)',
'ISO-8859-1' => 'ISO-8859-1 (Latin-1)',
'ISO-8859-2' => 'ISO-8895-2 (Central European)',
'ISO-8859-7' => 'ISO-8859-7 (Greek)',
'ISO-8859-9' => 'ISO-8859-9 (Turkish)',
'Windows-1251' => 'Windows-1251 (Cyrillic)',
'Windows-1252' => 'Windows-1252 (Western)',
'Windows-1255' => 'Windows-1255 (Hebrew)',
'Windows-1256' => 'Windows-1256 (Arabic)',
'Windows-1257' => 'Windows-1257 (Baltic)',
'UTF-8' => 'UTF-8'
);
$select = new select($field_attrib);
$select->add(array_values($charsets), array_keys($charsets));
$set = $_POST['_charset'] ? $_POST['_charset'] : $OUTPUT->get_charset();
return $select->show($set);
}
/****** debugging function ********/
function rcube_timer()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
function rcube_print_time($timer, $label='Timer')
{
static $print_count = 0;
$print_count++;
$now = rcube_timer();
$diff = $now-$timer;
if (empty($label))
$label = 'Timer '.$print_count;
console(sprintf("%s: %0.4f sec", $label, $diff));
}
?>
diff --git a/program/localization/ca/labels.inc b/program/localization/ca/labels.inc
index e17fd459a..13f1a2ca8 100644
--- a/program/localization/ca/labels.inc
+++ b/program/localization/ca/labels.inc
@@ -1,201 +1,200 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/ca/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Miguel Canteras i Cañizares <miguel@canteras.org> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Nom d\'usuari';
$labels['password'] = 'Contrasenya';
$labels['server'] = 'Servidor';
$labels['login'] = 'Entrar';
// taskbar
$labels['logout'] = 'Tancar sessió';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Configuració';
$labels['addressbook'] = 'Contactes';
// mailbox names
$labels['inbox'] = 'Entrada';
$labels['sent'] = 'Enviats';
$labels['trash'] = 'Paperera';
$labels['drafts'] = 'Esborranys';
$labels['junk'] = 'Correu brossa';
// message listing
$labels['subject'] = 'Assumpte';
$labels['from'] = 'Remitent';
$labels['to'] = 'Destinatari';
$labels['cc'] = 'CC';
$labels['bcc'] = 'BCC';
$labels['replyto'] = 'Respondre a';
$labels['date'] = 'Data';
$labels['size'] = 'Grandària';
$labels['priority'] = 'Prioritat';
$labels['organization'] = 'Organització';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Carpetes';
$labels['messagesfromto'] = 'Missatges des de $from a $to de $count';
$labels['messagenrof'] = 'Missatge $nr de $count';
$labels['moveto'] = 'moure a...';
$labels['download'] = 'descarregar';
$labels['filename'] = 'Nom del fitxer';
$labels['filesize'] = 'Grandaria de fitxer';
$labels['preferhtml'] = 'Preferisc HTML';
$labels['htmlmessage'] = 'Missatge HTML';
$labels['prettydate'] = 'Dates curtes';
$labels['addtoaddressbook'] = 'Afegir a contactes';
// weekdays short
$labels['sun'] = 'DM';
$labels['mon'] = 'DL';
$labels['tue'] = 'DM';
$labels['wed'] = 'DC';
$labels['thu'] = 'DJ';
$labels['fri'] = 'DV';
$labels['sat'] = 'DS';
// weekdays long
$labels['sunday'] = 'Diumenge';
$labels['monday'] = 'Dilluns';
$labels['tuesday'] = 'Dimarts';
$labels['wednesday'] = 'Dimecres';
$labels['thursday'] = 'Dijous';
$labels['friday'] = 'Divendres';
$labels['saturday'] = 'Dissabte';
$labels['today'] = 'Avui';
// toolbar buttons
$labels['writenewmessage'] = 'Crear nou missatge';
$labels['replytomessage'] = 'Respondre al missatge';
$labels['replytoallmessage'] = 'Respondre al remitent i a tots els destinataris';
$labels['forwardmessage'] = 'Reenviar missatge';
$labels['deletemessage'] = 'Moure missatge a la paperera';
$labels['printmessage'] = 'Imprimir aquest missatge';
$labels['previousmessages'] = 'Mostrar missatges anteriors';
$labels['nextmessages'] = 'Mostrar missatges següents';
$labels['backtolist'] = 'Tornar a la llista de missatges';
$labels['viewsource'] = 'Visualitza el codi font';
$labels['select'] = 'Seleccionar';
$labels['all'] = 'Tots';
$labels['none'] = 'Cap';
$labels['unread'] = 'No llegits';
$labels['compact'] = 'Compacta';
$labels['empty'] = 'Buida';
$labels['purge'] = 'Purga';
$labels['quota'] = 'Utilització de disc';
// message compose
$labels['compose'] = 'Escriure un missatge';
$labels['sendmessage'] = 'Enviar ara el missatge';
$labels['addattachment'] = 'Afegir un fitxer';
$labels['charset'] = 'Codificació de caràcters';
$labels['attachments'] = 'Adjunts';
$labels['upload'] = 'Afegir';
$labels['close'] = 'Cancel·lar';
$labels['low'] = 'Baixa';
$labels['lowest'] = 'Molt baixa';
$labels['normal'] = 'Normal';
$labels['high'] = 'Alta';
$labels['highest'] = 'Molt alta';
$labels['nosubject'] = '(sense assumpte)';
$labels['showimages'] = 'Mostra imatges';
// address boook
$labels['name'] = 'Nom a mostrar';
$labels['firstname'] = 'Nom';
$labels['surname'] = 'Cognom';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Afegir nou contacte';
$labels['editcontact'] = 'Editar contacte';
$labels['edit'] = 'Editar';
$labels['cancel'] = 'Cancel·lar';
$labels['save'] = 'Desar';
$labels['delete'] = 'Suprimir';
$labels['newcontact'] = 'Crear nou contacte';
$labels['deletecontact'] = 'Suprimir contactes seleccionats';
$labels['composeto'] = 'Redactar correu per a';
$labels['contactsfromto'] = 'Contactes $from a $to de $count';
$labels['print'] = 'Imprimeix';
$labels['export'] = 'Exportar';
// LDAP search
$labels['ldapsearch'] = 'Cerca el directori LDAP';
$labels['ldappublicsearchname'] = 'Nom de contacte';
$labels['ldappublicsearchtype'] = 'Cerca exacta?';
$labels['ldappublicserverselect'] = 'Selecciona els servidors';
$labels['ldappublicsearchfield'] = 'Cerca activa';
$labels['ldappublicsearchform'] = 'Cerca un contacte';
$labels['ldappublicsearch'] = 'Cerca';
// settings
$labels['settingsfor'] = 'Configuració per a';
$labels['preferences'] = 'Preferències';
$labels['userpreferences'] = 'Preferències d\'usuari';
$labels['editpreferences'] = 'Editar preferències d\'usuari';
$labels['identities'] = 'Identitats';
$labels['manageidentities'] = 'Gestionar identitats per a aquest compte';
$labels['newidentity'] = 'Nova identitat';
$labels['newitem'] = 'Nou';
$labels['edititem'] = 'Editar';
$labels['setdefault'] = 'Seleccionar opció per defecte';
$labels['language'] = 'Idioma';
$labels['timezone'] = 'Zona horària';
$labels['pagesize'] = 'Files per pàgina';
$labels['signature'] = 'Signatura';
$labels['folder'] = 'Carpeta';
$labels['folders'] = 'Carpetes';
$labels['foldername'] = 'Nom de carpeta';
$labels['subscribed'] = 'Subscriure\'s';
$labels['create'] = 'Crear';
$labels['createfolder'] = 'Crear nova carpeta';
$labels['deletefolder'] = 'Suprimir carpeta';
$labels['managefolders'] = 'Gestionar carpetes';
$labels['sortby'] = 'Ordena per';
$labels['sortasc'] = 'Ordena ascendentment';
$labels['sortdesc'] = 'Ordena descendentment';
?>
diff --git a/program/localization/cn/labels.inc b/program/localization/cn/labels.inc
index 398e7acef..e1cbcc469 100644
--- a/program/localization/cn/labels.inc
+++ b/program/localization/cn/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/cn/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Simplified-chinese utf-8 by winman 2006/02/19 |
| Author: winman rong <winman.rong@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = '用户名';
$labels['password'] = '密码';
$labels['server'] = '服务器';
$labels['login'] = '登录';
// taskbar
$labels['logout'] = '退出';
$labels['mail'] = '电子邮件';
$labels['settings'] = '个人设置';
$labels['addressbook'] = '地址薄';
// mailbox names
$labels['inbox'] = '收件箱';
$labels['sent'] = '发件箱';
$labels['trash'] = '垃圾桶';
$labels['drafts'] = '草稿';
$labels['junk'] = '垃圾邮件';
// message listing
$labels['subject'] = '邮件标题';
$labels['from'] = '发件人';
$labels['to'] = '接收人';
$labels['cc'] = '副本';
$labels['bcc'] = '密送';
$labels['replyto'] = '回复地址';
$labels['date'] = '日期';
$labels['size'] = '文件大小';
$labels['priority'] = '优先级';
$labels['organization'] = '团体';
// aliases
$labels['reply-to'] = $labels['回复到'];
$labels['mailboxlist'] = '文件夹';
$labels['messagesfromto'] = 'Messages $from to $to of $count';
$labels['messagenrof'] = 'Message $nr of $count';
$labels['moveto'] = '移动到...';
$labels['download'] = '下载';
$labels['filename'] = '文件名称';
$labels['filesize'] = '文件大小';
$labels['preferhtml'] = '以HTML格式显示';
$labels['htmlmessage'] = 'HTML格式邮件';
$labels['prettydate'] = 'Pretty dates';
$labels['addtoaddressbook'] = '加到地址薄';
// weekdays short
$labels['sun'] = '星期日';
$labels['mon'] = '星期一';
$labels['tue'] = '星期二';
$labels['wed'] = '星期三';
$labels['thu'] = '星期四';
$labels['fri'] = '星期五';
$labels['sat'] = '星期六';
// weekdays long
$labels['sunday'] = '星期日';
$labels['monday'] = '星期一';
$labels['tuesday'] = '星期二';
$labels['wednesday'] = '星期三';
$labels['thursday'] = '星期四';
$labels['friday'] = '星期五';
$labels['saturday'] = '星期六';
$labels['today'] = '今天';
// toolbar buttons
$labels['writenewmessage'] = '写新邮件';
$labels['replytomessage'] = '回复邮件';
$labels['forwardmessage'] = '转发邮件';
$labels['deletemessage'] = '把邮件移动到垃圾桶';
$labels['printmessage'] = '打印邮件';
$labels['previousmessages'] = '上一封邮件';
$labels['nextmessages'] = '下一封邮件';
$labels['backtolist'] = '返回收件箱';
$labels['viewsource'] = '显示源代码';
$labels['select'] = '选择';
$labels['all'] = '全部';
$labels['none'] = '不选';
$labels['unread'] = '没读过的';
$labels['compact'] = 'Compact';
$labels['empty'] = '空的';
$labels['purge'] = '清除';
$labels['quota'] = '空间使用';
// message compose
$labels['compose'] = '写新邮件';
$labels['sendmessage'] = '立刻发送邮件';
$labels['addattachment'] = '添加附件';
$labels['attachments'] = '附件';
$labels['upload'] = '上传';
$labels['close'] = '关闭';
$labels['low'] = '低';
$labels['lowest'] = '最低';
$labels['normal'] = '正常';
$labels['high'] = '高';
$labels['highest'] = '最高';
$labels['nosubject'] = '(没有主题)';
$labels['showimages'] = '显示图片';
// address boook
$labels['name'] = '显示名字';
$labels['firstname'] = '名';
$labels['surname'] = '姓';
$labels['email'] = '电子邮件';
$labels['addcontact'] = '增加新联系人';
$labels['editcontact'] = '编辑联系信息';
$labels['edit'] = '编辑';
$labels['cancel'] = '取消';
$labels['save'] = '保存';
$labels['delete'] = '删除';
$labels['newcontact'] = '建立新的联系信息';
$labels['addcontact'] = '将联系人添加到地址薄';
$labels['deletecontact'] = '删除选择的联系信息';
$labels['composeto'] = '给所选择的联系人发送邮件';
$labels['contactsfromto'] = 'Contacts $from to $to of $count';
$labels['print'] = '打印';
$labels['export'] = '导出';
// LDAP search
$labels['ldapsearch'] = 'LDAP 目录搜索';
$labels['ldappublicsearchname'] = '联系人名字';
$labels['ldappublicsearchtype'] = '精确匹配?';
$labels['ldappublicserverselect'] = '选择服务器';
$labels['ldappublicsearchfield'] = 'Search on';
$labels['ldappublicsearchform'] = 'Look for a contact';
$labels['ldappublicsearch'] = '搜索';
// settings
$labels['settingsfor'] = '设置';
$labels['preferences'] = '参数选择';
$labels['userpreferences'] = '用户参数';
$labels['editpreferences'] = '编辑用户参数';
$labels['identities'] = '发件人身份';
$labels['manageidentities'] = '管理发件人资料';
$labels['newidentity'] = '建立新身份';
$labels['newitem'] = 'New item';
$labels['edititem'] = 'Edit item';
$labels['setdefault'] = '设置为默认';
$labels['language'] = '语言';
$labels['timezone'] = '时区';
$labels['pagesize'] = '每页行数';
$labels['signature'] = '签名';
$labels['folder'] = '文件夹';
$labels['folders'] = '文件夹';
$labels['foldername'] = '文件夹名称';
$labels['subscribed'] = '显示与否';
$labels['create'] = '创建';
$labels['createfolder'] = '建立新文件夹';
$labels['deletefolder'] = '删除文件夹';
$labels['managefolders'] = '管理文件夹';
$labels['sortby'] = 'Sort by';
$labels['sortasc'] = '由小到大排列';
$labels['sortdesc'] = '由大到小排列';
?>
\ No newline at end of file
diff --git a/program/localization/cz/labels.inc b/program/localization/cz/labels.inc
index 3573a7956..c942fa029 100755
--- a/program/localization/cz/labels.inc
+++ b/program/localization/cz/labels.inc
@@ -1,200 +1,199 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/cz/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| All rights reserved. |
| |
+-----------------------------------------------------------------------+
| Author: Martin Mrajca <martin@moonlake.cz> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Uživatel';
$labels['password'] = 'Heslo';
$labels['server'] = 'Server';
$labels['login'] = 'Přihlásit';
// taskbar
$labels['logout'] = 'Odhlásit';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Osobní nastavení';
$labels['addressbook'] = 'Adresář';
// mailbox names
$labels['inbox'] = 'Příchozí pošta';
$labels['sent'] = 'Odeslané';
$labels['trash'] = 'Koš';
$labels['drafts'] = 'Rozepsané';
$labels['junk'] = 'Nevyžádaná pošta';
// message listing
$labels['subject'] = 'Předmět';
$labels['from'] = 'Odesilatel';
$labels['to'] = 'Adresát';
$labels['cc'] = 'Kopie';
$labels['bcc'] = 'Slepá';
$labels['replyto'] = 'Odpověď na';
$labels['date'] = 'Datum';
$labels['size'] = 'Velikost';
$labels['priority'] = 'Priorita';
$labels['organization'] = 'Organizace';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Složky';
$labels['messagesfromto'] = 'Zprávy od $from do $to z celkem $count';
$labels['messagenrof'] = 'Zpráva $nr z $count';
$labels['moveto'] = 'přesunout do...';
$labels['download'] = 'stáhnout';
$labels['filename'] = 'Jméno přílohy';
$labels['filesize'] = 'Velikost přílohy';
$labels['preferhtml'] = 'Upřednostňovat HTML zobrazení';
$labels['htmlmessage'] = 'HTML zpráva';
$labels['prettydate'] = 'Hezčí data';
$labels['addtoaddressbook'] = 'Přidat do adresáře';
// weekdays short
$labels['sun'] = 'Ne';
$labels['mon'] = 'Po';
$labels['tue'] = 'Út';
$labels['wed'] = 'St';
$labels['thu'] = 'Čt';
$labels['fri'] = 'Pá';
$labels['sat'] = 'So';
// weekdays long
$labels['sunday'] = 'Neděle';
$labels['monday'] = 'Pondělí';
$labels['tuesday'] = 'Úterý';
$labels['wednesday'] = 'Středa';
$labels['thursday'] = 'Čtvrtek';
$labels['friday'] = 'Pátek';
$labels['saturday'] = 'Sobota';
$labels['today'] = 'Dnes';
// toolbar buttons
$labels['writenewmessage'] = 'Vytvořit novou zprávu';
$labels['replytomessage'] = 'Odpovědět odesilateli';
$labels['replytoallmessage'] = 'Odpovědět všem';
$labels['forwardmessage'] = 'Předat zprávu';
$labels['deletemessage'] = 'Přesunout do koše';
$labels['printmessage'] = 'Vytisknout zprávu';
$labels['previousmessages'] = 'Zobrazit předchozí zprávy';
$labels['nextmessages'] = 'Zobrazit další zprávy';
$labels['backtolist'] = 'Zpět do seznamu zpráv';
$labels['viewsource'] = 'Zobrazit zdroj';
$labels['select'] = 'Vybrat';
$labels['all'] = 'Vše';
$labels['none'] = 'Nic';
$labels['unread'] = 'Nepřečtené';
// message compose
$labels['compose'] = 'Napsat zprávu';
$labels['sendmessage'] = 'Odeslat zprávu nyní';
$labels['addattachment'] = 'Přidat přílohu';
$labels['attachments'] = 'Přílohy';
$labels['upload'] = 'Nahrát';
$labels['close'] = 'Zavřít';
$labels['low'] = 'Nízká';
$labels['lowest'] = 'Nejnižší';
$labels['normal'] = 'Normalní';
$labels['high'] = 'Vysoká';
$labels['highest'] = 'Nejvyšší';
$labels['showimages'] = 'Zobrazit obrázky';
// address boook
$labels['name'] = 'Zobrazit jméno';
$labels['firstname'] = 'Jméno';
$labels['surname'] = 'Příjmení';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Přidat kontakt';
$labels['editcontact'] = 'Upravit kontakt';
$labels['edit'] = 'Upravit';
$labels['cancel'] = 'Konec';
$labels['save'] = 'Uložit';
$labels['delete'] = 'Smazat';
$labels['newcontact'] = 'Vytvořit nový kontakt';
$labels['deletecontact'] = 'Smazat vybrané kontakty';
$labels['composeto'] = 'Poslat mail';
$labels['contactsfromto'] = 'Kontakty od $from do $to z celkem $count';
$labels['print'] = 'Tisk';
$labels['export'] = 'Export';
// settings
$labels['settingsfor'] = 'Nastavení pro';
$labels['preferences'] = 'Vlastnosti';
$labels['userpreferences'] = 'Vlastnosti uživatele';
$labels['editpreferences'] = 'Upravit vlastnosti uživatele';
$labels['identities'] = 'Profily';
$labels['manageidentities'] = 'Spravovat profily u tohoto účtu';
$labels['newidentity'] = 'Nová profil';
$labels['newitem'] = 'Nová položka';
$labels['edititem'] = 'Upravit položku';
$labels['setdefault'] = 'Nastavit výchozí';
$labels['language'] = 'Jazyk';
$labels['timezone'] = 'Časová zóna';
$labels['pagesize'] = 'Řádků na stránku';
$labels['folders'] = 'Složky';
$labels['folder'] = 'Složka';
$labels['foldername'] = 'Jméno složky';
$labels['subscribed'] = 'Podepsané';
$labels['create'] = 'Vytvořit';
$labels['createfolder'] = 'Vytvořit novou složku';
$labels['deletefolder'] = 'Smazat složku';
$labels['managefolders'] = 'Spravovat složky';
$labels['compact'] = 'Kompaktní';
$labels['empty'] = 'Prázdný';
$labels['purge'] = 'Vyprázdnit';
$labels['quota'] = 'Využití schránky';
$labels['sortby'] = 'Seřadit podle';
$labels['sortdesc'] = 'Seřadit sestupně';
$labels['sortasc'] = 'Seřadit vzestupně';
$labels['nosubject'] = '(bez předmětu)';
$labels['signature'] = 'Podpis';
$labels['charset'] = 'Znaková sada';
$labels['ldapsearch'] = 'Hledat v LDAP adresáři';
$labels['ldappublicsearchname'] = 'Jméno kontaktu';
$labels['ldappublicsearchtype'] = 'Doslovné znění?';
$labels['ldappublicserverselect'] = 'Zvolit servery';
$labels['ldappublicsearchfield'] = 'Hledat na';
$labels['ldappublicsearchform'] = 'Hledat kontakt';
$labels['ldappublicsearch'] = 'Hledat';
?>
\ No newline at end of file
diff --git a/program/localization/da/labels.inc b/program/localization/da/labels.inc
index ad083024f..d72156c08 100644
--- a/program/localization/da/labels.inc
+++ b/program/localization/da/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/da/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| All rights reserved. |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
| Danish translation: Martin Moeller <martin@liga.dk> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Brugernavn';
$labels['password'] = 'Adgangskode';
$labels['server'] = 'Server';
$labels['login'] = 'Log på';
// taskbar
$labels['logout'] = 'Log af';
$labels['mail'] = 'Email';
$labels['settings'] = 'Personlige indstillinger';
$labels['addressbook'] = 'Adressebog';
// mailbox names
$labels['inbox'] = 'Indbakke';
$labels['sent'] = 'Sendt post';
$labels['trash'] = 'Skrald';
$labels['drafts'] = 'Klader';
$labels['junk'] = 'Ragelse';
// message listing
$labels['subject'] = 'Emne';
$labels['from'] = 'Afsender';
$labels['to'] = 'Modtager';
$labels['cc'] = 'Kopi til';
$labels['bcc'] = 'BCC';
$labels['replyto'] = 'Svar til';
$labels['date'] = 'Dato';
$labels['size'] = 'Størrelse';
$labels['priority'] = 'Prioritet';
$labels['organization'] = 'Organisation';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Foldere';
$labels['messagesfromto'] = 'Beskeder $from til $to af $count';
$labels['messagenrof'] = 'Besked $nr af $count';
$labels['moveto'] = 'flyt til...';
$labels['download'] = 'download';
$labels['filename'] = 'Filnavn';
$labels['filesize'] = 'Filstørrelse';
$labels['preferhtml'] = 'Foretræk HTML';
$labels['htmlmessage'] = 'HTML besked';
$labels['addtoaddressbook'] = 'Tilføj til adressebogen';
// weekdays short
$labels['sun'] = 'Søn';
$labels['mon'] = 'Man';
$labels['tue'] = 'Tir';
$labels['wed'] = 'Ons';
$labels['thu'] = 'Tor';
$labels['fri'] = 'Fre';
$labels['sat'] = 'Lør';
// weekdays long
$labels['sunday'] = 'Søndag';
$labels['monday'] = 'Mandag';
$labels['tuesday'] = 'Tirsdag';
$labels['wednesday'] = 'Onsdag';
$labels['thursday'] = 'Torsdag';
$labels['friday'] = 'Fredag';
$labels['saturday'] = 'Lørdag';
$labels['today'] = 'I dag';
// toolbar buttons
$labels['writenewmessage'] = 'Opret en ny besked';
$labels['replytomessage'] = 'Svar på denne besked';
$labels['forwardmessage'] = 'Videresend denne besked';
$labels['deletemessage'] = 'Flyt beskeden til skrald';
$labels['printmessage'] = 'Udskriv denne besked';
$labels['previousmessages'] = 'Vis forrige sæt beskeder';
$labels['nextmessages'] = 'Vis næste sæt beskeder';
$labels['backtolist'] = 'Tilbage til beskedlisten';
$labels['select'] = 'Vælg';
$labels['all'] = 'Alle';
$labels['none'] = 'Ingen';
$labels['unread'] = 'Ulæste';
// message compose
$labels['compose'] = 'Forfat en besked';
$labels['sendmessage'] = 'Send beskeden nu';
$labels['addattachment'] = 'Vedhæft en fil';
$labels['upload'] = 'Upload';
$labels['close'] = 'Luk';
$labels['low'] = 'Lav';
$labels['lowest'] = 'Lavest';
$labels['normal'] = 'Normal';
$labels['high'] = 'Høj';
$labels['highest'] = 'Højest';
$labels['showimages'] = 'Vis billeder';
// address boook
$labels['name'] = 'Vist navn';
$labels['firstname'] = 'Fornavn';
$labels['surname'] = 'Efternavn';
$labels['email'] = 'Email';
$labels['addcontact'] = 'Tilføj en ny kontakt';
$labels['editcontact'] = 'Redigér kontakt';
$labels['edit'] = 'Redigér';
$labels['cancel'] = 'Afbryd';
$labels['save'] = 'Gem';
$labels['delete'] = 'Slet';
$labels['newcontact'] = 'Opret nyt kontaktkort';
$labels['deletecontact'] = 'Slet valgte kontakter';
$labels['composeto'] = 'Skriv brev til';
$labels['contactsfromto'] = 'Kontakter $from til $to af $count';
// settings
$labels['settingsfor'] = 'Indstillinger for';
$labels['preferences'] = 'Præferencer';
$labels['userpreferences'] = 'Brugerpræferencer';
$labels['editpreferences'] = 'Redigér brugerpræferencer';
$labels['identities'] = 'Identiteter';
$labels['manageidentities'] = 'Styr identiteterne for denne konto';
$labels['newidentity'] = 'Ny identitet';
$labels['newitem'] = 'Nyt punkt';
$labels['edititem'] = 'Redigér punkt';
$labels['setdefault'] = 'Sæt standard';
$labels['language'] = 'Sprog';
$labels['timezone'] = 'Tidszone';
$labels['pagesize'] = 'Rækker per side';
$labels['folders'] = 'Foldere';
$labels['foldername'] = 'Foldernavn';
$labels['subscribed'] = 'Abonneret';
$labels['create'] = 'Opret';
$labels['createfolder'] = 'Opret ny folder';
$labels['deletefolder'] = 'Slet folder';
$labels['managefolders'] = 'Styr foldere';
$labels['attachments'] = 'Vedhæftninger';
$labels['prettydate'] = 'Pæn datovisning';
$labels['print'] = 'Print';
$labels['export'] = 'Eksport';
$labels['viewsource'] = 'Vis rå besked';
$labels['replytoallmessage'] = 'Svar til alle modtagere';
$labels['folder'] = 'Folder';
$labels['compact'] = 'Ryd op';
$labels['empty'] = 'Tøm';
$labels['purge'] = 'Tøm';
$labels['quota'] = 'Disk forbrug';
$labels['sortby'] = 'Sortér efter';
$labels['sortdesc'] = 'Nyeste først';
$labels['sortasc'] = 'Ældste først';
$labels['nosubject'] = '(intet emne)';
$labels['signature'] = 'Signatur';
$labels['charset'] = 'Tegnsæt';
$labels['ldapsearch'] = 'LDAP kartotekssøgning';
$labels['ldappublicsearchname'] = 'Kontaktens navn';
$labels['ldappublicsearchtype'] = 'Præcis søgning?';
$labels['ldappublicserverselect'] = 'Vælg servere';
$labels['ldappublicsearchfield'] = 'Søg på';
$labels['ldappublicsearchform'] = 'Søg efter en kontakt';
$labels['ldappublicsearch'] = 'Søg';
?>
diff --git a/program/localization/de_CH/labels.inc b/program/localization/de_CH/labels.inc
index 72fc87862..c7baf0b43 100644
--- a/program/localization/de_CH/labels.inc
+++ b/program/localization/de_CH/labels.inc
@@ -1,210 +1,210 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/de_CH/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
| Corrections: Alexander Stiebing <ja.stiebing[NOSPAM]@web.de> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page // Login-Seite
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Willkommen bei $product';
$labels['username'] = 'Benutzername';
$labels['password'] = 'Passwort';
$labels['server'] = 'Server';
$labels['login'] = 'Login';
// taskbar // Aktionsleiste
$labels['logout'] = 'Logout';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Einstellungen';
$labels['addressbook'] = 'Adressbuch';
// mailbox names // E-Mail-Ordnernamen
$labels['inbox'] = 'Posteingang';
$labels['sent'] = 'Gesendet';
$labels['trash'] = 'Gelöscht';
$labels['drafts'] = 'Vorlagen';
$labels['junk'] = 'Junk';
// message listing // Nachrichtenliste
$labels['subject'] = 'Betreff';
$labels['from'] = 'Absender';
$labels['to'] = 'Empfänger';
$labels['cc'] = 'Kopie (CC)';
$labels['bcc'] = 'Blind-Kopie';
$labels['replyto'] = 'Antwort an';
$labels['date'] = 'Datum';
$labels['size'] = 'Grösse';
$labels['priority'] = 'Priorität';
$labels['organization'] = 'Organisation';
// aliases // [Platzhalter]
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Ordner';
$labels['messagesfromto'] = 'Nachrichten $from bis $to von $count';
$labels['messagenrof'] = 'Nachricht $nr von $count';
$labels['moveto'] = 'Verschieben nach...';
$labels['download'] = 'Download';
$labels['filename'] = 'Dateiname';
$labels['filesize'] = 'Dateigrösse';
$labels['preferhtml'] = 'HTML bevorzugen';
$labels['htmlmessage'] = 'HTML Nachricht';
$labels['prettydate'] = 'Kurze Datumsanzeige';
$labels['addtoaddressbook'] = 'Ins Adressbuch übernehmen';
// weekdays short // Wochentage (Abkürzungen)
$labels['sun'] = 'So';
$labels['mon'] = 'Mo';
$labels['tue'] = 'Di';
$labels['wed'] = 'Mi';
$labels['thu'] = 'Do';
$labels['fri'] = 'Fr';
$labels['sat'] = 'Sa';
// weekdays long // Wochentage (normal)
$labels['sunday'] = 'Sonntag';
$labels['monday'] = 'Montag';
$labels['tuesday'] = 'Dienstag';
$labels['wednesday'] = 'Mittwoch';
$labels['thursday'] = 'Donnerstag';
$labels['friday'] = 'Freitag';
$labels['saturday'] = 'Samstag';
$labels['today'] = 'Heute';
// toolbar buttons // Symbolleisten-Tipps
$labels['writenewmessage'] = 'Neue Nachricht schreiben';
$labels['replytomessage'] = 'Antwort verfassen';
$labels['replytoallmessage'] = 'Antwort an Absender und alle Empfänger';
$labels['forwardmessage'] = 'Nachricht weiterleiten';
$labels['deletemessage'] = 'In den Papierkorb verschieben';
$labels['printmessage'] = 'Diese Nachricht drucken';
$labels['previousmessages'] = 'Vorherige Nachrichten anzeigen';
$labels['nextmessages'] = 'Weitere Nachrichten anzeigen';
$labels['backtolist'] = 'Zurück zur Liste';
$labels['select'] = 'Auswählen';
$labels['all'] = 'Alle';
$labels['none'] = 'Keine';
$labels['unread'] = 'Ungelesene';
$labels['compact'] = 'Packen';
$labels['empty'] = 'Leeren';
$labels['purge'] = 'Aufräumen';
$labels['quota'] = 'Verwendeter Speicherplatz';
$labels['unknown'] = 'unbekannt';
$labels['unlimited'] = 'unlimitiert';
$labels['quicksearch'] = 'Schnellsuche';
$labels['resetsearch'] = 'Löschen';
// message compose // Nachrichten erstellen
$labels['compose'] = 'Neue Nachricht verfassen';
$labels['sendmessage'] = 'Nachricht jetzt senden';
$labels['addattachment'] = 'Datei anfügen';
$labels['charset'] = 'Zeichensatz';
$labels['returnreceipt'] = 'Empfangsbestätigung';
$labels['attachments'] = 'Anhänge';
$labels['upload'] = 'Hochladen';
$labels['close'] = 'Schliessen';
$labels['low'] = 'Niedrig';
$labels['lowest'] = 'Niedrigste';
$labels['normal'] = 'Normal';
$labels['high'] = 'Hoch';
$labels['highest'] = 'Höchste';
$labels['nosubject'] = '(kein Betreff)';
$labels['showimages'] = 'Bilder anzeigen';
// address book // Adressbuch
$labels['name'] = 'Anzeigename';
$labels['firstname'] = 'Vorname';
$labels['surname'] = 'Nachname';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Kontakt hinzufügen';
$labels['editcontact'] = 'Kontakt bearbeiten';
$labels['edit'] = 'Bearbeiten';
$labels['cancel'] = 'Abbrechen';
$labels['save'] = 'Speichern';
$labels['delete'] = 'Löschen';
$labels['newcontact'] = 'Neuen Kontakt erfassen';
$labels['deletecontact'] = 'Gewählte Kontakte löschen';
$labels['composeto'] = 'Nachricht verfassen';
$labels['contactsfromto'] = 'Kontakte $from bis $to von $count';
$labels['print'] = 'Drucken';
$labels['export'] = 'Exportieren';
$labels['previouspage'] = 'Eine Seite zurück';
$labels['nextpage'] = 'Nächste Seite';
// LDAP search
$labels['ldapsearch'] = 'LDAP Verzeichnis-Suche';
$labels['ldappublicsearchname'] = 'Kontakt-Name';
$labels['ldappublicsearchtype'] = 'Genaue Übereinstimmung';
$labels['ldappublicserverselect'] = 'Server-Auswahl';
$labels['ldappublicsearchfield'] = 'Suche in';
$labels['ldappublicsearchform'] = 'Adressen suchen';
$labels['ldappublicsearch'] = 'Suchen';
// settings // Einstellungen
$labels['settingsfor'] = 'Einstellungen für';
$labels['preferences'] = 'Einstellungen';
$labels['userpreferences'] = 'Benutzereinstellungen';
$labels['editpreferences'] = 'Einstellungen bearbeiten';
$labels['identities'] = 'Absender';
$labels['manageidentities'] = 'Absender für dieses Konto verwalten';
$labels['newidentity'] = 'Neuer Absender';
$labels['newitem'] = 'Neuer Eintrag';
$labels['edititem'] = 'Eintrag bearbeiten';
$labels['setdefault'] = 'Als Standard';
$labels['language'] = 'Sprache';
$labels['timezone'] = 'Zeitzone';
$labels['pagesize'] = 'Einträge pro Seite';
$labels['signature'] = 'Signatur';
$labels['dstactive'] = 'Sommerzeit';
$labels['folder'] = 'Ordner';
$labels['folders'] = 'Ordner';
$labels['foldername'] = 'Ordnername';
$labels['subscribed'] = 'Abonniert';
$labels['create'] = 'Erstellen';
$labels['createfolder'] = 'Neuen Ordner erstellen';
$labels['deletefolder'] = 'Ordner löschen';
$labels['managefolders'] = 'Ordner verwalten';
$labels['sortby'] = 'Sortieren nach';
$labels['sortasc'] = 'aufsteigend sortieren';
$labels['sortdesc'] = 'absteigend sortieren';
?>
\ No newline at end of file
diff --git a/program/localization/de_DE/labels.inc b/program/localization/de_DE/labels.inc
index 249e6ec8f..7e7f5de22 100644
--- a/program/localization/de_DE/labels.inc
+++ b/program/localization/de_DE/labels.inc
@@ -1,211 +1,211 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/de_DE/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
| de_DE translation: Stephan Diehl <info@sd-edv.de> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page // Login-Seite
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Willkommen bei $product';
$labels['username'] = 'Benutzername';
$labels['password'] = 'Passwort';
$labels['server'] = 'Server';
$labels['login'] = 'Anmelden';
// taskbar // Aktionsleiste
$labels['logout'] = 'Abmelden';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Einstellungen';
$labels['addressbook'] = 'Adressbuch';
// mailbox names // E-Mail-Ordnernamen
$labels['inbox'] = 'Posteingang';
$labels['sent'] = 'Gesendet';
$labels['trash'] = 'Gelöscht';
$labels['drafts'] = 'Entwürfe';
$labels['junk'] = 'Spam';
// message listing // Nachrichtenliste
$labels['subject'] = 'Betreff';
$labels['from'] = 'Absender';
$labels['to'] = 'Empfänger';
$labels['cc'] = 'Kopie (CC)';
$labels['bcc'] = 'Blind-Kopie';
$labels['replyto'] = 'Antwort an';
$labels['date'] = 'Datum';
$labels['size'] = 'Größe';
$labels['priority'] = 'Priorität';
$labels['organization'] = 'Organisation';
// aliases // [Platzhalter]
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Ordner';
$labels['messagesfromto'] = 'Nachrichten $from bis $to von $count';
$labels['messagenrof'] = 'Nachricht $nr von $count';
$labels['moveto'] = 'Verschieben nach...';
$labels['download'] = 'Download';
$labels['filename'] = 'Dateiname';
$labels['filesize'] = 'Dateigröße';
$labels['preferhtml'] = 'HTML bevorzugen';
$labels['htmlmessage'] = 'HTML Nachricht';
$labels['prettydate'] = 'Kurze Datumsanzeige';
$labels['addtoaddressbook'] = 'Ins Adressbuch übernehmen';
// weekdays short // Wochentage (Abkürzungen)
$labels['sun'] = 'So';
$labels['mon'] = 'Mo';
$labels['tue'] = 'Di';
$labels['wed'] = 'Mi';
$labels['thu'] = 'Do';
$labels['fri'] = 'Fr';
$labels['sat'] = 'Sa';
// weekdays long // Wochentage (normal)
$labels['sunday'] = 'Sonntag';
$labels['monday'] = 'Montag';
$labels['tuesday'] = 'Dienstag';
$labels['wednesday'] = 'Mittwoch';
$labels['thursday'] = 'Donnerstag';
$labels['friday'] = 'Freitag';
$labels['saturday'] = 'Samstag';
$labels['today'] = 'Heute';
// toolbar buttons // Symbolleisten-Tipps
$labels['writenewmessage'] = 'Neue Nachricht schreiben';
$labels['replytomessage'] = 'Antwort verfassen';
$labels['replytoallmessage'] = 'Antwort an Absender und alle Empfänger';
$labels['forwardmessage'] = 'Nachricht weiterleiten';
$labels['deletemessage'] = 'In den Papierkorb verschieben';
$labels['printmessage'] = 'Diese Nachricht drucken';
$labels['previousmessages'] = 'Vorherige Nachrichten anzeigen';
$labels['nextmessages'] = 'Weitere Nachrichten anzeigen';
$labels['backtolist'] = 'Zurück zur Liste';
$labels['select'] = 'Auswählen';
$labels['all'] = 'Alle';
$labels['none'] = 'Keine';
$labels['unread'] = 'Ungelesene';
$labels['compact'] = 'Packen';
$labels['empty'] = 'Leeren';
$labels['purge'] = 'Bereinigen';
$labels['quota'] = 'Verwendeter Speicherplatz';
$labels['unknown'] = 'unbekannt';
$labels['unlimited'] = 'unlimitiert';
$labels['quicksearch'] = 'Schnellsuche';
$labels['resetsearch'] = 'Löschen';
// message compose // Nachrichten erstellen
$labels['compose'] = 'Neue Nachricht verfassen';
$labels['sendmessage'] = 'Nachricht jetzt senden';
$labels['addattachment'] = 'Datei anfügen';
$labels['charset'] = 'Zeichensatz';
$labels['returnreceipt'] = 'Empfangsbestätigung';
$labels['attachments'] = 'Anhänge';
$labels['upload'] = 'Hochladen';
$labels['close'] = 'Schließen';
$labels['low'] = 'Niedrig';
$labels['lowest'] = 'Niedrigste';
$labels['normal'] = 'Normal';
$labels['high'] = 'Hoch';
$labels['highest'] = 'Höchste';
$labels['nosubject'] = '(kein Betreff)';
$labels['showimages'] = 'Bilder anzeigen';
// address book // Adressbuch
$labels['name'] = 'Anzeigename';
$labels['firstname'] = 'Vorname';
$labels['surname'] = 'Nachname';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Kontakt hinzufügen';
$labels['editcontact'] = 'Kontakt bearbeiten';
$labels['edit'] = 'Bearbeiten';
$labels['cancel'] = 'Abbrechen';
$labels['save'] = 'Speichern';
$labels['delete'] = 'Löschen';
$labels['newcontact'] = 'Neuen Kontakt erfassen';
$labels['deletecontact'] = 'Gewählte Kontakte löschen';
$labels['composeto'] = 'Nachricht verfassen';
$labels['contactsfromto'] = 'Kontakte $from bis $to von $count';
$labels['print'] = 'Drucken';
$labels['export'] = 'Exportieren';
$labels['previouspage'] = 'Eine Seite zurück';
$labels['nextpage'] = 'Nächste Seite';
// LDAP search
$labels['ldapsearch'] = 'LDAP Verzeichnis-Suche';
$labels['ldappublicsearchname'] = 'Kontakt-Name';
$labels['ldappublicsearchtype'] = 'Genaue Übereinstimmung';
$labels['ldappublicserverselect'] = 'Server-Auswahl';
$labels['ldappublicsearchfield'] = 'Suche in';
$labels['ldappublicsearchform'] = 'Adressen suchen';
$labels['ldappublicsearch'] = 'Suchen';
// settings // Einstellungen
$labels['settingsfor'] = 'Einstellungen für';
$labels['preferences'] = 'Einstellungen';
$labels['userpreferences'] = 'Benutzereinstellungen';
$labels['editpreferences'] = 'Einstellungen bearbeiten';
$labels['identities'] = 'Absender';
$labels['manageidentities'] = 'Absender für dieses Konto verwalten';
$labels['newidentity'] = 'Neuer Absender';
$labels['newitem'] = 'Neuer Eintrag';
$labels['edititem'] = 'Eintrag bearbeiten';
$labels['setdefault'] = 'Als Standard';
$labels['language'] = 'Sprache';
$labels['timezone'] = 'Zeitzone';
$labels['pagesize'] = 'Einträge pro Seite';
$labels['signature'] = 'Signatur';
$labels['dstactive'] = 'Sommerzeit';
$labels['folder'] = 'Ordner';
$labels['folders'] = 'Ordner';
$labels['foldername'] = 'Ordnername';
$labels['subscribed'] = 'Abonniert';
$labels['create'] = 'Erstellen';
$labels['createfolder'] = 'Neuen Ordner erstellen';
$labels['deletefolder'] = 'Ordner löschen';
$labels['managefolders'] = 'Ordner verwalten';
$labels['sortby'] = 'Sortieren nach';
$labels['sortasc'] = 'aufsteigend sortieren';
$labels['sortdesc'] = 'absteigend sortieren';
?>
diff --git a/program/localization/ee/labels.inc b/program/localization/ee/labels.inc
index 4618d618c..3c0bac2ff 100644
--- a/program/localization/ee/labels.inc
+++ b/program/localization/ee/labels.inc
@@ -1,196 +1,195 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/ee/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Üllar Pajus <yllar.pajus@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Kasutajanimi';
$labels['password'] = 'Parool';
$labels['server'] = 'Server';
$labels['login'] = 'Logi sisse';
// taskbar
$labels['logout'] = 'Logi välja';
$labels['mail'] = 'Postkast';
$labels['settings'] = 'Seaded';
$labels['addressbook'] = 'Aadressiraamat';
// mailbox names
$labels['inbox'] = 'Sissetulevad';
$labels['sent'] = 'Saadetud';
$labels['trash'] = 'Prügikast';
$labels['drafts'] = 'Ootel';
$labels['junk'] = 'Rämps';
// message listing
$labels['subject'] = 'Pealkiri';
$labels['from'] = 'Saatja';
$labels['to'] = 'Saaja';
$labels['cc'] = 'Koopia';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Vastus aadressile';
$labels['date'] = 'Kuupäev';
$labels['size'] = 'Suurus';
$labels['priority'] = 'Tähtsus';
$labels['organization'] = 'Organisatsioon';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Kaustad';
$labels['messagesfromto'] = 'Kirjed $from kuni $to, kokku $count';
$labels['messagenrof'] = 'Kiri $nr, kokku $count';
$labels['moveto'] = 'liiguta kausta...';
$labels['download'] = 'lae arvutisse';
$labels['filename'] = 'Faili nimi';
$labels['filesize'] = 'Faili suurus';
$labels['preferhtml'] = 'Eelista HTMLi';
$labels['htmlmessage'] = 'HTML kirjad';
$labels['prettydate'] = 'Kenad kuupäevad';
$labels['addtoaddressbook'] = 'Lisa aadressiraamatusse';
// weekdays short
$labels['sun'] = 'P';
$labels['mon'] = 'E';
$labels['tue'] = 'T';
$labels['wed'] = 'K';
$labels['thu'] = 'N';
$labels['fri'] = 'R';
$labels['sat'] = 'L';
// weekdays long
$labels['sunday'] = 'Pühapäev';
$labels['monday'] = 'Esmaspäev';
$labels['tuesday'] = 'Teisipäev';
$labels['wednesday'] = 'Kolmapäev';
$labels['thursday'] = 'Neljapäev';
$labels['friday'] = 'Reede';
$labels['saturday'] = 'Laupäev';
$labels['today'] = 'Täna';
// toolbar buttons
$labels['writenewmessage'] = 'Kirjuta uus kiri';
$labels['replytomessage'] = 'Vasta kirjale';
$labels['replytoallmessage'] = 'Vasta saatjale ja teistele kirja saanutele';
$labels['forwardmessage'] = 'Edasta see kiri';
$labels['deletemessage'] = 'Liiguta kiri prügikasti';
$labels['printmessage'] = 'Trüki kiri';
$labels['previousmessages'] = 'Näita eelmisi kirju';
$labels['nextmessages'] = 'Näita järgmisi kirju';
$labels['backtolist'] = 'Tagasi kirjade nimekirja';
$labels['viewsource'] = 'Näita lähtekoodi';
$labels['select'] = 'Vali';
$labels['all'] = 'kõik';
$labels['none'] = 'mitte midagi';
$labels['unread'] = 'mitte loetud';
// message compose
$labels['compose'] = 'Koosta kiri';
$labels['sendmessage'] = 'Saada kiri kohe';
$labels['addattachment'] = 'Lisa fail';
$labels['attachments'] = 'Manused';
$labels['upload'] = 'Kinnita manus';
$labels['close'] = 'Sulge';
$labels['low'] = 'Madal';
$labels['lowest'] = 'Madalaim';
$labels['normal'] = 'Tavaline';
$labels['high'] = 'Kõrge';
$labels['highest'] = 'Kõrgeim';
$labels['nosubject'] = '(teema puudub)';
$labels['showimages'] = 'Näita pilte';
$labels['signature'] = 'Allkiri';
$labels['charset'] = 'Märgistik';
// address boook
$labels['name'] = 'Näidatav nimi';
$labels['firstname'] = 'Eesnimi';
$labels['surname'] = 'Perekonnanimi';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Lisa uus kontakt';
$labels['editcontact'] = 'Muuda kontakti';
$labels['edit'] = 'Muuda';
$labels['cancel'] = 'Katkesta';
$labels['save'] = 'Salvesta';
$labels['delete'] = 'Kustuta';
$labels['newcontact'] = 'Loo uus sissekanne';
$labels['deletecontact'] = 'Kustuta märgistatud kontaktid';
$labels['composeto'] = 'Kirjuta kiri';
$labels['contactsfromto'] = 'Kirjed $from kuni $to, kokku $count';
$labels['print'] = 'Trüki';
$labels['export'] = 'Ekspordi';
// settings
$labels['settingsfor'] = 'Kasutajaeelistused kontole';
$labels['preferences'] = 'Eelistused';
$labels['userpreferences'] = 'Kasutaja eelistused';
$labels['editpreferences'] = 'Muuda kasutaja eelistusi';
$labels['identities'] = 'Identiteedid';
$labels['manageidentities'] = 'Halda selle konto identiteete';
$labels['newidentity'] = 'Uus identiteet';
$labels['newitem'] = 'Uus sissekanne';
$labels['edititem'] = 'Muuda sissekannet';
$labels['setdefault'] = 'Muuda vaikeseadeks';
$labels['language'] = 'Keel';
$labels['timezone'] = 'Ajatsoon';
$labels['pagesize'] = 'Ridu lehe kohta';
$labels['folder'] = 'Kaust';
$labels['folders'] = 'Kaustad';
$labels['foldername'] = 'Kausta nimi';
$labels['subscribed'] = 'Näitan';
$labels['create'] = 'Loo';
$labels['createfolder'] = 'Loo uus kaust';
$labels['deletefolder'] = 'Kustuta kaust';
$labels['managefolders'] = 'Halda kaustu';
$labels['compact'] = 'Tihenda';
$labels['empty'] = 'Tühjenda';
$labels['purge'] = 'Puhasta';
$labels['quota'] = 'Ketta kasutus';
$labels['sortby'] = 'Järjesta';
$labels['sortasc'] = 'Järjesta kasvavalt';
$labels['sortdesc'] = 'Järjesta kahanevalt';
$labels['ldapsearch'] = 'LDAP kataloogi otsing';
$labels['ldappublicsearchname'] = 'Kontakti nimi';
$labels['ldappublicsearchtype'] = 'Täpne vaste ?';
$labels['ldappublicserverselect'] = 'Vali server';
$labels['ldappublicsearchfield'] = 'Otsi kohast';
$labels['ldappublicsearchform'] = 'Otsi kontakti';
$labels['ldappublicsearch'] = 'Otsi';
?>
\ No newline at end of file
diff --git a/program/localization/el/labels.inc b/program/localization/el/labels.inc
index 1641e3ef7..d5e927006 100755
--- a/program/localization/el/labels.inc
+++ b/program/localization/el/labels.inc
@@ -1,182 +1,181 @@
<?php
/*
+------------------------------------------------------------------------------+
| language/el/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+------------------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+------------------------------------------------------------------------------+
| Greek Translation: Panormitis Petrou <panormitis@gmx.net> |
+------------------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Όνομα χρήστη';
$labels['password'] = 'Κωδικός πρόσβασης';
$labels['server'] = 'Διακομιστής';
$labels['login'] = 'Είσοδος';
// taskbar
$labels['logout'] = 'Αποσύνδεση';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Προσωπικές ρυθμίσεις';
$labels['addressbook'] = 'Βιβλίο διευθύνσεων';
// mailbox names
$labels['inbox'] = 'Εισερχόμενα';
$labels['sent'] = 'Απεσταλμένα';
$labels['trash'] = 'Κάδος αχρήστων';
$labels['drafts'] = 'Προσχέδια';
$labels['junk'] = '’χρηστα';
// message listing
$labels['subject'] = 'Θέμα';
$labels['nosubject'] = '(χωρίς θέμα)';
$labels['from'] = 'Αποστολέας';
$labels['to'] = 'Παραλήπτης';
$labels['cc'] = 'Κοινοποίηση';
$labels['bcc'] = 'Κρυφή κοινοποίηση';
$labels['replyto'] = 'Απάντηση προς';
$labels['replytoallmessage'] = 'Απάντηση προς τον αποστολέα και προς όλους τους παραλήπτες';
$labels['date'] = 'Ημερομηνία';
$labels['size'] = 'Μέγεθος';
$labels['priority'] = 'Προτεραιότητα';
$labels['organization'] = 'Οργανισμός';
$labels['sortby'] = 'Ταξινόμηση κατά';
$labels['sortasc'] = 'Αύξουσα ταξινόμηση';
$labels['sortdesc'] = 'Φθίνουσα ταξινόμηση';
// aliases
$labels['reply-to'] = $labels['Απάντηση προς'];
$labels['mailboxlist'] = 'Φάκελοι';
$labels['messagesfromto'] = 'Μηνύματα $from έως $to από $count';
$labels['messagenrof'] = 'Μήνυμα $nr από $count';
$labels['moveto'] = 'Μετακίνηση σε...';
$labels['download'] = 'Λήψη';
$labels['filename'] = 'Όνομα αρχείου';
$labels['filesize'] = 'Μέγεθος αρχείου';
$labels['preferhtml'] = 'Προτιμάται HTML';
$labels['htmlmessage'] = 'Μήνυμα HTML';
$labels['prettydate'] = 'Μορφοποιημένες ημερομηνίες';
$labels['addtoaddressbook'] = 'Προσθήκη στο βιβλίο διευθύνσεων';
// weekdays short
$labels['sun'] = 'Κυρ';
$labels['mon'] = 'Δευ';
$labels['tue'] = 'Τρι';
$labels['wed'] = 'Τετ';
$labels['thu'] = 'Πεμ';
$labels['fri'] = 'Παρ';
$labels['sat'] = 'Σαβ';
// weekdays long
$labels['sunday'] = 'Κυριακή';
$labels['monday'] = 'Δευτέρα';
$labels['tuesday'] = 'Τρίτη';
$labels['wednesday'] = 'Τετάρτη';
$labels['thursday'] = 'Πέμπτη';
$labels['friday'] = 'Παρασκευή';
$labels['saturday'] = 'Σάββατο';
$labels['today'] = 'Σήμερα';
// toolbar buttons
$labels['writenewmessage'] = 'Δημιουργία νέου μηνύματος';
$labels['replytomessage'] = 'Απάντηση μηνύματος';
$labels['forwardmessage'] = 'Προώθηση μηνύματος';
$labels['deletemessage'] = 'Μεταφορά του μηνύματος στον κάδο αχρήστων';
$labels['printmessage'] = 'Εκτύπωση μηνύματος';
$labels['previousmessages'] = 'Εμφάνιση προηγουμένων μηνυμάτων';
$labels['nextmessages'] = 'Εμφάνιση επομένων μηνυμάτων';
$labels['backtolist'] = 'Επιστροφή στη λίστα μηνυμάτων';
$labels['viewsource'] = 'Προβολή προέλευσης';
$labels['select'] = 'Επιλογή';
$labels['all'] = 'Όλα';
$labels['none'] = 'Κανένα';
$labels['unread'] = 'Αδιάβαστα';
// message compose
$labels['compose'] = 'Σύνθεση μηνύματος';
$labels['sendmessage'] = 'Αποστολή του μηνύματος τώρα';
$labels['addattachment'] = 'Επισύναψη αρχείου';
$labels['attachments'] = 'Συνημμένα';
$labels['upload'] = 'Αποστολή';
$labels['close'] = 'Κλείσιμο';
$labels['low'] = 'Χαμηλή';
$labels['lowest'] = 'Χαμηλότατη';
$labels['normal'] = 'Κανονική';
$labels['high'] = 'Υψηλή';
$labels['highest'] = 'Ύψιστη';
$labels['showimages'] = 'Εμφάνιση εικόνων';
// address boook
$labels['name'] = 'Εμφάνιση ονόματος';
$labels['firstname'] = 'Όνομα';
$labels['surname'] = 'Επώνυμο';
$labels['email'] = 'Διεύθυνση e-mail';
$labels['addcontact'] = 'Προσθήκη νέας επαφής';
$labels['editcontact'] = 'Επεξεργασία επαφής';
$labels['edit'] = 'Επεξεργασία';
$labels['cancel'] = '’κυρο';
$labels['save'] = 'Αποθήκευση';
$labels['delete'] = 'Διαγραφή';
$labels['newcontact'] = 'Δημιουργία νέας κάρτας επαφής';
$labels['deletecontact'] = 'Διαγραφή επιλεγμένων επαφών';
$labels['composeto'] = 'Σύνθεση μηνύματος προς';
$labels['contactsfromto'] = 'Επαφές $from έως $to από $count';
$labels['print'] = 'Εκτύπωση';
$labels['export'] = 'Εξαγωγή';
// settings
$labels['settingsfor'] = 'Ρυθμίσεις για';
$labels['preferences'] = 'Προτιμήσεις';
$labels['userpreferences'] = 'Προτιμήσεις χρήστη';
$labels['editpreferences'] = 'Επεξεργασία προτιμήσεων χρήστη';
$labels['identities'] = 'Ταυτότητες';
$labels['manageidentities'] = 'Διαχείριση ταυτοτήτων αυτού του λογαριασμού';
$labels['newidentity'] = 'Νέα ταυτότητα';
$labels['newitem'] = 'Νέο αντικείμενο';
$labels['edititem'] = 'Επεξεργασία αντικειμένου';
$labels['setdefault'] = 'Ορισμός προεπιλογών';
$labels['language'] = 'Γλώσσα';
$labels['timezone'] = 'Ζώνη ώρας';
$labels['pagesize'] = 'Γραμμές ανά σελίδα';
$labels['folders'] = 'Φάκελοι';
$labels['foldername'] = 'Όνομα φακέλου';
$labels['subscribed'] = 'Εγγεγραμμένοι φάκελοι';
$labels['create'] = 'Δημιουργία';
$labels['createfolder'] = 'Δημιουργία νέου φακέλου';
$labels['deletefolder'] = 'Διαγραφή φακέλου';
$labels['managefolders'] = 'Διαχείριση φακέλων';
?>
\ No newline at end of file
diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc
index 7f23075f3..77990d12e 100644
--- a/program/localization/en_GB/labels.inc
+++ b/program/localization/en_GB/labels.inc
@@ -1,201 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/en_GB/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Weiran Zhang (weiran@weiran.co.uk) |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Welcome to $product';
$labels['username'] = 'Username';
$labels['password'] = 'Password';
$labels['server'] = 'Server';
$labels['login'] = 'Login';
// taskbar
$labels['logout'] = 'Logout';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Personal Settings';
$labels['addressbook'] = 'Address Book';
// mailbox names
$labels['inbox'] = 'Inbox';
$labels['sent'] = 'Sent';
$labels['trash'] = 'Deleted Items';
$labels['drafts'] = 'Drafts';
$labels['junk'] = 'Junk';
// message listing
$labels['subject'] = 'Subject';
$labels['from'] = 'Sender';
$labels['to'] = 'Recipient';
$labels['cc'] = 'Copy';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Reply-To';
$labels['date'] = 'Date';
$labels['size'] = 'Size';
$labels['priority'] = 'Priority';
$labels['organization'] = 'Organisation';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Folders';
$labels['messagesfromto'] = 'Messages $from to $to of $count';
$labels['messagenrof'] = 'Message $nr of $count';
$labels['moveto'] = 'move to...';
$labels['download'] = 'download';
$labels['filename'] = 'File name';
$labels['filesize'] = 'File size';
$labels['preferhtml'] = 'Prefer HTML';
$labels['htmlmessage'] = 'HTML Message';
$labels['prettydate'] = 'Pretty dates';
$labels['addtoaddressbook'] = 'Add to address book';
// weekdays short
$labels['sun'] = 'Sun';
$labels['mon'] = 'Mon';
$labels['tue'] = 'Tue';
$labels['wed'] = 'Wed';
$labels['thu'] = 'Thu';
$labels['fri'] = 'Fri';
$labels['sat'] = 'Sat';
// weekdays long
$labels['sunday'] = 'Sunday';
$labels['monday'] = 'Monday';
$labels['tuesday'] = 'Tuesday';
$labels['wednesday'] = 'Wednesday';
$labels['thursday'] = 'Thursday';
$labels['friday'] = 'Friday';
$labels['saturday'] = 'Saturday';
$labels['today'] = 'Today';
// toolbar buttons
$labels['writenewmessage'] = 'Create a new message';
$labels['replytomessage'] = 'Reply to the message';
$labels['replytoallmessage'] = 'Reply to sender and all recipients';
$labels['forwardmessage'] = 'Forward the message';
$labels['deletemessage'] = 'Move message to trash';
$labels['printmessage'] = 'Print this message';
$labels['previousmessages'] = 'Show previous set of messages';
$labels['nextmessages'] = 'Show next set of messages';
$labels['backtolist'] = 'Back to message list';
$labels['viewsource'] = 'Show source';
$labels['select'] = 'Select';
$labels['all'] = 'All';
$labels['none'] = 'None';
$labels['unread'] = 'Unread';
$labels['compact'] = 'Compact';
$labels['empty'] = 'Empty';
$labels['purge'] = 'Purge';
$labels['quota'] = 'Disk usage';
// message compose
$labels['compose'] = 'Compose a message';
$labels['sendmessage'] = 'Send the message now';
$labels['addattachment'] = 'Attach a file';
$labels['charset'] = 'Charset';
$labels['attachments'] = 'Attachments';
$labels['upload'] = 'Upload';
$labels['close'] = 'Close';
$labels['low'] = 'Low';
$labels['lowest'] = 'Lowest';
$labels['normal'] = 'Normal';
$labels['high'] = 'High';
$labels['highest'] = 'Highest';
$labels['nosubject'] = '(no subject)';
$labels['showimages'] = 'Display images';
// address boook
$labels['name'] = 'Display name';
$labels['firstname'] = 'First name';
$labels['surname'] = 'Last name';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Add new contact';
$labels['editcontact'] = 'Edit contact';
$labels['edit'] = 'Edit';
$labels['cancel'] = 'Cancel';
$labels['save'] = 'Save';
$labels['delete'] = 'Delete';
$labels['newcontact'] = 'Create new contact card';
$labels['addcontact'] = 'Add selected contact to your addressbook';
$labels['deletecontact'] = 'Delete selected contacts';
$labels['composeto'] = 'Compose mail to';
$labels['contactsfromto'] = 'Contacts $from to $to of $count';
$labels['print'] = 'Print';
$labels['export'] = 'Export';
// LDAP search
$labels['ldapsearch'] = 'LDAP directory search';
$labels['ldappublicsearchname'] = 'Contact name';
$labels['ldappublicsearchtype'] = 'Exact match?';
$labels['ldappublicserverselect'] = 'Select servers';
$labels['ldappublicsearchfield'] = 'Search on';
$labels['ldappublicsearchform'] = 'Look for a contact';
$labels['ldappublicsearch'] = 'Search';
// settings
$labels['settingsfor'] = 'Settings for';
$labels['preferences'] = 'Preferences';
$labels['userpreferences'] = 'User preferences';
$labels['editpreferences'] = 'Edit user preferences';
$labels['identities'] = 'Identities';
$labels['manageidentities'] = 'Manage identities for this account';
$labels['newidentity'] = 'New identity';
$labels['newitem'] = 'New item';
$labels['edititem'] = 'Edit item';
$labels['setdefault'] = 'Set default';
$labels['language'] = 'Language';
$labels['timezone'] = 'Time zone';
$labels['pagesize'] = 'Rows per page';
$labels['signature'] = 'Signature';
$labels['folder'] = 'Folder';
$labels['folders'] = 'Folders';
$labels['foldername'] = 'Folder name';
$labels['subscribed'] = 'Subscribed';
$labels['create'] = 'Create';
$labels['createfolder'] = 'Create new folder';
$labels['deletefolder'] = 'Delete folder';
$labels['managefolders'] = 'Manage folders';
$labels['sortby'] = 'Sort by';
$labels['sortasc'] = 'Sort ascending';
$labels['sortdesc'] = 'Sort descending';
?>
diff --git a/program/localization/en_US/labels.inc b/program/localization/en_US/labels.inc
index e280dbb29..afb6c8709 100644
--- a/program/localization/en_US/labels.inc
+++ b/program/localization/en_US/labels.inc
@@ -1,213 +1,213 @@
<?php
/*
+-----------------------------------------------------------------------+
- | language/en/labels.inc |
+ | language/en_US/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Welcome to $product';
$labels['username'] = 'Username';
$labels['password'] = 'Password';
$labels['server'] = 'Server';
$labels['login'] = 'Login';
// taskbar
$labels['logout'] = 'Logout';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Personal Settings';
$labels['addressbook'] = 'Address Book';
// mailbox names
$labels['inbox'] = 'Inbox';
$labels['sent'] = 'Sent';
$labels['trash'] = 'Trash';
$labels['drafts'] = 'Drafts';
$labels['junk'] = 'Junk';
// message listing
$labels['subject'] = 'Subject';
$labels['from'] = 'Sender';
$labels['to'] = 'Recipient';
$labels['cc'] = 'Copy';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Reply-To';
$labels['date'] = 'Date';
$labels['size'] = 'Size';
$labels['priority'] = 'Priority';
$labels['organization'] = 'Organization';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Folders';
$labels['messagesfromto'] = 'Messages $from to $to of $count';
$labels['messagenrof'] = 'Message $nr of $count';
$labels['moveto'] = 'move to...';
$labels['download'] = 'download';
$labels['filename'] = 'File name';
$labels['filesize'] = 'File size';
$labels['preferhtml'] = 'Prefer HTML';
$labels['htmlmessage'] = 'HTML Message';
$labels['prettydate'] = 'Pretty dates';
$labels['addtoaddressbook'] = 'Add to address book';
// weekdays short
$labels['sun'] = 'Sun';
$labels['mon'] = 'Mon';
$labels['tue'] = 'Tue';
$labels['wed'] = 'Wed';
$labels['thu'] = 'Thu';
$labels['fri'] = 'Fri';
$labels['sat'] = 'Sat';
// weekdays long
$labels['sunday'] = 'Sunday';
$labels['monday'] = 'Monday';
$labels['tuesday'] = 'Tuesday';
$labels['wednesday'] = 'Wednesday';
$labels['thursday'] = 'Thursday';
$labels['friday'] = 'Friday';
$labels['saturday'] = 'Saturday';
$labels['today'] = 'Today';
// toolbar buttons
$labels['writenewmessage'] = 'Create a new message';
$labels['replytomessage'] = 'Reply to the message';
$labels['replytoallmessage'] = 'Reply to sender and all recipients';
$labels['forwardmessage'] = 'Forward the message';
$labels['deletemessage'] = 'Move message to trash';
$labels['printmessage'] = 'Print this message';
$labels['previousmessages'] = 'Show previous set of messages';
$labels['nextmessages'] = 'Show next set of messages';
$labels['backtolist'] = 'Back to message list';
$labels['viewsource'] = 'Show source';
$labels['select'] = 'Select';
$labels['all'] = 'All';
$labels['none'] = 'None';
$labels['unread'] = 'Unread';
$labels['compact'] = 'Compact';
$labels['empty'] = 'Empty';
$labels['purge'] = 'Purge';
$labels['quota'] = 'Disk usage';
$labels['unknown'] = 'unknown';
$labels['unlimited'] = 'unlimited';
$labels['quicksearch'] = 'Quick search';
$labels['resetsearch'] = 'Reset search';
// message compose
$labels['compose'] = 'Compose a message';
$labels['sendmessage'] = 'Send the message now';
$labels['addattachment'] = 'Attach a file';
$labels['charset'] = 'Charset';
$labels['returnreceipt'] = 'Return receipt';
$labels['attachments'] = 'Attachments';
$labels['upload'] = 'Upload';
$labels['close'] = 'Close';
$labels['low'] = 'Low';
$labels['lowest'] = 'Lowest';
$labels['normal'] = 'Normal';
$labels['high'] = 'High';
$labels['highest'] = 'Highest';
$labels['nosubject'] = '(no subject)';
$labels['showimages'] = 'Display images';
// address boook
$labels['name'] = 'Display name';
$labels['firstname'] = 'First name';
$labels['surname'] = 'Last name';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Add new contact';
$labels['editcontact'] = 'Edit contact';
$labels['edit'] = 'Edit';
$labels['cancel'] = 'Cancel';
$labels['save'] = 'Save';
$labels['delete'] = 'Delete';
$labels['newcontact'] = 'Create new contact card';
$labels['addcontact'] = 'Add selected contact to your addressbook';
$labels['deletecontact'] = 'Delete selected contacts';
$labels['composeto'] = 'Compose mail to';
$labels['contactsfromto'] = 'Contacts $from to $to of $count';
$labels['print'] = 'Print';
$labels['export'] = 'Export';
$labels['previouspage'] = 'Show previous set';
$labels['nextpage'] = 'Show next set';
// LDAP search
$labels['ldapsearch'] = 'LDAP directory search';
$labels['ldappublicsearchname'] = 'Contact name';
$labels['ldappublicsearchtype'] = 'Exact match?';
$labels['ldappublicserverselect'] = 'Select servers';
$labels['ldappublicsearchfield'] = 'Search on';
$labels['ldappublicsearchform'] = 'Look for a contact';
$labels['ldappublicsearch'] = 'Search';
// settings
$labels['settingsfor'] = 'Settings for';
$labels['preferences'] = 'Preferences';
$labels['userpreferences'] = 'User preferences';
$labels['editpreferences'] = 'Edit user preferences';
$labels['identities'] = 'Identities';
$labels['manageidentities'] = 'Manage identities for this account';
$labels['newidentity'] = 'New identity';
$labels['newitem'] = 'New item';
$labels['edititem'] = 'Edit item';
$labels['setdefault'] = 'Set default';
$labels['language'] = 'Language';
$labels['timezone'] = 'Time zone';
$labels['pagesize'] = 'Rows per page';
$labels['signature'] = 'Signature';
$labels['dstactive'] = 'Daylight savings';
$labels['folder'] = 'Folder';
$labels['folders'] = 'Folders';
$labels['foldername'] = 'Folder name';
$labels['subscribed'] = 'Subscribed';
$labels['create'] = 'Create';
$labels['createfolder'] = 'Create new folder';
$labels['deletefolder'] = 'Delete folder';
$labels['managefolders'] = 'Manage folders';
$labels['sortby'] = 'Sort by';
$labels['sortasc'] = 'Sort ascending';
$labels['sortdesc'] = 'Sort descending';
?>
diff --git a/program/localization/es/labels.inc b/program/localization/es/labels.inc
index 6b15fc996..ca083491a 100644
--- a/program/localization/es/labels.inc
+++ b/program/localization/es/labels.inc
@@ -1,213 +1,212 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/es/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: David Grajal Blanco <dgrabla@gmail.com> |
| http://david.grajal.net |
+-----------------------------------------------------------------------+
| Changelog: |
| - 6/2/2006 Translations of new features and improvements) |
| - 17/9/2005 First release |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Nombre de usuario';
$labels['password'] = 'Contraseña';
$labels['server'] = 'Servidor';
$labels['login'] = 'Entrar';
// taskbar
$labels['logout'] = 'Cerrar sesión';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Configuración';
$labels['addressbook'] = 'Contactos';
// mailbox names
$labels['inbox'] = 'Entrada';
$labels['sent'] = 'Enviados';
$labels['trash'] = 'Papelera';
$labels['drafts'] = 'Borradores';
$labels['junk'] = 'Basura';
// message listing
$labels['subject'] = 'Asunto';
$labels['from'] = 'Remitente';
$labels['to'] = 'Destinatario';
$labels['cc'] = 'CC';
$labels['bcc'] = 'BCC';
$labels['replyto'] = 'Responder';
$labels['date'] = 'Fecha';
$labels['size'] = 'Tamaño';
$labels['priority'] = 'Prioridad';
$labels['organization'] = 'Organización';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Carpetas';
$labels['messagesfromto'] = 'Mensajes desde $from a $to de $count';
$labels['messagenrof'] = 'Mensaje $nr de $count';
$labels['moveto'] = 'mover a...';
$labels['download'] = 'descargar';
$labels['filename'] = 'Nombre del fichero';
$labels['filesize'] = 'Tamaño del fichero';
$labels['preferhtml'] = 'Prefiero HTML';
$labels['htmlmessage'] = 'Mensaje HTML';
$labels['addtoaddressbook'] = 'Añadir a contactos';
// weekdays short
$labels['sun'] = 'D';
$labels['mon'] = 'L';
$labels['tue'] = 'M';
$labels['wed'] = 'X';
$labels['thu'] = 'J';
$labels['fri'] = 'V';
$labels['sat'] = 'S';
// weekdays long
$labels['sunday'] = 'Domingo';
$labels['monday'] = 'Lunes';
$labels['tuesday'] = 'Martes';
$labels['wednesday'] = 'Miercoles';
$labels['thursday'] = 'Jueves';
$labels['friday'] = 'Viernes';
$labels['saturday'] = 'Sábado';
$labels['today'] = 'Hoy';
// toolbar buttons
$labels['writenewmessage'] = 'Crear nuevo mensaje';
$labels['replytomessage'] = 'Responder al mensaje';
$labels['forwardmessage'] = 'Reenviar mensaje';
$labels['deletemessage'] = 'Move message to trash';
$labels['printmessage'] = 'Imprimir este mensaje';
$labels['previousmessages'] = 'Mostrar mensajes anteriores';
$labels['nextmessages'] = 'Mostrar mensajes siguientes';
$labels['backtolist'] = 'Volver a la lista de mensajes';
$labels['viewsource'] = 'Mostrar código';
$labels['select'] = 'Seleccionar';
$labels['all'] = 'Todos';
$labels['none'] = 'Ninguno';
$labels['unread'] = 'No leidos';
$labels['compact'] = 'Compactar';
$labels['empty'] = 'Vaciar';
$labels['purge'] = 'Eliminar';
$labels['quota'] = 'Uso de disco';
// message compose
$labels['compose'] = 'Escribir un mensaje';
$labels['sendmessage'] = 'Enviar ahora el mensaje';
$labels['addattachment'] = 'Añadir un fichero';
$labels['charset'] = 'Codigo';
$labels['attachments'] = 'Adjuntos';
$labels['upload'] = 'Subir';
$labels['close'] = 'Cerrar';
$labels['low'] = 'Bajo';
$labels['lowest'] = 'Bajísimo';
$labels['normal'] = 'Normal';
$labels['high'] = 'Alto';
$labels['highest'] = 'Altísimo';
$labels['showimages'] = 'Mostrar imágenes';
$labels['nosubject'] = '(sin asunto)';
$labels['showimages'] = 'Mostrar imágenes';
// address boook
$labels['name'] = 'Nombre completo';
$labels['firstname'] = 'Nombre';
$labels['surname'] = 'Apellido';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Añadir nuevo contacto';
$labels['editcontact'] = 'Editar contacto';
$labels['edit'] = 'Editar';
$labels['cancel'] = 'Cancelar';
$labels['save'] = 'Salvar';
$labels['delete'] = 'Eliminar';
$labels['newcontact'] = 'Crear nuevo contacto';
$labels['deletecontact'] = 'Eliminar contactos seleccionados';
$labels['composeto'] = 'Redactar correo a';
$labels['contactsfromto'] = 'Contactos $from a $to de $count';
$labels['print'] = 'Imprimir';
$labels['export'] = 'Exportar';
// LDAP search
$labels['ldapsearch'] = 'Búsqueda en el directorio LDAP';
$labels['ldappublicsearchname'] = 'Nombre';
$labels['ldappublicsearchtype'] = '¿Búsqueda exacta?';
$labels['ldappublicserverselect'] = 'Elegir servidores';
$labels['ldappublicsearchfield'] = 'Buscando';
$labels['ldappublicsearchform'] = 'Buscar un contacto';
$labels['ldappublicsearch'] = 'Buscar';
// settings
$labels['settingsfor'] = 'Configuración para';
$labels['preferences'] = 'Preferencias';
$labels['userpreferences'] = 'Preferencias de usuario';
$labels['editpreferences'] = 'Editar preferencias de usuario';
$labels['identities'] = 'Identidades';
$labels['manageidentities'] = 'Gestionar identidades para esta cuenta';
$labels['newidentity'] = 'Nueva identidad';
$labels['newitem'] = 'Nuevo';
$labels['edititem'] = 'Editar';
$labels['setdefault'] = 'Seleccionar opción por defecto';
$labels['language'] = 'Idioma';
$labels['timezone'] = 'Zona horaria';
$labels['pagesize'] = 'Filas por página';
$labels['signature'] = 'Firma';
$labels['folder'] = 'Carpeta';
$labels['folders'] = 'Carpetas';
$labels['foldername'] = 'Nombre de carpeta';
$labels['subscribed'] = 'Suscribirse';
$labels['create'] = 'Crear';
$labels['createfolder'] = 'Crear nueva carpeta';
$labels['deletefolder'] = 'Eliminar carpeta';
$labels['managefolders'] = 'Gestionar carpetas';
$labels['sortby'] = 'Ordenar por';
$labels['sortasc'] = 'Orden ascendente';
$labels['sortdesc'] = 'Orden descendente';
$labels['prettydate'] = 'Formato de fecha';
$labels['replytoallmessage'] = 'Responder al emisor y a todos los destinatarios';
?>
diff --git a/program/localization/fi/labels.inc b/program/localization/fi/labels.inc
index 2a18206b8..87dcc8bef 100644
--- a/program/localization/fi/labels.inc
+++ b/program/localization/fi/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/fi/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Ville Alatalo <ville@alatalo.org> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Käyttäjätunnus';
$labels['password'] = 'Salasana';
$labels['server'] = 'Palvelin';
$labels['login'] = 'Kirjaudu';
// taskbar
$labels['logout'] = 'Kirjaudu ulos';
$labels['mail'] = 'Sähköposti';
$labels['settings'] = 'Omat asetukset';
$labels['addressbook'] = 'Osoitekirja';
// mailbox names
$labels['inbox'] = 'Saapuneet';
$labels['sent'] = 'Lähetetyt';
$labels['trash'] = 'Roskakori';
$labels['drafts'] = 'Drafts';
$labels['junk'] = 'Roskaposti';
// message listing
$labels['subject'] = 'Aihe';
$labels['from'] = 'Lähettäjä';
$labels['to'] = 'Vastaanottaja';
$labels['cc'] = 'Kopio';
$labels['bcc'] = 'Piilokopio';
$labels['replyto'] = 'Reply-To';
$labels['date'] = 'Päiväys';
$labels['size'] = 'Koko';
$labels['priority'] = 'Tärkeys';
$labels['organization'] = 'Organisaatio';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Kansiot';
$labels['messagesfromto'] = 'Viestit $from-$to/$count';
$labels['messagenrof'] = 'Viesti $nr/$count';
$labels['moveto'] = 'siirrä...';
$labels['download'] = 'lataa';
$labels['filename'] = 'Tiedoston nimi';
$labels['filesize'] = 'Tiedoston koko';
$labels['preferhtml'] = 'Käytä HTML:aa';
$labels['htmlmessage'] = 'HTML-viesti';
$labels['prettydate'] = 'Nätit päiväykset';
$labels['addtoaddressbook'] = 'Lisää osoitekirjaan';
// weekdays short
$labels['sun'] = 'Su';
$labels['mon'] = 'Ma';
$labels['tue'] = 'Ti';
$labels['wed'] = 'Ke';
$labels['thu'] = 'To';
$labels['fri'] = 'Pe';
$labels['sat'] = 'La';
// weekdays long
$labels['sunday'] = 'Sunnuntai';
$labels['monday'] = 'Maanantai';
$labels['tuesday'] = 'Tiistai';
$labels['wednesday'] = 'Keskiviikko';
$labels['thursday'] = 'Torstai';
$labels['friday'] = 'Perjantai';
$labels['saturday'] = 'Lauantai';
$labels['today'] = 'Tänään';
// toolbar buttons
$labels['writenewmessage'] = 'Kirjoita uusi viesti';
$labels['replytomessage'] = 'Vastaa viestiin';
$labels['replytoallmessage'] = 'Vastaa kaikille';
$labels['forwardmessage'] = 'Välitä viesti';
$labels['deletemessage'] = 'Siirrä viesti roskakoriin';
$labels['printmessage'] = 'Tulosta viesti';
$labels['previousmessages'] = 'Näytä edelliset viestit';
$labels['nextmessages'] = 'Näytä seuraavat viestit';
$labels['backtolist'] = 'Takaisin viesteihin';
$labels['viewsource'] = 'Näytä lähdekoodi';
$labels['select'] = 'Valitse';
$labels['all'] = 'Kaikki';
$labels['none'] = 'Ei mitään';
$labels['unread'] = 'Lukemattomat';
$labels['compact'] = 'Compact';
$labels['empty'] = 'Empty';
$labels['purge'] = 'Purge';
$labels['quota'] = 'Levytila';
// message compose
$labels['compose'] = 'Viestin kirjoitus';
$labels['sendmessage'] = 'Lähetä viesti';
$labels['addattachment'] = 'Liitetiedosto';
$labels['charset'] = 'Merkistö';
$labels['attachments'] = 'Liitetiedostot';
$labels['upload'] = 'Lisää';
$labels['close'] = 'Sulje';
$labels['low'] = 'Matala';
$labels['lowest'] = 'Matalin';
$labels['normal'] = 'Normaali';
$labels['high'] = 'Korkea';
$labels['highest'] = 'Korkein';
$labels['nosubject'] = '(ei otsikkoa)';
$labels['showimages'] = 'Näytä kuvat';
// address boook
$labels['name'] = 'Näkyvä nimi';
$labels['firstname'] = 'Etunimi';
$labels['surname'] = 'Sukunimi';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Lisää kontakti';
$labels['editcontact'] = 'Muokkaa kontaktia';
$labels['edit'] = 'Muokkaa';
$labels['cancel'] = 'Peruuta';
$labels['save'] = 'Tallenna';
$labels['delete'] = 'Poista';
$labels['newcontact'] = 'Luo uusi kontakti';
$labels['addcontact'] = 'Lisää valittu kontakti osoitekirjaan';
$labels['deletecontact'] = 'Poista valitut kontaktit';
$labels['composeto'] = 'Kirjoita viesti kontaktille';
$labels['contactsfromto'] = 'Kontaktit $from-$to/$count';
$labels['print'] = 'Tulosta';
$labels['export'] = 'Vie (export)';
// LDAP search
$labels['ldapsearch'] = 'LDAP hakemistohaku';
$labels['ldappublicsearchname'] = 'Kontaktin nimi';
$labels['ldappublicsearchtype'] = 'Tarkka osuma?';
$labels['ldappublicserverselect'] = 'Valitse palvelimet';
$labels['ldappublicsearchfield'] = 'Hakusana';
$labels['ldappublicsearchform'] = 'Etsi kontaktia';
$labels['ldappublicsearch'] = 'Hae';
// settings
$labels['settingsfor'] = 'Asetukset';
$labels['preferences'] = 'Asetukset';
$labels['userpreferences'] = 'Käyttäjän asetukset';
$labels['editpreferences'] = 'Muokkaa käyttäjän asetuksia';
$labels['identities'] = 'Identiteetit';
$labels['manageidentities'] = 'Muokkaa tunnuksen identiteettejä';
$labels['newidentity'] = 'Uusi identiteetti';
$labels['newitem'] = 'Uusi';
$labels['edititem'] = 'Muokkaa';
$labels['setdefault'] = 'Aseta vakioksi';
$labels['language'] = 'Kieli';
$labels['timezone'] = 'Aikavyöhyke';
$labels['pagesize'] = 'Rivejä sivulla';
$labels['signature'] = 'Allekirjoitus';
$labels['folder'] = 'Kansio';
$labels['folders'] = 'Kansiot';
$labels['foldername'] = 'Kansion nimi';
$labels['subscribed'] = 'Näytetään';
$labels['create'] = 'Luo uusi';
$labels['createfolder'] = 'Luo uusi kansio';
$labels['deletefolder'] = 'Poista kansio';
$labels['managefolders'] = 'Kansioiden ylläpito';
$labels['sortby'] = 'Järjestä';
$labels['sortasc'] = 'Järjestä nousevasti';
$labels['sortdesc'] = 'Järjestä laskevasti';
?>
\ No newline at end of file
diff --git a/program/localization/fr/labels.inc b/program/localization/fr/labels.inc
index 5bda036ec..84be53880 100644
--- a/program/localization/fr/labels.inc
+++ b/program/localization/fr/labels.inc
@@ -1,203 +1,203 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/fr/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: aldweb <info@aldweb.com>, Pierre HAEGELI <pierre@haegeli.net> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Bienvenue à $product';
$labels['username'] = 'ID utilisateur';
$labels['password'] = 'Mot de passe';
$labels['server'] = 'Serveur';
$labels['login'] = 'Connexion';
// taskbar
$labels['logout'] = 'Quitter';
$labels['mail'] = 'e-Mail';
$labels['settings'] = 'Préférences';
$labels['addressbook'] = 'Carnet d\'adresses';
// mailbox names
$labels['inbox'] = 'Boîte de réception';
$labels['sent'] = 'Messages envoyés';
$labels['trash'] = 'Corbeille';
$labels['drafts'] = 'Brouillons';
$labels['junk'] = 'A trier';
// message listing
$labels['subject'] = 'Objet';
$labels['from'] = 'De';
$labels['to'] = 'A';
$labels['cc'] = 'Cc';
$labels['bcc'] = 'Cci';
$labels['replyto'] = 'Répondre à';
$labels['date'] = 'Date';
$labels['size'] = 'Taille';
$labels['priority'] = 'Priorité';
$labels['organization'] = 'Organisation';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Dossiers';
$labels['messagesfromto'] = 'Messages $from à $to sur $count';
$labels['messagenrof'] = 'Message $nr sur $count';
$labels['moveto'] = 'Déplacer vers...';
$labels['download'] = 'Télécharger';
$labels['filename'] = 'Nom du fichier';
$labels['filesize'] = 'Taille du fichier';
$labels['preferhtml'] = 'Préférer HTML';
$labels['htmlmessage'] = 'Message HTML';
$labels['prettydate'] = 'Belles dates';
$labels['addtoaddressbook'] = 'Ajouter au carnet d\'adresses';
// weekdays short
$labels['sun'] = 'Dim';
$labels['mon'] = 'Lun';
$labels['tue'] = 'Mar';
$labels['wed'] = 'Mer';
$labels['thu'] = 'Jeu';
$labels['fri'] = 'Ven';
$labels['sat'] = 'Sam';
// weekdays long
$labels['sunday'] = 'Dimanche';
$labels['monday'] = 'Lundi';
$labels['tuesday'] = 'Mardi';
$labels['wednesday'] = 'Mercredi';
$labels['thursday'] = 'Jeudi';
$labels['friday'] = 'Vendredi';
$labels['saturday'] = 'Samedi';
$labels['today'] = 'Aujourd\'hui';
// toolbar buttons
$labels['writenewmessage'] = 'Créer un nouveau message';
$labels['replytomessage'] = 'Répondre au message';
$labels['replytoallmessage'] = 'Répondre à tous';
$labels['forwardmessage'] = 'Transmettre le message';
$labels['deletemessage'] = 'Déplacer le message dans la corbeille';
$labels['printmessage'] = 'Imprimer ce message';
$labels['previousmessages'] = 'Voir les messages précédents';
$labels['nextmessages'] = 'Voir les messages suivants';
$labels['backtolist'] = 'Retourner à la liste des messages';
$labels['viewsource'] = 'Voir le code source';
$labels['select'] = 'Sélectionner';
$labels['all'] = 'Tous';
$labels['none'] = 'Aucun';
$labels['unread'] = 'Non lus';
$labels['compact'] = 'Compresser';
$labels['empty'] = 'Vider';
$labels['purge'] = 'Purger';
$labels['quota'] = 'Utilisation Disque';
// message compose
$labels['compose'] = 'Composer un nouveau message';
$labels['sendmessage'] = 'Envoyer le message maintenant';
$labels['addattachment'] = 'Joindre un fichier';
$labels['charset'] = 'Encodage';
$labels['attachments'] = 'Fichiers joints';
$labels['upload'] = 'Joindre';
$labels['close'] = 'Fermer';
$labels['low'] = 'Basse';
$labels['lowest'] = 'La plus basse';
$labels['normal'] = 'Normale';
$labels['high'] = 'Elevée';
$labels['highest'] = 'La plus élevée';
$labels['nosubject'] = '(pas de sujet)';
$labels['showimages'] = 'Montrer les images';
// address boook
$labels['name'] = 'Nom à afficher';
$labels['firstname'] = 'Prénom';
$labels['surname'] = 'Nom';
$labels['email'] = 'e-Mail';
$labels['addcontact'] = 'Ajouter un nouveau contact';
$labels['editcontact'] = 'Editer le contact';
$labels['edit'] = 'Editer';
$labels['cancel'] = 'Annuler';
$labels['save'] = 'Sauvegarder';
$labels['delete'] = 'Supprimer';
$labels['newcontact'] = 'Créer un nouveau contact';
$labels['addcontact'] = 'Ajouter le contact sélectionné à votre Carnet d\'adresses';
$labels['deletecontact'] = 'Supprimer les contacts sélectionnés';
$labels['composeto'] = 'Ecrire un message à';
$labels['contactsfromto'] = 'Contacts $from à $to sur $count';
$labels['print'] = 'Imprimer';
$labels['export'] = 'Exporter';
// LDAP search
$labels['ldapsearch'] = 'Recherche dans répertoires LDAP';
$labels['ldappublicsearchname'] = 'Nom du contact';
$labels['ldappublicsearchtype'] = 'Correspondance exacte ?';
$labels['ldappublicserverselect'] = 'Sélectionnez les serveurs';
$labels['ldappublicsearchfield'] = 'Recherche sur';
$labels['ldappublicsearchform'] = 'Chercher un contact';
$labels['ldappublicsearch'] = 'Recherche';
// settings
$labels['settingsfor'] = 'Paramètres pour';
$labels['preferences'] = 'Préférences';
$labels['userpreferences'] = 'Préférences utilisateur';
$labels['editpreferences'] = 'Editer les préférences utilisateur';
$labels['identities'] = 'Identités';
$labels['manageidentities'] = 'Gérer les identités pour ce compte';
$labels['newidentity'] = 'Nouvelle identité';
$labels['newitem'] = 'Nouvel élément';
$labels['edititem'] = 'Editer l\'élément';
$labels['setdefault'] = 'Paramètres par défaut';
$labels['language'] = 'Langue';
$labels['timezone'] = 'Fuseau horaire';
$labels['pagesize'] = 'Nombre de lignes par page';
$labels['signature'] = 'Signature';
$labels['folder'] = 'Dossier';
$labels['folders'] = 'Dossiers';
$labels['foldername'] = 'Nom du dossier';
$labels['subscribed'] = 'Abonné';
$labels['create'] = 'Créer';
$labels['createfolder'] = 'Créer un nouveau dossier';
$labels['deletefolder'] = 'Supprimer le dossier';
$labels['managefolders'] = 'Gérer les dossiers';
$labels['sortby'] = 'Trier par';
$labels['sortasc'] = 'Tri ascendant';
$labels['sortdesc'] = 'Tri descendant';
?>
\ No newline at end of file
diff --git a/program/localization/hr/labels.inc b/program/localization/hr/labels.inc
index a8edf6c50..9ead5fbad 100644
--- a/program/localization/hr/labels.inc
+++ b/program/localization/hr/labels.inc
@@ -1,195 +1,194 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/hr/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Robi Markovic <robiNOSPAM.markovic@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page // Login-Seite
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'E-mail Korisnika';
$labels['password'] = 'Lozinka';
$labels['server'] = 'Server';
$labels['login'] = 'Prijava';
// taskbar // Aktionsleiste
$labels['logout'] = 'Odjava';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Osobne Postavke';
$labels['addressbook'] = 'Adresar';
// mailbox names // E-Mail-Ordnernamen
$labels['inbox'] = 'Primljene';
$labels['sent'] = 'Poslate';
$labels['trash'] = 'Izbrisane(Smeće)';
$labels['drafts'] = 'Draft';
$labels['junk'] = 'Spam(Junk)';
// message listing // Nachrichtenliste
$labels['subject'] = 'Naslov';
$labels['from'] = 'Pošiljaoc';
$labels['to'] = 'Primaoc';
$labels['cc'] = 'Kopija (CC)';
$labels['bcc'] = 'Slijepa kopija (BCC)';
$labels['replyto'] = 'Odgovori na';
$labels['date'] = 'Datum';
$labels['size'] = 'Veličina';
$labels['priority'] = 'Prioritet';
$labels['organization'] = 'Organizacija';
// aliases // [Platzhalter]
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Mape';
$labels['messagesfromto'] = 'Poruke $from do $to od $count';
$labels['messagenrof'] = 'Poruke $nr od $count';
$labels['moveto'] = 'Prebaci u...';
$labels['download'] = 'Snimi(Download)';
$labels['filename'] = 'Ime datoteke';
$labels['filesize'] = 'Veličina datoteke';
$labels['preferhtml'] = 'Sa HTML';
$labels['htmlmessage'] = 'HTML Poruka';
$labels['prettydate'] = 'Kratak prikaz datuma';
$labels['addtoaddressbook'] = 'Dodajte u adresar';
// weekdays short // Wochentage (Abkürzungen)
$labels['sun'] = 'Ne';
$labels['mon'] = 'Po';
$labels['tue'] = 'Ut';
$labels['wed'] = 'Sr';
$labels['thu'] = 'Če';
$labels['fri'] = 'Pe';
$labels['sat'] = 'Su';
// weekdays long // Wochentage (normal)
$labels['sunday'] = 'Nedjelja';
$labels['monday'] = 'Ponedjeljak';
$labels['tuesday'] = 'Utorak';
$labels['wednesday'] = 'Srijeda';
$labels['thursday'] = 'Četvrtak';
$labels['friday'] = 'Petak';
$labels['saturday'] = 'Subota';
$labels['today'] = 'Danas';
// toolbar buttons // Symbolleisten-Tipps
$labels['writenewmessage'] = 'Napisati novu poruku';
$labels['replytomessage'] = 'Odogovoriti na poruku';
$labels['replytoallmessage'] = 'Odgovoriti pošiljaocu i svim primateljima';
$labels['forwardmessage'] = 'Proslijediti poruku';
$labels['deletemessage'] = 'Prebaciti poruku u "Izbrisane Poruke"';
$labels['printmessage'] = 'Odštampati poruku';
$labels['previousmessages'] = 'Pokazati prethodni set poruka';
$labels['nextmessages'] = 'Pokazati naredni set poruka';
$labels['backtolist'] = 'Povratak na listu poruka';
$labels['select'] = 'Odabrati';
$labels['all'] = 'Sve';
$labels['none'] = 'Nijednu';
$labels['unread'] = 'Nepročitane';
$labels['compact'] = 'Kompaktirati';
// message compose // Nachrichten erstellen
$labels['compose'] = 'Napisati poruku';
$labels['sendmessage'] = 'Poslati poruku sada';
$labels['addattachment'] = 'Dodati datoteku';
$labels['charset'] = 'Standard';
$labels['attachments'] = 'Dodatci';
$labels['upload'] = 'Ubaciti';
$labels['close'] = 'Zatvoriti';
$labels['low'] = 'Nisko';
$labels['lowest'] = 'Najniže';
$labels['normal'] = 'Normalno';
$labels['high'] = 'Visoko';
$labels['highest'] = 'Najviše';
$labels['nosubject'] = '(nema naslova)';
$labels['showimages'] = 'Prikazati slike';
// address book // Adressbuch
$labels['name'] = 'Prikazano ime';
$labels['firstname'] = 'Ime';
$labels['surname'] = 'Prezime';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Dodati novi kontakt';
$labels['editcontact'] = 'Izmjeniti kontakt';
$labels['edit'] = 'Izmjeniti';
$labels['cancel'] = 'Otkazati';
$labels['save'] = 'Snimiti';
$labels['delete'] = 'Obrisati';
$labels['newcontact'] = 'Napraviti novu kontakt karticu';
$labels['deletecontact'] = 'Obrisati odabrane kontakte';
$labels['composeto'] = 'Napisati mail na';
$labels['contactsfromto'] = 'Kontakti $from do $to od $count';
$labels['print'] = 'Odštampati';
$labels['export'] = 'Izvesti(Export)';
// LDAP search
$labels['ldapsearch'] = 'LDAP mapu pretraži';
$labels['ldappublicsearchname'] = 'Ime kontakta';
$labels['ldappublicsearchtype'] = 'Točan tip pretrage';
$labels['ldappublicserverselect'] = 'Odaberi server';
$labels['ldappublicsearchfield'] = 'Traži u';
$labels['ldappublicsearchform'] = 'Adresu pretraži';
$labels['ldappublicsearch'] = 'Pretraži';
// settings // Einstellungen
$labels['settingsfor'] = 'Podešavanje za';
$labels['preferences'] = 'Postavke';
$labels['userpreferences'] = 'Korisničke postavke';
$labels['editpreferences'] = 'Izmjeniti korisničke postavke';
$labels['identities'] = 'Identitet';
$labels['manageidentities'] = 'Uredi identitete za ovog korisnika';
$labels['newidentity'] = 'Novi Identitet';
$labels['newitem'] = 'Novi unos';
$labels['edititem'] = 'Izmjeni unos';
$labels['setdefault'] = 'Postavi standardno';
$labels['language'] = 'Jezik';
$labels['timezone'] = 'Vremenska zona';
$labels['pagesize'] = 'Poruka po stranici';
$labels['signature'] = 'Potpis';
$labels['folder'] = 'Mapa';
$labels['folders'] = 'Mape';
$labels['foldername'] = 'Ime mape';
$labels['subscribed'] = 'Pretplatiti';
$labels['create'] = 'Napraviti';
$labels['createfolder'] = 'Napraviti novi mapu';
$labels['deletefolder'] = 'Izbrisati mapu';
$labels['managefolders'] = 'Uredi mape';
$labels['sortby'] = 'Sortiraj po';
$labels['sortasc'] = 'Sortiraj opadajuće';
$labels['sortdesc'] = 'Sortiraj rastuće';
?>
diff --git a/program/localization/hu/labels.inc b/program/localization/hu/labels.inc
index 0a18f3586..1a037500d 100644
--- a/program/localization/hu/labels.inc
+++ b/program/localization/hu/labels.inc
@@ -1,203 +1,202 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/hu/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
| Translator: Ervin Hegedüs <airween@damson.hu> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Felhasználónév';
$labels['password'] = 'Jelszó';
$labels['server'] = 'Kiszolgáló';
$labels['login'] = 'Belépés';
// taskbar
$labels['logout'] = 'Kijelentkezés';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Egyéni beállítások';
$labels['addressbook'] = 'Címjegyzék';
// mailbox names
$labels['inbox'] = 'Inbox';
$labels['sent'] = 'Küldött';
$labels['trash'] = 'Törölt';
$labels['drafts'] = 'Piszkozatok';
$labels['junk'] = 'Szemét';
// message listing
$labels['subject'] = 'Tárgy';
$labels['from'] = 'Küldő';
$labels['to'] = 'Címzett';
$labels['cc'] = 'Másolat';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Válaszcím';
$labels['date'] = 'Dátum';
$labels['size'] = 'Méret';
$labels['priority'] = 'Sűrgősség';
$labels['organization'] = 'Szervezet';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Mappák';
$labels['messagesfromto'] = 'Üzenetek: $from - $to, össz.: $count';
$labels['messagenrof'] = '$nr. üzenet, összesen $count';
$labels['moveto'] = 'mozgatás...';
$labels['download'] = 'letöltés';
$labels['filename'] = 'Fájl neve';
$labels['filesize'] = 'Fájl mérete';
$labels['preferhtml'] = 'HTML megj.';
$labels['htmlmessage'] = 'HTML üzenet';
$labels['prettydate'] = 'Rövid dátumok';
$labels['addtoaddressbook'] = 'Hozzáadás a címjegyzékhez';
// weekdays short
$labels['sun'] = 'Vas';
$labels['mon'] = 'Hét';
$labels['tue'] = 'Kedd';
$labels['wed'] = 'Szer';
$labels['thu'] = 'Csüt';
$labels['fri'] = 'Pén';
$labels['sat'] = 'Szom';
// weekdays long
$labels['sunday'] = 'Vasárnap';
$labels['monday'] = 'Hétfő';
$labels['tuesday'] = 'Kedd';
$labels['wednesday'] = 'Szerda';
$labels['thursday'] = 'Csütörtök';
$labels['friday'] = 'Péntek';
$labels['saturday'] = 'Szombat';
$labels['today'] = 'Ma';
// toolbar buttons
$labels['writenewmessage'] = 'Új üzenet létrehozása';
$labels['replytomessage'] = 'Válasz az üzenetre';
$labels['replytoallmessage'] = 'Válasz a feladónak és az összes címzettnek';
$labels['forwardmessage'] = 'Üzenet továbbítása';
$labels['deletemessage'] = 'Mozgatás a lomtárba';
$labels['printmessage'] = 'Üzenet nyomtatása';
$labels['previousmessages'] = 'Előző rész mutatása';
$labels['nextmessages'] = 'Következő rész mutatása';
$labels['backtolist'] = 'Vissza az üzenetekhez';
$labels['viewsource'] = 'Forrás megtekintése';
$labels['select'] = 'Kiválasztás';
$labels['all'] = 'Mind';
$labels['none'] = 'Nincs';
$labels['unread'] = 'Olvasatlan';
$labels['compact'] = 'Tömörített';
$labels['empty'] = 'Üres';
$labels['purge'] = 'Tisztítás';
$labels['quota'] = 'Diszk használat';
// message compose
$labels['compose'] = 'Üzenet létrehozása';
$labels['sendmessage'] = 'Üzenet azonnali küldése';
$labels['addattachment'] = 'Fájlmelléklet hozzáadása';
$labels['charset'] = 'Karakterkészlet';
$labels['attachments'] = 'Mellékletek';
$labels['upload'] = 'Feltöltés';
$labels['close'] = 'Bezárás';
$labels['low'] = 'Alacsony';
$labels['lowest'] = 'Legkissebb';
$labels['normal'] = 'Normál';
$labels['high'] = 'Magas';
$labels['highest'] = 'Legmagasabb';
$labels['nosubject'] = '(nincs tárgy)';
$labels['showimages'] = 'Képek megjelenítése';
// address boook
$labels['name'] = 'Megjelenített név';
$labels['firstname'] = 'Keresztnév';
$labels['surname'] = 'Vezetéknév';
$labels['email'] = 'E-Mail cím';
$labels['addcontact'] = 'Új kapcsolat hozzáadása';
$labels['editcontact'] = 'Kapcsolat szerkesztése';
$labels['edit'] = 'Szerkesztés';
$labels['cancel'] = 'Mégsem';
$labels['save'] = 'Mentés';
$labels['delete'] = 'Törlés';
$labels['newcontact'] = 'Új névjegykártya létrehozása';
$labels['addcontact'] = 'Kiválasztott névjegy hozzáadása a címjegyzékhez';
$labels['deletecontact'] = 'Kijelölt kapcsolatok törlése';
$labels['composeto'] = 'Mail létrehozása erre a címre';
$labels['contactsfromto'] = 'Kapcsolatok: $from - $to, össz.: $count';
$labels['print'] = 'Nyomtatás';
$labels['export'] = 'Export';
// LDAP search
$labels['ldapsearch'] = 'Keresés LDAP címtárban';
$labels['ldappublicsearchname'] = 'Név';
$labels['ldappublicsearchtype'] = 'Teljes egyezés?';
$labels['ldappublicserverselect'] = 'Kiszolgáló választás';
$labels['ldappublicsearchfield'] = 'Keresés';
$labels['ldappublicsearchform'] = 'Kapcsolat keresése';
$labels['ldappublicsearch'] = 'Keresés';
// settings
$labels['settingsfor'] = 'Beállítás';
$labels['preferences'] = 'Tulajdonságok';
$labels['userpreferences'] = 'Felhasználó tulajdonságai';
$labels['editpreferences'] = 'Felhasználói tulajdonságok szerkesztése';
$labels['identities'] = 'Azonosítók';
$labels['manageidentities'] = 'Azonosítók kezelése';
$labels['newidentity'] = 'Új azonosító';
$labels['newitem'] = 'Új elem';
$labels['edititem'] = 'Elem szerkesztése';
$labels['setdefault'] = 'Beállítás alapértelmezettnek';
$labels['language'] = 'Nyelv';
$labels['timezone'] = 'Időzóna';
$labels['pagesize'] = 'Sorok száma egy oldalon';
$labels['signature'] = 'Aláírás';
$labels['folder'] = 'Mappa';
$labels['folders'] = 'Mappák';
$labels['foldername'] = 'Mappa neve';
$labels['subscribed'] = 'Feliratkozás';
$labels['create'] = 'Létrehozás';
$labels['createfolder'] = 'Új mappa létrehozása';
$labels['deletefolder'] = 'Mappa törlése';
$labels['managefolders'] = 'Mappák kezelése';
$labels['sortby'] = 'Rendezés';
$labels['sortasc'] = 'növekvő';
$labels['sortdesc'] = 'csökkenő';
?>
diff --git a/program/localization/it/labels.inc b/program/localization/it/labels.inc
index 3d80005da..b95c2e79d 100644
--- a/program/localization/it/labels.inc
+++ b/program/localization/it/labels.inc
@@ -1,203 +1,203 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/it/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
- | Author: Paolo Asperti <paolo@asperti.com> |
+ | Author: Paolo Asperti <paolo@asperti.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Benvenuto a $product';
$labels['username'] = 'Utente';
$labels['password'] = 'Password';
$labels['server'] = 'Server';
$labels['login'] = 'Entra';
// taskbar
$labels['logout'] = 'Esci';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Impostazioni';
$labels['addressbook'] = 'Rubrica';
// mailbox names
$labels['inbox'] = 'Posta in arrivo';
$labels['sent'] = 'Inviata';
$labels['trash'] = 'Cestino';
$labels['drafts'] = 'Bozze';
$labels['junk'] = 'Spam';
// message listing
$labels['subject'] = 'Oggetto';
$labels['from'] = 'Mittente';
$labels['to'] = 'Destinatario';
$labels['cc'] = 'Cc';
$labels['bcc'] = 'Ccn';
$labels['replyto'] = 'Rispondi a';
$labels['date'] = 'Data';
$labels['size'] = 'Dimensione';
$labels['priority'] = 'Priorità';
$labels['organization'] = 'Società';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Cartelle';
$labels['messagesfromto'] = 'Messaggi da $from a $to di $count';
$labels['messagenrof'] = 'Messaggio $nr di $count';
$labels['moveto'] = 'sposta...';
$labels['download'] = 'download';
$labels['filename'] = 'Nome file';
$labels['filesize'] = 'Dimensione file';
$labels['preferhtml'] = 'Preferisci HTML';
$labels['htmlmessage'] = 'Messaggio HTML';
$labels['prettydate'] = 'Date più leggibili';
$labels['addtoaddressbook'] = 'Aggiungi alla rubrica';
// weekdays short
$labels['sun'] = 'Dom';
$labels['mon'] = 'Lun';
$labels['tue'] = 'Mar';
$labels['wed'] = 'Mer';
$labels['thu'] = 'Gio';
$labels['fri'] = 'Ven';
$labels['sat'] = 'Sab';
// weekdays long
$labels['sunday'] = 'Domenica';
$labels['monday'] = 'Lunedì';
$labels['tuesday'] = 'Martedì';
$labels['wednesday'] = 'Mercoledì';
$labels['thursday'] = 'Giovedì';
$labels['friday'] = 'Venerdì';
$labels['saturday'] = 'Sabato';
$labels['today'] = 'Oggi';
// toolbar buttons
$labels['writenewmessage'] = 'Scrivi un nuovo messaggio';
$labels['replytomessage'] = 'Rispondi al messaggio';
$labels['replytoallmessage'] = 'Rispondi a tutti';
$labels['forwardmessage'] = 'Inoltra il messaggio';
$labels['deletemessage'] = 'Sposta il messaggio nel cestino';
$labels['printmessage'] = 'Stampa il messaggio';
$labels['previousmessages'] = 'Visualizza messaggi precedenti';
$labels['nextmessages'] = 'Visualizza messaggi successivi';
$labels['backtolist'] = 'Torna alla lista messaggi';
$labels['viewsource'] = 'Visualizza sorgente messaggio';
$labels['select'] = 'Seleziona';
$labels['all'] = 'Tutti';
$labels['none'] = 'Nessuno';
$labels['unread'] = 'Non letti';
$labels['compact'] = 'Compatta';
$labels['empty'] = 'Svuota';
$labels['purge'] = 'Pulisci';
$labels['quota'] = 'Utilizzo spazio';
// message compose
$labels['compose'] = 'Componi un messaggio';
$labels['sendmessage'] = 'Invia il messaggio adesso';
$labels['addattachment'] = 'Allega un file';
$labels['charset'] = 'Set di caratteri';
$labels['attachments'] = 'Allegati';
$labels['upload'] = 'Aggiungi';
$labels['close'] = 'Chiudi';
$labels['low'] = 'Bassa';
$labels['lowest'] = 'Molto bassa';
$labels['normal'] = 'Normale';
$labels['high'] = 'Alta';
$labels['highest'] = 'Molto alta';
$labels['nosubject'] = '(nessun oggetto)';
$labels['showimages'] = 'Visualizza immagini';
// address boook
$labels['name'] = 'Nome visualizzato';
$labels['firstname'] = 'Nome';
$labels['surname'] = 'Cognome';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Aggiungi un nuovo contatto';
$labels['editcontact'] = 'Modifica contatto';
$labels['edit'] = 'Modifica';
$labels['cancel'] = 'Annulla';
$labels['save'] = 'Salva';
$labels['delete'] = 'Elimina';
$labels['newcontact'] = 'Crea un nuovo contatto';
$labels['addcontact'] = 'Aggiungi il contatto selezionato alla rubrica';
$labels['deletecontact'] = 'Elimina i contatti selezionati';
$labels['composeto'] = 'Invia email a';
$labels['contactsfromto'] = 'Contatti da $from a $to di $count';
$labels['print'] = 'Stampa';
$labels['export'] = 'Esporta';
// LDAP search
$labels['ldapsearch'] = 'Cerca su directory LDAP';
$labels['ldappublicsearchname'] = 'Nome contatto';
$labels['ldappublicsearchtype'] = 'Nome esatto';
$labels['ldappublicserverselect'] = 'Scegli server';
$labels['ldappublicsearchfield'] = 'Cerca per';
$labels['ldappublicsearchform'] = 'Cerca un contatto';
$labels['ldappublicsearch'] = 'Cerca';
// settings
$labels['settingsfor'] = 'Impostazioni per ';
$labels['preferences'] = 'Preferenze';
$labels['userpreferences'] = 'Preferenze utente';
$labels['editpreferences'] = 'Modifica le preferenze per l\'utente';
$labels['identities'] = 'Identità';
$labels['manageidentities'] = 'Gestisci le identità per questo account';
$labels['newidentity'] = 'Nuova identità';
$labels['newitem'] = 'Nuovo elemento';
$labels['edititem'] = 'Modifica elemento';
$labels['setdefault'] = 'Imposta predefinita';
$labels['language'] = 'Lingua';
$labels['timezone'] = 'Fuso orario';
$labels['pagesize'] = 'Righe per pagina';
$labels['signature'] = 'Firma';
$labels['folder'] = 'Cartella';
$labels['folders'] = 'Cartelle';
$labels['foldername'] = 'Nome cartella';
$labels['subscribed'] = 'Sottoscritta';
$labels['create'] = 'Crea';
$labels['createfolder'] = 'Crea una nuova cartella';
$labels['deletefolder'] = 'Cancella la cartella';
$labels['managefolders'] = 'Gestione cartelle';
$labels['sortby'] = 'Ordina per';
$labels['sortasc'] = 'Ordinamento ascendente';
$labels['sortdesc'] = 'Ordinamento discendente';
?>
\ No newline at end of file
diff --git a/program/localization/nb_NO/labels.inc b/program/localization/nb_NO/labels.inc
index f3b510875..3c9883e59 100644
--- a/program/localization/nb_NO/labels.inc
+++ b/program/localization/nb_NO/labels.inc
@@ -1,201 +1,200 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/nb_NO/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| All rights reserved. |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
| Norwegian translation: Olav Elstad <olav@elstad.org> |
+-----------------------------------------------------------------------+
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Brukernavn:';
$labels['password'] = 'Passord:';
$labels['server'] = 'Server';
$labels['login'] = 'Logg på';
// taskbar
$labels['logout'] = 'Logg ut';
$labels['mail'] = 'Epost';
$labels['settings'] = 'Personlige innstillinger';
$labels['addressbook'] = 'Adressebok';
// mailbox names
$labels['inbox'] = 'Innboks';
$labels['sent'] = 'Sendt post';
$labels['trash'] = 'Søppel';
$labels['drafts'] = 'Kladder';
$labels['junk'] = 'Junk';
// message listing
$labels['subject'] = 'Emne';
$labels['from'] = 'Avsender';
$labels['to'] = 'Mottaker';
$labels['cc'] = 'Kopi til';
$labels['bcc'] = 'BCC';
$labels['replyto'] = 'Svar til';
$labels['date'] = 'Dato';
$labels['size'] = 'Størrelse';
$labels['priority'] = 'Prioritet';
$labels['organization'] = 'Organisasjon';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Mapper';
$labels['messagesfromto'] = 'Meldinger $from til $to av $count';
$labels['messagenrof'] = 'Meldinger $nr av $count';
$labels['moveto'] = 'flytt til...';
$labels['download'] = 'last ned';
$labels['filename'] = 'Filnavn';
$labels['filesize'] = 'Filstørrelse';
$labels['preferhtml'] = 'Foretrekk HTML';
$labels['htmlmessage'] = 'HTML besked';
$labels['addtoaddressbook'] = 'Tilføy til adresseboken';
// weekdays short
$labels['sun'] = 'Søn';
$labels['mon'] = 'Man';
$labels['tue'] = 'Tir';
$labels['wed'] = 'Ons';
$labels['thu'] = 'Tor';
$labels['fri'] = 'Fre';
$labels['sat'] = 'Lør';
// weekdays long
$labels['sunday'] = 'Søndag';
$labels['monday'] = 'Mandag';
$labels['tuesday'] = 'Tirsdag';
$labels['wednesday'] = 'Onsdag';
$labels['thursday'] = 'Torsdag';
$labels['friday'] = 'Fredag';
$labels['saturday'] = 'Lørdag';
$labels['today'] = 'I dag';
// toolbar buttons
$labels['writenewmessage'] = 'Opprett en ny e-post';
$labels['replytomessage'] = 'Svar på denne e-post';
$labels['forwardmessage'] = 'Videresend denne e-post';
$labels['deletemessage'] = 'Flytt e-posten til søppel';
$labels['printmessage'] = 'Skriv ut denne e-post';
$labels['previousmessages'] = 'Vis forrige side';
$labels['nextmessages'] = 'Vis neste side';
$labels['backtolist'] = 'Tilbake til e-postlisten';
$labels['select'] = 'Velg';
$labels['all'] = 'Alle';
$labels['none'] = 'Ingen';
$labels['unread'] = 'Uleste';
// message compose
$labels['compose'] = 'Lag ny e-post';
$labels['sendmessage'] = 'Send e-posten nu';
$labels['addattachment'] = 'Vedlegg';
$labels['upload'] = 'Last opp';
$labels['close'] = 'Lukk';
$labels['low'] = 'Lav';
$labels['lowest'] = 'Lavest';
$labels['normal'] = 'Normal';
$labels['high'] = 'Høy';
$labels['highest'] = 'Høyest';
$labels['showimages'] = 'Vis bilder';
// address boook
$labels['name'] = 'Vist navn';
$labels['firstname'] = 'Fornavn';
$labels['surname'] = 'Etternavn';
$labels['email'] = 'E-post';
$labels['addcontact'] = 'Legg til en ny kontakt';
$labels['editcontact'] = 'Rediger kontakt';
$labels['edit'] = 'Rediger';
$labels['cancel'] = 'Avbryt';
$labels['save'] = 'Lagre';
$labels['delete'] = 'Slett';
$labels['newcontact'] = 'Opprett ny kontakt';
$labels['deletecontact'] = 'Slett valgte kontakter';
$labels['composeto'] = 'Skriv e-post til';
$labels['contactsfromto'] = 'Kontakter $from til $to av $count';
// settings
$labels['settingsfor'] = 'Innstillinger for';
$labels['preferences'] = 'Oppsett';
$labels['userpreferences'] = 'Brukeroppsett';
$labels['editpreferences'] = 'Rediger brukeroppsett';
$labels['identities'] = 'Identiteter';
$labels['manageidentities'] = 'Styr identitetene for denne kontoen';
$labels['newidentity'] = 'Ny identitet';
$labels['newitem'] = 'Nytt punkt';
$labels['edititem'] = 'Rediger punkt';
$labels['setdefault'] = 'Sett standard';
$labels['language'] = 'Språk';
$labels['timezone'] = 'Tidssone';
$labels['pagesize'] = 'Linjer per side';
$labels['folders'] = 'Mapper';
$labels['foldername'] = 'Mappenavn';
$labels['subscribed'] = 'Abonnere';
$labels['create'] = 'Opprett';
$labels['createfolder'] = 'Lag ny mappe';
$labels['deletefolder'] = 'Slett mappe';
$labels['managefolders'] = 'Rediger mapper';
$labels['attachments'] = 'Vedlegg';
$labels['prettydate'] = 'Pen datovisning';
$labels['print'] = 'Skriv ut';
$labels['export'] = 'Eksportere';
$labels['viewsource'] = 'Vis rå besked';
$labels['replytoallmessage'] = 'Svar til alle mottakere';
$labels['folder'] = 'Mappe';
$labels['compact'] = 'Rydd opp';
$labels['empty'] = 'Tøm';
$labels['purge'] = 'Tøm';
$labels['quota'] = 'Disk forbruk';
$labels['sortby'] = 'Sorter etter';
$labels['sortdesc'] = 'Nyeste først';
$labels['sortasc'] = 'Eldste først';
$labels['nosubject'] = '(intet emne)';
$labels['signature'] = 'Signatur';
$labels['charset'] = 'Tegnsett';
$labels['ldapsearch'] = 'LDAP kartotekssøking';
$labels['ldappublicsearchname'] = 'Kontaktens navn';
$labels['ldappublicsearchtype'] = 'Presis søkning?';
$labels['ldappublicserverselect'] = 'Velg servere';
$labels['ldappublicsearchfield'] = 'Søk på';
$labels['ldappublicsearchform'] = 'Søk etter en kontakt';
$labels['ldappublicsearch'] = 'Søk';
?>
diff --git a/program/localization/nl_BE/labels.inc b/program/localization/nl_BE/labels.inc
index 38d937c2c..ccaf14012 100644
--- a/program/localization/nl_BE/labels.inc
+++ b/program/localization/nl_BE/labels.inc
@@ -1,205 +1,205 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/nl_BE/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Dennis Heeren <dennis.heeren@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Onthaal aan $product';
$labels['username'] = 'Gebruikersnaam';
$labels['password'] = 'Wachtwoord';
$labels['server'] = 'Server';
$labels['login'] = 'Aanmelden';
// taskbar
$labels['logout'] = 'Afmelden';
$labels['mail'] = 'Berichten';
$labels['settings'] = 'Instellingen';
$labels['addressbook'] = 'Contactpersonen';
// mailbox names
$labels['inbox'] = 'Postvak IN';
$labels['sent'] = 'Verzonden berichten';
$labels['trash'] = 'Prullenbak';
$labels['drafts'] = 'Concepten';
$labels['junk'] = 'Spam';
// message listing
$labels['subject'] = 'Onderwerp';
$labels['from'] = 'Van';
$labels['to'] = 'Aan';
$labels['cc'] = 'Cc';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Antwoorden aan';
$labels['date'] = 'Datum';
$labels['size'] = 'Grootte';
$labels['priority'] = 'Prioriteit';
$labels['organization'] = 'Organisatie';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Mappen';
$labels['messagesfromto'] = 'Berichten $from - $to van $count';
$labels['messagenrof'] = 'Bericht $nr van $count';
$labels['moveto'] = 'verplaats naar...';
$labels['download'] = 'downloaden';
$labels['filename'] = 'Bestandsnaam';
$labels['filesize'] = 'Bestandsgrootte';
$labels['preferhtml'] = 'Gebruik HTML-opmaak';
$labels['htmlmessage'] = 'HTML-bericht';
$labels['prettydate'] = 'Uitgebreide datumweergave';
$labels['addtoaddressbook'] = 'Voeg toe aan lijst met contactpersonen';
// weekdays short
$labels['sun'] = 'Zo';
$labels['mon'] = 'Ma';
$labels['tue'] = 'Di';
$labels['wed'] = 'Wo';
$labels['thu'] = 'Do';
$labels['fri'] = 'Vr';
$labels['sat'] = 'Za';
// weekdays long
$labels['sunday'] = 'Zondag';
$labels['monday'] = 'Maandag';
$labels['tuesday'] = 'Dinsdag';
$labels['wednesday'] = 'Woensdag';
$labels['thursday'] = 'Donderdag';
$labels['friday'] = 'Vrijdag';
$labels['saturday'] = 'Zaterdag';
$labels['today'] = 'Vandaag';
// toolbar buttons
$labels['writenewmessage'] = 'Nieuw bericht';
$labels['replytomessage'] = 'Beantwoorden';
$labels['replytoallmessage'] = 'Allen beantwoorden';
$labels['forwardmessage'] = 'Doorsturen';
$labels['deletemessage'] = 'Dit bericht verwijderen';
$labels['printmessage'] = 'Afdrukken';
$labels['previousmessages'] = 'Vorige berichten';
$labels['nextmessages'] = 'Volgende berichten';
$labels['backtolist'] = 'Terug naar berichtenlijst';
$labels['viewsource'] = 'Broncode bericht weergeven';
$labels['select'] = 'Selecteren';
$labels['all'] = 'Alles';
$labels['none'] = 'Geen';
$labels['unread'] = 'Ongelezen';
$labels['compact'] = 'Comprimeren';
$labels['empty'] = 'Legen';
$labels['purge'] = 'Opruimen';
$labels['quota'] = 'Gebruikte schijfruimte';
// message compose
$labels['compose'] = 'Nieuw bericht opstellen';
$labels['sendmessage'] = 'Verzenden';
$labels['addattachment'] = 'Bestand toevoegen als bijlage';
$labels['charset'] = 'Karakterset';
$labels['attachments'] = 'Bijlagen';
$labels['upload'] = 'Toevoegen';
$labels['close'] = 'Sluiten';
$labels['low'] = 'Laag';
$labels['lowest'] = 'Laagste';
$labels['normal'] = 'Normaal';
$labels['high'] = 'Hoog';
$labels['highest'] = 'Hoogste';
$labels['nosubject'] = '(geen onderwerp)';
$labels['showimages'] = 'Toon afbeeldingen';
// address boook
$labels['name'] = 'Naam';
$labels['firstname'] = 'Voornaam';
$labels['surname'] = 'Achternaam';
$labels['email'] = 'E-mailadres';
$labels['addcontact'] = 'Contactpersoon toevoegen';
$labels['editcontact'] = 'Contactpersoon bewerken';
$labels['edit'] = 'Bewerken';
$labels['cancel'] = 'Annuleren';
$labels['save'] = 'Opslaan';
$labels['delete'] = 'Verwijderen';
$labels['newcontact'] = 'Contactpersoon toevoegen';
$labels['addcontact'] = 'Geselecteerde contactpersoon toevoegen';
$labels['deletecontact'] = 'Verwijder geselecteerde contactpersonen';
$labels['composeto'] = 'Mail sturen aan';
$labels['contactsfromto'] = 'Contactpersonen $from - $to van $count';
$labels['print'] = 'Afdrukken';
$labels['export'] = 'Exporteren';
// LDAP search
$labels['ldapsearch'] = 'LDAP opzoeking';
$labels['ldappublicsearchname'] = 'Naam contactpersoon';
$labels['ldappublicsearchtype'] = 'Exact zoeken?';
$labels['ldappublicserverselect'] = 'Kies een server';
$labels['ldappublicsearchfield'] = 'Zoeken op';
$labels['ldappublicsearchform'] = 'Zoek een contactpersoon';
$labels['ldappublicsearch'] = 'Zoeken';
// settings
$labels['settingsfor'] = 'Instellingen voor';
$labels['preferences'] = 'Voorkeuren';
$labels['userpreferences'] = 'Gebruikersvoorkeuren';
$labels['editpreferences'] = 'Gebruikersvoorkeuren bewerken';
$labels['identities'] = 'Identiteiten';
$labels['manageidentities'] = 'Beheer de identiteiten voor deze gebruiker';
$labels['newidentity'] = 'Nieuwe identiteit';
$labels['newitem'] = 'Nieuw';
$labels['edititem'] = 'Bewerken';
$labels['setdefault'] = 'Als standaard instellen';
$labels['language'] = 'Taal';
$labels['timezone'] = 'Tijdzone';
$labels['pagesize'] = 'Berichten per pagina';
$labels['signature'] = 'Handtekening';
$labels['folder'] = 'Map';
$labels['folders'] = 'Mappen';
$labels['foldername'] = 'Naam';
$labels['subscribed'] = 'Gebruiken';
$labels['create'] = 'Aanmaken';
$labels['createfolder'] = 'Nieuwe map aanmaken';
$labels['deletefolder'] = 'Map verwijderen';
$labels['managefolders'] = 'Mappen beheren';
$labels['sortby'] = 'Sorteren op';
$labels['sortdesc'] = 'Aflopend sorteren';
$labels['sortasc'] = 'Oplopend sorteren';
?>
diff --git a/program/localization/nl_NL/labels.inc b/program/localization/nl_NL/labels.inc
index 9c14f33ea..f6e55a28a 100644
--- a/program/localization/nl_NL/labels.inc
+++ b/program/localization/nl_NL/labels.inc
@@ -1,202 +1,202 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/nl_NL/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Mark Moses <mark@katmoda.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+$labels['welcome'] = 'Onthaal aan $product';
$labels['username'] = 'Gebruikersnaam';
$labels['password'] = 'Wachtwoord';
$labels['server'] = 'Server';
$labels['login'] = 'Login';
// taskbar
$labels['logout'] = 'Logout';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Gebruikers Instellingen';
$labels['addressbook'] = 'Adresboek';
// mailbox names
$labels['inbox'] = 'Postvak IN';
$labels['sent'] = 'Verzonden';
$labels['trash'] = 'Prullenbak';
$labels['drafts'] = 'Concepten';
$labels['junk'] = 'SPAM';
// message listing
$labels['subject'] = 'Onderwerp';
$labels['from'] = 'Afzender';
$labels['to'] = 'Ontvanger';
$labels['cc'] = 'kopie';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Antwoord-aan';
$labels['date'] = 'Datum';
$labels['size'] = 'Grootte';
$labels['priority'] = 'Prioriteit';
$labels['organization'] = 'Organisatie';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Mappen';
$labels['messagesfromto'] = 'Bericht $from t/m $to van $count';
$labels['messagenrof'] = 'Bericht $nr van $count';
$labels['moveto'] = 'verplaats naar...';
$labels['download'] = 'download';
$labels['filename'] = 'Bestandsnaam';
$labels['filesize'] = 'Bestandsgrootte';
$labels['preferhtml'] = 'Prefereer HTML';
$labels['htmlmessage'] = 'HTML Bericht';
$labels['prettydate'] = 'Opgemaakte data';
$labels['addtoaddressbook'] = 'Toevoegen aan adresboek';
// weekdays short
$labels['sun'] = 'Zo';
$labels['mon'] = 'Ma';
$labels['tue'] = 'Di';
$labels['wed'] = 'Wo';
$labels['thu'] = 'Do';
$labels['fri'] = 'Vr';
$labels['sat'] = 'Za';
// weekdays long
$labels['sunday'] = 'Zondag';
$labels['monday'] = 'Maandag';
$labels['tuesday'] = 'Dinsdag';
$labels['wednesday'] = 'Woensdag';
$labels['thursday'] = 'Donderdag';
$labels['friday'] = 'Vrijdag';
$labels['saturday'] = 'Zaterdag';
$labels['today'] = 'Vandaag';
// toolbar buttons
$labels['writenewmessage'] = 'Nieuw bericht';
$labels['replytomessage'] = 'Beantwoord het bericht';
$labels['replytoallmessage'] = 'Beantwoord alle ontvangerss';
$labels['forwardmessage'] = 'Bericht doorsturen';
$labels['deletemessage'] = 'Verplaats het bericht naar de prullenbak';
$labels['printmessage'] = 'Dit bericht afdrukken';
$labels['previousmessages'] = 'Vorige voorgaande berichtenset laten zien';
$labels['nextmessages'] = 'Volgende berichtenset laten zien';
$labels['backtolist'] = 'Terug naar berichtenoverzicht';
$labels['viewsource'] = 'Toon bron';
$labels['select'] = 'Selecteer';
$labels['all'] = 'Allemaal';
$labels['none'] = 'Geen';
$labels['unread'] = 'Ongelezen';
$labels['compact'] = 'Compact';
$labels['empty'] = 'Legen';
$labels['purge'] = 'Purge';
$labels['quota'] = 'Schijfruimte gebruik';
// message compose
$labels['compose'] = 'Maak een bericht';
$labels['sendmessage'] = 'Verstuur het bericht nu';
$labels['addattachment'] = 'Voeg een bestand toe';
$labels['charset'] = 'karakterset';
$labels['attachments'] = 'bijgesloten bestanden';
$labels['upload'] = 'Upload';
$labels['close'] = 'Sluiten';
$labels['low'] = 'Laag';
$labels['lowest'] = 'Laagste';
$labels['normal'] = 'Normaal';
$labels['high'] = 'Hoog';
$labels['highest'] = 'Hoogste';
$labels['nosubject'] = '(geen onderwerp)';
$labels['showimages'] = 'Toon afbeeldingen';
// address boook
$labels['name'] = 'Tonen als';
$labels['firstname'] = 'Voornaam';
$labels['surname'] = 'Achternaam';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Nieuw contactpersoon toevoegen';
$labels['editcontact'] = 'Contactpersoon wijzigen';
$labels['edit'] = 'Wijzig';
$labels['cancel'] = 'Annuleer';
$labels['save'] = 'Opslaan';
$labels['delete'] = 'Verwijder';
$labels['newcontact'] = 'Voeg een nieuwe contactpersoon toe';
$labels['addcontact'] = 'Voeg geselecteerde contacten toe aan het adresboek';
$labels['deletecontact'] = 'Verwijder geselecteerde contacten';
$labels['composeto'] = 'Stuur een bericht naar';
$labels['contactsfromto'] = 'Contacten $from t/m $to van $count';
$labels['print'] = 'Afdrukken';
$labels['export'] = 'Exporteren';
// LDAP search
$labels['ldapsearch'] = 'LDAP adresboek zoeken';
$labels['ldappublicsearchname'] = 'Naam van contactpersoon';
$labels['ldappublicsearchtype'] = 'precies matchen?';
$labels['ldappublicserverselect'] = 'Selecteer servers';
$labels['ldappublicsearchfield'] = 'Zoek op';
$labels['ldappublicsearchform'] = 'Zoek een contactpersoon';
$labels['ldappublicsearch'] = 'Zoek';
// settings
$labels['settingsfor'] = 'Instellingen voor';
$labels['preferences'] = 'Instellingen';
$labels['userpreferences'] = 'Gebruikers instellingen';
$labels['editpreferences'] = 'Wijzig gebruikers instellingen';
$labels['identities'] = 'Identititeiten';
$labels['manageidentities'] = 'Beheer identiteiten voor dit account';
$labels['newidentity'] = 'Identiteit toevoegen';
$labels['newitem'] = 'Nieuw item';
$labels['edititem'] = 'Wijzig item';
$labels['setdefault'] = 'Stel als standaard in';
$labels['language'] = 'Taal';
$labels['timezone'] = 'Tijdszone';
$labels['pagesize'] = 'Rijen per pagina';
$labels['signature'] = 'Onderschrift';
$labels['folder'] = 'Map';
$labels['folders'] = 'Mappen';
$labels['foldername'] = 'Mapnaam';
$labels['subscribed'] = 'Geabonneerd';
$labels['create'] = 'Nieuw';
$labels['createfolder'] = 'Maak nieuwe map';
$labels['deletefolder'] = 'Verwijder map';
$labels['managefolders'] = 'Beheer mappen';
$labels['sortby'] = 'Sorteer op';
$labels['sortasc'] = 'Sorteer oplopend';
$labels['sortdesc'] = 'Sorteer aflopend';
?>
diff --git a/program/localization/pl/labels.inc b/program/localization/pl/labels.inc
index f62f8f146..33ed16f21 100644
--- a/program/localization/pl/labels.inc
+++ b/program/localization/pl/labels.inc
@@ -1,198 +1,197 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/pl/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Sławomir Cichoń <slawek.cichon@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'E-mail';
$labels['password'] = 'Hasło';
$labels['server'] = 'Serwer';
$labels['login'] = 'Zaloguj';
// taskbar
$labels['logout'] = 'Wyloguj';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Ustawienia';
$labels['addressbook'] = 'Książka Adresowa';
// mailbox names
$labels['inbox'] = 'Odebrane';
$labels['sent'] = 'Wysłane';
$labels['trash'] = 'Kosz';
$labels['drafts'] = 'Kopie robocze';
$labels['junk'] = 'Spam';
// message listing
$labels['subject'] = 'Temat';
$labels['from'] = 'Nadawca';
$labels['to'] = 'Odbiorca';
$labels['cc'] = 'Kopia';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Odpowiedz do';
$labels['date'] = 'Data';
$labels['size'] = 'Rozmiar';
$labels['priority'] = 'Priorytet';
$labels['organization'] = 'Organizacja';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Foldery';
$labels['messagesfromto'] = 'Wiadmość od $from do $to z $count';
$labels['messagenrof'] = 'Wiadmość $nr z $count';
$labels['moveto'] = 'Przenieś do...';
$labels['download'] = 'pobierz';
$labels['filename'] = 'Nazwa pliku';
$labels['filesize'] = 'Rozmiar pliku';
$labels['preferhtml'] = 'Domyślny HTML';
$labels['htmlmessage'] = 'Widomość HTML';
$labels['prettydate'] = 'Ładne daty';
$labels['addtoaddressbook'] = 'Dodaj do książki adresowej ';
// weekdays short
$labels['sun'] = 'Nd';
$labels['mon'] = 'Pn';
$labels['tue'] = 'Wt';
$labels['wed'] = 'Śr';
$labels['thu'] = 'Czw';
$labels['fri'] = 'Pt';
$labels['sat'] = 'Sb';
// weekdays long
$labels['sunday'] = 'Niedziela';
$labels['monday'] = 'Poniedziałek';
$labels['tuesday'] = 'Wtorek';
$labels['wednesday'] = 'Środa';
$labels['thursday'] = 'Czwartek';
$labels['friday'] = 'Piątek';
$labels['saturday'] = 'Sobota';
$labels['today'] = 'Dzisiaj';
// toolbar buttons
$labels['writenewmessage'] = 'Utwórz nową wiadmomość';
$labels['replytomessage'] = 'Odpowiedz nadawcy';
$labels['replytoallmessage'] = 'Odpowiedz wszystkim';
$labels['forwardmessage'] = 'Prześlij dalej';
$labels['deletemessage'] = 'Usuń';
$labels['printmessage'] = 'Drukuj';
$labels['previousmessages'] = 'Pokaż poprzednią';
$labels['nextmessages'] = 'Pokaż następną';
$labels['backtolist'] = 'Pokaż listę widomości';
$labels['viewsource'] = 'Pokaż źródło';
$labels['select'] = 'Wybierz';
$labels['all'] = 'Zaznacz wszystkie';
$labels['none'] = 'Odznacz';
$labels['unread'] = 'Zaznacz nieprzeczytane';
$labels['compact'] = 'Kompaktuj';
$labels['empty'] = 'Pusty';
$labels['purge'] = 'Oczyść';
$labels['quota'] = 'Użyta Przestrzeń';
// message compose
$labels['compose'] = 'Utwórz wiadomość';
$labels['sendmessage'] = 'Wyślij teraz';
$labels['addattachment'] = 'Dołącz plik';
$labels['charset'] = 'Kodowanie znaków';
$labels['attachments'] = 'Załączniki';
$labels['upload'] = 'Wgraj';
$labels['close'] = 'Zamknij';
$labels['low'] = 'Bardzo niski';
$labels['lowest'] = 'Niski';
$labels['normal'] = 'Normalny';
$labels['high'] = 'Wysoki';
$labels['highest'] = 'Bardzo wysoki';
$labels['nosubject'] = '(brak tematu)';
$labels['showimages'] = 'Wyświetl obrazki';
// address boook
$labels['name'] = 'Nazwa';
$labels['firstname'] = 'Imię';
$labels['surname'] = 'Nazwisko';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Dodaj nowy kontakt';
$labels['editcontact'] = 'Edytuj kontakt';
$labels['edit'] = 'Edytuj';
$labels['cancel'] = 'Anuluj';
$labels['save'] = 'Zapisz';
$labels['delete'] = 'Kasuj';
$labels['newcontact'] = 'Dodaj nowy kontakt';
$labels['addcontact'] = 'Dodaj znaznaczony kontakt do książki adresowej';
$labels['deletecontact'] = 'Usuń zaznaczone kontakty';
$labels['composeto'] = 'Stwórz wiadomość dla';
$labels['contactsfromto'] = 'Kontakt od $from do $to z $count';
$labels['print'] = 'Drukuj';
$labels['export'] = 'Eksportuj';
// LDAP search
$labels['ldapsearch'] = 'Wyszukiwanie w katalogu LDAP';
$labels['ldappublicsearchname'] = 'Nazwa kontaktu';
$labels['ldappublicsearchtype'] = 'Dokładnie pasujący?';
$labels['ldappublicserverselect'] = 'Wybierz serwery';
$labels['ldappublicsearchfield'] = 'Szukaj w ';
$labels['ldappublicsearchform'] = 'Szukaj kontaktu';
$labels['ldappublicsearch'] = 'Szukaj';
// settings
$labels['settingsfor'] = 'Ustawienia dla';
$labels['preferences'] = 'Ustawienia';
$labels['userpreferences'] = 'Preferencje';
$labels['editpreferences'] = 'Edytuj preferencję';
$labels['identities'] = 'Tożsamości';
$labels['manageidentities'] = 'Zarządzaj tożsamościami';
$labels['newidentity'] = 'Nowa tożsamość';
$labels['newitem'] = 'Nowy';
$labels['edititem'] = 'Edytuj';
$labels['setdefault'] = 'Ustaw domyślne';
$labels['language'] = 'Język';
$labels['timezone'] = 'Strefy czasu';
$labels['pagesize'] = 'wierszy na stronie';
$labels['signature'] = 'Podpis';
$labels['folders'] = 'Foldery';
$labels['foldername'] = 'Nazwa folderu';
$labels['subscribed'] = 'Zapisany';
$labels['create'] = 'Utwórz';
$labels['createfolder'] = 'Utwórz nowy folder';
$labels['deletefolder'] = 'Usuń folder';
$labels['managefolders'] = 'Zarządzaj folderami';
$labels['sortby'] = 'Sortuj wg.';
$labels['sortasc'] = 'Rosnąco';
$labels['sortdesc'] = 'Malejąco';
?>
diff --git a/program/localization/pt_BR/labels.inc b/program/localization/pt_BR/labels.inc
index 2c881cd4e..75e487255 100644
--- a/program/localization/pt_BR/labels.inc
+++ b/program/localization/pt_BR/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/pt_BR/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Anderson S. Ferreira <anderson@cnpm.embrapa.br> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
-// Página de login
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
+// Página de loginOnthaal aan $product
$labels['username'] = 'Usuário';
$labels['password'] = 'Senha';
$labels['server'] = 'Servidor';
$labels['login'] = 'Entrar';
// taskbar
$labels['logout'] = 'Sair';
$labels['mail'] = 'E-mail';
$labels['settings'] = 'Configurações pessoais';
$labels['addressbook'] = 'Catálogo de endereços';
// Nome das pastas de correio
$labels['inbox'] = 'Caixa de entrada';
$labels['sent'] = 'Enviados';
$labels['trash'] = 'Lixeira';
$labels['drafts'] = 'Rascunhos';
$labels['junk'] = 'Junk';
// message listing
$labels['subject'] = 'Assunto';
$labels['from'] = 'Remetente';
$labels['to'] = 'Para';
$labels['cc'] = 'Cópia';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Responder para';
$labels['date'] = 'Data';
$labels['size'] = 'Tamanho';
$labels['priority'] = 'Prioridade';
$labels['organization'] = 'Organização';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Pastas';
$labels['messagesfromto'] = 'Mensagens $from - $to de $count';
$labels['messagenrof'] = 'Mensagem $nr de $count';
$labels['moveto'] = 'mover para...';
$labels['download'] = 'download';
$labels['filename'] = 'Arquivo';
$labels['filesize'] = 'Tamanho';
$labels['preferhtml'] = 'Prefere HTML';
$labels['htmlmessage'] = 'Mensagem HTML';
$labels['prettydate'] = 'Formatar datas';
$labels['addtoaddressbook'] = 'Incluir no catálogo de endereços';
// Dias da semana abreviados
$labels['sun'] = 'Dom';
$labels['mon'] = 'Seg';
$labels['tue'] = 'Ter';
$labels['wed'] = 'Qua';
$labels['thu'] = 'Qui';
$labels['fri'] = 'Sex';
$labels['sat'] = 'Sáb';
// Dias da semana completos
$labels['sunday'] = 'Domingo';
$labels['monday'] = 'Segunda-feira';
$labels['tuesday'] = 'Terça-feira';
$labels['wednesday'] = 'Quarta-feira';
$labels['thursday'] = 'Quinta-feira';
$labels['friday'] = 'Sexta-feira';
$labels['saturday'] = 'Sábado';
$labels['today'] = 'Hoje';
// toolbar buttons
$labels['writenewmessage'] = 'Criar nova mensagem';
$labels['replytomessage'] = 'Responder';
$labels['replytoallmessage'] = 'Responder para todos';
$labels['forwardmessage'] = 'Encaminhar';
$labels['deletemessage'] = 'Mover para lixeira';
$labels['printmessage'] = 'Imprimir';
$labels['previousmessages'] = 'Anterior';
$labels['nextmessages'] = 'Próximo';
$labels['backtolist'] = 'Voltar';
$labels['viewsource'] = 'Exibir código fonte';
$labels['select'] = 'Selecionar';
$labels['all'] = 'Todas';
$labels['none'] = 'Nenhuma';
$labels['unread'] = 'Não lidas';
$labels['compact'] = 'Compactar';
$labels['empty'] = 'Vazio';
$labels['purge'] = 'Apagar';
$labels['quota'] = 'Utilização';
// message compose
$labels['compose'] = 'Escrever mensagem';
$labels['sendmessage'] = 'Enviar';
$labels['addattachment'] = 'Anexar';
$labels['charset'] = 'Charset';
$labels['attachments'] = 'Anexos';
$labels['upload'] = 'Upload';
$labels['close'] = 'Fechar';
$labels['low'] = 'Mais baixo';
$labels['lowest'] = 'Baixo';
$labels['normal'] = 'Normal';
$labels['high'] = 'Alta';
$labels['highest'] = 'Mais alta';
$labels['nosubject'] = '(no assunto)';
$labels['showimages'] = 'Exibir imagens';
// address boook
$labels['name'] = 'Nome completo';
$labels['firstname'] = 'Primeiro nome';
$labels['surname'] = 'Sobrenome';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Incluir novo contato';
$labels['editcontact'] = 'Editar contato';
$labels['edit'] = 'Editar';
$labels['cancel'] = 'Cancelar';
$labels['save'] = 'Salvar';
$labels['delete'] = 'Apagar';
$labels['newcontact'] = 'Criar novo contato';
$labels['addcontact'] = 'Incluir contato selecionado ao catálogo de endereços';
$labels['deletecontact'] = 'Apagar contatos selecionados';
$labels['composeto'] = 'Escrever mensagem para';
$labels['contactsfromto'] = 'Contatos $from - $to of $count';
$labels['print'] = 'Imprimir';
$labels['export'] = 'Exportar';
// LDAP search
$labels['ldapsearch'] = 'Pesquisa no diretório LDAP';
$labels['ldappublicsearchname'] = 'Nome do contado';
$labels['ldappublicsearchtype'] = 'Pesquisa exata?';
$labels['ldappublicserverselect'] = 'Selecionar servidores';
$labels['ldappublicsearchfield'] = 'Pesquisar em';
$labels['ldappublicsearchform'] = 'Procurar por um contato';
$labels['ldappublicsearch'] = 'Pesquisar';
// settings
$labels['settingsfor'] = 'Configurações para';
$labels['preferences'] = 'Preferências';
$labels['userpreferences'] = 'Preferências do usuário';
$labels['editpreferences'] = 'Editar preferências do usuário';
$labels['identities'] = 'Identidades';
$labels['manageidentities'] = 'Gerenciar identidades para essa conta';
$labels['newidentity'] = 'Nova identidade';
$labels['newitem'] = 'Novo item';
$labels['edititem'] = 'Editar item';
$labels['setdefault'] = 'Padrão';
$labels['language'] = 'Idioma';
$labels['timezone'] = 'Time zone';
$labels['pagesize'] = 'Linhas por página';
$labels['signature'] = 'Assinatura';
$labels['folder'] = 'Pasta';
$labels['folders'] = 'Pastas';
$labels['foldername'] = 'Nome da pasta';
$labels['subscribed'] = 'Assinado';
$labels['create'] = 'Criar';
$labels['createfolder'] = 'Criar nova pasta';
$labels['deletefolder'] = 'Apagar pasta';
$labels['managefolders'] = 'Gerenciar pastas';
$labels['sortby'] = 'Ordenado por';
$labels['sortasc'] = 'Ascendente';
$labels['sortdesc'] = 'Descendente';
?>
\ No newline at end of file
diff --git a/program/localization/ro/labels.inc b/program/localization/ro/labels.inc
index b855ffe55..764f4620b 100644
--- a/program/localization/ro/labels.inc
+++ b/program/localization/ro/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/ro/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Daniel Anechitoaie - danieLs <daniels@safereaction.ro> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Utilizator';
$labels['password'] = 'Parola';
$labels['server'] = 'Server';
$labels['login'] = 'Autentificare';
// taskbar
$labels['logout'] = 'Deconectare';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Setari Personale';
$labels['addressbook'] = 'Agenda';
// mailbox names
$labels['inbox'] = 'Primite';
$labels['sent'] = 'Trimise';
$labels['trash'] = 'Gunoi';
$labels['drafts'] = 'Ciorne';
$labels['junk'] = 'Junk';
// message listing
$labels['subject'] = 'Subiect';
$labels['from'] = 'Expeditor';
$labels['to'] = 'Destinatar';
$labels['cc'] = 'Copie';
$labels['bcc'] = 'Bcc';
$labels['replyto'] = 'Raspunde-La';
$labels['date'] = 'Data';
$labels['size'] = 'Marime';
$labels['priority'] = 'Prioritate';
$labels['organization'] = 'Organizatie';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Dosare';
$labels['messagesfromto'] = 'Mesaje de la $from pana la $to din $count';
$labels['messagenrof'] = '$nr mesaje din $count';
$labels['moveto'] = 'muta in...';
$labels['download'] = 'descarca';
$labels['filename'] = 'Nume fisier';
$labels['filesize'] = 'Marime fisier';
$labels['preferhtml'] = 'Prefer HTML';
$labels['htmlmessage'] = 'Mesaj HTML';
$labels['prettydate'] = 'Data formatata';
$labels['addtoaddressbook'] = 'Adauga in agenda';
// weekdays short
$labels['sun'] = 'Dum';
$labels['mon'] = 'Lun';
$labels['tue'] = 'Mar';
$labels['wed'] = 'Mie';
$labels['thu'] = 'Joi';
$labels['fri'] = 'Vin';
$labels['sat'] = 'Sam';
// weekdays long
$labels['sunday'] = 'Duminica';
$labels['monday'] = 'Luni';
$labels['tuesday'] = 'Marti';
$labels['wednesday'] = 'Miercuri';
$labels['thursday'] = 'Joi';
$labels['friday'] = 'Vineri';
$labels['saturday'] = 'Sambata';
$labels['today'] = 'Astazi';
// toolbar buttons
$labels['writenewmessage'] = 'Creaza mesaj nou';
$labels['replytomessage'] = 'Raspunde la mesaj';
$labels['replytoallmessage'] = 'Raspunde la toti';
$labels['forwardmessage'] = 'Trimite mesajul mai departe';
$labels['deletemessage'] = 'Trimmite mesajul la gunoi';
$labels['printmessage'] = 'Listeaza mesajul';
$labels['previousmessages'] = 'Afiseaza setul anterior de mesaje';
$labels['nextmessages'] = 'Afiseaza setul urmator de mesaje';
$labels['backtolist'] = 'Inapoi la lista cu mesaje';
$labels['viewsource'] = 'Afiseaza sursa';
$labels['select'] = 'Selecteaza';
$labels['all'] = 'Toate';
$labels['none'] = 'Nici unul';
$labels['unread'] = 'Necitite';
$labels['compact'] = 'Compreseaza';
$labels['empty'] = 'Goleste';
$labels['purge'] = 'Curata';
$labels['quota'] = 'Spatiu folosit';
// message compose
$labels['compose'] = 'Compune mesaj';
$labels['sendmessage'] = 'Trimite mesaj';
$labels['addattachment'] = 'Ataseaza fisier';
$labels['charset'] = 'Set de caractere';
$labels['attachments'] = 'Atasamente';
$labels['upload'] = 'Incarca';
$labels['close'] = 'Inchide';
$labels['low'] = 'Mica';
$labels['lowest'] = 'Cea mai mica';
$labels['normal'] = 'Normala';
$labels['high'] = 'Mare';
$labels['highest'] = 'Cea mai mare';
$labels['nosubject'] = '(fara subiect)';
$labels['showimages'] = 'Afiseaza imagini';
// address boook
$labels['name'] = 'Nume de afisat';
$labels['firstname'] = 'Nume';
$labels['surname'] = 'Prenume';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Adauga contact nou';
$labels['editcontact'] = 'Modifica contact';
$labels['edit'] = 'Editeaza';
$labels['cancel'] = 'Renunta';
$labels['save'] = 'Salveaza';
$labels['delete'] = 'Sterge';
$labels['newcontact'] = 'Creaza contact nou';
$labels['addcontact'] = 'Adauga contactul selectat in agenda';
$labels['deletecontact'] = 'Sterge contactul selectat';
$labels['composeto'] = 'Compune e-mail pentru';
$labels['contactsfromto'] = 'Contacte de la $from pana la $to din $count';
$labels['print'] = 'Listeaza';
$labels['export'] = 'Exporta';
// LDAP search
$labels['ldapsearch'] = 'Cautare director LDAP';
$labels['ldappublicsearchname'] = 'Nume contact';
$labels['ldappublicsearchtype'] = 'Potrivire exacta?';
$labels['ldappublicserverselect'] = 'Selecteaza server';
$labels['ldappublicsearchfield'] = 'Cauta dupa';
$labels['ldappublicsearchform'] = 'Cauta contact';
$labels['ldappublicsearch'] = 'Cauta';
// settings
$labels['settingsfor'] = 'Setari pentru';
$labels['preferences'] = 'Preferinte';
$labels['userpreferences'] = 'Preferinte utilizator';
$labels['editpreferences'] = 'Modifica preferinte utilizator';
$labels['identities'] = 'Identitati';
$labels['manageidentities'] = 'Administreaza identitati pentru acest cont';
$labels['newidentity'] = 'Identitate noua';
$labels['newitem'] = 'Item nou';
$labels['edititem'] = 'Editeaza item';
$labels['setdefault'] = 'Seteaza implicit';
$labels['language'] = 'Limba';
$labels['timezone'] = 'Fus orar';
$labels['pagesize'] = 'Randuri pe pagina';
$labels['signature'] = 'Semnatura';
$labels['folder'] = 'Dosar';
$labels['folders'] = 'Dosare';
$labels['foldername'] = 'Nume dosar';
$labels['subscribed'] = 'Inscris';
$labels['create'] = 'Creaza';
$labels['createfolder'] = 'Creaza dosar nou';
$labels['deletefolder'] = 'Sterge dosar';
$labels['managefolders'] = 'Administreaza dosare';
$labels['sortby'] = 'Sorteaza dupa';
$labels['sortasc'] = 'Sorteaza ascendent';
$labels['sortdesc'] = 'Sorteaza descendent';
?>
diff --git a/program/localization/ru/labels.inc b/program/localization/ru/labels.inc
index 2aa622306..efdaeef1b 100755
--- a/program/localization/ru/labels.inc
+++ b/program/localization/ru/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/ru_RU/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Maxim Zenin <maxx@webmechanics.ru> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Логин';
$labels['password'] = 'Пароль';
$labels['server'] = 'Сервер';
$labels['login'] = 'Войти';
// taskbar
$labels['logout'] = 'Выход';
$labels['mail'] = 'Почта';
$labels['settings'] = 'Настройки';
$labels['addressbook'] = 'Контакты';
// mailbox names
$labels['inbox'] = 'Входящие';
$labels['sent'] = 'Отправленные';
$labels['trash'] = 'Корзина';
$labels['drafts'] = 'Черновики';
$labels['junk'] = 'СПАМ';
// message listing
$labels['subject'] = 'Тема';
$labels['from'] = 'Отправитель';
$labels['to'] = 'Получатель';
$labels['cc'] = 'Копия';
$labels['bcc'] = 'Скрытая';
$labels['replyto'] = 'Обратный адрес';
$labels['date'] = 'Дата';
$labels['size'] = 'Размер';
$labels['priority'] = 'Приоритет';
$labels['organization'] = 'Организация';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Папки';
$labels['messagesfromto'] = 'Сообщения с $from по $to из $count';
$labels['messagenrof'] = 'Сообщение $nr из $count';
$labels['moveto'] = 'Переместить в...';
$labels['download'] = 'Загрузить';
$labels['filename'] = 'Имя файла';
$labels['filesize'] = 'Размер файла';
$labels['preferhtml'] = 'Предпочитать HTML';
$labels['htmlmessage'] = 'Сообщение HTML';
$labels['prettydate'] = 'Красивые даты';
$labels['addtoaddressbook'] = 'Добавить в контакты';
// weekdays short
$labels['sun'] = 'Вс';
$labels['mon'] = 'Пн';
$labels['tue'] = 'Вт';
$labels['wed'] = 'Ср';
$labels['thu'] = 'Чт';
$labels['fri'] = 'Пт';
$labels['sat'] = 'Сб';
// weekdays long
$labels['sunday'] = 'Воскресенье';
$labels['monday'] = 'Понедельник';
$labels['tuesday'] = 'Вторник';
$labels['wednesday'] = 'Среда';
$labels['thursday'] = 'Четверг';
$labels['friday'] = 'Пятница';
$labels['saturday'] = 'Суббота';
$labels['today'] = 'Сегодня';
// toolbar buttons
$labels['writenewmessage'] = 'Новое сообщение';
$labels['replytomessage'] = 'Ответить';
$labels['replytoallmessage'] = 'Ответить всем';
$labels['forwardmessage'] = 'Переслать';
$labels['deletemessage'] = 'В корзину';
$labels['printmessage'] = 'Печать';
$labels['previousmessages'] = 'Предыдущее';
$labels['nextmessages'] = 'Следующее';
$labels['backtolist'] = 'К списку сообщений';
$labels['viewsource'] = 'Исходный текст';
$labels['select'] = 'Выбрать';
$labels['all'] = 'Все';
$labels['none'] = 'Ничего';
$labels['unread'] = 'Непрочитанные';
$labels['compact'] = 'Сжать';
$labels['empty'] = 'Опустошить';
$labels['purge'] = 'Очистить';
$labels['quota'] = 'Квота';
// message compose
$labels['compose'] = 'Написать сообщение';
$labels['sendmessage'] = 'Отправить сейчас';
$labels['addattachment'] = 'Добавить вложение';
$labels['charset'] = 'Кодировка';
$labels['attachments'] = 'Вложения';
$labels['upload'] = 'Загрузить';
$labels['close'] = 'Закрыть';
$labels['low'] = 'Низкий';
$labels['lowest'] = 'Самый низкий';
$labels['normal'] = 'Нормальный';
$labels['high'] = 'Высокий';
$labels['highest'] = 'Самый высокий';
$labels['nosubject'] = '(без темы)';
$labels['showimages'] = 'Показать изображения';
// address boook
$labels['name'] = 'Отображаемое имя';
$labels['firstname'] = 'Имя';
$labels['surname'] = 'Фамилия';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Добавить контакт';
$labels['editcontact'] = 'Редактировать контакт';
$labels['edit'] = 'Правка';
$labels['cancel'] = 'Отмена';
$labels['save'] = 'Сохранить';
$labels['delete'] = 'Удалить';
$labels['newcontact'] = 'Создать новый контакт';
$labels['addcontact'] = 'Добавить выбранные контакты в список контактов';
$labels['deletecontact'] = 'Удалить выбранные контакты';
$labels['composeto'] = 'Создать сообщение для выбранных контактов';
$labels['contactsfromto'] = 'Контакты с $from по $to из $count';
$labels['print'] = 'Печать';
$labels['export'] = 'Экспорт';
// LDAP search
$labels['ldapsearch'] = 'Поиск в каталоге LDAP';
$labels['ldappublicsearchname'] = 'Имя';
$labels['ldappublicsearchtype'] = 'Точное совпадение?';
$labels['ldappublicserverselect'] = 'Выбрать сервер';
$labels['ldappublicsearchfield'] = 'искать на';
$labels['ldappublicsearchform'] = 'Искать контакт';
$labels['ldappublicsearch'] = 'Искать';
// settings
$labels['settingsfor'] = 'Настройки для';
$labels['preferences'] = 'Настройки';
$labels['userpreferences'] = 'Настройки пользователя';
$labels['editpreferences'] = 'Редактировать настройки пользователя';
$labels['identities'] = 'Профили';
$labels['manageidentities'] = 'Управление профилями';
$labels['newidentity'] = 'Новый профиль';
$labels['newitem'] = 'Новый';
$labels['edititem'] = 'Правка';
$labels['setdefault'] = 'Использовать по умолчанию';
$labels['language'] = 'Язык';
$labels['timezone'] = 'Часовой пояс';
$labels['pagesize'] = 'Строк на странице';
$labels['signature'] = 'Подпись';
$labels['folder'] = 'Папка';
$labels['folders'] = 'Папки';
$labels['foldername'] = 'Имя папки';
$labels['subscribed'] = 'Подписан';
$labels['create'] = 'Создать';
$labels['createfolder'] = 'Создать новую папку';
$labels['deletefolder'] = 'Удалить папку';
$labels['managefolders'] = 'Управление папками';
$labels['sortby'] = 'Сортировать по';
$labels['sortasc'] = 'Возрастанию';
$labels['sortdesc'] = 'Убыванию';
?>
\ No newline at end of file
diff --git a/program/localization/se/labels.inc b/program/localization/se/labels.inc
index 145a5d514..1baf27202 100644
--- a/program/localization/se/labels.inc
+++ b/program/localization/se/labels.inc
@@ -1,202 +1,201 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/en/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Användarnamn';
$labels['password'] = 'Lösenord';
$labels['server'] = 'Server';
$labels['login'] = 'Logga in';
// taskbar
$labels['logout'] = 'Logga ut';
$labels['mail'] = 'E-post';
$labels['settings'] = 'Personliga inställningar';
$labels['addressbook'] = 'Adressbok';
// mailbox names
$labels['inbox'] = 'Inkorg';
$labels['sent'] = 'Skickat';
$labels['trash'] = 'Papperskorg';
$labels['drafts'] = 'Utkast';
$labels['junk'] = 'Skräp';
// message listing
$labels['subject'] = 'Ämne';
$labels['from'] = 'Avsändare';
$labels['to'] = 'Mottagare';
$labels['cc'] = 'Kopia';
$labels['bcc'] = 'Hemlig kopia';
$labels['replyto'] = 'Svar till';
$labels['date'] = 'Datum';
$labels['size'] = 'Storlek';
$labels['priority'] = 'Prioritet';
$labels['organization'] = 'Organisation';
// aliases
$labels['reply-to'] = $labels['svartill'];
$labels['mailboxlist'] = 'Mappar';
$labels['messagesfromto'] = 'Meddelanden $from till $to av $count';
$labels['messagenrof'] = 'Meddelande $nr av $count';
$labels['moveto'] = 'flytta till...';
$labels['download'] = 'ladda ner';
$labels['filename'] = 'Filnamn';
$labels['filesize'] = 'Filstorlek';
$labels['preferhtml'] = 'Föredra HTML';
$labels['htmlmessage'] = 'HTML-meddelande';
$labels['prettydate'] = 'Fina datum';
$labels['addtoaddressbook'] = 'Lägg till adressbok';
// weekdays short
$labels['sun'] = 'Sön';
$labels['mon'] = 'Mån';
$labels['tue'] = 'Tis';
$labels['wed'] = 'Ons';
$labels['thu'] = 'Tor';
$labels['fri'] = 'Fre';
$labels['sat'] = 'Lör';
// weekdays long
$labels['sunday'] = 'Söndag';
$labels['monday'] = 'Måndag';
$labels['tuesday'] = 'Tisdag';
$labels['wednesday'] = 'Onsdag';
$labels['thursday'] = 'Torsdag';
$labels['friday'] = 'Fredag';
$labels['saturday'] = 'Lördag';
$labels['today'] = 'Idag';
// toolbar buttons
$labels['writenewmessage'] = 'Skapa nytt meddelande';
$labels['replytomessage'] = 'Svar på meddelande';
$labels['replytoallmessage'] = 'Svar till avsändare och alla mottagare';
$labels['forwardmessage'] = 'Skicka vidare meddelande';
$labels['deletemessage'] = 'Flytta meddelande till papperskorgen';
$labels['printmessage'] = 'Skriv ut';
$labels['previousmessages'] = 'Visa tidigare';
$labels['nextmessages'] = 'Visa nästa';
$labels['backtolist'] = 'Tillbaka till meddelandelistan';
$labels['viewsource'] = 'Visa källa';
$labels['select'] = 'Välj';
$labels['all'] = 'Alla';
$labels['none'] = 'Ingen';
$labels['unread'] = 'Oläst';
$labels['compact'] = 'Packa';
$labels['empty'] = 'Töm';
$labels['purge'] = 'Rensa';
$labels['quota'] = 'Diskutrymme';
// message compose
$labels['compose'] = 'Skapa nytt meddelande';
$labels['sendmessage'] = 'Skicka meddelande nu';
$labels['addattachment'] = 'Bifoga en fil';
$labels['charset'] = 'Teckenkodning';
$labels['attachments'] = 'Bilagor';
$labels['upload'] = 'Uppladdning';
$labels['close'] = 'Stäng';
$labels['low'] = 'Låg';
$labels['lowest'] = 'Lägst';
$labels['normal'] = 'Normal';
$labels['high'] = 'Hög';
$labels['highest'] = 'Högst';
$labels['nosubject'] = '(inget ämne)';
$labels['showimages'] = 'Visa bilder';
// address boook
$labels['name'] = 'Visa namn';
$labels['firstname'] = 'Förnamn';
$labels['surname'] = 'Efternamn';
$labels['email'] = 'E-post';
$labels['addcontact'] = 'Lägg till ny kontakt';
$labels['editcontact'] = 'Redigera kontakt';
$labels['edit'] = 'Redigera';
$labels['cancel'] = 'Avbryt';
$labels['save'] = 'Spara';
$labels['delete'] = 'Radera';
$labels['newcontact'] = 'Skapa nytt kontaktkort';
$labels['addcontact'] = 'Lägg till vald kotakt till adressboken';
$labels['deletecontact'] = 'Radera valda kontakter';
$labels['composeto'] = 'Skriv e-post till';
$labels['contactsfromto'] = 'Kontakter $from till $to av $count';
$labels['print'] = 'Skriv ut';
$labels['export'] = 'Exportera';
// LDAP search
$labels['ldapsearch'] = 'LDAP katalogsök';
$labels['ldappublicsearchname'] = 'Kontaktnamn';
$labels['ldappublicsearchtype'] = 'Exakt matchning?';
$labels['ldappublicserverselect'] = 'Valda servrar';
$labels['ldappublicsearchfield'] = 'Sök på';
$labels['ldappublicsearchform'] = 'Sök kontakt';
$labels['ldappublicsearch'] = 'Sök';
// settings
$labels['settingsfor'] = 'Inställningar för';
$labels['preferences'] = 'Inställningar';
$labels['userpreferences'] = 'Användarinställningar';
$labels['editpreferences'] = 'Ändra användarinställningar';
$labels['identities'] = 'Profiler';
$labels['manageidentities'] = 'Hantera profiler för detta konto';
$labels['newidentity'] = 'Ny profil';
$labels['newitem'] = 'Ny post';
$labels['edititem'] = 'Ändra post';
$labels['setdefault'] = 'Sätt som standard';
$labels['language'] = 'Språk';
$labels['timezone'] = 'Tidszon';
$labels['pagesize'] = 'Rader per sida';
$labels['signature'] = 'Signatur';
$labels['folder'] = 'Mapp';
$labels['folders'] = 'Mappar';
$labels['foldername'] = 'Mappnamn';
$labels['subscribed'] = 'Ansluten';
$labels['create'] = 'Skapa';
$labels['createfolder'] = 'Skapa ny mapp';
$labels['deletefolder'] = 'Radera mapp';
$labels['managefolders'] = 'Hantera mappar';
$labels['sortby'] = 'Sortera på';
$labels['sortasc'] = 'Sortera stigande';
$labels['sortdesc'] = 'Sortera fallande';
?>
diff --git a/program/localization/sk/labels.inc b/program/localization/sk/labels.inc
index 5b28dd8e0..e51047552 100644
--- a/program/localization/sk/labels.inc
+++ b/program/localization/sk/labels.inc
@@ -1,194 +1,194 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/sk/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Lukas Kraic <lukas.kraic@truni.sk> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
+
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Prihlasovacie meno';
$labels['password'] = 'Heslo';
$labels['server'] = 'Server';
$labels['login'] = 'Prihlásiť';
// taskbar
$labels['logout'] = 'Odhlásiť';
$labels['mail'] = 'E-Mail';
$labels['settings'] = 'Osobné nastavenia';
$labels['addressbook'] = 'Adresár';
// mailbox names
$labels['inbox'] = 'Doručená pošta';
$labels['sent'] = 'Odoslané';
$labels['trash'] = 'Kôš';
$labels['drafts'] = 'Nedokončené';
$labels['junk'] = 'Nevyžiadaná pošta';
// message listing
$labels['subject'] = 'Predmet';
$labels['from'] = 'Odosielateľ';
$labels['to'] = 'Adresát';
$labels['cc'] = 'Kópia';
$labels['bcc'] = 'Tajná kópia';
$labels['replyto'] = 'Odpovedať na';
$labels['date'] = 'Dátum';
$labels['size'] = 'Veľkosť';
$labels['priority'] = 'Priorita';
$labels['organization'] = 'Organizácia';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Adresár';
$labels['messagesfromto'] = 'Správy od $from do $to z $count';
$labels['messagenrof'] = 'Správa $nr z $count';
$labels['moveto'] = 'Presunúť do...';
$labels['download'] = 'Stiahnuť';
$labels['filename'] = 'Meno súboru';
$labels['filesize'] = 'Veľkosť súboru';
$labels['preferhtml'] = 'Uprednostniť HTML zobrazenie';
$labels['htmlmessage'] = 'HTML správa';
$labels['prettydate'] = 'Pretty dates';
$labels['addtoaddressbook'] = 'Pridaj do adresára';
// weekdays short
$labels['sun'] = 'Ne';
$labels['mon'] = 'Po';
$labels['tue'] = 'Ut';
$labels['wed'] = 'St';
$labels['thu'] = 'Štv';
$labels['fri'] = 'Pia';
$labels['sat'] = 'So';
// weekdays long
$labels['sunday'] = 'Nedeľa';
$labels['monday'] = 'Pondelok';
$labels['tuesday'] = 'Utorok';
$labels['wednesday'] = 'Streda';
$labels['thursday'] = 'Štvrtok';
$labels['friday'] = 'Piatok';
$labels['saturday'] = 'Sobota';
$labels['today'] = 'Dnes';
// toolbar buttons
$labels['writenewmessage'] = 'Vytvor novú správu';
$labels['replytomessage'] = 'Odpovedať';
$labels['replytoallmessage'] = 'Odpovedať všetkým';
$labels['forwardmessage'] = 'Poslať ďalej';
$labels['deletemessage'] = 'Presuň správu do koša';
$labels['printmessage'] = 'Vytlač správu';
$labels['previousmessages'] = 'Zobraziť predchádzajúcu správu';
$labels['nextmessages'] = 'Zobraziť daľšiu správu';
$labels['backtolist'] = 'Späť na zoznam správ';
$labels['viewsource'] = 'Ukáž zdroj správy';
$labels['select'] = 'Výber';
$labels['all'] = 'Všetky';
$labels['none'] = 'Žiadnu';
$labels['unread'] = 'Neprečítané';
// message compose
$labels['compose'] = 'Vytvoriť správu';
$labels['sendmessage'] = 'Odoslať správu';
$labels['addattachment'] = 'Pridať prílohu';
$labels['charset'] = 'Znaková sada';
$labels['attachments'] = 'Prílohy';
$labels['upload'] = 'Nahrať';
$labels['close'] = 'Zatvor';
$labels['low'] = 'Nízka';
$labels['lowest'] = 'Najnižšia';
$labels['normal'] = 'Normálna';
$labels['high'] = 'Vysoká';
$labels['highest'] = 'Najvyššia';
$labels['nosubject'] = '(bez predmetu)';
$labels['showimages'] = 'Ukáž obrázky';
// address boook
$labels['name'] = 'Celé meno';
$labels['firstname'] = 'Meno';
$labels['surname'] = 'Priezvisko';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Pridaj nový kontakt';
$labels['editcontact'] = 'Uprav kontakt';
$labels['edit'] = 'Uprav';
$labels['cancel'] = 'Zruš';
$labels['save'] = 'Ulož';
$labels['delete'] = 'Zmaž';
$labels['newcontact'] = 'Vytvor nový kontakt';
$labels['addcontact'] = 'Pridaj zvolený kontakt do vášho adresára';
$labels['deletecontact'] = 'Zmaž zvolené kontakty';
$labels['composeto'] = 'Vytvor správu';
$labels['contactsfromto'] = 'Kontakty od $from do $to z $count';
$labels['print'] = 'Tlač';
$labels['export'] = 'Export';
// LDAP search
$labels['ldapsearch'] = 'LDAP adresárové vyhľadávanie';
$labels['ldappublicsearchname'] = 'Hľadaný kontakt';
$labels['ldappublicsearchtype'] = 'Presná zhoda?';
$labels['ldappublicserverselect'] = 'Zvoľ server';
$labels['ldappublicsearchfield'] = 'Hľadaj podľa';
$labels['ldappublicsearchform'] = 'Vyhľadávanie kontaktov';
$labels['ldappublicsearch'] = 'Hľadaj';
// settings
$labels['settingsfor'] = 'Nastavenia pre';
$labels['preferences'] = 'Vlastnosti';
$labels['userpreferences'] = 'Užívateľské vlastnosti';
$labels['editpreferences'] = 'Uprav užívateľské vlastnosti';
$labels['identities'] = 'Profily';
$labels['manageidentities'] = 'Spravovať profily pri tomto účte';
$labels['newidentity'] = 'Nový profil';
$labels['newitem'] = 'Nová položka';
$labels['edititem'] = 'Uprav položku';
$labels['setdefault'] = 'Obnoviť pôvodné';
$labels['language'] = 'Jazyk';
$labels['timezone'] = 'Časová zóna';
$labels['pagesize'] = 'Riadky na stránku';
$labels['signature'] = 'Podpis';
$labels['folder'] = 'Zložka';
$labels['folders'] = 'Zložky';
$labels['foldername'] = 'Meno zložky';
$labels['subscribed'] = 'Podpísaný';
$labels['create'] = 'Vytvorit';
$labels['createfolder'] = 'Vytvor novú zložku';
$labels['deletefolder'] = 'Zmaž zložku';
$labels['managefolders'] = 'Spravovať zložky';
$labels['sortby'] = 'Triediť podľa';
$labels['sortasc'] = 'Triediť vzostupne';
$labels['sortdesc'] = 'Triediť zostupne';
?>
diff --git a/program/localization/tr/labels.inc b/program/localization/tr/labels.inc
index ca78d583c..be62f170c 100644
--- a/program/localization/tr/labels.inc
+++ b/program/localization/tr/labels.inc
@@ -1,203 +1,202 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/tr/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
| Translation / Tercüme: Hasan Cansız <hasancansiz@yahoo.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = 'Kullanıcı Adı';
$labels['password'] = 'Şifre';
$labels['server'] = 'Sunucu';
$labels['login'] = 'Oturum Aç';
// taskbar
$labels['logout'] = 'Oturumu Kapat';
$labels['mail'] = 'E-Posta';
$labels['settings'] = 'Kişisel Ayarlar';
$labels['addressbook'] = 'Rehber';
// mailbox names
$labels['inbox'] = 'Gelenler';
$labels['sent'] = 'Gönderilenler';
$labels['trash'] = 'Çöp Kutusu';
$labels['drafts'] = 'Taslaklar';
$labels['junk'] = 'Gereksiz(spam)';
// message listing
$labels['subject'] = 'Konu';
$labels['from'] = 'Gönderen';
$labels['to'] = 'Alıcı';
$labels['cc'] = 'Karbon Kopya';
$labels['bcc'] = 'Gizli Karbon Kopya';
$labels['replyto'] = 'Yanıtların Gönderileceği Adres';
$labels['date'] = 'Tarih';
$labels['size'] = 'Boyut';
$labels['priority'] = 'Öncelik';
$labels['organization'] = 'Kuruluş';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = 'Klasörler';
$labels['messagesfromto'] = '$count Mesajın $from - $to Arasındaki Mesajlar';
$labels['messagenrof'] = '$count Mesajın $nr .';
$labels['moveto'] = 'Şuraya taşı...';
$labels['download'] = 'İndir';
$labels['filename'] = 'Dosya Adı';
$labels['filesize'] = 'Dosya Boyutu';
$labels['preferhtml'] = 'HTML görüntülemeyi destekle';
$labels['htmlmessage'] = 'HTML Mesaj';
$labels['prettydate'] = 'Tarihi kısaltarak göster';
$labels['addtoaddressbook'] = 'Rehbere Ekle';
// weekdays short
$labels['sun'] = 'Pzr.';
$labels['mon'] = 'Pts.';
$labels['tue'] = 'Salı';
$labels['wed'] = 'Çarş.';
$labels['thu'] = 'Perş.';
$labels['fri'] = 'Cuma';
$labels['sat'] = 'C.tesi';
// weekdays long
$labels['sunday'] = 'Pazar';
$labels['monday'] = 'Pazartesi';
$labels['tuesday'] = 'Salı';
$labels['wednesday'] = 'Çarşamba';
$labels['thursday'] = 'Perşembe';
$labels['friday'] = 'Cuma';
$labels['saturday'] = 'Cumartesi';
$labels['today'] = 'Bugün';
// toolbar buttons
$labels['writenewmessage'] = 'Yeni posta oluştur';
$labels['replytomessage'] = 'Postayı yanıtla';
$labels['replytoallmessage'] = 'Bu postanın gönderildiği herkesi yanıtla';
$labels['forwardmessage'] = 'Postayı ilet';
$labels['deletemessage'] = 'Çöp Kutusuna At';
$labels['printmessage'] = 'Yazdır';
$labels['previousmessages'] = 'Önceki postaları göster';
$labels['nextmessages'] = 'Sonraki postaları göster';
$labels['backtolist'] = 'Posta kutusuna dön';
$labels['viewsource'] = 'Kaynağı göster';
$labels['select'] = 'Seç';
$labels['all'] = 'Hepsi';
$labels['none'] = 'Hiçbiri';
$labels['unread'] = 'Okunmamış';
$labels['compact'] = 'Kompakt';
$labels['empty'] = 'Boşalt';
$labels['purge'] = 'Sil';
$labels['quota'] = 'Disk kullanımı';
// message compose
$labels['compose'] = 'Yeni posta oluştur';
$labels['sendmessage'] = 'Postayı gönder';
$labels['addattachment'] = 'Dosya ekle';
$labels['charset'] = 'Karakter seti';
$labels['attachments'] = 'Ekler';
$labels['upload'] = 'Yükle';
$labels['close'] = 'Kapat';
$labels['low'] = 'Düşük';
$labels['lowest'] = 'Çok düşük';
$labels['normal'] = 'Normal';
$labels['high'] = 'Yüksek';
$labels['highest'] = 'Çok yüksek';
$labels['nosubject'] = '(Konu Belirtilmemiş)';
$labels['showimages'] = 'Grafikleri görüntüle';
// address boook
$labels['name'] = 'İsmi görüntüle';
$labels['firstname'] = 'İsim';
$labels['surname'] = 'Soy isim';
$labels['email'] = 'E-Mail';
$labels['addcontact'] = 'Yeni kişi ekle';
$labels['editcontact'] = 'Kişiyi düzenle';
$labels['edit'] = 'Düzenle';
$labels['cancel'] = 'İptal';
$labels['save'] = 'Kaydet';
$labels['delete'] = 'Sil';
$labels['newcontact'] = 'Yeni kişi Kartı Ekle';
$labels['addcontact'] = 'Seçili kişiyi rehbere ekle';
$labels['deletecontact'] = 'Seçili kişileri sil';
$labels['composeto'] = 'Seçili kişiye posta gönder';
$labels['contactsfromto'] = '$count Kişinin $from - $to arası ';
$labels['print'] = 'Yazdır';
$labels['export'] = 'Export';
// LDAP search
$labels['ldapsearch'] = 'LDAP directory araması';
$labels['ldappublicsearchname'] = 'Kişi adı';
$labels['ldappublicsearchtype'] = 'Tam olarak uysun?';
$labels['ldappublicserverselect'] = 'Serverleri seç';
$labels['ldappublicsearchfield'] = 'Arama açık';
$labels['ldappublicsearchform'] = 'Kişi ara';
$labels['ldappublicsearch'] = 'Ara';
// settings
$labels['settingsfor'] = 'Ayarlar';
$labels['preferences'] = 'Tercihler';
$labels['userpreferences'] = 'Kullanıcı tercihleri';
$labels['editpreferences'] = 'Kullanıcı tercihlerini düzenle';
$labels['identities'] = 'Kimlikler';
$labels['manageidentities'] = 'Bu hesap için kimlikleri düzenle';
$labels['newidentity'] = 'Yeni kimlik';
$labels['newitem'] = 'Yeni etiket';
$labels['edititem'] = 'Etiket düzenle';
$labels['setdefault'] = 'Varsayılan olarak ayarla';
$labels['language'] = 'Dil';
$labels['timezone'] = 'Saat dilimi';
$labels['pagesize'] = 'Bir sayfada kaç posta gösterilsin';
$labels['signature'] = 'İmza';
$labels['folder'] = 'Klasör';
$labels['folders'] = 'Klasörler';
$labels['foldername'] = 'Klasör ismi';
$labels['subscribed'] = 'Görülebilir';
$labels['create'] = 'Yeni Oluştur';
$labels['createfolder'] = 'Yeni klasör oluştur';
$labels['deletefolder'] = 'Klasörü sil';
$labels['managefolders'] = 'Klasörleri düzenle';
$labels['sortby'] = 'Sırala';
$labels['sortasc'] = 'Azdan çoğa';
$labels['sortdesc'] = 'Çoktan aza';
?>
\ No newline at end of file
diff --git a/program/localization/tw/labels.inc b/program/localization/tw/labels.inc
index cd20b4b99..d88259fa6 100755
--- a/program/localization/tw/labels.inc
+++ b/program/localization/tw/labels.inc
@@ -1,174 +1,173 @@
<?php
/*
+-----------------------------------------------------------------------+
| language/tw/labels.inc |
| |
| Language file of the RoundCube Webmail client |
| Copyright (C) 2005, RoundQube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: kourge <kourge@gmail.com> |
+-----------------------------------------------------------------------+
$Id$
*/
$labels = array();
// login page
-$labels['welcome'] = 'Welcome to Roundcube|Mail';
$labels['username'] = '使用者名稱';
$labels['password'] = '密碼';
$labels['server'] = '伺服器';
$labels['login'] = '登入';
// taskbar
$labels['logout'] = '登出';
$labels['mail'] = '電子郵件';
$labels['settings'] = '個人設定';
$labels['addressbook'] = '通訊錄';
// mailbox names
$labels['inbox'] = '收件匣';
$labels['sent'] = '已寄郵件';
$labels['trash'] = '垃圾桶';
$labels['drafts'] = '草稿';
$labels['junk'] = '垃圾郵件';
// message listing
$labels['subject'] = '主旨';
$labels['from'] = '寄件者';
$labels['to'] = '收件者';
$labels['cc'] = '副本';
$labels['bcc'] = '密件副本';
$labels['replyto'] = '回信地址 (Reply-To)';
$labels['date'] = '日期';
$labels['size'] = '大小';
$labels['priority'] = '優先順序';
$labels['organization'] = '組織';
// aliases
$labels['reply-to'] = $labels['replyto'];
$labels['mailboxlist'] = '資料夾';
$labels['messagesfromto'] = '自 $from 至 $to 共 $count 的訊息';
$labels['messagenrof'] = '訊息 $nr 之 $count';
$labels['moveto'] = '移動至...';
$labels['download'] = '下載';
$labels['filename'] = '檔案名稱';
$labels['filesize'] = '檔案大小';
$labels['preferhtml'] = '偏好 HTML';
$labels['htmlmessage'] = 'HTML 訊息';
$labels['prettydate'] = '好看的日期';
$labels['addtoaddressbook'] = '新增至通訊錄';
// weekdays short
$labels['sun'] = '日';
$labels['mon'] = '一';
$labels['tue'] = '二';
$labels['wed'] = '三';
$labels['thu'] = '四';
$labels['fri'] = '五';
$labels['sat'] = '六';
// weekdays long
$labels['sunday'] = '星期日';
$labels['monday'] = '星期一';
$labels['tuesday'] = '星期二';
$labels['wednesday'] = '星期三';
$labels['thursday'] = '星期四';
$labels['friday'] = '星期五';
$labels['saturday'] = '星期六';
$labels['today'] = '今日';
// toolbar buttons
$labels['writenewmessage'] = '建立新的訊息';
$labels['replytomessage'] = '回覆訊息';
$labels['forwardmessage'] = '轉寄訊息';
$labels['deletemessage'] = '移動訊息至垃圾桶';
$labels['printmessage'] = '列印這個訊息';
$labels['previousmessages'] = '顯示前一組的訊息';
$labels['nextmessages'] = '顯示後一組的訊息';
$labels['backtolist'] = '回到訊息清單';
$labels['select'] = '選擇';
$labels['all'] = '全部';
$labels['none'] = '無';
$labels['unread'] = '未閱讀';
// message compose
$labels['compose'] = '撰寫訊息';
$labels['sendmessage'] = '馬上傳送訊息';
$labels['addattachment'] = '附加檔案';
$labels['attachments'] = '附件';
$labels['upload'] = '上傳';
$labels['close'] = '關閉';
$labels['low'] = '低';
$labels['lowest'] = '最低';
$labels['normal'] = '正常';
$labels['high'] = '高';
$labels['highest'] = '最高';
$labels['showimages'] = '顯示影像';
// address boook
$labels['name'] = '顯示名稱';
$labels['firstname'] = '名';
$labels['surname'] = '姓';
$labels['email'] = '電子郵件';
$labels['addcontact'] = '新增新的連絡人';
$labels['editcontact'] = '編輯連絡人';
$labels['edit'] = '編輯';
$labels['cancel'] = '取消';
$labels['save'] = '儲存';
$labels['delete'] = '刪除';
$labels['newcontact'] = '建立新的連絡人卡';
$labels['deletecontact'] = '刪除選取的連絡人';
$labels['composeto'] = '撰寫郵件';
$labels['contactsfromto'] = '自 $from 至 $to 共 $count 的連絡人';
// settings
$labels['settingsfor'] = '下列使用者的設定';
$labels['preferences'] = '偏好設定';
$labels['userpreferences'] = '使用者偏好設定';
$labels['editpreferences'] = '編輯使用者偏好設定';
$labels['identities'] = '身份';
$labels['manageidentities'] = '管理這個帳戶的身份';
$labels['newidentity'] = '新身份';
$labels['newitem'] = '新增項目';
$labels['edititem'] = '編輯項目';
$labels['setdefault'] = '設為預設';
$labels['language'] = '語言';
$labels['timezone'] = '時區';
$labels['pagesize'] = '每頁欄數';
$labels['folders'] = '資料夾';
$labels['foldername'] = '資料夾名稱';
$labels['subscribed'] = '已訂閱';
$labels['create'] = '建立';
$labels['createfolder'] = '建立新資料夾';
$labels['deletefolder'] = '刪除資料夾';
$labels['managefolders'] = '管理資料夾';
?>
\ No newline at end of file
diff --git a/skins/default/templates/login.html b/skins/default/templates/login.html
index ae2804d1c..66ec6f242 100644
--- a/skins/default/templates/login.html
+++ b/skins/default/templates/login.html
@@ -1,33 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
-<title><roundcube:label name="welcome" /></title>
+<title><roundcube:object name="pagetitle" /></title>
<roundcube:include file="/includes/links.html" />
<style type="text/css">
#login-form {
margin-left: auto;
margin-right: auto;
margin-top: 50px;
width: 350px;
}
</style>
</head>
<body>
<img src="skins/default/images/roundcube_logo.png" id="rcmbtn104" width="165" height="55" border="0" alt="RoundCube Webmail" hspace="10" />
<roundcube:object name="message" id="message" />
<div id="login-form">
<form name="form" action="./" method="post">
<roundcube:object name="loginform" form="form" />
<p style="text-align: center;"><input type="submit" class="button" value="<roundcube:label name="login" />" />
</form>
</div>
</body>
</html>
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Fri, Aug 21, 2:07 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1272772
Default Alt Text
(231 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment